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