Whamcloud - gitweb
bfe424b431b8094f8adef658cbba5e890ff5086f
[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_desc = *desc;
948         body->lock_flags |= ldlm_flags_to_wire(lock->l_flags & LDLM_FL_AST_MASK);
949
950         LDLM_DEBUG(lock, "server preparing blocking AST");
951
952         ptlrpc_request_set_replen(req);
953         ldlm_set_cbpending(lock);
954         if (instant_cancel) {
955                 unlock_res_and_lock(lock);
956                 ldlm_lock_cancel(lock);
957
958                 req->rq_no_resend = 1;
959         } else {
960                 LASSERT(ldlm_is_granted(lock));
961                 ldlm_add_waiting_lock(lock, ldlm_bl_timeout(lock));
962                 unlock_res_and_lock(lock);
963
964                 /* Do not resend after lock callback timeout */
965                 req->rq_delay_limit = ldlm_bl_timeout(lock);
966                 req->rq_resend_cb = ldlm_update_resend;
967         }
968
969         req->rq_send_state = LUSTRE_IMP_FULL;
970         /* ptlrpc_request_alloc_pack already set timeout */
971         if (AT_OFF)
972                 req->rq_timeout = ldlm_get_rq_timeout();
973
974         if (lock->l_export && lock->l_export->exp_nid_stats &&
975             lock->l_export->exp_nid_stats->nid_ldlm_stats)
976                 lprocfs_counter_incr(lock->l_export->exp_nid_stats->nid_ldlm_stats,
977                                      LDLM_BL_CALLBACK - LDLM_FIRST_OPC);
978
979         rc = ldlm_ast_fini(req, arg, lock, instant_cancel);
980
981         RETURN(rc);
982 }
983
984 /**
985  * ->l_completion_ast callback for a remote lock in server namespace.
986  *
987  *  Sends AST to the client notifying it of lock granting.  If initial
988  *  lock response was not sent yet, instead of sending another RPC, just
989  *  mark the lock as granted and client will understand
990  */
991 int ldlm_server_completion_ast(struct ldlm_lock *lock, __u64 flags, void *data)
992 {
993         struct ldlm_cb_set_arg *arg = data;
994         struct ldlm_request *body;
995         struct ptlrpc_request *req;
996         struct ldlm_cb_async_args *ca;
997         int instant_cancel = 0;
998         int rc = 0;
999         int lvb_len;
1000
1001         ENTRY;
1002
1003         LASSERT(lock != NULL);
1004         LASSERT(data != NULL);
1005
1006         if (OBD_FAIL_PRECHECK(OBD_FAIL_LDLM_SRV_CP_AST)) {
1007                 LDLM_DEBUG(lock, "dropping CP AST");
1008                 RETURN(0);
1009         }
1010
1011         req = ptlrpc_request_alloc(lock->l_export->exp_imp_reverse,
1012                                    &RQF_LDLM_CP_CALLBACK);
1013         if (req == NULL)
1014                 RETURN(-ENOMEM);
1015
1016         /* server namespace, doesn't need lock */
1017         lvb_len = ldlm_lvbo_size(lock);
1018         /*
1019          * LU-3124 & LU-2187: to not return layout in completion AST because
1020          * it may deadlock for LU-2187, or client may not have enough space
1021          * for large layout. The layout will be returned to client with an
1022          * extra RPC to fetch xattr.lov
1023          */
1024         if (ldlm_has_layout(lock))
1025                 lvb_len = 0;
1026
1027         req_capsule_set_size(&req->rq_pill, &RMF_DLM_LVB, RCL_CLIENT, lvb_len);
1028         rc = ptlrpc_request_pack(req, LUSTRE_DLM_VERSION, LDLM_CP_CALLBACK);
1029         if (rc) {
1030                 ptlrpc_request_free(req);
1031                 RETURN(rc);
1032         }
1033
1034         ca = ptlrpc_req_async_args(ca, req);
1035         ca->ca_set_arg = arg;
1036         ca->ca_lock = lock;
1037
1038         req->rq_interpret_reply = ldlm_cb_interpret;
1039         body = req_capsule_client_get(&req->rq_pill, &RMF_DLM_REQ);
1040
1041         body->lock_handle[0] = lock->l_remote_handle;
1042         body->lock_flags = ldlm_flags_to_wire(flags);
1043         ldlm_lock2desc(lock, &body->lock_desc);
1044         if (lvb_len > 0) {
1045                 void *lvb = req_capsule_client_get(&req->rq_pill, &RMF_DLM_LVB);
1046                 lvb_len = ldlm_lvbo_fill(lock, lvb, &lvb_len);
1047                 if (lvb_len < 0) {
1048                         /*
1049                          * We still need to send the RPC to wake up the blocked
1050                          * enqueue thread on the client.
1051                          *
1052                          * Consider old client, there is no better way to notify
1053                          * the failure, just zero-sized the LVB, then the client
1054                          * will fail out as "-EPROTO".
1055                          */
1056                         req_capsule_shrink(&req->rq_pill, &RMF_DLM_LVB, 0,
1057                                            RCL_CLIENT);
1058                         instant_cancel = 1;
1059                 } else {
1060                         req_capsule_shrink(&req->rq_pill, &RMF_DLM_LVB, lvb_len,
1061                                            RCL_CLIENT);
1062                 }
1063         }
1064
1065         LDLM_DEBUG(lock, "server preparing completion AST");
1066
1067         ptlrpc_request_set_replen(req);
1068
1069         req->rq_send_state = LUSTRE_IMP_FULL;
1070         /* ptlrpc_request_pack already set timeout */
1071         if (AT_OFF)
1072                 req->rq_timeout = ldlm_get_rq_timeout();
1073
1074         /* We only send real blocking ASTs after the lock is granted */
1075         lock_res_and_lock(lock);
1076         if (ldlm_is_ast_sent(lock)) {
1077                 body->lock_flags |= ldlm_flags_to_wire(LDLM_FL_AST_SENT);
1078                 /* Copy AST flags like LDLM_FL_DISCARD_DATA. */
1079                 body->lock_flags |= ldlm_flags_to_wire(lock->l_flags &
1080                                                        LDLM_FL_AST_MASK);
1081
1082                 /*
1083                  * We might get here prior to ldlm_handle_enqueue setting
1084                  * LDLM_FL_CANCEL_ON_BLOCK flag. Then we will put this lock
1085                  * into waiting list, but this is safe and similar code in
1086                  * ldlm_handle_enqueue will call ldlm_lock_cancel() still,
1087                  * that would not only cancel the lock, but will also remove
1088                  * it from waiting list
1089                  */
1090                 if (ldlm_is_cancel_on_block(lock)) {
1091                         unlock_res_and_lock(lock);
1092                         ldlm_lock_cancel(lock);
1093
1094                         instant_cancel = 1;
1095                         req->rq_no_resend = 1;
1096
1097                         lock_res_and_lock(lock);
1098                 } else {
1099                         /* start the lock-timeout clock */
1100                         ldlm_add_waiting_lock(lock, ldlm_bl_timeout(lock));
1101                         /* Do not resend after lock callback timeout */
1102                         req->rq_delay_limit = ldlm_bl_timeout(lock);
1103                         req->rq_resend_cb = ldlm_update_resend;
1104                 }
1105         }
1106         unlock_res_and_lock(lock);
1107
1108         if (lock->l_export && lock->l_export->exp_nid_stats &&
1109             lock->l_export->exp_nid_stats->nid_ldlm_stats)
1110                 lprocfs_counter_incr(lock->l_export->exp_nid_stats->nid_ldlm_stats,
1111                                      LDLM_CP_CALLBACK - LDLM_FIRST_OPC);
1112
1113         rc = ldlm_ast_fini(req, arg, lock, instant_cancel);
1114
1115         RETURN(lvb_len < 0 ? lvb_len : rc);
1116 }
1117
1118 /**
1119  * Server side ->l_glimpse_ast handler for client locks.
1120  *
1121  * Sends glimpse AST to the client and waits for reply. Then updates
1122  * lvbo with the result.
1123  */
1124 int ldlm_server_glimpse_ast(struct ldlm_lock *lock, void *data)
1125 {
1126         struct ldlm_cb_set_arg *arg = data;
1127         struct ldlm_request *body;
1128         struct ptlrpc_request *req;
1129         struct ldlm_cb_async_args *ca;
1130         int rc;
1131         struct req_format *req_fmt;
1132
1133         ENTRY;
1134
1135         LASSERT(lock != NULL);
1136
1137         if (arg->gl_desc != NULL)
1138                 /* There is a glimpse descriptor to pack */
1139                 req_fmt = &RQF_LDLM_GL_CALLBACK_DESC;
1140         else
1141                 req_fmt = &RQF_LDLM_GL_CALLBACK;
1142
1143         req = ptlrpc_request_alloc_pack(lock->l_export->exp_imp_reverse,
1144                                         req_fmt, LUSTRE_DLM_VERSION,
1145                                         LDLM_GL_CALLBACK);
1146
1147         if (req == NULL)
1148                 RETURN(-ENOMEM);
1149
1150         if (arg->gl_desc != NULL) {
1151                 /* copy the GL descriptor */
1152                 union ldlm_gl_desc      *desc;
1153
1154                 desc = req_capsule_client_get(&req->rq_pill, &RMF_DLM_GL_DESC);
1155                 *desc = *arg->gl_desc;
1156         }
1157
1158         body = req_capsule_client_get(&req->rq_pill, &RMF_DLM_REQ);
1159         body->lock_handle[0] = lock->l_remote_handle;
1160         ldlm_lock2desc(lock, &body->lock_desc);
1161
1162         ca = ptlrpc_req_async_args(ca, req);
1163         ca->ca_set_arg = arg;
1164         ca->ca_lock = lock;
1165
1166         /* server namespace, doesn't need lock */
1167         req_capsule_set_size(&req->rq_pill, &RMF_DLM_LVB, RCL_SERVER,
1168                              ldlm_lvbo_size(lock));
1169         ptlrpc_request_set_replen(req);
1170
1171         req->rq_send_state = LUSTRE_IMP_FULL;
1172         /* ptlrpc_request_alloc_pack already set timeout */
1173         if (AT_OFF)
1174                 req->rq_timeout = ldlm_get_rq_timeout();
1175
1176         req->rq_interpret_reply = ldlm_cb_interpret;
1177
1178         if (lock->l_export && lock->l_export->exp_nid_stats) {
1179                 struct nid_stat *nid_stats = lock->l_export->exp_nid_stats;
1180
1181                 lprocfs_counter_incr(nid_stats->nid_ldlm_stats,
1182                                      LDLM_GL_CALLBACK - LDLM_FIRST_OPC);
1183         }
1184
1185         rc = ldlm_ast_fini(req, arg, lock, 0);
1186
1187         RETURN(rc);
1188 }
1189 EXPORT_SYMBOL(ldlm_server_glimpse_ast);
1190
1191 int ldlm_glimpse_locks(struct ldlm_resource *res,
1192                        struct list_head *gl_work_list)
1193 {
1194         int rc;
1195
1196         ENTRY;
1197
1198         rc = ldlm_run_ast_work(ldlm_res_to_ns(res), gl_work_list,
1199                                LDLM_WORK_GL_AST);
1200         if (rc == -ERESTART)
1201                 ldlm_reprocess_all(res, NULL);
1202
1203         RETURN(rc);
1204 }
1205 EXPORT_SYMBOL(ldlm_glimpse_locks);
1206
1207 /* return LDLM lock associated with a lock callback request */
1208 struct ldlm_lock *ldlm_request_lock(struct ptlrpc_request *req)
1209 {
1210         struct ldlm_cb_async_args *ca;
1211         struct ldlm_lock *lock;
1212
1213         ENTRY;
1214
1215         ca = ptlrpc_req_async_args(ca, req);
1216         lock = ca->ca_lock;
1217         if (lock == NULL)
1218                 RETURN(ERR_PTR(-EFAULT));
1219
1220         RETURN(lock);
1221 }
1222 EXPORT_SYMBOL(ldlm_request_lock);
1223
1224 /**
1225  * Main server-side entry point into LDLM for enqueue. This is called by ptlrpc
1226  * service threads to carry out client lock enqueueing requests.
1227  */
1228 int ldlm_handle_enqueue0(struct ldlm_namespace *ns,
1229                          struct ptlrpc_request *req,
1230                          const struct ldlm_request *dlm_req,
1231                          const struct ldlm_callback_suite *cbs)
1232 {
1233         struct ldlm_reply *dlm_rep;
1234         __u64 flags;
1235         enum ldlm_error err = ELDLM_OK;
1236         struct ldlm_lock *lock = NULL;
1237         void *cookie = NULL;
1238         int rc = 0;
1239         struct ldlm_resource *res = NULL;
1240         const struct lu_env *env = req->rq_svc_thread->t_env;
1241
1242         ENTRY;
1243
1244         LDLM_DEBUG_NOLOCK("server-side enqueue handler START");
1245
1246         ldlm_request_cancel(req, dlm_req, LDLM_ENQUEUE_CANCEL_OFF, LATF_SKIP);
1247         flags = ldlm_flags_from_wire(dlm_req->lock_flags);
1248
1249         LASSERT(req->rq_export);
1250
1251         /* for intent enqueue the stat will be updated inside intent policy */
1252         if (ptlrpc_req2svc(req)->srv_stats != NULL &&
1253             !(dlm_req->lock_flags & LDLM_FL_HAS_INTENT))
1254                 ldlm_svc_get_eopc(dlm_req, ptlrpc_req2svc(req)->srv_stats);
1255
1256         if (req->rq_export && req->rq_export->exp_nid_stats &&
1257             req->rq_export->exp_nid_stats->nid_ldlm_stats)
1258                 lprocfs_counter_incr(req->rq_export->exp_nid_stats->nid_ldlm_stats,
1259                                      LDLM_ENQUEUE - LDLM_FIRST_OPC);
1260
1261         if (unlikely(dlm_req->lock_desc.l_resource.lr_type < LDLM_MIN_TYPE ||
1262                      dlm_req->lock_desc.l_resource.lr_type >= LDLM_MAX_TYPE)) {
1263                 DEBUG_REQ(D_ERROR, req, "invalid lock request type %d",
1264                           dlm_req->lock_desc.l_resource.lr_type);
1265                 GOTO(out, rc = -EFAULT);
1266         }
1267
1268         if (unlikely(dlm_req->lock_desc.l_req_mode <= LCK_MINMODE ||
1269                      dlm_req->lock_desc.l_req_mode >= LCK_MAXMODE ||
1270                      dlm_req->lock_desc.l_req_mode &
1271                      (dlm_req->lock_desc.l_req_mode-1))) {
1272                 DEBUG_REQ(D_ERROR, req, "invalid lock request mode %d",
1273                           dlm_req->lock_desc.l_req_mode);
1274                 GOTO(out, rc = -EFAULT);
1275         }
1276
1277         if (unlikely((flags & LDLM_FL_REPLAY) ||
1278                      (lustre_msg_get_flags(req->rq_reqmsg) & MSG_RESENT))) {
1279                 /* Find an existing lock in the per-export lock hash */
1280                 /*
1281                  * In the function below, .hs_keycmp resolves to
1282                  * ldlm_export_lock_keycmp()
1283                  */
1284                 /* coverity[overrun-buffer-val] */
1285                 lock = cfs_hash_lookup(req->rq_export->exp_lock_hash,
1286                                        (void *)&dlm_req->lock_handle[0]);
1287                 if (lock != NULL) {
1288                         DEBUG_REQ(D_DLMTRACE, req,
1289                                   "found existing lock cookie %#llx",
1290                                   lock->l_handle.h_cookie);
1291                         flags |= LDLM_FL_RESENT;
1292                         GOTO(existing_lock, rc = 0);
1293                 }
1294         } else {
1295                 if (ldlm_reclaim_full()) {
1296                         DEBUG_REQ(D_DLMTRACE, req,
1297                                   "Too many granted locks, reject current enqueue request and let the client retry later");
1298                         GOTO(out, rc = -EINPROGRESS);
1299                 }
1300         }
1301
1302         /* The lock's callback data might be set in the policy function */
1303         lock = ldlm_lock_create(ns, &dlm_req->lock_desc.l_resource.lr_name,
1304                                 dlm_req->lock_desc.l_resource.lr_type,
1305                                 dlm_req->lock_desc.l_req_mode,
1306                                 cbs, NULL, 0, LVB_T_NONE);
1307         if (IS_ERR(lock)) {
1308                 rc = PTR_ERR(lock);
1309                 lock = NULL;
1310                 GOTO(out, rc);
1311         }
1312
1313         lock->l_remote_handle = dlm_req->lock_handle[0];
1314         LDLM_DEBUG(lock, "server-side enqueue handler, new lock created");
1315
1316         /*
1317          * Initialize resource lvb but not for a lock being replayed since
1318          * Client already got lvb sent in this case.
1319          * This must occur early since some policy methods assume resource
1320          * lvb is available (lr_lvb_data != NULL).
1321          */
1322         res = lock->l_resource;
1323         if (!(flags & LDLM_FL_REPLAY)) {
1324                 /* non-replayed lock, delayed lvb init may need to be done */
1325                 rc = ldlm_lvbo_init(res);
1326                 if (rc < 0) {
1327                         LDLM_DEBUG(lock, "delayed lvb init failed (rc %d)", rc);
1328                         GOTO(out, rc);
1329                 }
1330         }
1331
1332         OBD_FAIL_TIMEOUT(OBD_FAIL_LDLM_ENQUEUE_BLOCKED, obd_timeout * 2);
1333         /*
1334          * Don't enqueue a lock onto the export if it is been disonnected
1335          * due to eviction (b=3822) or server umount (b=24324).
1336          * Cancel it now instead.
1337          */
1338         if (req->rq_export->exp_disconnected) {
1339                 LDLM_ERROR(lock, "lock on disconnected export %p",
1340                            req->rq_export);
1341                 GOTO(out, rc = -ENOTCONN);
1342         }
1343
1344         lock->l_export = class_export_lock_get(req->rq_export, lock);
1345         if (lock->l_export->exp_lock_hash)
1346                 cfs_hash_add(lock->l_export->exp_lock_hash,
1347                              &lock->l_remote_handle,
1348                              &lock->l_exp_hash);
1349
1350         /*
1351          * Inherit the enqueue flags before the operation, because we do not
1352          * keep the res lock on return and next operations (BL AST) may proceed
1353          * without them.
1354          */
1355         lock->l_flags |= ldlm_flags_from_wire(dlm_req->lock_flags &
1356                                               LDLM_FL_INHERIT_MASK);
1357
1358         ldlm_convert_policy_to_local(req->rq_export,
1359                                      dlm_req->lock_desc.l_resource.lr_type,
1360                                      &dlm_req->lock_desc.l_policy_data,
1361                                      &lock->l_policy_data);
1362         if (dlm_req->lock_desc.l_resource.lr_type == LDLM_EXTENT)
1363                 lock->l_req_extent = lock->l_policy_data.l_extent;
1364         else if (dlm_req->lock_desc.l_resource.lr_type == LDLM_IBITS)
1365                 lock->l_policy_data.l_inodebits.try_bits =
1366                         dlm_req->lock_desc.l_policy_data.l_inodebits.try_bits;
1367
1368 existing_lock:
1369         cookie = req;
1370         if (!(flags & LDLM_FL_HAS_INTENT)) {
1371                 /* based on the assumption that lvb size never changes during
1372                  * resource life time otherwise it need resource->lr_lock's
1373                  * protection */
1374                 req_capsule_set_size(&req->rq_pill, &RMF_DLM_LVB,
1375                                      RCL_SERVER, ldlm_lvbo_size(lock));
1376
1377                 if (OBD_FAIL_CHECK(OBD_FAIL_LDLM_ENQUEUE_EXTENT_ERR))
1378                         GOTO(out, rc = -ENOMEM);
1379
1380                 rc = req_capsule_server_pack(&req->rq_pill);
1381                 if (rc)
1382                         GOTO(out, rc);
1383         }
1384
1385         err = ldlm_lock_enqueue(env, ns, &lock, cookie, &flags);
1386         if (err) {
1387                 if ((int)err < 0)
1388                         rc = (int)err;
1389                 GOTO(out, err);
1390         }
1391
1392         dlm_rep = req_capsule_server_get(&req->rq_pill, &RMF_DLM_REP);
1393
1394         ldlm_lock2desc(lock, &dlm_rep->lock_desc);
1395         ldlm_lock2handle(lock, &dlm_rep->lock_handle);
1396
1397         if (lock && lock->l_resource->lr_type == LDLM_EXTENT)
1398                 OBD_FAIL_TIMEOUT(OBD_FAIL_LDLM_BL_EVICT, 6);
1399
1400         /*
1401          * We never send a blocking AST until the lock is granted, but
1402          * we can tell it right now
1403          */
1404         lock_res_and_lock(lock);
1405
1406         /*
1407          * Now take into account flags to be inherited from original lock
1408          * request both in reply to client and in our own lock flags.
1409          */
1410         dlm_rep->lock_flags = ldlm_flags_to_wire(flags);
1411         lock->l_flags |= flags & LDLM_FL_INHERIT_MASK;
1412
1413         /*
1414          * Don't move a pending lock onto the export if it has already been
1415          * disconnected due to eviction (b=5683) or server umount (b=24324).
1416          * Cancel it now instead.
1417          */
1418         if (unlikely(req->rq_export->exp_disconnected ||
1419                      OBD_FAIL_CHECK(OBD_FAIL_LDLM_ENQUEUE_OLD_EXPORT))) {
1420                 LDLM_ERROR(lock, "lock on destroyed export %p", req->rq_export);
1421                 rc = -ENOTCONN;
1422         } else if (ldlm_is_ast_sent(lock)) {
1423                 /* fill lock desc for possible lock convert */
1424                 if (lock->l_blocking_lock &&
1425                     lock->l_resource->lr_type == LDLM_IBITS) {
1426                         struct ldlm_lock *bl_lock = lock->l_blocking_lock;
1427                         struct ldlm_lock_desc *rep_desc = &dlm_rep->lock_desc;
1428
1429                         LDLM_DEBUG(lock,
1430                                    "save blocking bits %llx in granted lock",
1431                                    bl_lock->l_policy_data.l_inodebits.bits);
1432                         /*
1433                          * If lock is blocked then save blocking ibits
1434                          * in returned lock policy for the possible lock
1435                          * convert on a client.
1436                          */
1437                         rep_desc->l_policy_data.l_inodebits.cancel_bits =
1438                                 bl_lock->l_policy_data.l_inodebits.bits;
1439                 }
1440                 dlm_rep->lock_flags |= ldlm_flags_to_wire(LDLM_FL_AST_SENT);
1441                 if (ldlm_is_granted(lock)) {
1442                         /*
1443                          * Only cancel lock if it was granted, because it would
1444                          * be destroyed immediately and would never be granted
1445                          * in the future, causing timeouts on client.  Not
1446                          * granted lock will be cancelled immediately after
1447                          * sending completion AST.
1448                          */
1449                         if (ldlm_is_cancel_on_block(lock)) {
1450                                 unlock_res_and_lock(lock);
1451                                 ldlm_lock_cancel(lock);
1452                                 lock_res_and_lock(lock);
1453                         } else {
1454                                 ldlm_add_waiting_lock(lock,
1455                                                       ldlm_bl_timeout(lock));
1456                         }
1457                 }
1458         }
1459         unlock_res_and_lock(lock);
1460
1461         EXIT;
1462 out:
1463         req->rq_status = rc ?: err; /* return either error - b=11190 */
1464         if (!req->rq_packed_final) {
1465                 err = lustre_pack_reply(req, 1, NULL, NULL);
1466                 if (rc == 0)
1467                         rc = err;
1468         }
1469
1470         /*
1471          * The LOCK_CHANGED code in ldlm_lock_enqueue depends on this
1472          * ldlm_reprocess_all.  If this moves, revisit that code. -phil
1473          */
1474         if (lock != NULL) {
1475                 LDLM_DEBUG(lock,
1476                            "server-side enqueue handler, sending reply (err=%d, rc=%d)",
1477                            err, rc);
1478
1479                 if (rc == 0 &&
1480                     req_capsule_has_field(&req->rq_pill, &RMF_DLM_LVB,
1481                                           RCL_SERVER) &&
1482                     ldlm_lvbo_size(lock) > 0) {
1483                         void *buf;
1484                         int buflen;
1485
1486 retry:
1487                         buf = req_capsule_server_get(&req->rq_pill,
1488                                                      &RMF_DLM_LVB);
1489                         LASSERTF(buf != NULL, "req %p, lock %p\n", req, lock);
1490                         buflen = req_capsule_get_size(&req->rq_pill,
1491                                         &RMF_DLM_LVB, RCL_SERVER);
1492                         /*
1493                          * non-replayed lock, delayed lvb init may
1494                          * need to be occur now
1495                          */
1496                         if ((buflen > 0) && !(flags & LDLM_FL_REPLAY)) {
1497                                 int rc2;
1498
1499                                 rc2 = ldlm_lvbo_fill(lock, buf, &buflen);
1500                                 if (rc2 >= 0) {
1501                                         req_capsule_shrink(&req->rq_pill,
1502                                                            &RMF_DLM_LVB,
1503                                                            rc2, RCL_SERVER);
1504                                 } else if (rc2 == -ERANGE) {
1505                                         rc2 = req_capsule_server_grow(
1506                                                         &req->rq_pill,
1507                                                         &RMF_DLM_LVB, buflen);
1508                                         if (!rc2) {
1509                                                 goto retry;
1510                                         } else {
1511                                                 /*
1512                                                  * if we can't grow the buffer,
1513                                                  * it's ok to return empty lvb
1514                                                  * to client.
1515                                                  */
1516                                                 req_capsule_shrink(
1517                                                         &req->rq_pill,
1518                                                         &RMF_DLM_LVB, 0,
1519                                                         RCL_SERVER);
1520                                         }
1521                                 } else {
1522                                         rc = rc2;
1523                                 }
1524                         } else if (flags & LDLM_FL_REPLAY) {
1525                                 /* no LVB resend upon replay */
1526                                 if (buflen > 0)
1527                                         req_capsule_shrink(&req->rq_pill,
1528                                                            &RMF_DLM_LVB,
1529                                                            0, RCL_SERVER);
1530                                 else
1531                                         rc = buflen;
1532                         } else {
1533                                 rc = buflen;
1534                         }
1535                 }
1536
1537                 if (rc != 0 && !(flags & LDLM_FL_RESENT)) {
1538                         if (lock->l_export) {
1539                                 ldlm_lock_cancel(lock);
1540                         } else {
1541                                 lock_res_and_lock(lock);
1542                                 ldlm_resource_unlink_lock(lock);
1543                                 ldlm_lock_destroy_nolock(lock);
1544                                 unlock_res_and_lock(lock);
1545
1546                         }
1547                 }
1548
1549                 if (!err && !ldlm_is_cbpending(lock) &&
1550                     dlm_req->lock_desc.l_resource.lr_type != LDLM_FLOCK)
1551                         ldlm_reprocess_all(lock->l_resource, lock);
1552
1553                 LDLM_LOCK_RELEASE(lock);
1554         }
1555
1556         LDLM_DEBUG_NOLOCK("server-side enqueue handler END (lock %p, rc %d)",
1557                           lock, rc);
1558
1559         return rc;
1560 }
1561
1562 /*
1563  * Clear the blocking lock, the race is possible between ldlm_handle_convert0()
1564  * and ldlm_work_bl_ast_lock(), so this is done under lock with check for NULL.
1565  */
1566 void ldlm_clear_blocking_lock(struct ldlm_lock *lock)
1567 {
1568         if (lock->l_blocking_lock) {
1569                 LDLM_LOCK_RELEASE(lock->l_blocking_lock);
1570                 lock->l_blocking_lock = NULL;
1571         }
1572 }
1573
1574 /* A lock can be converted to new ibits or mode and should be considered
1575  * as new lock. Clear all states related to a previous blocking AST
1576  * processing so new conflicts will cause new blocking ASTs.
1577  *
1578  * This is used during lock convert below and lock downgrade to COS mode in
1579  * ldlm_lock_mode_downgrade().
1580  */
1581 void ldlm_clear_blocking_data(struct ldlm_lock *lock)
1582 {
1583         ldlm_clear_ast_sent(lock);
1584         lock->l_bl_ast_run = 0;
1585         ldlm_clear_blocking_lock(lock);
1586 }
1587
1588 /**
1589  * Main LDLM entry point for server code to process lock conversion requests.
1590  */
1591 int ldlm_handle_convert0(struct ptlrpc_request *req,
1592                          const struct ldlm_request *dlm_req)
1593 {
1594         struct obd_export *exp = req->rq_export;
1595         struct ldlm_reply *dlm_rep;
1596         struct ldlm_lock *lock;
1597         __u64 bits;
1598         __u64 new_bits;
1599         int rc;
1600
1601         ENTRY;
1602
1603         if (exp && exp->exp_nid_stats && exp->exp_nid_stats->nid_ldlm_stats)
1604                 lprocfs_counter_incr(exp->exp_nid_stats->nid_ldlm_stats,
1605                                      LDLM_CONVERT - LDLM_FIRST_OPC);
1606
1607         rc = req_capsule_server_pack(&req->rq_pill);
1608         if (rc)
1609                 RETURN(rc);
1610
1611         dlm_rep = req_capsule_server_get(&req->rq_pill, &RMF_DLM_REP);
1612         dlm_rep->lock_flags = dlm_req->lock_flags;
1613
1614         lock = ldlm_handle2lock(&dlm_req->lock_handle[0]);
1615         if (!lock) {
1616                 LDLM_DEBUG_NOLOCK("server lock is canceled already");
1617                 req->rq_status = ELDLM_NO_LOCK_DATA;
1618                 RETURN(0);
1619         }
1620
1621         LDLM_DEBUG(lock, "server-side convert handler START");
1622
1623         lock_res_and_lock(lock);
1624         bits = lock->l_policy_data.l_inodebits.bits;
1625         new_bits = dlm_req->lock_desc.l_policy_data.l_inodebits.bits;
1626
1627         if (ldlm_is_cancel(lock)) {
1628                 LDLM_DEBUG(lock, "convert on canceled lock!");
1629                 unlock_res_and_lock(lock);
1630                 GOTO(out_put, rc = ELDLM_NO_LOCK_DATA);
1631         }
1632
1633         if (dlm_req->lock_desc.l_req_mode != lock->l_granted_mode) {
1634                 LDLM_ERROR(lock, "lock mode differs!");
1635                 unlock_res_and_lock(lock);
1636                 GOTO(out_put, rc = -EPROTO);
1637         }
1638
1639         if (bits == new_bits) {
1640                 /*
1641                  * This can be valid situation if CONVERT RPCs are
1642                  * re-ordered. Just finish silently
1643                  */
1644                 LDLM_DEBUG(lock, "lock is converted already!");
1645                 unlock_res_and_lock(lock);
1646         } else {
1647                 if (ldlm_is_waited(lock))
1648                         ldlm_del_waiting_lock(lock);
1649
1650                 ldlm_clear_cbpending(lock);
1651                 lock->l_policy_data.l_inodebits.cancel_bits = 0;
1652                 ldlm_inodebits_drop(lock, bits & ~new_bits);
1653
1654                 ldlm_clear_blocking_data(lock);
1655                 unlock_res_and_lock(lock);
1656
1657                 ldlm_reprocess_all(lock->l_resource, NULL);
1658         }
1659
1660         dlm_rep->lock_handle = lock->l_remote_handle;
1661         ldlm_ibits_policy_local_to_wire(&lock->l_policy_data,
1662                                         &dlm_rep->lock_desc.l_policy_data);
1663         rc = ELDLM_OK;
1664         EXIT;
1665 out_put:
1666         LDLM_DEBUG(lock, "server-side convert handler END, rc = %d", rc);
1667         LDLM_LOCK_PUT(lock);
1668         req->rq_status = rc;
1669         return 0;
1670 }
1671
1672 /**
1673  * Cancel all the locks whose handles are packed into ldlm_request
1674  *
1675  * Called by server code expecting such combined cancel activity
1676  * requests.
1677  */
1678 int ldlm_request_cancel(struct ptlrpc_request *req,
1679                         const struct ldlm_request *dlm_req,
1680                         int first, enum lustre_at_flags flags)
1681 {
1682         struct ldlm_resource *res, *pres = NULL;
1683         struct ldlm_lock *lock;
1684         int i, count, done = 0;
1685         unsigned int size;
1686
1687         ENTRY;
1688
1689         size = req_capsule_get_size(&req->rq_pill, &RMF_DLM_REQ, RCL_CLIENT);
1690         if (size <= offsetof(struct ldlm_request, lock_handle) ||
1691             (size - offsetof(struct ldlm_request, lock_handle)) /
1692              sizeof(struct lustre_handle) < dlm_req->lock_count)
1693                 RETURN(0);
1694
1695         count = dlm_req->lock_count ? dlm_req->lock_count : 1;
1696         if (first >= count)
1697                 RETURN(0);
1698
1699         if (count == 1 && dlm_req->lock_handle[0].cookie == 0)
1700                 RETURN(0);
1701
1702         /*
1703          * There is no lock on the server at the replay time,
1704          * skip lock cancelling to make replay tests to pass.
1705          */
1706         if (lustre_msg_get_flags(req->rq_reqmsg) & MSG_REPLAY)
1707                 RETURN(0);
1708
1709         LDLM_DEBUG_NOLOCK("server-side cancel handler START: %d locks, starting at %d",
1710                           count, first);
1711
1712         for (i = first; i < count; i++) {
1713                 lock = ldlm_handle2lock(&dlm_req->lock_handle[i]);
1714                 if (!lock) {
1715                         /* below message checked in replay-single.sh test_36 */
1716                         LDLM_DEBUG_NOLOCK("server-side cancel handler stale lock (cookie %llu)",
1717                                           dlm_req->lock_handle[i].cookie);
1718                         continue;
1719                 }
1720
1721                 res = lock->l_resource;
1722                 done++;
1723
1724                 /*
1725                  * This code is an optimization to only attempt lock
1726                  * granting on the resource (that could be CPU-expensive)
1727                  * after we are done cancelling lock in that resource.
1728                  */
1729                 if (res != pres) {
1730                         if (pres != NULL) {
1731                                 ldlm_reprocess_all(pres, NULL);
1732                                 LDLM_RESOURCE_DELREF(pres);
1733                                 ldlm_resource_putref(pres);
1734                         }
1735                         if (res != NULL) {
1736                                 ldlm_resource_getref(res);
1737                                 LDLM_RESOURCE_ADDREF(res);
1738
1739                                 if (!ldlm_is_discard_data(lock))
1740                                         ldlm_lvbo_update(res, lock,
1741                                                          NULL, 1);
1742                         }
1743                         pres = res;
1744                 }
1745
1746                 if ((flags & LATF_STATS) && ldlm_is_ast_sent(lock) &&
1747                     lock->l_blast_sent != 0) {
1748                         timeout_t delay = 0;
1749
1750                         if (ktime_get_real_seconds() > lock->l_blast_sent)
1751                                 delay = ktime_get_real_seconds() -
1752                                         lock->l_blast_sent;
1753                         LDLM_DEBUG(lock,
1754                                    "server cancels blocked lock after %ds",
1755                                    delay);
1756                         at_measured(&lock->l_export->exp_bl_lock_at, delay);
1757                 }
1758                 ldlm_lock_cancel(lock);
1759                 LDLM_LOCK_PUT(lock);
1760         }
1761         if (pres != NULL) {
1762                 ldlm_reprocess_all(pres, NULL);
1763                 LDLM_RESOURCE_DELREF(pres);
1764                 ldlm_resource_putref(pres);
1765         }
1766         LDLM_DEBUG_NOLOCK("server-side cancel handler END");
1767         RETURN(done);
1768 }
1769 EXPORT_SYMBOL(ldlm_request_cancel);
1770
1771 /**
1772  * Main LDLM entry point for server code to cancel locks.
1773  *
1774  * Typically gets called from service handler on LDLM_CANCEL opc.
1775  */
1776 int ldlm_handle_cancel(struct ptlrpc_request *req)
1777 {
1778         struct ldlm_request *dlm_req;
1779         int rc;
1780
1781         ENTRY;
1782
1783         dlm_req = req_capsule_client_get(&req->rq_pill, &RMF_DLM_REQ);
1784         if (dlm_req == NULL) {
1785                 CDEBUG(D_INFO, "bad request buffer for cancel\n");
1786                 RETURN(-EFAULT);
1787         }
1788
1789         if (req_capsule_get_size(&req->rq_pill, &RMF_DLM_REQ, RCL_CLIENT) <
1790             offsetof(struct ldlm_request, lock_handle[1]))
1791                 RETURN(-EPROTO);
1792
1793         if (req->rq_export && req->rq_export->exp_nid_stats &&
1794             req->rq_export->exp_nid_stats->nid_ldlm_stats)
1795                 lprocfs_counter_incr(req->rq_export->exp_nid_stats->nid_ldlm_stats,
1796                                      LDLM_CANCEL - LDLM_FIRST_OPC);
1797
1798         rc = req_capsule_server_pack(&req->rq_pill);
1799         if (rc)
1800                 RETURN(rc);
1801
1802         if (!ldlm_request_cancel(req, dlm_req, 0, LATF_STATS))
1803                 req->rq_status = LUSTRE_ESTALE;
1804
1805         RETURN(ptlrpc_reply(req));
1806 }
1807 #endif /* HAVE_SERVER_SUPPORT */
1808
1809 /**
1810  * Server may pass additional information about blocking lock.
1811  * For IBITS locks it is conflicting bits which can be used for
1812  * lock convert instead of cancel.
1813  */
1814 void ldlm_bl_desc2lock(const struct ldlm_lock_desc *ld, struct ldlm_lock *lock)
1815 {
1816         struct ldlm_namespace *ns = ldlm_lock_to_ns(lock);
1817
1818         check_res_locked(lock->l_resource);
1819         if (ns_is_client(ns) && ld &&
1820             (lock->l_resource->lr_type == LDLM_IBITS)) {
1821                 /*
1822                  * Lock description contains policy of blocking lock,
1823                  * and its cancel_bits is used to pass conflicting bits.
1824                  * NOTE: ld can be NULL or can be not NULL but zeroed if
1825                  * passed from ldlm_bl_thread_blwi(), check below used bits
1826                  * in ld to make sure it is valid description.
1827                  *
1828                  * If server may replace lock resource keeping the same cookie,
1829                  * never use cancel bits from different resource, full cancel
1830                  * is to be used.
1831                  */
1832                 if (ld->l_policy_data.l_inodebits.cancel_bits &&
1833                     ldlm_res_eq(&ld->l_resource.lr_name,
1834                                 &lock->l_resource->lr_name) &&
1835                     !(ldlm_is_cbpending(lock) &&
1836                       lock->l_policy_data.l_inodebits.cancel_bits == 0)) {
1837                         /* always combine conflicting ibits */
1838                         lock->l_policy_data.l_inodebits.cancel_bits |=
1839                                 ld->l_policy_data.l_inodebits.cancel_bits;
1840                 } else {
1841                         /* If cancel_bits are not obtained or
1842                          * if the lock is already CBPENDING and
1843                          * has no cancel_bits set
1844                          * - the full lock is to be cancelled
1845                          */
1846                         lock->l_policy_data.l_inodebits.cancel_bits = 0;
1847                 }
1848         }
1849 }
1850
1851 /**
1852  * Callback handler for receiving incoming blocking ASTs.
1853  *
1854  * This can only happen on client side.
1855  */
1856 void ldlm_handle_bl_callback(struct ldlm_namespace *ns,
1857                              struct ldlm_lock_desc *ld, struct ldlm_lock *lock)
1858 {
1859         int do_ast;
1860
1861         ENTRY;
1862
1863         LDLM_DEBUG(lock, "client blocking AST callback handler");
1864
1865         lock_res_and_lock(lock);
1866
1867         /* get extra information from desc if any */
1868         ldlm_bl_desc2lock(ld, lock);
1869         ldlm_set_cbpending(lock);
1870
1871         do_ast = (!lock->l_readers && !lock->l_writers);
1872         unlock_res_and_lock(lock);
1873
1874         if (do_ast) {
1875                 CDEBUG(D_DLMTRACE,
1876                        "Lock %p already unused, calling callback (%p)\n",
1877                        lock, lock->l_blocking_ast);
1878                 if (lock->l_blocking_ast != NULL)
1879                         lock->l_blocking_ast(lock, ld, lock->l_ast_data,
1880                                              LDLM_CB_BLOCKING);
1881         } else {
1882                 CDEBUG(D_DLMTRACE,
1883                        "Lock %p is referenced, will be cancelled later\n",
1884                        lock);
1885         }
1886
1887         LDLM_DEBUG(lock, "client blocking callback handler END");
1888         LDLM_LOCK_RELEASE(lock);
1889         EXIT;
1890 }
1891
1892 static int ldlm_callback_reply(struct ptlrpc_request *req, int rc)
1893 {
1894         if (req->rq_no_reply)
1895                 return 0;
1896
1897         req->rq_status = rc;
1898         if (!req->rq_packed_final) {
1899                 rc = lustre_pack_reply(req, 1, NULL, NULL);
1900                 if (rc)
1901                         return rc;
1902         }
1903         return ptlrpc_reply(req);
1904 }
1905
1906 /**
1907  * Callback handler for receiving incoming completion ASTs.
1908  *
1909  * This only can happen on client side.
1910  */
1911 static int ldlm_handle_cp_callback(struct ptlrpc_request *req,
1912                                     struct ldlm_namespace *ns,
1913                                     struct ldlm_request *dlm_req,
1914                                     struct ldlm_lock *lock)
1915 {
1916         LIST_HEAD(ast_list);
1917         int lvb_len;
1918         int rc = 0;
1919
1920         ENTRY;
1921
1922         LDLM_DEBUG(lock, "client completion callback handler START");
1923
1924         if (OBD_FAIL_CHECK(OBD_FAIL_LDLM_CANCEL_BL_CB_RACE)) {
1925                 long to = cfs_time_seconds(1);
1926
1927                 ldlm_callback_reply(req, 0);
1928
1929                 while (to > 0) {
1930                         schedule_timeout_interruptible(to);
1931                         if (ldlm_is_granted(lock) ||
1932                             ldlm_is_destroyed(lock))
1933                                 break;
1934                 }
1935         }
1936
1937         lvb_len = req_capsule_get_size(&req->rq_pill, &RMF_DLM_LVB, RCL_CLIENT);
1938         if (lvb_len < 0) {
1939                 LDLM_ERROR(lock, "Fail to get lvb_len, rc = %d", lvb_len);
1940                 GOTO(out, rc = lvb_len);
1941         } else if (lvb_len > 0) {
1942                 if (lock->l_lvb_len > 0) {
1943                         /* for extent lock, lvb contains ost_lvb{}. */
1944                         LASSERT(lock->l_lvb_data != NULL);
1945
1946                         if (unlikely(lock->l_lvb_len < lvb_len)) {
1947                                 LDLM_ERROR(lock,
1948                                            "Replied LVB is larger than expectation, expected = %d, replied = %d",
1949                                            lock->l_lvb_len, lvb_len);
1950                                 GOTO(out, rc = -EINVAL);
1951                         }
1952                 }
1953         }
1954
1955         lock_res_and_lock(lock);
1956
1957         if (!ldlm_res_eq(&dlm_req->lock_desc.l_resource.lr_name,
1958                          &lock->l_resource->lr_name)) {
1959                 ldlm_resource_unlink_lock(lock);
1960                 unlock_res_and_lock(lock);
1961                 rc = ldlm_lock_change_resource(ns, lock,
1962                                 &dlm_req->lock_desc.l_resource.lr_name);
1963                 if (rc < 0) {
1964                         LDLM_ERROR(lock, "Failed to allocate resource");
1965                         GOTO(out, rc);
1966                 }
1967                 LDLM_DEBUG(lock, "completion AST, new resource");
1968                 lock_res_and_lock(lock);
1969         }
1970
1971         if (ldlm_is_failed(lock)) {
1972                 unlock_res_and_lock(lock);
1973                 LDLM_LOCK_RELEASE(lock);
1974                 RETURN(-EINVAL);
1975         }
1976
1977         if (ldlm_is_destroyed(lock) ||
1978             ldlm_is_granted(lock)) {
1979                 /* b=11300: the lock has already been granted */
1980                 unlock_res_and_lock(lock);
1981                 LDLM_DEBUG(lock, "Double grant race happened");
1982                 GOTO(out, rc = 0);
1983         }
1984
1985         /*
1986          * If we receive the completion AST before the actual enqueue returned,
1987          * then we might need to switch lock modes, resources, or extents.
1988          */
1989         if (dlm_req->lock_desc.l_granted_mode != lock->l_req_mode) {
1990                 lock->l_req_mode = dlm_req->lock_desc.l_granted_mode;
1991                 LDLM_DEBUG(lock, "completion AST, new lock mode");
1992         }
1993
1994         if (lock->l_resource->lr_type != LDLM_PLAIN) {
1995                 ldlm_convert_policy_to_local(req->rq_export,
1996                                           dlm_req->lock_desc.l_resource.lr_type,
1997                                           &dlm_req->lock_desc.l_policy_data,
1998                                           &lock->l_policy_data);
1999                 LDLM_DEBUG(lock, "completion AST, new policy data");
2000         }
2001
2002         ldlm_resource_unlink_lock(lock);
2003
2004         if (dlm_req->lock_flags & LDLM_FL_AST_SENT) {
2005                 /*
2006                  * BL_AST locks are not needed in LRU.
2007                  * Let ldlm_cancel_lru() be fast.
2008                  */
2009                 ldlm_lock_remove_from_lru(lock);
2010                 ldlm_bl_desc2lock(&dlm_req->lock_desc, lock);
2011                 lock->l_flags |= LDLM_FL_CBPENDING | LDLM_FL_BL_AST;
2012                 LDLM_DEBUG(lock, "completion AST includes blocking AST");
2013         }
2014
2015         if (lock->l_lvb_len > 0) {
2016                 rc = ldlm_fill_lvb(lock, &req->rq_pill, RCL_CLIENT,
2017                                    lock->l_lvb_data, lvb_len);
2018                 if (rc < 0) {
2019                         unlock_res_and_lock(lock);
2020                         GOTO(out, rc);
2021                 }
2022         }
2023
2024         ldlm_grant_lock(lock, &ast_list);
2025         unlock_res_and_lock(lock);
2026
2027         LDLM_DEBUG(lock, "callback handler finished, about to run_ast_work");
2028
2029         /*
2030          * Let Enqueue to call osc_lock_upcall() and initialize
2031          * l_ast_data
2032          */
2033         OBD_FAIL_TIMEOUT(OBD_FAIL_OSC_CP_ENQ_RACE, 2);
2034
2035         ldlm_run_ast_work(ns, &ast_list, LDLM_WORK_CP_AST);
2036
2037         LDLM_DEBUG_NOLOCK("client completion callback handler END (lock %p)",
2038                           lock);
2039         GOTO(out, rc);
2040
2041 out:
2042         if (rc < 0) {
2043                 lock_res_and_lock(lock);
2044                 ldlm_set_failed(lock);
2045                 unlock_res_and_lock(lock);
2046                 wake_up(&lock->l_waitq);
2047         }
2048         LDLM_LOCK_RELEASE(lock);
2049
2050         return 0;
2051 }
2052
2053 /**
2054  * Callback handler for receiving incoming glimpse ASTs.
2055  *
2056  * This only can happen on client side.  After handling the glimpse AST
2057  * we also consider dropping the lock here if it is unused locally for a
2058  * long time.
2059  */
2060 static void ldlm_handle_gl_callback(struct ptlrpc_request *req,
2061                                     struct ldlm_namespace *ns,
2062                                     struct ldlm_request *dlm_req,
2063                                     struct ldlm_lock *lock)
2064 {
2065         struct ldlm_lock_desc *ld = &dlm_req->lock_desc;
2066         int rc = -ENOSYS;
2067
2068         ENTRY;
2069
2070         LDLM_DEBUG(lock, "client glimpse AST callback handler");
2071
2072         if (lock->l_glimpse_ast != NULL)
2073                 rc = lock->l_glimpse_ast(lock, req);
2074
2075         if (req->rq_repmsg != NULL) {
2076                 ptlrpc_reply(req);
2077         } else {
2078                 req->rq_status = rc;
2079                 ptlrpc_error(req);
2080         }
2081
2082         lock_res_and_lock(lock);
2083         if (lock->l_granted_mode == LCK_PW &&
2084             !lock->l_readers && !lock->l_writers &&
2085             ktime_after(ktime_get(),
2086                         ktime_add(lock->l_last_used,
2087                                   ktime_set(ns->ns_dirty_age_limit, 0)))) {
2088                 unlock_res_and_lock(lock);
2089
2090                 /* For MDS glimpse it is always DOM lock, set corresponding
2091                  * cancel_bits to perform lock convert if needed
2092                  */
2093                 if (lock->l_resource->lr_type == LDLM_IBITS)
2094                         ld->l_policy_data.l_inodebits.cancel_bits =
2095                                                         MDS_INODELOCK_DOM;
2096                 if (ldlm_bl_to_thread_lock(ns, ld, lock))
2097                         ldlm_handle_bl_callback(ns, ld, lock);
2098
2099                 EXIT;
2100                 return;
2101         }
2102         unlock_res_and_lock(lock);
2103         LDLM_LOCK_RELEASE(lock);
2104         EXIT;
2105 }
2106
2107 static int __ldlm_bl_to_thread(struct ldlm_bl_work_item *blwi,
2108                                enum ldlm_cancel_flags cancel_flags)
2109 {
2110         struct ldlm_bl_pool *blp = ldlm_state->ldlm_bl_pool;
2111
2112         ENTRY;
2113
2114         spin_lock(&blp->blp_lock);
2115         if (blwi->blwi_lock &&
2116             ldlm_is_discard_data(blwi->blwi_lock)) {
2117                 /* add LDLM_FL_DISCARD_DATA requests to the priority list */
2118                 list_add_tail(&blwi->blwi_entry, &blp->blp_prio_list);
2119         } else {
2120                 /* other blocking callbacks are added to the regular list */
2121                 list_add_tail(&blwi->blwi_entry, &blp->blp_list);
2122         }
2123         spin_unlock(&blp->blp_lock);
2124
2125         wake_up(&blp->blp_waitq);
2126
2127         /*
2128          * can not check blwi->blwi_flags as blwi could be already freed in
2129          * LCF_ASYNC mode
2130          */
2131         if (!(cancel_flags & LCF_ASYNC))
2132                 wait_for_completion(&blwi->blwi_comp);
2133
2134         RETURN(0);
2135 }
2136
2137 static inline void init_blwi(struct ldlm_bl_work_item *blwi,
2138                              struct ldlm_namespace *ns,
2139                              struct ldlm_lock_desc *ld,
2140                              struct list_head *cancels, int count,
2141                              struct ldlm_lock *lock,
2142                              enum ldlm_cancel_flags cancel_flags)
2143 {
2144         init_completion(&blwi->blwi_comp);
2145         INIT_LIST_HEAD(&blwi->blwi_head);
2146
2147         if (current->flags & PF_MEMALLOC)
2148                 blwi->blwi_mem_pressure = 1;
2149
2150         blwi->blwi_ns = ns;
2151         blwi->blwi_flags = cancel_flags;
2152         if (ld != NULL)
2153                 blwi->blwi_ld = *ld;
2154         if (count) {
2155                 list_splice_init(cancels, &blwi->blwi_head);
2156                 blwi->blwi_count = count;
2157         } else {
2158                 blwi->blwi_lock = lock;
2159         }
2160 }
2161
2162 /**
2163  * Queues a list of locks \a cancels containing \a count locks
2164  * for later processing by a blocking thread.  If \a count is zero,
2165  * then the lock referenced as \a lock is queued instead.
2166  *
2167  * The blocking thread would then call ->l_blocking_ast callback in the lock.
2168  * If list addition fails an error is returned and caller is supposed to
2169  * call ->l_blocking_ast itself.
2170  */
2171 static int ldlm_bl_to_thread(struct ldlm_namespace *ns,
2172                              struct ldlm_lock_desc *ld,
2173                              struct ldlm_lock *lock,
2174                              struct list_head *cancels, int count,
2175                              enum ldlm_cancel_flags cancel_flags)
2176 {
2177         ENTRY;
2178
2179         if (cancels && count == 0)
2180                 RETURN(0);
2181
2182         if (cancel_flags & LCF_ASYNC) {
2183                 struct ldlm_bl_work_item *blwi;
2184
2185                 OBD_ALLOC(blwi, sizeof(*blwi));
2186                 if (blwi == NULL)
2187                         RETURN(-ENOMEM);
2188                 init_blwi(blwi, ns, ld, cancels, count, lock, cancel_flags);
2189
2190                 RETURN(__ldlm_bl_to_thread(blwi, cancel_flags));
2191         } else {
2192                 /*
2193                  * if it is synchronous call do minimum mem alloc, as it could
2194                  * be triggered from kernel shrinker
2195                  */
2196                 struct ldlm_bl_work_item blwi;
2197
2198                 memset(&blwi, 0, sizeof(blwi));
2199                 init_blwi(&blwi, ns, ld, cancels, count, lock, cancel_flags);
2200                 RETURN(__ldlm_bl_to_thread(&blwi, cancel_flags));
2201         }
2202 }
2203
2204
2205 int ldlm_bl_to_thread_lock(struct ldlm_namespace *ns, struct ldlm_lock_desc *ld,
2206                            struct ldlm_lock *lock)
2207 {
2208         return ldlm_bl_to_thread(ns, ld, lock, NULL, 0, LCF_ASYNC);
2209 }
2210
2211 int ldlm_bl_to_thread_list(struct ldlm_namespace *ns, struct ldlm_lock_desc *ld,
2212                            struct list_head *cancels, int count,
2213                            enum ldlm_cancel_flags cancel_flags)
2214 {
2215         return ldlm_bl_to_thread(ns, ld, NULL, cancels, count, cancel_flags);
2216 }
2217
2218 int ldlm_bl_thread_wakeup(void)
2219 {
2220         wake_up(&ldlm_state->ldlm_bl_pool->blp_waitq);
2221         return 0;
2222 }
2223
2224 /* Setinfo coming from Server (eg MDT) to Client (eg MDC)! */
2225 static int ldlm_handle_setinfo(struct ptlrpc_request *req)
2226 {
2227         struct obd_device *obd = req->rq_export->exp_obd;
2228         char *key;
2229         void *val;
2230         int keylen, vallen;
2231         int rc = -ENOSYS;
2232
2233         ENTRY;
2234
2235         DEBUG_REQ(D_HSM, req, "%s: handle setinfo", obd->obd_name);
2236
2237         req_capsule_set(&req->rq_pill, &RQF_OBD_SET_INFO);
2238
2239         key = req_capsule_client_get(&req->rq_pill, &RMF_SETINFO_KEY);
2240         if (key == NULL) {
2241                 DEBUG_REQ(D_IOCTL, req, "no set_info key");
2242                 RETURN(-EFAULT);
2243         }
2244         keylen = req_capsule_get_size(&req->rq_pill, &RMF_SETINFO_KEY,
2245                                       RCL_CLIENT);
2246         val = req_capsule_client_get(&req->rq_pill, &RMF_SETINFO_VAL);
2247         if (val == NULL) {
2248                 DEBUG_REQ(D_IOCTL, req, "no set_info val");
2249                 RETURN(-EFAULT);
2250         }
2251         vallen = req_capsule_get_size(&req->rq_pill, &RMF_SETINFO_VAL,
2252                                       RCL_CLIENT);
2253
2254         /* We are responsible for swabbing contents of val */
2255
2256         if (KEY_IS(KEY_HSM_COPYTOOL_SEND))
2257                 /* Pass it on to mdc (the "export" in this case) */
2258                 rc = obd_set_info_async(req->rq_svc_thread->t_env,
2259                                         req->rq_export,
2260                                         sizeof(KEY_HSM_COPYTOOL_SEND),
2261                                         KEY_HSM_COPYTOOL_SEND,
2262                                         vallen, val, NULL);
2263         else
2264                 DEBUG_REQ(D_WARNING, req, "ignoring unknown key '%s'", key);
2265
2266         return rc;
2267 }
2268
2269 static inline void ldlm_callback_errmsg(struct ptlrpc_request *req,
2270                                         const char *msg, int rc,
2271                                         const struct lustre_handle *handle)
2272 {
2273         DEBUG_REQ((req->rq_no_reply || rc) ? D_WARNING : D_DLMTRACE, req,
2274                   "%s, NID=%s lock=%#llx: rc = %d",
2275                   msg, libcfs_id2str(req->rq_peer),
2276                   handle ? handle->cookie : 0, rc);
2277         if (req->rq_no_reply)
2278                 CWARN("No reply was sent, maybe cause b=21636.\n");
2279         else if (rc)
2280                 CWARN("Send reply failed, maybe cause b=21636.\n");
2281 }
2282
2283 /* TODO: handle requests in a similar way as MDT: see mdt_handle_common() */
2284 static int ldlm_callback_handler(struct ptlrpc_request *req)
2285 {
2286         struct ldlm_namespace *ns;
2287         struct ldlm_request *dlm_req;
2288         struct ldlm_lock *lock;
2289         int rc;
2290
2291         ENTRY;
2292
2293         /*
2294          * Requests arrive in sender's byte order.  The ptlrpc service
2295          * handler has already checked and, if necessary, byte-swapped the
2296          * incoming request message body, but I am responsible for the
2297          * message buffers.
2298          */
2299
2300         /* do nothing for sec context finalize */
2301         if (lustre_msg_get_opc(req->rq_reqmsg) == SEC_CTX_FINI)
2302                 RETURN(0);
2303
2304         req_capsule_init(&req->rq_pill, req, RCL_SERVER);
2305
2306         if (req->rq_export == NULL) {
2307                 rc = ldlm_callback_reply(req, -ENOTCONN);
2308                 ldlm_callback_errmsg(req, "Operate on unconnected server",
2309                                      rc, NULL);
2310                 RETURN(0);
2311         }
2312
2313         LASSERT(req->rq_export != NULL);
2314         LASSERT(req->rq_export->exp_obd != NULL);
2315
2316         switch (lustre_msg_get_opc(req->rq_reqmsg)) {
2317         case LDLM_BL_CALLBACK:
2318                 if (OBD_FAIL_CHECK(OBD_FAIL_LDLM_BL_CALLBACK_NET)) {
2319                         if (cfs_fail_err)
2320                                 ldlm_callback_reply(req, -(int)cfs_fail_err);
2321                         RETURN(0);
2322                 }
2323                 break;
2324         case LDLM_CP_CALLBACK:
2325                 if (OBD_FAIL_CHECK(OBD_FAIL_LDLM_CP_CALLBACK_NET))
2326                         RETURN(0);
2327                 break;
2328         case LDLM_GL_CALLBACK:
2329                 if (OBD_FAIL_CHECK(OBD_FAIL_LDLM_GL_CALLBACK_NET))
2330                         RETURN(0);
2331                 break;
2332         case LDLM_SET_INFO:
2333                 rc = ldlm_handle_setinfo(req);
2334                 ldlm_callback_reply(req, rc);
2335                 RETURN(0);
2336         default:
2337                 CERROR("unknown opcode %u\n",
2338                        lustre_msg_get_opc(req->rq_reqmsg));
2339                 ldlm_callback_reply(req, -EPROTO);
2340                 RETURN(0);
2341         }
2342
2343         ns = req->rq_export->exp_obd->obd_namespace;
2344         LASSERT(ns != NULL);
2345
2346         req_capsule_set(&req->rq_pill, &RQF_LDLM_CALLBACK);
2347
2348         dlm_req = req_capsule_client_get(&req->rq_pill, &RMF_DLM_REQ);
2349         if (dlm_req == NULL) {
2350                 rc = ldlm_callback_reply(req, -EPROTO);
2351                 ldlm_callback_errmsg(req, "Operate without parameter", rc,
2352                                      NULL);
2353                 RETURN(0);
2354         }
2355
2356         /*
2357          * Force a known safe race, send a cancel to the server for a lock
2358          * which the server has already started a blocking callback on.
2359          */
2360         if (OBD_FAIL_CHECK(OBD_FAIL_LDLM_CANCEL_BL_CB_RACE) &&
2361             lustre_msg_get_opc(req->rq_reqmsg) == LDLM_BL_CALLBACK) {
2362                 rc = ldlm_cli_cancel(&dlm_req->lock_handle[0], 0);
2363                 if (rc < 0)
2364                         CERROR("ldlm_cli_cancel: %d\n", rc);
2365         }
2366
2367         lock = ldlm_handle2lock_long(&dlm_req->lock_handle[0], 0);
2368         if (!lock) {
2369                 CDEBUG(D_DLMTRACE,
2370                        "callback on lock %#llx - lock disappeared\n",
2371                        dlm_req->lock_handle[0].cookie);
2372                 rc = ldlm_callback_reply(req, -EINVAL);
2373                 ldlm_callback_errmsg(req, "Operate with invalid parameter", rc,
2374                                      &dlm_req->lock_handle[0]);
2375                 RETURN(0);
2376         }
2377
2378         if (ldlm_is_fail_loc(lock) &&
2379             lustre_msg_get_opc(req->rq_reqmsg) == LDLM_BL_CALLBACK)
2380                 OBD_RACE(OBD_FAIL_LDLM_CP_BL_RACE);
2381
2382         /* Copy hints/flags (e.g. LDLM_FL_DISCARD_DATA) from AST. */
2383         lock_res_and_lock(lock);
2384         lock->l_flags |= ldlm_flags_from_wire(dlm_req->lock_flags &
2385                                               LDLM_FL_AST_MASK);
2386         if (lustre_msg_get_opc(req->rq_reqmsg) == LDLM_BL_CALLBACK) {
2387                 /*
2388                  * If somebody cancels lock and cache is already dropped,
2389                  * or lock is failed before cp_ast received on client,
2390                  * we can tell the server we have no lock. Otherwise, we
2391                  * should send cancel after dropping the cache.
2392                  */
2393                 if ((ldlm_is_canceling(lock) && ldlm_is_bl_done(lock)) ||
2394                      ldlm_is_failed(lock)) {
2395                         LDLM_DEBUG(lock,
2396                                    "callback on lock %llx - lock disappeared",
2397                                    dlm_req->lock_handle[0].cookie);
2398                         unlock_res_and_lock(lock);
2399                         LDLM_LOCK_RELEASE(lock);
2400                         rc = ldlm_callback_reply(req, -EINVAL);
2401                         ldlm_callback_errmsg(req, "Operate on stale lock", rc,
2402                                              &dlm_req->lock_handle[0]);
2403                         RETURN(0);
2404                 }
2405                 /*
2406                  * BL_AST locks are not needed in LRU.
2407                  * Let ldlm_cancel_lru() be fast.
2408                  */
2409                 ldlm_lock_remove_from_lru(lock);
2410                 ldlm_set_bl_ast(lock);
2411         }
2412         unlock_res_and_lock(lock);
2413
2414         /*
2415          * We want the ost thread to get this reply so that it can respond
2416          * to ost requests (write cache writeback) that might be triggered
2417          * in the callback.
2418          *
2419          * But we'd also like to be able to indicate in the reply that we're
2420          * cancelling right now, because it's unused, or have an intent result
2421          * in the reply, so we might have to push the responsibility for sending
2422          * the reply down into the AST handlers, alas.
2423          */
2424
2425         switch (lustre_msg_get_opc(req->rq_reqmsg)) {
2426         case LDLM_BL_CALLBACK:
2427                 CDEBUG(D_INODE, "blocking ast\n");
2428                 req_capsule_extend(&req->rq_pill, &RQF_LDLM_BL_CALLBACK);
2429                 if (!ldlm_is_cancel_on_block(lock)) {
2430                         rc = ldlm_callback_reply(req, 0);
2431                         if (req->rq_no_reply || rc)
2432                                 ldlm_callback_errmsg(req, "Normal process", rc,
2433                                                      &dlm_req->lock_handle[0]);
2434                 }
2435                 if (ldlm_bl_to_thread_lock(ns, &dlm_req->lock_desc, lock))
2436                         ldlm_handle_bl_callback(ns, &dlm_req->lock_desc, lock);
2437                 break;
2438         case LDLM_CP_CALLBACK:
2439                 CDEBUG(D_INODE, "completion ast\n");
2440                 req_capsule_extend(&req->rq_pill, &RQF_LDLM_CP_CALLBACK);
2441                 rc = ldlm_handle_cp_callback(req, ns, dlm_req, lock);
2442                 if (!OBD_FAIL_CHECK(OBD_FAIL_LDLM_CANCEL_BL_CB_RACE))
2443                         ldlm_callback_reply(req, rc);
2444                 break;
2445         case LDLM_GL_CALLBACK:
2446                 CDEBUG(D_INODE, "glimpse ast\n");
2447                 req_capsule_extend(&req->rq_pill, &RQF_LDLM_GL_CALLBACK);
2448                 ldlm_handle_gl_callback(req, ns, dlm_req, lock);
2449                 break;
2450         default:
2451                 LBUG(); /* checked above */
2452         }
2453
2454         RETURN(0);
2455 }
2456
2457 #ifdef HAVE_SERVER_SUPPORT
2458 /**
2459  * Main handler for canceld thread.
2460  *
2461  * Separated into its own thread to avoid deadlocks.
2462  */
2463 static int ldlm_cancel_handler(struct ptlrpc_request *req)
2464 {
2465         int rc;
2466
2467         ENTRY;
2468
2469         /*
2470          * Requests arrive in sender's byte order.  The ptlrpc service
2471          * handler has already checked and, if necessary, byte-swapped the
2472          * incoming request message body, but I am responsible for the
2473          * message buffers.
2474          */
2475
2476         req_capsule_init(&req->rq_pill, req, RCL_SERVER);
2477
2478         if (req->rq_export == NULL) {
2479                 struct ldlm_request *dlm_req;
2480
2481                 CERROR("%s from %s arrived at %llu with bad export cookie %llu\n",
2482                        ll_opcode2str(lustre_msg_get_opc(req->rq_reqmsg)),
2483                        libcfs_nid2str(req->rq_peer.nid),
2484                        (unsigned long long)req->rq_arrival_time.tv_sec,
2485                        lustre_msg_get_handle(req->rq_reqmsg)->cookie);
2486
2487                 if (lustre_msg_get_opc(req->rq_reqmsg) == LDLM_CANCEL) {
2488                         req_capsule_set(&req->rq_pill, &RQF_LDLM_CALLBACK);
2489                         dlm_req = req_capsule_client_get(&req->rq_pill,
2490                                                          &RMF_DLM_REQ);
2491                         if (dlm_req != NULL)
2492                                 ldlm_lock_dump_handle(D_ERROR,
2493                                                       &dlm_req->lock_handle[0]);
2494                 }
2495                 ldlm_callback_reply(req, -ENOTCONN);
2496                 RETURN(0);
2497         }
2498
2499         switch (lustre_msg_get_opc(req->rq_reqmsg)) {
2500         /* XXX FIXME move this back to mds/handler.c, b=249 */
2501         case LDLM_CANCEL:
2502                 req_capsule_set(&req->rq_pill, &RQF_LDLM_CANCEL);
2503                 CDEBUG(D_INODE, "cancel\n");
2504                 if (CFS_FAIL_CHECK(OBD_FAIL_LDLM_CANCEL_NET) ||
2505                     CFS_FAIL_CHECK(OBD_FAIL_PTLRPC_CANCEL_RESEND) ||
2506                     CFS_FAIL_CHECK(OBD_FAIL_LDLM_BL_EVICT))
2507                         RETURN(0);
2508                 rc = ldlm_handle_cancel(req);
2509                 break;
2510         case LDLM_CONVERT:
2511         {
2512                 struct ldlm_request *dlm_req;
2513
2514                 req_capsule_set(&req->rq_pill, &RQF_LDLM_CONVERT);
2515                 CDEBUG(D_INODE, "convert\n");
2516
2517                 dlm_req = req_capsule_client_get(&req->rq_pill, &RMF_DLM_REQ);
2518                 if (dlm_req == NULL) {
2519                         CDEBUG(D_INFO, "bad request buffer for cancel\n");
2520                         rc = ldlm_callback_reply(req, -EPROTO);
2521                 } else {
2522                         req->rq_status = ldlm_handle_convert0(req, dlm_req);
2523                         rc = ptlrpc_reply(req);
2524                 }
2525                 break;
2526         }
2527         default:
2528                 CERROR("invalid opcode %d\n",
2529                        lustre_msg_get_opc(req->rq_reqmsg));
2530                 req_capsule_set(&req->rq_pill, &RQF_LDLM_CALLBACK);
2531                 rc = ldlm_callback_reply(req, -EINVAL);
2532         }
2533
2534         RETURN(rc);
2535 }
2536
2537 static int ldlm_cancel_hpreq_lock_match(struct ptlrpc_request *req,
2538                                         struct ldlm_lock *lock)
2539 {
2540         struct ldlm_request *dlm_req;
2541         struct lustre_handle lockh;
2542         int rc = 0;
2543         int i;
2544
2545         ENTRY;
2546
2547         dlm_req = req_capsule_client_get(&req->rq_pill, &RMF_DLM_REQ);
2548         if (dlm_req == NULL)
2549                 RETURN(0);
2550
2551         ldlm_lock2handle(lock, &lockh);
2552         for (i = 0; i < dlm_req->lock_count; i++) {
2553                 if (lustre_handle_equal(&dlm_req->lock_handle[i],
2554                                         &lockh)) {
2555                         DEBUG_REQ(D_RPCTRACE, req,
2556                                   "Prio raised by lock %#llx", lockh.cookie);
2557                         rc = 1;
2558                         break;
2559                 }
2560         }
2561
2562         RETURN(rc);
2563 }
2564
2565 static int ldlm_cancel_hpreq_check(struct ptlrpc_request *req)
2566 {
2567         struct ldlm_request *dlm_req;
2568         int rc = 0;
2569         int i;
2570         unsigned int size;
2571
2572         ENTRY;
2573
2574         /* no prolong in recovery */
2575         if (lustre_msg_get_flags(req->rq_reqmsg) & MSG_REPLAY)
2576                 RETURN(0);
2577
2578         dlm_req = req_capsule_client_get(&req->rq_pill, &RMF_DLM_REQ);
2579         if (dlm_req == NULL)
2580                 RETURN(-EFAULT);
2581
2582         size = req_capsule_get_size(&req->rq_pill, &RMF_DLM_REQ, RCL_CLIENT);
2583         if (size <= offsetof(struct ldlm_request, lock_handle) ||
2584             (size - offsetof(struct ldlm_request, lock_handle)) /
2585              sizeof(struct lustre_handle) < dlm_req->lock_count)
2586                 RETURN(-EPROTO);
2587
2588         for (i = 0; i < dlm_req->lock_count; i++) {
2589                 struct ldlm_lock *lock;
2590
2591                 lock = ldlm_handle2lock(&dlm_req->lock_handle[i]);
2592                 if (lock == NULL)
2593                         continue;
2594
2595                 rc = ldlm_is_ast_sent(lock) ? 1 : 0;
2596                 if (rc)
2597                         LDLM_DEBUG(lock, "hpreq cancel/convert lock");
2598                 LDLM_LOCK_PUT(lock);
2599
2600                 if (rc)
2601                         break;
2602         }
2603
2604         RETURN(rc);
2605 }
2606
2607 static struct ptlrpc_hpreq_ops ldlm_cancel_hpreq_ops = {
2608         .hpreq_lock_match = ldlm_cancel_hpreq_lock_match,
2609         .hpreq_check      = ldlm_cancel_hpreq_check,
2610         .hpreq_fini       = NULL,
2611 };
2612
2613 static int ldlm_hpreq_handler(struct ptlrpc_request *req)
2614 {
2615         ENTRY;
2616
2617         req_capsule_init(&req->rq_pill, req, RCL_SERVER);
2618
2619         if (req->rq_export == NULL)
2620                 RETURN(0);
2621
2622         if (LDLM_CANCEL == lustre_msg_get_opc(req->rq_reqmsg)) {
2623                 req_capsule_set(&req->rq_pill, &RQF_LDLM_CANCEL);
2624                 req->rq_ops = &ldlm_cancel_hpreq_ops;
2625         } else if (LDLM_CONVERT == lustre_msg_get_opc(req->rq_reqmsg)) {
2626                 req_capsule_set(&req->rq_pill, &RQF_LDLM_CONVERT);
2627                 req->rq_ops = &ldlm_cancel_hpreq_ops;
2628         }
2629         RETURN(0);
2630 }
2631
2632 static int ldlm_revoke_lock_cb(struct cfs_hash *hs, struct cfs_hash_bd *bd,
2633                                struct hlist_node *hnode, void *data)
2634
2635 {
2636         struct list_head *rpc_list = data;
2637         struct ldlm_lock *lock = cfs_hash_object(hs, hnode);
2638
2639         lock_res_and_lock(lock);
2640
2641         if (!ldlm_is_granted(lock)) {
2642                 unlock_res_and_lock(lock);
2643                 return 0;
2644         }
2645
2646         LASSERT(lock->l_resource);
2647         if (lock->l_resource->lr_type != LDLM_IBITS &&
2648             lock->l_resource->lr_type != LDLM_PLAIN) {
2649                 unlock_res_and_lock(lock);
2650                 return 0;
2651         }
2652
2653         if (ldlm_is_ast_sent(lock)) {
2654                 unlock_res_and_lock(lock);
2655                 return 0;
2656         }
2657
2658         LASSERT(lock->l_blocking_ast);
2659         LASSERT(!lock->l_blocking_lock);
2660
2661         ldlm_set_ast_sent(lock);
2662         if (lock->l_export && lock->l_export->exp_lock_hash) {
2663                 /*
2664                  * NB: it's safe to call cfs_hash_del() even lock isn't
2665                  * in exp_lock_hash.
2666                  */
2667                 /*
2668                  * In the function below, .hs_keycmp resolves to
2669                  * ldlm_export_lock_keycmp()
2670                  */
2671                 /* coverity[overrun-buffer-val] */
2672                 cfs_hash_del(lock->l_export->exp_lock_hash,
2673                              &lock->l_remote_handle, &lock->l_exp_hash);
2674         }
2675
2676         list_add_tail(&lock->l_rk_ast, rpc_list);
2677         LDLM_LOCK_GET(lock);
2678
2679         unlock_res_and_lock(lock);
2680         return 0;
2681 }
2682
2683 void ldlm_revoke_export_locks(struct obd_export *exp)
2684 {
2685         LIST_HEAD(rpc_list);
2686
2687         ENTRY;
2688
2689         cfs_hash_for_each_nolock(exp->exp_lock_hash,
2690                                  ldlm_revoke_lock_cb, &rpc_list, 0);
2691         ldlm_run_ast_work(exp->exp_obd->obd_namespace, &rpc_list,
2692                           LDLM_WORK_REVOKE_AST);
2693
2694         EXIT;
2695 }
2696 EXPORT_SYMBOL(ldlm_revoke_export_locks);
2697 #endif /* HAVE_SERVER_SUPPORT */
2698
2699 static int ldlm_bl_get_work(struct ldlm_bl_pool *blp,
2700                             struct ldlm_bl_work_item **p_blwi,
2701                             struct obd_export **p_exp)
2702 {
2703         struct ldlm_bl_work_item *blwi = NULL;
2704         static unsigned int num_bl;
2705         static unsigned int num_stale;
2706         int num_th = atomic_read(&blp->blp_num_threads);
2707
2708         *p_exp = obd_stale_export_get();
2709
2710         spin_lock(&blp->blp_lock);
2711         if (*p_exp != NULL) {
2712                 if (num_th == 1 || ++num_stale < num_th) {
2713                         spin_unlock(&blp->blp_lock);
2714                         return 1;
2715                 }
2716                 num_stale = 0;
2717         }
2718
2719         /* process a request from the blp_list at least every blp_num_threads */
2720         if (!list_empty(&blp->blp_list) &&
2721             (list_empty(&blp->blp_prio_list) || num_bl == 0))
2722                 blwi = list_entry(blp->blp_list.next,
2723                                   struct ldlm_bl_work_item, blwi_entry);
2724         else
2725                 if (!list_empty(&blp->blp_prio_list))
2726                         blwi = list_entry(blp->blp_prio_list.next,
2727                                           struct ldlm_bl_work_item,
2728                                           blwi_entry);
2729
2730         if (blwi) {
2731                 if (++num_bl >= num_th)
2732                         num_bl = 0;
2733                 list_del(&blwi->blwi_entry);
2734         }
2735         spin_unlock(&blp->blp_lock);
2736         *p_blwi = blwi;
2737
2738         if (*p_exp != NULL && *p_blwi != NULL) {
2739                 obd_stale_export_put(*p_exp);
2740                 *p_exp = NULL;
2741         }
2742
2743         return (*p_blwi != NULL || *p_exp != NULL) ? 1 : 0;
2744 }
2745
2746 /* This only contains temporary data until the thread starts */
2747 struct ldlm_bl_thread_data {
2748         struct ldlm_bl_pool     *bltd_blp;
2749         struct completion       bltd_comp;
2750         int                     bltd_num;
2751 };
2752
2753 static int ldlm_bl_thread_main(void *arg);
2754
2755 static int ldlm_bl_thread_start(struct ldlm_bl_pool *blp, bool check_busy)
2756 {
2757         struct ldlm_bl_thread_data bltd = { .bltd_blp = blp };
2758         struct task_struct *task;
2759
2760         init_completion(&bltd.bltd_comp);
2761
2762         bltd.bltd_num = atomic_inc_return(&blp->blp_num_threads);
2763         if (bltd.bltd_num >= blp->blp_max_threads) {
2764                 atomic_dec(&blp->blp_num_threads);
2765                 return 0;
2766         }
2767
2768         LASSERTF(bltd.bltd_num > 0, "thread num:%d\n", bltd.bltd_num);
2769         if (check_busy &&
2770             atomic_read(&blp->blp_busy_threads) < (bltd.bltd_num - 1)) {
2771                 atomic_dec(&blp->blp_num_threads);
2772                 return 0;
2773         }
2774
2775         task = kthread_run(ldlm_bl_thread_main, &bltd, "ldlm_bl_%02d",
2776                            bltd.bltd_num);
2777         if (IS_ERR(task)) {
2778                 CERROR("cannot start LDLM thread ldlm_bl_%02d: rc %ld\n",
2779                        bltd.bltd_num, PTR_ERR(task));
2780                 atomic_dec(&blp->blp_num_threads);
2781                 return PTR_ERR(task);
2782         }
2783         wait_for_completion(&bltd.bltd_comp);
2784
2785         return 0;
2786 }
2787
2788 /* Not fatal if racy and have a few too many threads */
2789 static int ldlm_bl_thread_need_create(struct ldlm_bl_pool *blp,
2790                                       struct ldlm_bl_work_item *blwi)
2791 {
2792         if (atomic_read(&blp->blp_num_threads) >= blp->blp_max_threads)
2793                 return 0;
2794
2795         if (atomic_read(&blp->blp_busy_threads) <
2796             atomic_read(&blp->blp_num_threads))
2797                 return 0;
2798
2799         if (blwi != NULL && (blwi->blwi_ns == NULL ||
2800                              blwi->blwi_mem_pressure))
2801                 return 0;
2802
2803         return 1;
2804 }
2805
2806 static int ldlm_bl_thread_blwi(struct ldlm_bl_pool *blp,
2807                                struct ldlm_bl_work_item *blwi)
2808 {
2809         /* '1' for consistency with code that checks !mpflag to restore */
2810         unsigned int mpflags = 1;
2811
2812         ENTRY;
2813
2814         if (blwi->blwi_ns == NULL)
2815                 /* added by ldlm_cleanup() */
2816                 RETURN(LDLM_ITER_STOP);
2817
2818         if (blwi->blwi_mem_pressure)
2819                 mpflags = memalloc_noreclaim_save();
2820
2821         OBD_FAIL_TIMEOUT(OBD_FAIL_LDLM_PAUSE_CANCEL2, 4);
2822
2823         if (blwi->blwi_count) {
2824                 int count;
2825                 /*
2826                  * The special case when we cancel locks in lru
2827                  * asynchronously, we pass the list of locks here.
2828                  * Thus locks are marked LDLM_FL_CANCELING, but NOT
2829                  * canceled locally yet.
2830                  */
2831                 count = ldlm_cli_cancel_list_local(&blwi->blwi_head,
2832                                                    blwi->blwi_count,
2833                                                    LCF_BL_AST);
2834                 ldlm_cli_cancel_list(&blwi->blwi_head, count, NULL,
2835                                      blwi->blwi_flags);
2836         } else {
2837                 ldlm_handle_bl_callback(blwi->blwi_ns, &blwi->blwi_ld,
2838                                         blwi->blwi_lock);
2839         }
2840         if (blwi->blwi_mem_pressure)
2841                 memalloc_noreclaim_restore(mpflags);
2842
2843         if (blwi->blwi_flags & LCF_ASYNC)
2844                 OBD_FREE(blwi, sizeof(*blwi));
2845         else
2846                 complete(&blwi->blwi_comp);
2847
2848         RETURN(0);
2849 }
2850
2851 /**
2852  * Cancel stale locks on export. Cancel blocked locks first.
2853  * If the given export has blocked locks, the next in the list may have
2854  * them too, thus cancel not blocked locks only if the current export has
2855  * no blocked locks.
2856  **/
2857 static int ldlm_bl_thread_exports(struct ldlm_bl_pool *blp,
2858                                   struct obd_export *exp)
2859 {
2860         int num;
2861
2862         ENTRY;
2863
2864         OBD_FAIL_TIMEOUT(OBD_FAIL_LDLM_BL_EVICT, 4);
2865
2866         num = ldlm_export_cancel_blocked_locks(exp);
2867         if (num == 0)
2868                 ldlm_export_cancel_locks(exp);
2869
2870         obd_stale_export_put(exp);
2871
2872         RETURN(0);
2873 }
2874
2875
2876 /**
2877  * Main blocking requests processing thread.
2878  *
2879  * Callers put locks into its queue by calling ldlm_bl_to_thread.
2880  * This thread in the end ends up doing actual call to ->l_blocking_ast
2881  * for queued locks.
2882  */
2883 static int ldlm_bl_thread_main(void *arg)
2884 {
2885         struct lu_env *env;
2886         struct ldlm_bl_pool *blp;
2887         struct ldlm_bl_thread_data *bltd = arg;
2888         int rc;
2889
2890         ENTRY;
2891
2892         OBD_ALLOC_PTR(env);
2893         if (!env)
2894                 RETURN(-ENOMEM);
2895         rc = lu_env_init(env, LCT_DT_THREAD);
2896         if (rc)
2897                 GOTO(out_env, rc);
2898         rc = lu_env_add(env);
2899         if (rc)
2900                 GOTO(out_env_fini, rc);
2901
2902         blp = bltd->bltd_blp;
2903
2904         complete(&bltd->bltd_comp);
2905         /* cannot use bltd after this, it is only on caller's stack */
2906
2907         while (1) {
2908                 struct ldlm_bl_work_item *blwi = NULL;
2909                 struct obd_export *exp = NULL;
2910                 int rc;
2911
2912                 rc = ldlm_bl_get_work(blp, &blwi, &exp);
2913
2914                 if (rc == 0)
2915                         wait_event_idle_exclusive(blp->blp_waitq,
2916                                                   ldlm_bl_get_work(blp, &blwi,
2917                                                                    &exp));
2918                 atomic_inc(&blp->blp_busy_threads);
2919
2920                 if (ldlm_bl_thread_need_create(blp, blwi))
2921                         /* discard the return value, we tried */
2922                         ldlm_bl_thread_start(blp, true);
2923
2924                 if (exp)
2925                         rc = ldlm_bl_thread_exports(blp, exp);
2926                 else if (blwi)
2927                         rc = ldlm_bl_thread_blwi(blp, blwi);
2928
2929                 atomic_dec(&blp->blp_busy_threads);
2930
2931                 if (rc == LDLM_ITER_STOP)
2932                         break;
2933
2934                 /*
2935                  * If there are many namespaces, we will not sleep waiting for
2936                  * work, and must do a cond_resched to avoid holding the CPU
2937                  * for too long
2938                  */
2939                 cond_resched();
2940         }
2941
2942         atomic_dec(&blp->blp_num_threads);
2943         complete(&blp->blp_comp);
2944
2945         lu_env_remove(env);
2946 out_env_fini:
2947         lu_env_fini(env);
2948 out_env:
2949         OBD_FREE_PTR(env);
2950         RETURN(rc);
2951 }
2952
2953
2954 static int ldlm_setup(void);
2955 static int ldlm_cleanup(void);
2956
2957 int ldlm_get_ref(void)
2958 {
2959         int rc = 0;
2960
2961         ENTRY;
2962         mutex_lock(&ldlm_ref_mutex);
2963         if (++ldlm_refcount == 1) {
2964                 rc = ldlm_setup();
2965                 if (rc)
2966                         ldlm_refcount--;
2967         }
2968         mutex_unlock(&ldlm_ref_mutex);
2969
2970         RETURN(rc);
2971 }
2972
2973 void ldlm_put_ref(void)
2974 {
2975         ENTRY;
2976         mutex_lock(&ldlm_ref_mutex);
2977         if (ldlm_refcount == 1) {
2978                 int rc = ldlm_cleanup();
2979
2980                 if (rc)
2981                         CERROR("ldlm_cleanup failed: %d\n", rc);
2982                 else
2983                         ldlm_refcount--;
2984         } else {
2985                 ldlm_refcount--;
2986         }
2987         mutex_unlock(&ldlm_ref_mutex);
2988
2989         EXIT;
2990 }
2991
2992 /*
2993  * Export handle<->lock hash operations.
2994  */
2995 static unsigned
2996 ldlm_export_lock_hash(struct cfs_hash *hs, const void *key, unsigned int mask)
2997 {
2998         return cfs_hash_u64_hash(((struct lustre_handle *)key)->cookie, mask);
2999 }
3000
3001 static void *
3002 ldlm_export_lock_key(struct hlist_node *hnode)
3003 {
3004         struct ldlm_lock *lock;
3005
3006         lock = hlist_entry(hnode, struct ldlm_lock, l_exp_hash);
3007         return &lock->l_remote_handle;
3008 }
3009
3010 static void
3011 ldlm_export_lock_keycpy(struct hlist_node *hnode, void *key)
3012 {
3013         struct ldlm_lock     *lock;
3014
3015         lock = hlist_entry(hnode, struct ldlm_lock, l_exp_hash);
3016         lock->l_remote_handle = *(struct lustre_handle *)key;
3017 }
3018
3019 static int
3020 ldlm_export_lock_keycmp(const void *key, struct hlist_node *hnode)
3021 {
3022         return lustre_handle_equal(ldlm_export_lock_key(hnode), key);
3023 }
3024
3025 static void *
3026 ldlm_export_lock_object(struct hlist_node *hnode)
3027 {
3028         return hlist_entry(hnode, struct ldlm_lock, l_exp_hash);
3029 }
3030
3031 static void
3032 ldlm_export_lock_get(struct cfs_hash *hs, struct hlist_node *hnode)
3033 {
3034         struct ldlm_lock *lock;
3035
3036         lock = hlist_entry(hnode, struct ldlm_lock, l_exp_hash);
3037         LDLM_LOCK_GET(lock);
3038 }
3039
3040 static void
3041 ldlm_export_lock_put(struct cfs_hash *hs, struct hlist_node *hnode)
3042 {
3043         struct ldlm_lock *lock;
3044
3045         lock = hlist_entry(hnode, struct ldlm_lock, l_exp_hash);
3046         LDLM_LOCK_RELEASE(lock);
3047 }
3048
3049 static struct cfs_hash_ops ldlm_export_lock_ops = {
3050         .hs_hash        = ldlm_export_lock_hash,
3051         .hs_key         = ldlm_export_lock_key,
3052         .hs_keycmp      = ldlm_export_lock_keycmp,
3053         .hs_keycpy      = ldlm_export_lock_keycpy,
3054         .hs_object      = ldlm_export_lock_object,
3055         .hs_get         = ldlm_export_lock_get,
3056         .hs_put         = ldlm_export_lock_put,
3057         .hs_put_locked  = ldlm_export_lock_put,
3058 };
3059
3060 int ldlm_init_export(struct obd_export *exp)
3061 {
3062         int rc;
3063
3064         ENTRY;
3065
3066         exp->exp_lock_hash =
3067                 cfs_hash_create(obd_uuid2str(&exp->exp_client_uuid),
3068                                 HASH_EXP_LOCK_CUR_BITS,
3069                                 HASH_EXP_LOCK_MAX_BITS,
3070                                 HASH_EXP_LOCK_BKT_BITS, 0,
3071                                 CFS_HASH_MIN_THETA, CFS_HASH_MAX_THETA,
3072                                 &ldlm_export_lock_ops,
3073                                 CFS_HASH_DEFAULT | CFS_HASH_REHASH_KEY |
3074                                 CFS_HASH_NBLK_CHANGE);
3075
3076         if (!exp->exp_lock_hash)
3077                 RETURN(-ENOMEM);
3078
3079         rc = ldlm_init_flock_export(exp);
3080         if (rc)
3081                 GOTO(err, rc);
3082
3083         RETURN(0);
3084 err:
3085         ldlm_destroy_export(exp);
3086         RETURN(rc);
3087 }
3088 EXPORT_SYMBOL(ldlm_init_export);
3089
3090 void ldlm_destroy_export(struct obd_export *exp)
3091 {
3092         ENTRY;
3093         cfs_hash_putref(exp->exp_lock_hash);
3094         exp->exp_lock_hash = NULL;
3095
3096         ldlm_destroy_flock_export(exp);
3097         EXIT;
3098 }
3099 EXPORT_SYMBOL(ldlm_destroy_export);
3100
3101 static ssize_t cancel_unused_locks_before_replay_show(struct kobject *kobj,
3102                                                       struct attribute *attr,
3103                                                       char *buf)
3104 {
3105         return sprintf(buf, "%d\n", ldlm_cancel_unused_locks_before_replay);
3106 }
3107
3108 static ssize_t cancel_unused_locks_before_replay_store(struct kobject *kobj,
3109                                                        struct attribute *attr,
3110                                                        const char *buffer,
3111                                                        size_t count)
3112 {
3113         int rc;
3114         unsigned long val;
3115
3116         rc = kstrtoul(buffer, 10, &val);
3117         if (rc)
3118                 return rc;
3119
3120         ldlm_cancel_unused_locks_before_replay = val;
3121
3122         return count;
3123 }
3124 LUSTRE_RW_ATTR(cancel_unused_locks_before_replay);
3125
3126 static struct attribute *ldlm_attrs[] = {
3127         &lustre_attr_cancel_unused_locks_before_replay.attr,
3128         NULL,
3129 };
3130
3131 static struct attribute_group ldlm_attr_group = {
3132         .attrs = ldlm_attrs,
3133 };
3134
3135 static int ldlm_setup(void)
3136 {
3137         static struct ptlrpc_service_conf       conf;
3138         struct ldlm_bl_pool                    *blp = NULL;
3139 #ifdef HAVE_SERVER_SUPPORT
3140         struct task_struct *task;
3141 #endif /* HAVE_SERVER_SUPPORT */
3142         int i;
3143         int rc = 0;
3144
3145         ENTRY;
3146
3147         if (ldlm_state != NULL)
3148                 RETURN(-EALREADY);
3149
3150         OBD_ALLOC(ldlm_state, sizeof(*ldlm_state));
3151         if (ldlm_state == NULL)
3152                 RETURN(-ENOMEM);
3153
3154         ldlm_kobj = kobject_create_and_add("ldlm", &lustre_kset->kobj);
3155         if (!ldlm_kobj)
3156                 GOTO(out, -ENOMEM);
3157
3158         rc = sysfs_create_group(ldlm_kobj, &ldlm_attr_group);
3159         if (rc)
3160                 GOTO(out, rc);
3161
3162         ldlm_ns_kset = kset_create_and_add("namespaces", NULL, ldlm_kobj);
3163         if (!ldlm_ns_kset)
3164                 GOTO(out, -ENOMEM);
3165
3166         ldlm_svc_kset = kset_create_and_add("services", NULL, ldlm_kobj);
3167         if (!ldlm_svc_kset)
3168                 GOTO(out, -ENOMEM);
3169
3170         rc = ldlm_debugfs_setup();
3171         if (rc != 0)
3172                 GOTO(out, rc);
3173
3174         memset(&conf, 0, sizeof(conf));
3175         conf = (typeof(conf)) {
3176                 .psc_name               = "ldlm_cbd",
3177                 .psc_watchdog_factor    = 2,
3178                 .psc_buf                = {
3179                         .bc_nbufs               = LDLM_CLIENT_NBUFS,
3180                         .bc_buf_size            = LDLM_BUFSIZE,
3181                         .bc_req_max_size        = LDLM_MAXREQSIZE,
3182                         .bc_rep_max_size        = LDLM_MAXREPSIZE,
3183                         .bc_req_portal          = LDLM_CB_REQUEST_PORTAL,
3184                         .bc_rep_portal          = LDLM_CB_REPLY_PORTAL,
3185                 },
3186                 .psc_thr                = {
3187                         .tc_thr_name            = "ldlm_cb",
3188                         .tc_thr_factor          = LDLM_THR_FACTOR,
3189                         .tc_nthrs_init          = LDLM_NTHRS_INIT,
3190                         .tc_nthrs_base          = LDLM_NTHRS_BASE,
3191                         .tc_nthrs_max           = LDLM_NTHRS_MAX,
3192                         .tc_nthrs_user          = ldlm_num_threads,
3193                         .tc_cpu_bind            = ldlm_cpu_bind,
3194                         .tc_ctx_tags            = LCT_MD_THREAD | LCT_DT_THREAD,
3195                 },
3196                 .psc_cpt                = {
3197                         .cc_pattern             = ldlm_cpts,
3198                         .cc_affinity            = true,
3199                 },
3200                 .psc_ops                = {
3201                         .so_req_handler         = ldlm_callback_handler,
3202                 },
3203         };
3204         ldlm_state->ldlm_cb_service = \
3205                         ptlrpc_register_service(&conf, ldlm_svc_kset,
3206                                                 ldlm_svc_debugfs_dir);
3207         if (IS_ERR(ldlm_state->ldlm_cb_service)) {
3208                 CERROR("failed to start service\n");
3209                 rc = PTR_ERR(ldlm_state->ldlm_cb_service);
3210                 ldlm_state->ldlm_cb_service = NULL;
3211                 GOTO(out, rc);
3212         }
3213
3214 #ifdef HAVE_SERVER_SUPPORT
3215         memset(&conf, 0, sizeof(conf));
3216         conf = (typeof(conf)) {
3217                 .psc_name               = "ldlm_canceld",
3218                 .psc_watchdog_factor    = 6,
3219                 .psc_buf                = {
3220                         .bc_nbufs               = LDLM_SERVER_NBUFS,
3221                         .bc_buf_size            = LDLM_BUFSIZE,
3222                         .bc_req_max_size        = LDLM_MAXREQSIZE,
3223                         .bc_rep_max_size        = LDLM_MAXREPSIZE,
3224                         .bc_req_portal          = LDLM_CANCEL_REQUEST_PORTAL,
3225                         .bc_rep_portal          = LDLM_CANCEL_REPLY_PORTAL,
3226
3227                 },
3228                 .psc_thr                = {
3229                         .tc_thr_name            = "ldlm_cn",
3230                         .tc_thr_factor          = LDLM_THR_FACTOR,
3231                         .tc_nthrs_init          = LDLM_NTHRS_INIT,
3232                         .tc_nthrs_base          = LDLM_NTHRS_BASE,
3233                         .tc_nthrs_max           = LDLM_NTHRS_MAX,
3234                         .tc_nthrs_user          = ldlm_num_threads,
3235                         .tc_cpu_bind            = ldlm_cpu_bind,
3236                         .tc_ctx_tags            = LCT_MD_THREAD | \
3237                                                   LCT_DT_THREAD | \
3238                                                   LCT_CL_THREAD,
3239                 },
3240                 .psc_cpt                = {
3241                         .cc_pattern             = ldlm_cpts,
3242                         .cc_affinity            = true,
3243                 },
3244                 .psc_ops                = {
3245                         .so_req_handler         = ldlm_cancel_handler,
3246                         .so_hpreq_handler       = ldlm_hpreq_handler,
3247                 },
3248         };
3249         ldlm_state->ldlm_cancel_service = \
3250                         ptlrpc_register_service(&conf, ldlm_svc_kset,
3251                                                 ldlm_svc_debugfs_dir);
3252         if (IS_ERR(ldlm_state->ldlm_cancel_service)) {
3253                 CERROR("failed to start service\n");
3254                 rc = PTR_ERR(ldlm_state->ldlm_cancel_service);
3255                 ldlm_state->ldlm_cancel_service = NULL;
3256                 GOTO(out, rc);
3257         }
3258 #endif /* HAVE_SERVER_SUPPORT */
3259
3260         OBD_ALLOC(blp, sizeof(*blp));
3261         if (blp == NULL)
3262                 GOTO(out, rc = -ENOMEM);
3263         ldlm_state->ldlm_bl_pool = blp;
3264
3265         spin_lock_init(&blp->blp_lock);
3266         INIT_LIST_HEAD(&blp->blp_list);
3267         INIT_LIST_HEAD(&blp->blp_prio_list);
3268         init_waitqueue_head(&blp->blp_waitq);
3269         atomic_set(&blp->blp_num_threads, 0);
3270         atomic_set(&blp->blp_busy_threads, 0);
3271
3272         if (ldlm_num_threads == 0) {
3273                 blp->blp_min_threads = LDLM_NTHRS_INIT;
3274                 blp->blp_max_threads = LDLM_NTHRS_MAX;
3275         } else {
3276                 blp->blp_min_threads = blp->blp_max_threads = \
3277                         min_t(int, LDLM_NTHRS_MAX, max_t(int, LDLM_NTHRS_INIT,
3278                                                          ldlm_num_threads));
3279         }
3280
3281         for (i = 0; i < blp->blp_min_threads; i++) {
3282                 rc = ldlm_bl_thread_start(blp, false);
3283                 if (rc < 0)
3284                         GOTO(out, rc);
3285         }
3286
3287 #ifdef HAVE_SERVER_SUPPORT
3288         task = kthread_run(expired_lock_main, NULL, "ldlm_elt");
3289         if (IS_ERR(task)) {
3290                 rc = PTR_ERR(task);
3291                 CERROR("Cannot start ldlm expired-lock thread: %d\n", rc);
3292                 GOTO(out, rc);
3293         }
3294
3295         wait_event(expired_lock_wait_queue,
3296                    expired_lock_thread_state == ELT_READY);
3297 #endif /* HAVE_SERVER_SUPPORT */
3298
3299         rc = ldlm_pools_init();
3300         if (rc) {
3301                 CERROR("Failed to initialize LDLM pools: %d\n", rc);
3302                 GOTO(out, rc);
3303         }
3304
3305         rc = ldlm_reclaim_setup();
3306         if (rc) {
3307                 CERROR("Failed to setup reclaim thread: rc = %d\n", rc);
3308                 GOTO(out, rc);
3309         }
3310         RETURN(0);
3311
3312  out:
3313         ldlm_cleanup();
3314         RETURN(rc);
3315 }
3316
3317 static int ldlm_cleanup(void)
3318 {
3319         ENTRY;
3320
3321         if (!list_empty(ldlm_namespace_list(LDLM_NAMESPACE_SERVER)) ||
3322             !list_empty(ldlm_namespace_list(LDLM_NAMESPACE_CLIENT))) {
3323                 CERROR("ldlm still has namespaces; clean these up first.\n");
3324                 ldlm_dump_all_namespaces(LDLM_NAMESPACE_SERVER, D_DLMTRACE);
3325                 ldlm_dump_all_namespaces(LDLM_NAMESPACE_CLIENT, D_DLMTRACE);
3326                 RETURN(-EBUSY);
3327         }
3328
3329         ldlm_reclaim_cleanup();
3330         ldlm_pools_fini();
3331
3332         if (ldlm_state->ldlm_bl_pool != NULL) {
3333                 struct ldlm_bl_pool *blp = ldlm_state->ldlm_bl_pool;
3334
3335                 while (atomic_read(&blp->blp_num_threads) > 0) {
3336                         struct ldlm_bl_work_item blwi = { .blwi_ns = NULL };
3337
3338                         init_completion(&blp->blp_comp);
3339
3340                         spin_lock(&blp->blp_lock);
3341                         list_add_tail(&blwi.blwi_entry, &blp->blp_list);
3342                         wake_up(&blp->blp_waitq);
3343                         spin_unlock(&blp->blp_lock);
3344
3345                         wait_for_completion(&blp->blp_comp);
3346                 }
3347
3348                 OBD_FREE(blp, sizeof(*blp));
3349         }
3350
3351         if (ldlm_state->ldlm_cb_service != NULL)
3352                 ptlrpc_unregister_service(ldlm_state->ldlm_cb_service);
3353 #ifdef HAVE_SERVER_SUPPORT
3354         if (ldlm_state->ldlm_cancel_service != NULL)
3355                 ptlrpc_unregister_service(ldlm_state->ldlm_cancel_service);
3356 #endif
3357
3358         if (ldlm_ns_kset)
3359                 kset_unregister(ldlm_ns_kset);
3360         if (ldlm_svc_kset)
3361                 kset_unregister(ldlm_svc_kset);
3362         if (ldlm_kobj) {
3363                 sysfs_remove_group(ldlm_kobj, &ldlm_attr_group);
3364                 kobject_put(ldlm_kobj);
3365         }
3366
3367         ldlm_debugfs_cleanup();
3368
3369 #ifdef HAVE_SERVER_SUPPORT
3370         if (expired_lock_thread_state != ELT_STOPPED) {
3371                 expired_lock_thread_state = ELT_TERMINATE;
3372                 wake_up(&expired_lock_wait_queue);
3373                 wait_event(expired_lock_wait_queue,
3374                            expired_lock_thread_state == ELT_STOPPED);
3375         }
3376 #endif
3377
3378         OBD_FREE(ldlm_state, sizeof(*ldlm_state));
3379         ldlm_state = NULL;
3380
3381         RETURN(0);
3382 }
3383
3384 int ldlm_init(void)
3385 {
3386         ldlm_resource_slab = kmem_cache_create("ldlm_resources",
3387                                                sizeof(struct ldlm_resource), 0,
3388                                                SLAB_HWCACHE_ALIGN, NULL);
3389         if (ldlm_resource_slab == NULL)
3390                 return -ENOMEM;
3391
3392         ldlm_lock_slab = kmem_cache_create("ldlm_locks",
3393                               sizeof(struct ldlm_lock), 0,
3394                               SLAB_HWCACHE_ALIGN, NULL);
3395         if (ldlm_lock_slab == NULL)
3396                 goto out_resource;
3397
3398         ldlm_interval_slab = kmem_cache_create("interval_node",
3399                                         sizeof(struct ldlm_interval),
3400                                         0, SLAB_HWCACHE_ALIGN, NULL);
3401         if (ldlm_interval_slab == NULL)
3402                 goto out_lock;
3403
3404         ldlm_interval_tree_slab = kmem_cache_create("interval_tree",
3405                         sizeof(struct ldlm_interval_tree) * LCK_MODE_NUM,
3406                         0, SLAB_HWCACHE_ALIGN, NULL);
3407         if (ldlm_interval_tree_slab == NULL)
3408                 goto out_interval;
3409
3410 #ifdef HAVE_SERVER_SUPPORT
3411         ldlm_inodebits_slab = kmem_cache_create("ldlm_ibits_node",
3412                                                 sizeof(struct ldlm_ibits_node),
3413                                                 0, SLAB_HWCACHE_ALIGN, NULL);
3414         if (ldlm_inodebits_slab == NULL)
3415                 goto out_interval_tree;
3416
3417         ldlm_glimpse_work_kmem = kmem_cache_create("ldlm_glimpse_work_kmem",
3418                                         sizeof(struct ldlm_glimpse_work),
3419                                         0, 0, NULL);
3420         if (ldlm_glimpse_work_kmem == NULL)
3421                 goto out_inodebits;
3422 #endif
3423
3424 #if LUSTRE_TRACKS_LOCK_EXP_REFS
3425         class_export_dump_hook = ldlm_dump_export_locks;
3426 #endif
3427         return 0;
3428 #ifdef HAVE_SERVER_SUPPORT
3429 out_inodebits:
3430         kmem_cache_destroy(ldlm_inodebits_slab);
3431 out_interval_tree:
3432         kmem_cache_destroy(ldlm_interval_tree_slab);
3433 #endif
3434 out_interval:
3435         kmem_cache_destroy(ldlm_interval_slab);
3436 out_lock:
3437         kmem_cache_destroy(ldlm_lock_slab);
3438 out_resource:
3439         kmem_cache_destroy(ldlm_resource_slab);
3440
3441         return -ENOMEM;
3442 }
3443
3444 void ldlm_exit(void)
3445 {
3446         if (ldlm_refcount)
3447                 CERROR("ldlm_refcount is %d in ldlm_exit!\n", ldlm_refcount);
3448         kmem_cache_destroy(ldlm_resource_slab);
3449         /*
3450          * ldlm_lock_put() use RCU to call ldlm_lock_free, so need call
3451          * rcu_barrier() to wait all outstanding RCU callbacks to complete,
3452          * so that ldlm_lock_free() get a chance to be called.
3453          */
3454         rcu_barrier();
3455         kmem_cache_destroy(ldlm_lock_slab);
3456         kmem_cache_destroy(ldlm_interval_slab);
3457         kmem_cache_destroy(ldlm_interval_tree_slab);
3458 #ifdef HAVE_SERVER_SUPPORT
3459         kmem_cache_destroy(ldlm_inodebits_slab);
3460         kmem_cache_destroy(ldlm_glimpse_work_kmem);
3461 #endif
3462 }