Whamcloud - gitweb
LU-11164 ldlm: pass env to lvbo methods
[fs/lustre-release.git] / lustre / ldlm / ldlm_lock.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_lock.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 <libcfs/libcfs.h>
41
42 #include <lustre_swab.h>
43 #include <obd_class.h>
44
45 #include "ldlm_internal.h"
46
47 struct kmem_cache *ldlm_glimpse_work_kmem;
48 EXPORT_SYMBOL(ldlm_glimpse_work_kmem);
49
50 /* lock types */
51 char *ldlm_lockname[] = {
52         [0] = "--",
53         [LCK_EX] = "EX",
54         [LCK_PW] = "PW",
55         [LCK_PR] = "PR",
56         [LCK_CW] = "CW",
57         [LCK_CR] = "CR",
58         [LCK_NL] = "NL",
59         [LCK_GROUP] = "GROUP",
60         [LCK_COS] = "COS"
61 };
62 EXPORT_SYMBOL(ldlm_lockname);
63
64 char *ldlm_typename[] = {
65         [LDLM_PLAIN] = "PLN",
66         [LDLM_EXTENT] = "EXT",
67         [LDLM_FLOCK] = "FLK",
68         [LDLM_IBITS] = "IBT",
69 };
70
71 static ldlm_policy_wire_to_local_t ldlm_policy_wire_to_local[] = {
72         [LDLM_PLAIN - LDLM_MIN_TYPE]  = ldlm_plain_policy_wire_to_local,
73         [LDLM_EXTENT - LDLM_MIN_TYPE] = ldlm_extent_policy_wire_to_local,
74         [LDLM_FLOCK - LDLM_MIN_TYPE]  = ldlm_flock_policy_wire_to_local,
75         [LDLM_IBITS - LDLM_MIN_TYPE]  = ldlm_ibits_policy_wire_to_local,
76 };
77
78 static ldlm_policy_local_to_wire_t ldlm_policy_local_to_wire[] = {
79         [LDLM_PLAIN - LDLM_MIN_TYPE]  = ldlm_plain_policy_local_to_wire,
80         [LDLM_EXTENT - LDLM_MIN_TYPE] = ldlm_extent_policy_local_to_wire,
81         [LDLM_FLOCK - LDLM_MIN_TYPE]  = ldlm_flock_policy_local_to_wire,
82         [LDLM_IBITS - LDLM_MIN_TYPE]  = ldlm_ibits_policy_local_to_wire,
83 };
84
85 /**
86  * Converts lock policy from local format to on the wire lock_desc format
87  */
88 void ldlm_convert_policy_to_wire(enum ldlm_type type,
89                                  const union ldlm_policy_data *lpolicy,
90                                  union ldlm_wire_policy_data *wpolicy)
91 {
92         ldlm_policy_local_to_wire_t convert;
93
94         convert = ldlm_policy_local_to_wire[type - LDLM_MIN_TYPE];
95
96         convert(lpolicy, wpolicy);
97 }
98
99 /**
100  * Converts lock policy from on the wire lock_desc format to local format
101  */
102 void ldlm_convert_policy_to_local(struct obd_export *exp, enum ldlm_type type,
103                                   const union ldlm_wire_policy_data *wpolicy,
104                                   union ldlm_policy_data *lpolicy)
105 {
106         ldlm_policy_wire_to_local_t convert;
107
108         convert = ldlm_policy_wire_to_local[type - LDLM_MIN_TYPE];
109
110         convert(wpolicy, lpolicy);
111 }
112
113 const char *ldlm_it2str(enum ldlm_intent_flags it)
114 {
115         switch (it) {
116         case IT_OPEN:
117                 return "open";
118         case IT_CREAT:
119                 return "creat";
120         case (IT_OPEN | IT_CREAT):
121                 return "open|creat";
122         case IT_READDIR:
123                 return "readdir";
124         case IT_GETATTR:
125                 return "getattr";
126         case IT_LOOKUP:
127                 return "lookup";
128         case IT_GETXATTR:
129                 return "getxattr";
130         case IT_LAYOUT:
131                 return "layout";
132         default:
133                 CERROR("Unknown intent 0x%08x\n", it);
134                 return "UNKNOWN";
135         }
136 }
137 EXPORT_SYMBOL(ldlm_it2str);
138
139 extern struct kmem_cache *ldlm_lock_slab;
140
141 #ifdef HAVE_SERVER_SUPPORT
142 static ldlm_processing_policy ldlm_processing_policy_table[] = {
143         [LDLM_PLAIN]    = ldlm_process_plain_lock,
144         [LDLM_EXTENT]   = ldlm_process_extent_lock,
145         [LDLM_FLOCK]    = ldlm_process_flock_lock,
146         [LDLM_IBITS]    = ldlm_process_inodebits_lock,
147 };
148
149 ldlm_processing_policy ldlm_get_processing_policy(struct ldlm_resource *res)
150 {
151         return ldlm_processing_policy_table[res->lr_type];
152 }
153 EXPORT_SYMBOL(ldlm_get_processing_policy);
154 #endif /* HAVE_SERVER_SUPPORT */
155
156 void ldlm_register_intent(struct ldlm_namespace *ns, ldlm_res_policy arg)
157 {
158         ns->ns_policy = arg;
159 }
160 EXPORT_SYMBOL(ldlm_register_intent);
161
162 /*
163  * REFCOUNTED LOCK OBJECTS
164  */
165
166
167 /**
168  * Get a reference on a lock.
169  *
170  * Lock refcounts, during creation:
171  *   - one special one for allocation, dec'd only once in destroy
172  *   - one for being a lock that's in-use
173  *   - one for the addref associated with a new lock
174  */
175 struct ldlm_lock *ldlm_lock_get(struct ldlm_lock *lock)
176 {
177         atomic_inc(&lock->l_refc);
178         return lock;
179 }
180 EXPORT_SYMBOL(ldlm_lock_get);
181
182 /**
183  * Release lock reference.
184  *
185  * Also frees the lock if it was last reference.
186  */
187 void ldlm_lock_put(struct ldlm_lock *lock)
188 {
189         ENTRY;
190
191         LASSERT(lock->l_resource != LP_POISON);
192         LASSERT(atomic_read(&lock->l_refc) > 0);
193         if (atomic_dec_and_test(&lock->l_refc)) {
194                 struct ldlm_resource *res;
195
196                 LDLM_DEBUG(lock,
197                            "final lock_put on destroyed lock, freeing it.");
198
199                 res = lock->l_resource;
200                 LASSERT(ldlm_is_destroyed(lock));
201                 LASSERT(list_empty(&lock->l_exp_list));
202                 LASSERT(list_empty(&lock->l_res_link));
203                 LASSERT(list_empty(&lock->l_pending_chain));
204
205                 lprocfs_counter_decr(ldlm_res_to_ns(res)->ns_stats,
206                                      LDLM_NSS_LOCKS);
207                 lu_ref_del(&res->lr_reference, "lock", lock);
208                 ldlm_resource_putref(res);
209                 lock->l_resource = NULL;
210                 if (lock->l_export) {
211                         class_export_lock_put(lock->l_export, lock);
212                         lock->l_export = NULL;
213                 }
214
215                 if (lock->l_lvb_data != NULL)
216                         OBD_FREE_LARGE(lock->l_lvb_data, lock->l_lvb_len);
217
218                 ldlm_interval_free(ldlm_interval_detach(lock));
219                 lu_ref_fini(&lock->l_reference);
220                 OBD_FREE_RCU(lock, sizeof(*lock), &lock->l_handle);
221         }
222
223         EXIT;
224 }
225 EXPORT_SYMBOL(ldlm_lock_put);
226
227 /**
228  * Removes LDLM lock \a lock from LRU. Assumes LRU is already locked.
229  */
230 int ldlm_lock_remove_from_lru_nolock(struct ldlm_lock *lock)
231 {
232         int rc = 0;
233         if (!list_empty(&lock->l_lru)) {
234                 struct ldlm_namespace *ns = ldlm_lock_to_ns(lock);
235
236                 LASSERT(lock->l_resource->lr_type != LDLM_FLOCK);
237                 if (ns->ns_last_pos == &lock->l_lru)
238                         ns->ns_last_pos = lock->l_lru.prev;
239                 list_del_init(&lock->l_lru);
240                 LASSERT(ns->ns_nr_unused > 0);
241                 ns->ns_nr_unused--;
242                 rc = 1;
243         }
244         return rc;
245 }
246
247 /**
248  * Removes LDLM lock \a lock from LRU. Obtains the LRU lock first.
249  *
250  * If \a last_use is non-zero, it will remove the lock from LRU only if
251  * it matches lock's l_last_used.
252  *
253  * \retval 0 if \a last_use is set, the lock is not in LRU list or \a last_use
254  *           doesn't match lock's l_last_used;
255  *           otherwise, the lock hasn't been in the LRU list.
256  * \retval 1 the lock was in LRU list and removed.
257  */
258 int ldlm_lock_remove_from_lru_check(struct ldlm_lock *lock, ktime_t last_use)
259 {
260         struct ldlm_namespace *ns = ldlm_lock_to_ns(lock);
261         int rc = 0;
262
263         ENTRY;
264         if (ldlm_is_ns_srv(lock)) {
265                 LASSERT(list_empty(&lock->l_lru));
266                 RETURN(0);
267         }
268
269         spin_lock(&ns->ns_lock);
270         if (!ktime_compare(last_use, ktime_set(0, 0)) ||
271             !ktime_compare(last_use, lock->l_last_used))
272                 rc = ldlm_lock_remove_from_lru_nolock(lock);
273         spin_unlock(&ns->ns_lock);
274
275         RETURN(rc);
276 }
277
278 /**
279  * Adds LDLM lock \a lock to namespace LRU. Assumes LRU is already locked.
280  */
281 void ldlm_lock_add_to_lru_nolock(struct ldlm_lock *lock)
282 {
283         struct ldlm_namespace *ns = ldlm_lock_to_ns(lock);
284
285         lock->l_last_used = ktime_get();
286         LASSERT(list_empty(&lock->l_lru));
287         LASSERT(lock->l_resource->lr_type != LDLM_FLOCK);
288         list_add_tail(&lock->l_lru, &ns->ns_unused_list);
289         LASSERT(ns->ns_nr_unused >= 0);
290         ns->ns_nr_unused++;
291 }
292
293 /**
294  * Adds LDLM lock \a lock to namespace LRU. Obtains necessary LRU locks
295  * first.
296  */
297 void ldlm_lock_add_to_lru(struct ldlm_lock *lock)
298 {
299         struct ldlm_namespace *ns = ldlm_lock_to_ns(lock);
300
301         ENTRY;
302         spin_lock(&ns->ns_lock);
303         ldlm_lock_add_to_lru_nolock(lock);
304         spin_unlock(&ns->ns_lock);
305         EXIT;
306 }
307
308 /**
309  * Moves LDLM lock \a lock that is already in namespace LRU to the tail of
310  * the LRU. Performs necessary LRU locking
311  */
312 void ldlm_lock_touch_in_lru(struct ldlm_lock *lock)
313 {
314         struct ldlm_namespace *ns = ldlm_lock_to_ns(lock);
315
316         ENTRY;
317         if (ldlm_is_ns_srv(lock)) {
318                 LASSERT(list_empty(&lock->l_lru));
319                 EXIT;
320                 return;
321         }
322
323         spin_lock(&ns->ns_lock);
324         if (!list_empty(&lock->l_lru)) {
325                 ldlm_lock_remove_from_lru_nolock(lock);
326                 ldlm_lock_add_to_lru_nolock(lock);
327         }
328         spin_unlock(&ns->ns_lock);
329         EXIT;
330 }
331
332 /**
333  * Helper to destroy a locked lock.
334  *
335  * Used by ldlm_lock_destroy and ldlm_lock_destroy_nolock
336  * Must be called with l_lock and lr_lock held.
337  *
338  * Does not actually free the lock data, but rather marks the lock as
339  * destroyed by setting l_destroyed field in the lock to 1.  Destroys a
340  * handle->lock association too, so that the lock can no longer be found
341  * and removes the lock from LRU list.  Actual lock freeing occurs when
342  * last lock reference goes away.
343  *
344  * Original comment (of some historical value):
345  * This used to have a 'strict' flag, which recovery would use to mark an
346  * in-use lock as needing-to-die.  Lest I am ever tempted to put it back, I
347  * shall explain why it's gone: with the new hash table scheme, once you call
348  * ldlm_lock_destroy, you can never drop your final references on this lock.
349  * Because it's not in the hash table anymore.  -phil
350  */
351 static int ldlm_lock_destroy_internal(struct ldlm_lock *lock)
352 {
353         ENTRY;
354
355         if (lock->l_readers || lock->l_writers) {
356                 LDLM_ERROR(lock, "lock still has references");
357                 LBUG();
358         }
359
360         if (!list_empty(&lock->l_res_link)) {
361                 LDLM_ERROR(lock, "lock still on resource");
362                 LBUG();
363         }
364
365         if (ldlm_is_destroyed(lock)) {
366                 LASSERT(list_empty(&lock->l_lru));
367                 EXIT;
368                 return 0;
369         }
370         ldlm_set_destroyed(lock);
371
372         if (lock->l_export && lock->l_export->exp_lock_hash) {
373                 /* NB: it's safe to call cfs_hash_del() even lock isn't
374                  * in exp_lock_hash. */
375                 /* In the function below, .hs_keycmp resolves to
376                  * ldlm_export_lock_keycmp() */
377                 /* coverity[overrun-buffer-val] */
378                 cfs_hash_del(lock->l_export->exp_lock_hash,
379                              &lock->l_remote_handle, &lock->l_exp_hash);
380         }
381
382         ldlm_lock_remove_from_lru(lock);
383         class_handle_unhash(&lock->l_handle);
384
385         EXIT;
386         return 1;
387 }
388
389 /**
390  * Destroys a LDLM lock \a lock. Performs necessary locking first.
391  */
392 void ldlm_lock_destroy(struct ldlm_lock *lock)
393 {
394         int first;
395         ENTRY;
396         lock_res_and_lock(lock);
397         first = ldlm_lock_destroy_internal(lock);
398         unlock_res_and_lock(lock);
399
400         /* drop reference from hashtable only for first destroy */
401         if (first) {
402                 lu_ref_del(&lock->l_reference, "hash", lock);
403                 LDLM_LOCK_RELEASE(lock);
404         }
405         EXIT;
406 }
407
408 /**
409  * Destroys a LDLM lock \a lock that is already locked.
410  */
411 void ldlm_lock_destroy_nolock(struct ldlm_lock *lock)
412 {
413         int first;
414         ENTRY;
415         first = ldlm_lock_destroy_internal(lock);
416         /* drop reference from hashtable only for first destroy */
417         if (first) {
418                 lu_ref_del(&lock->l_reference, "hash", lock);
419                 LDLM_LOCK_RELEASE(lock);
420         }
421         EXIT;
422 }
423
424 /* this is called by portals_handle2object with the handle lock taken */
425 static void lock_handle_addref(void *lock)
426 {
427         LDLM_LOCK_GET((struct ldlm_lock *)lock);
428 }
429
430 static void lock_handle_free(void *lock, int size)
431 {
432         LASSERT(size == sizeof(struct ldlm_lock));
433         OBD_SLAB_FREE(lock, ldlm_lock_slab, size);
434 }
435
436 static struct portals_handle_ops lock_handle_ops = {
437         .hop_addref = lock_handle_addref,
438         .hop_free   = lock_handle_free,
439 };
440
441 /**
442  *
443  * Allocate and initialize new lock structure.
444  *
445  * usage: pass in a resource on which you have done ldlm_resource_get
446  *        new lock will take over the refcount.
447  * returns: lock with refcount 2 - one for current caller and one for remote
448  */
449 static struct ldlm_lock *ldlm_lock_new(struct ldlm_resource *resource)
450 {
451         struct ldlm_lock *lock;
452         ENTRY;
453
454         if (resource == NULL)
455                 LBUG();
456
457         OBD_SLAB_ALLOC_PTR_GFP(lock, ldlm_lock_slab, GFP_NOFS);
458         if (lock == NULL)
459                 RETURN(NULL);
460
461         spin_lock_init(&lock->l_lock);
462         lock->l_resource = resource;
463         lu_ref_add(&resource->lr_reference, "lock", lock);
464
465         atomic_set(&lock->l_refc, 2);
466         INIT_LIST_HEAD(&lock->l_res_link);
467         INIT_LIST_HEAD(&lock->l_lru);
468         INIT_LIST_HEAD(&lock->l_pending_chain);
469         INIT_LIST_HEAD(&lock->l_bl_ast);
470         INIT_LIST_HEAD(&lock->l_cp_ast);
471         INIT_LIST_HEAD(&lock->l_rk_ast);
472         init_waitqueue_head(&lock->l_waitq);
473         lock->l_blocking_lock = NULL;
474         INIT_LIST_HEAD(&lock->l_sl_mode);
475         INIT_LIST_HEAD(&lock->l_sl_policy);
476         INIT_HLIST_NODE(&lock->l_exp_hash);
477         INIT_HLIST_NODE(&lock->l_exp_flock_hash);
478
479         lprocfs_counter_incr(ldlm_res_to_ns(resource)->ns_stats,
480                              LDLM_NSS_LOCKS);
481         INIT_LIST_HEAD(&lock->l_handle.h_link);
482         class_handle_hash(&lock->l_handle, &lock_handle_ops);
483
484         lu_ref_init(&lock->l_reference);
485         lu_ref_add(&lock->l_reference, "hash", lock);
486         lock->l_callback_timeout = 0;
487         lock->l_activity = 0;
488
489 #if LUSTRE_TRACKS_LOCK_EXP_REFS
490         INIT_LIST_HEAD(&lock->l_exp_refs_link);
491         lock->l_exp_refs_nr = 0;
492         lock->l_exp_refs_target = NULL;
493 #endif
494         INIT_LIST_HEAD(&lock->l_exp_list);
495
496         RETURN(lock);
497 }
498
499 /**
500  * Moves LDLM lock \a lock to another resource.
501  * This is used on client when server returns some other lock than requested
502  * (typically as a result of intent operation)
503  */
504 int ldlm_lock_change_resource(struct ldlm_namespace *ns, struct ldlm_lock *lock,
505                               const struct ldlm_res_id *new_resid)
506 {
507         struct ldlm_resource *oldres = lock->l_resource;
508         struct ldlm_resource *newres;
509         int type;
510         ENTRY;
511
512         LASSERT(ns_is_client(ns));
513
514         lock_res_and_lock(lock);
515         if (memcmp(new_resid, &lock->l_resource->lr_name,
516                    sizeof(lock->l_resource->lr_name)) == 0) {
517                 /* Nothing to do */
518                 unlock_res_and_lock(lock);
519                 RETURN(0);
520         }
521
522         LASSERT(new_resid->name[0] != 0);
523
524         /* This function assumes that the lock isn't on any lists */
525         LASSERT(list_empty(&lock->l_res_link));
526
527         type = oldres->lr_type;
528         unlock_res_and_lock(lock);
529
530         newres = ldlm_resource_get(ns, NULL, new_resid, type, 1);
531         if (IS_ERR(newres))
532                 RETURN(PTR_ERR(newres));
533
534         lu_ref_add(&newres->lr_reference, "lock", lock);
535         /*
536          * To flip the lock from the old to the new resource, lock, oldres and
537          * newres have to be locked. Resource spin-locks are nested within
538          * lock->l_lock, and are taken in the memory address order to avoid
539          * dead-locks.
540          */
541         spin_lock(&lock->l_lock);
542         oldres = lock->l_resource;
543         if (oldres < newres) {
544                 lock_res(oldres);
545                 lock_res_nested(newres, LRT_NEW);
546         } else {
547                 lock_res(newres);
548                 lock_res_nested(oldres, LRT_NEW);
549         }
550         LASSERT(memcmp(new_resid, &oldres->lr_name,
551                        sizeof oldres->lr_name) != 0);
552         lock->l_resource = newres;
553         unlock_res(oldres);
554         unlock_res_and_lock(lock);
555
556         /* ...and the flowers are still standing! */
557         lu_ref_del(&oldres->lr_reference, "lock", lock);
558         ldlm_resource_putref(oldres);
559
560         RETURN(0);
561 }
562
563 /** \defgroup ldlm_handles LDLM HANDLES
564  * Ways to get hold of locks without any addresses.
565  * @{
566  */
567
568 /**
569  * Fills in handle for LDLM lock \a lock into supplied \a lockh
570  * Does not take any references.
571  */
572 void ldlm_lock2handle(const struct ldlm_lock *lock, struct lustre_handle *lockh)
573 {
574         lockh->cookie = lock->l_handle.h_cookie;
575 }
576 EXPORT_SYMBOL(ldlm_lock2handle);
577
578 /**
579  * Obtain a lock reference by handle.
580  *
581  * if \a flags: atomically get the lock and set the flags.
582  *              Return NULL if flag already set
583  */
584 struct ldlm_lock *__ldlm_handle2lock(const struct lustre_handle *handle,
585                                      __u64 flags)
586 {
587         struct ldlm_lock *lock;
588         ENTRY;
589
590         LASSERT(handle);
591
592         lock = class_handle2object(handle->cookie, NULL);
593         if (lock == NULL)
594                 RETURN(NULL);
595
596         if (lock->l_export != NULL && lock->l_export->exp_failed) {
597                 CDEBUG(D_INFO, "lock export failed: lock %p, exp %p\n",
598                        lock, lock->l_export);
599                 LDLM_LOCK_PUT(lock);
600                 RETURN(NULL);
601         }
602
603         /* It's unlikely but possible that someone marked the lock as
604          * destroyed after we did handle2object on it */
605         if ((flags == 0) && !ldlm_is_destroyed(lock)) {
606                 lu_ref_add(&lock->l_reference, "handle", current);
607                 RETURN(lock);
608         }
609
610         lock_res_and_lock(lock);
611
612         LASSERT(lock->l_resource != NULL);
613
614         lu_ref_add_atomic(&lock->l_reference, "handle", current);
615         if (unlikely(ldlm_is_destroyed(lock))) {
616                 unlock_res_and_lock(lock);
617                 CDEBUG(D_INFO, "lock already destroyed: lock %p\n", lock);
618                 LDLM_LOCK_PUT(lock);
619                 RETURN(NULL);
620         }
621
622         /* If we're setting flags, make sure none of them are already set. */
623         if (flags != 0) {
624                 if ((lock->l_flags & flags) != 0) {
625                         unlock_res_and_lock(lock);
626                         LDLM_LOCK_PUT(lock);
627                         RETURN(NULL);
628                 }
629
630                 lock->l_flags |= flags;
631         }
632
633         unlock_res_and_lock(lock);
634         RETURN(lock);
635 }
636 EXPORT_SYMBOL(__ldlm_handle2lock);
637 /** @} ldlm_handles */
638
639 /**
640  * Fill in "on the wire" representation for given LDLM lock into supplied
641  * lock descriptor \a desc structure.
642  */
643 void ldlm_lock2desc(struct ldlm_lock *lock, struct ldlm_lock_desc *desc)
644 {
645         ldlm_res2desc(lock->l_resource, &desc->l_resource);
646         desc->l_req_mode = lock->l_req_mode;
647         desc->l_granted_mode = lock->l_granted_mode;
648         ldlm_convert_policy_to_wire(lock->l_resource->lr_type,
649                                     &lock->l_policy_data,
650                                     &desc->l_policy_data);
651 }
652
653 /**
654  * Add a lock to list of conflicting locks to send AST to.
655  *
656  * Only add if we have not sent a blocking AST to the lock yet.
657  */
658 static void ldlm_add_bl_work_item(struct ldlm_lock *lock, struct ldlm_lock *new,
659                                   struct list_head *work_list)
660 {
661         if (!ldlm_is_ast_sent(lock)) {
662                 LDLM_DEBUG(lock, "lock incompatible; sending blocking AST.");
663                 ldlm_set_ast_sent(lock);
664                 /* If the enqueuing client said so, tell the AST recipient to
665                  * discard dirty data, rather than writing back. */
666                 if (ldlm_is_ast_discard_data(new))
667                         ldlm_set_discard_data(lock);
668                 LASSERT(list_empty(&lock->l_bl_ast));
669                 list_add(&lock->l_bl_ast, work_list);
670                 LDLM_LOCK_GET(lock);
671                 LASSERT(lock->l_blocking_lock == NULL);
672                 lock->l_blocking_lock = LDLM_LOCK_GET(new);
673         }
674 }
675
676 /**
677  * Add a lock to list of just granted locks to send completion AST to.
678  */
679 static void ldlm_add_cp_work_item(struct ldlm_lock *lock,
680                                   struct list_head *work_list)
681 {
682         if (!ldlm_is_cp_reqd(lock)) {
683                 ldlm_set_cp_reqd(lock);
684                 LDLM_DEBUG(lock, "lock granted; sending completion AST.");
685                 LASSERT(list_empty(&lock->l_cp_ast));
686                 list_add(&lock->l_cp_ast, work_list);
687                 LDLM_LOCK_GET(lock);
688         }
689 }
690
691 /**
692  * Aggregator function to add AST work items into a list. Determines
693  * what sort of an AST work needs to be done and calls the proper
694  * adding function.
695  * Must be called with lr_lock held.
696  */
697 void ldlm_add_ast_work_item(struct ldlm_lock *lock, struct ldlm_lock *new,
698                             struct list_head *work_list)
699 {
700         ENTRY;
701         check_res_locked(lock->l_resource);
702         if (new)
703                 ldlm_add_bl_work_item(lock, new, work_list);
704         else
705                 ldlm_add_cp_work_item(lock, work_list);
706         EXIT;
707 }
708
709 /**
710  * Add specified reader/writer reference to LDLM lock with handle \a lockh.
711  * r/w reference type is determined by \a mode
712  * Calls ldlm_lock_addref_internal.
713  */
714 void ldlm_lock_addref(const struct lustre_handle *lockh, enum ldlm_mode mode)
715 {
716         struct ldlm_lock *lock;
717
718         lock = ldlm_handle2lock(lockh);
719         LASSERTF(lock != NULL, "Non-existing lock: %#llx\n", lockh->cookie);
720         ldlm_lock_addref_internal(lock, mode);
721         LDLM_LOCK_PUT(lock);
722 }
723 EXPORT_SYMBOL(ldlm_lock_addref);
724
725 /**
726  * Helper function.
727  * Add specified reader/writer reference to LDLM lock \a lock.
728  * r/w reference type is determined by \a mode
729  * Removes lock from LRU if it is there.
730  * Assumes the LDLM lock is already locked.
731  */
732 void ldlm_lock_addref_internal_nolock(struct ldlm_lock *lock,
733                                       enum ldlm_mode mode)
734 {
735         ldlm_lock_remove_from_lru(lock);
736         if (mode & (LCK_NL | LCK_CR | LCK_PR)) {
737                 lock->l_readers++;
738                 lu_ref_add_atomic(&lock->l_reference, "reader", lock);
739         }
740         if (mode & (LCK_EX | LCK_CW | LCK_PW | LCK_GROUP | LCK_COS)) {
741                 lock->l_writers++;
742                 lu_ref_add_atomic(&lock->l_reference, "writer", lock);
743         }
744         LDLM_LOCK_GET(lock);
745         lu_ref_add_atomic(&lock->l_reference, "user", lock);
746         LDLM_DEBUG(lock, "ldlm_lock_addref(%s)", ldlm_lockname[mode]);
747 }
748
749 /**
750  * Attempts to add reader/writer reference to a lock with handle \a lockh, and
751  * fails if lock is already LDLM_FL_CBPENDING or destroyed.
752  *
753  * \retval 0 success, lock was addref-ed
754  *
755  * \retval -EAGAIN lock is being canceled.
756  */
757 int ldlm_lock_addref_try(const struct lustre_handle *lockh, enum ldlm_mode mode)
758 {
759         struct ldlm_lock *lock;
760         int               result;
761
762         result = -EAGAIN;
763         lock = ldlm_handle2lock(lockh);
764         if (lock != NULL) {
765                 lock_res_and_lock(lock);
766                 if (lock->l_readers != 0 || lock->l_writers != 0 ||
767                     !ldlm_is_cbpending(lock)) {
768                         ldlm_lock_addref_internal_nolock(lock, mode);
769                         result = 0;
770                 }
771                 unlock_res_and_lock(lock);
772                 LDLM_LOCK_PUT(lock);
773         }
774         return result;
775 }
776 EXPORT_SYMBOL(ldlm_lock_addref_try);
777
778 /**
779  * Add specified reader/writer reference to LDLM lock \a lock.
780  * Locks LDLM lock and calls ldlm_lock_addref_internal_nolock to do the work.
781  * Only called for local locks.
782  */
783 void ldlm_lock_addref_internal(struct ldlm_lock *lock, enum ldlm_mode mode)
784 {
785         lock_res_and_lock(lock);
786         ldlm_lock_addref_internal_nolock(lock, mode);
787         unlock_res_and_lock(lock);
788 }
789
790 /**
791  * Removes reader/writer reference for LDLM lock \a lock.
792  * Assumes LDLM lock is already locked.
793  * only called in ldlm_flock_destroy and for local locks.
794  * Does NOT add lock to LRU if no r/w references left to accomodate flock locks
795  * that cannot be placed in LRU.
796  */
797 void ldlm_lock_decref_internal_nolock(struct ldlm_lock *lock,
798                                       enum ldlm_mode mode)
799 {
800         LDLM_DEBUG(lock, "ldlm_lock_decref(%s)", ldlm_lockname[mode]);
801         if (mode & (LCK_NL | LCK_CR | LCK_PR)) {
802                 LASSERT(lock->l_readers > 0);
803                 lu_ref_del(&lock->l_reference, "reader", lock);
804                 lock->l_readers--;
805         }
806         if (mode & (LCK_EX | LCK_CW | LCK_PW | LCK_GROUP | LCK_COS)) {
807                 LASSERT(lock->l_writers > 0);
808                 lu_ref_del(&lock->l_reference, "writer", lock);
809                 lock->l_writers--;
810         }
811
812         lu_ref_del(&lock->l_reference, "user", lock);
813         LDLM_LOCK_RELEASE(lock);    /* matches the LDLM_LOCK_GET() in addref */
814 }
815
816 /**
817  * Removes reader/writer reference for LDLM lock \a lock.
818  * Locks LDLM lock first.
819  * If the lock is determined to be client lock on a client and r/w refcount
820  * drops to zero and the lock is not blocked, the lock is added to LRU lock
821  * on the namespace.
822  * For blocked LDLM locks if r/w count drops to zero, blocking_ast is called.
823  */
824 void ldlm_lock_decref_internal(struct ldlm_lock *lock, enum ldlm_mode mode)
825 {
826         struct ldlm_namespace *ns;
827         ENTRY;
828
829         lock_res_and_lock(lock);
830
831         ns = ldlm_lock_to_ns(lock);
832
833         ldlm_lock_decref_internal_nolock(lock, mode);
834
835         if ((ldlm_is_local(lock) || lock->l_req_mode == LCK_GROUP) &&
836             !lock->l_readers && !lock->l_writers) {
837                 /* If this is a local lock on a server namespace and this was
838                  * the last reference, cancel the lock.
839                  *
840                  * Group locks are special:
841                  * They must not go in LRU, but they are not called back
842                  * like non-group locks, instead they are manually released.
843                  * They have an l_writers reference which they keep until
844                  * they are manually released, so we remove them when they have
845                  * no more reader or writer references. - LU-6368 */
846                 ldlm_set_cbpending(lock);
847         }
848
849         if (!lock->l_readers && !lock->l_writers && ldlm_is_cbpending(lock)) {
850                 /* If we received a blocked AST and this was the last reference,
851                  * run the callback. */
852                 if (ldlm_is_ns_srv(lock) && lock->l_export)
853                         CERROR("FL_CBPENDING set on non-local lock--just a "
854                                "warning\n");
855
856                 LDLM_DEBUG(lock, "final decref done on cbpending lock");
857
858                 LDLM_LOCK_GET(lock); /* dropped by bl thread */
859                 ldlm_lock_remove_from_lru(lock);
860                 unlock_res_and_lock(lock);
861
862                 if (ldlm_is_fail_loc(lock))
863                         OBD_RACE(OBD_FAIL_LDLM_CP_BL_RACE);
864
865                 if (ldlm_is_atomic_cb(lock) ||
866                     ldlm_bl_to_thread_lock(ns, NULL, lock) != 0)
867                         ldlm_handle_bl_callback(ns, NULL, lock);
868         } else if (ns_is_client(ns) &&
869                    !lock->l_readers && !lock->l_writers &&
870                    !ldlm_is_no_lru(lock) &&
871                    !ldlm_is_bl_ast(lock) &&
872                    !ldlm_is_converting(lock)) {
873
874                 LDLM_DEBUG(lock, "add lock into lru list");
875
876                 /* If this is a client-side namespace and this was the last
877                  * reference, put it on the LRU. */
878                 ldlm_lock_add_to_lru(lock);
879                 unlock_res_and_lock(lock);
880
881                 if (ldlm_is_fail_loc(lock))
882                         OBD_RACE(OBD_FAIL_LDLM_CP_BL_RACE);
883
884                 /* Call ldlm_cancel_lru() only if EARLY_CANCEL and LRU RESIZE
885                  * are not supported by the server, otherwise, it is done on
886                  * enqueue. */
887                 if (!exp_connect_cancelset(lock->l_conn_export) &&
888                     !ns_connect_lru_resize(ns))
889                         ldlm_cancel_lru(ns, 0, LCF_ASYNC, 0);
890         } else {
891                 LDLM_DEBUG(lock, "do not add lock into lru list");
892                 unlock_res_and_lock(lock);
893         }
894
895         EXIT;
896 }
897
898 /**
899  * Decrease reader/writer refcount for LDLM lock with handle \a lockh
900  */
901 void ldlm_lock_decref(const struct lustre_handle *lockh, enum ldlm_mode mode)
902 {
903         struct ldlm_lock *lock = __ldlm_handle2lock(lockh, 0);
904         LASSERTF(lock != NULL, "Non-existing lock: %#llx\n", lockh->cookie);
905         ldlm_lock_decref_internal(lock, mode);
906         LDLM_LOCK_PUT(lock);
907 }
908 EXPORT_SYMBOL(ldlm_lock_decref);
909
910 /**
911  * Decrease reader/writer refcount for LDLM lock with handle
912  * \a lockh and mark it for subsequent cancellation once r/w refcount
913  * drops to zero instead of putting into LRU.
914  *
915  */
916 void ldlm_lock_decref_and_cancel(const struct lustre_handle *lockh,
917                                  enum ldlm_mode mode)
918 {
919         struct ldlm_lock *lock = __ldlm_handle2lock(lockh, 0);
920         ENTRY;
921
922         LASSERT(lock != NULL);
923
924         LDLM_DEBUG(lock, "ldlm_lock_decref(%s)", ldlm_lockname[mode]);
925         lock_res_and_lock(lock);
926         ldlm_set_cbpending(lock);
927         unlock_res_and_lock(lock);
928         ldlm_lock_decref_internal(lock, mode);
929         LDLM_LOCK_PUT(lock);
930 }
931 EXPORT_SYMBOL(ldlm_lock_decref_and_cancel);
932
933 struct sl_insert_point {
934         struct list_head *res_link;
935         struct list_head *mode_link;
936         struct list_head *policy_link;
937 };
938
939 /**
940  * Finds a position to insert the new lock into granted lock list.
941  *
942  * Used for locks eligible for skiplist optimization.
943  *
944  * Parameters:
945  *      queue [input]:  the granted list where search acts on;
946  *      req [input]:    the lock whose position to be located;
947  *      prev [output]:  positions within 3 lists to insert @req to
948  * Return Value:
949  *      filled @prev
950  * NOTE: called by
951  *  - ldlm_grant_lock_with_skiplist
952  */
953 static void search_granted_lock(struct list_head *queue,
954                                 struct ldlm_lock *req,
955                                 struct sl_insert_point *prev)
956 {
957         struct list_head *tmp;
958         struct ldlm_lock *lock, *mode_end, *policy_end;
959         ENTRY;
960
961         list_for_each(tmp, queue) {
962                 lock = list_entry(tmp, struct ldlm_lock, l_res_link);
963
964                 mode_end = list_entry(lock->l_sl_mode.prev,
965                                           struct ldlm_lock, l_sl_mode);
966
967                 if (lock->l_req_mode != req->l_req_mode) {
968                         /* jump to last lock of mode group */
969                         tmp = &mode_end->l_res_link;
970                         continue;
971                 }
972
973                 /* suitable mode group is found */
974                 if (lock->l_resource->lr_type == LDLM_PLAIN) {
975                         /* insert point is last lock of the mode group */
976                         prev->res_link = &mode_end->l_res_link;
977                         prev->mode_link = &mode_end->l_sl_mode;
978                         prev->policy_link = &req->l_sl_policy;
979                         EXIT;
980                         return;
981                 } else if (lock->l_resource->lr_type == LDLM_IBITS) {
982                         for (;;) {
983                                 policy_end =
984                                         list_entry(lock->l_sl_policy.prev,
985                                                        struct ldlm_lock,
986                                                        l_sl_policy);
987
988                                 if (lock->l_policy_data.l_inodebits.bits ==
989                                     req->l_policy_data.l_inodebits.bits) {
990                                         /* insert point is last lock of
991                                          * the policy group */
992                                         prev->res_link =
993                                                 &policy_end->l_res_link;
994                                         prev->mode_link =
995                                                 &policy_end->l_sl_mode;
996                                         prev->policy_link =
997                                                 &policy_end->l_sl_policy;
998                                         EXIT;
999                                         return;
1000                                 }
1001
1002                                 if (policy_end == mode_end)
1003                                         /* done with mode group */
1004                                         break;
1005
1006                                 /* go to next policy group within mode group */
1007                                 tmp = policy_end->l_res_link.next;
1008                                 lock = list_entry(tmp, struct ldlm_lock,
1009                                                       l_res_link);
1010                         }  /* loop over policy groups within the mode group */
1011
1012                         /* insert point is last lock of the mode group,
1013                          * new policy group is started */
1014                         prev->res_link = &mode_end->l_res_link;
1015                         prev->mode_link = &mode_end->l_sl_mode;
1016                         prev->policy_link = &req->l_sl_policy;
1017                         EXIT;
1018                         return;
1019                 } else {
1020                         LDLM_ERROR(lock,"is not LDLM_PLAIN or LDLM_IBITS lock");
1021                         LBUG();
1022                 }
1023         }
1024
1025         /* insert point is last lock on the queue,
1026          * new mode group and new policy group are started */
1027         prev->res_link = queue->prev;
1028         prev->mode_link = &req->l_sl_mode;
1029         prev->policy_link = &req->l_sl_policy;
1030         EXIT;
1031         return;
1032 }
1033
1034 /**
1035  * Add a lock into resource granted list after a position described by
1036  * \a prev.
1037  */
1038 static void ldlm_granted_list_add_lock(struct ldlm_lock *lock,
1039                                        struct sl_insert_point *prev)
1040 {
1041         struct ldlm_resource *res = lock->l_resource;
1042         ENTRY;
1043
1044         check_res_locked(res);
1045
1046         ldlm_resource_dump(D_INFO, res);
1047         LDLM_DEBUG(lock, "About to add lock:");
1048
1049         if (ldlm_is_destroyed(lock)) {
1050                 CDEBUG(D_OTHER, "Lock destroyed, not adding to resource\n");
1051                 return;
1052         }
1053
1054         LASSERT(list_empty(&lock->l_res_link));
1055         LASSERT(list_empty(&lock->l_sl_mode));
1056         LASSERT(list_empty(&lock->l_sl_policy));
1057
1058         /*
1059          * lock->link == prev->link means lock is first starting the group.
1060          * Don't re-add to itself to suppress kernel warnings.
1061          */
1062         if (&lock->l_res_link != prev->res_link)
1063                 list_add(&lock->l_res_link, prev->res_link);
1064         if (&lock->l_sl_mode != prev->mode_link)
1065                 list_add(&lock->l_sl_mode, prev->mode_link);
1066         if (&lock->l_sl_policy != prev->policy_link)
1067                 list_add(&lock->l_sl_policy, prev->policy_link);
1068
1069         EXIT;
1070 }
1071
1072 /**
1073  * Add a lock to granted list on a resource maintaining skiplist
1074  * correctness.
1075  */
1076 void ldlm_grant_lock_with_skiplist(struct ldlm_lock *lock)
1077 {
1078         struct sl_insert_point prev;
1079
1080         LASSERT(lock->l_req_mode == lock->l_granted_mode);
1081
1082         search_granted_lock(&lock->l_resource->lr_granted, lock, &prev);
1083         ldlm_granted_list_add_lock(lock, &prev);
1084 }
1085
1086 /**
1087  * Perform lock granting bookkeeping.
1088  *
1089  * Includes putting the lock into granted list and updating lock mode.
1090  * NOTE: called by
1091  *  - ldlm_lock_enqueue
1092  *  - ldlm_reprocess_queue
1093  *
1094  * must be called with lr_lock held
1095  */
1096 void ldlm_grant_lock(struct ldlm_lock *lock, struct list_head *work_list)
1097 {
1098         struct ldlm_resource *res = lock->l_resource;
1099         ENTRY;
1100
1101         check_res_locked(res);
1102
1103         lock->l_granted_mode = lock->l_req_mode;
1104
1105         if (work_list && lock->l_completion_ast != NULL)
1106                 ldlm_add_ast_work_item(lock, NULL, work_list);
1107
1108         if (res->lr_type == LDLM_PLAIN || res->lr_type == LDLM_IBITS)
1109                 ldlm_grant_lock_with_skiplist(lock);
1110         else if (res->lr_type == LDLM_EXTENT)
1111                 ldlm_extent_add_lock(res, lock);
1112         else if (res->lr_type == LDLM_FLOCK) {
1113                 /* We should not add locks to granted list in the following
1114                  * cases:
1115                  * - this is an UNLOCK but not a real lock;
1116                  * - this is a TEST lock;
1117                  * - this is a F_CANCELLK lock (async flock has req_mode == 0)
1118                  * - this is a deadlock (flock cannot be granted) */
1119                 if (lock->l_req_mode == 0 ||
1120                     lock->l_req_mode == LCK_NL ||
1121                     ldlm_is_test_lock(lock) ||
1122                     ldlm_is_flock_deadlock(lock))
1123                         RETURN_EXIT;
1124                 ldlm_resource_add_lock(res, &res->lr_granted, lock);
1125         } else {
1126                 LBUG();
1127         }
1128
1129         ldlm_pool_add(&ldlm_res_to_ns(res)->ns_pool, lock);
1130         EXIT;
1131 }
1132
1133 /**
1134  * Describe the overlap between two locks.  itree_overlap_cb data.
1135  */
1136 struct lock_match_data {
1137         struct ldlm_lock        *lmd_old;
1138         struct ldlm_lock        *lmd_lock;
1139         enum ldlm_mode          *lmd_mode;
1140         union ldlm_policy_data  *lmd_policy;
1141         __u64                    lmd_flags;
1142         int                      lmd_unref;
1143 };
1144
1145 /**
1146  * Check if the given @lock meets the criteria for a match.
1147  * A reference on the lock is taken if matched.
1148  *
1149  * \param lock     test-against this lock
1150  * \param data     parameters
1151  */
1152 static int lock_matches(struct ldlm_lock *lock, struct lock_match_data *data)
1153 {
1154         union ldlm_policy_data *lpol = &lock->l_policy_data;
1155         enum ldlm_mode match;
1156
1157         if (lock == data->lmd_old)
1158                 return INTERVAL_ITER_STOP;
1159
1160         /* Check if this lock can be matched.
1161          * Used by LU-2919(exclusive open) for open lease lock */
1162         if (ldlm_is_excl(lock))
1163                 return INTERVAL_ITER_CONT;
1164
1165         /* llite sometimes wants to match locks that will be
1166          * canceled when their users drop, but we allow it to match
1167          * if it passes in CBPENDING and the lock still has users.
1168          * this is generally only going to be used by children
1169          * whose parents already hold a lock so forward progress
1170          * can still happen. */
1171         if (ldlm_is_cbpending(lock) &&
1172             !(data->lmd_flags & LDLM_FL_CBPENDING))
1173                 return INTERVAL_ITER_CONT;
1174         if (!data->lmd_unref && ldlm_is_cbpending(lock) &&
1175             lock->l_readers == 0 && lock->l_writers == 0)
1176                 return INTERVAL_ITER_CONT;
1177
1178         if (!(lock->l_req_mode & *data->lmd_mode))
1179                 return INTERVAL_ITER_CONT;
1180         match = lock->l_req_mode;
1181
1182         switch (lock->l_resource->lr_type) {
1183         case LDLM_EXTENT:
1184                 if (lpol->l_extent.start > data->lmd_policy->l_extent.start ||
1185                     lpol->l_extent.end < data->lmd_policy->l_extent.end)
1186                         return INTERVAL_ITER_CONT;
1187
1188                 if (unlikely(match == LCK_GROUP) &&
1189                     data->lmd_policy->l_extent.gid != LDLM_GID_ANY &&
1190                     lpol->l_extent.gid != data->lmd_policy->l_extent.gid)
1191                         return INTERVAL_ITER_CONT;
1192                 break;
1193         case LDLM_IBITS:
1194                 /* We match if we have existing lock with same or wider set
1195                    of bits. */
1196                 if ((lpol->l_inodebits.bits &
1197                      data->lmd_policy->l_inodebits.bits) !=
1198                     data->lmd_policy->l_inodebits.bits)
1199                         return INTERVAL_ITER_CONT;
1200                 break;
1201         default:
1202                 ;
1203         }
1204
1205         /* We match if we have existing lock with same or wider set
1206            of bits. */
1207         if (!data->lmd_unref && LDLM_HAVE_MASK(lock, GONE))
1208                 return INTERVAL_ITER_CONT;
1209
1210         if (!equi(data->lmd_flags & LDLM_FL_LOCAL_ONLY, ldlm_is_local(lock)))
1211                 return INTERVAL_ITER_CONT;
1212
1213         if (data->lmd_flags & LDLM_FL_TEST_LOCK) {
1214                 LDLM_LOCK_GET(lock);
1215                 ldlm_lock_touch_in_lru(lock);
1216         } else {
1217                 ldlm_lock_addref_internal_nolock(lock, match);
1218         }
1219
1220         *data->lmd_mode = match;
1221         data->lmd_lock = lock;
1222
1223         return INTERVAL_ITER_STOP;
1224 }
1225
1226 static unsigned int itree_overlap_cb(struct interval_node *in, void *args)
1227 {
1228         struct ldlm_interval *node = to_ldlm_interval(in);
1229         struct lock_match_data *data = args;
1230         struct ldlm_lock *lock;
1231         int rc;
1232
1233         list_for_each_entry(lock, &node->li_group, l_sl_policy) {
1234                 rc = lock_matches(lock, data);
1235                 if (rc == INTERVAL_ITER_STOP)
1236                         return INTERVAL_ITER_STOP;
1237         }
1238         return INTERVAL_ITER_CONT;
1239 }
1240
1241 /**
1242  * Search for a lock with given parameters in interval trees.
1243  *
1244  * \param res      search for a lock in this resource
1245  * \param data     parameters
1246  *
1247  * \retval a referenced lock or NULL.
1248  */
1249 static struct ldlm_lock *search_itree(struct ldlm_resource *res,
1250                                       struct lock_match_data *data)
1251 {
1252         struct interval_node_extent ext = {
1253                 .start     = data->lmd_policy->l_extent.start,
1254                 .end       = data->lmd_policy->l_extent.end
1255         };
1256         int idx;
1257
1258         for (idx = 0; idx < LCK_MODE_NUM; idx++) {
1259                 struct ldlm_interval_tree *tree = &res->lr_itree[idx];
1260
1261                 if (tree->lit_root == NULL)
1262                         continue;
1263
1264                 if (!(tree->lit_mode & *data->lmd_mode))
1265                         continue;
1266
1267                 interval_search(tree->lit_root, &ext,
1268                                 itree_overlap_cb, data);
1269         }
1270         return data->lmd_lock;
1271 }
1272
1273
1274 /**
1275  * Search for a lock with given properties in a queue.
1276  *
1277  * \param queue    search for a lock in this queue
1278  * \param data     parameters
1279  *
1280  * \retval a referenced lock or NULL.
1281  */
1282 static struct ldlm_lock *search_queue(struct list_head *queue,
1283                                       struct lock_match_data *data)
1284 {
1285         struct ldlm_lock *lock;
1286         int rc;
1287
1288         list_for_each_entry(lock, queue, l_res_link) {
1289                 rc = lock_matches(lock, data);
1290                 if (rc == INTERVAL_ITER_STOP)
1291                         return data->lmd_lock;
1292         }
1293         return NULL;
1294 }
1295
1296 void ldlm_lock_fail_match_locked(struct ldlm_lock *lock)
1297 {
1298         if ((lock->l_flags & LDLM_FL_FAIL_NOTIFIED) == 0) {
1299                 lock->l_flags |= LDLM_FL_FAIL_NOTIFIED;
1300                 wake_up_all(&lock->l_waitq);
1301         }
1302 }
1303 EXPORT_SYMBOL(ldlm_lock_fail_match_locked);
1304
1305 void ldlm_lock_fail_match(struct ldlm_lock *lock)
1306 {
1307         lock_res_and_lock(lock);
1308         ldlm_lock_fail_match_locked(lock);
1309         unlock_res_and_lock(lock);
1310 }
1311
1312 /**
1313  * Mark lock as "matchable" by OST.
1314  *
1315  * Used to prevent certain races in LOV/OSC where the lock is granted, but LVB
1316  * is not yet valid.
1317  * Assumes LDLM lock is already locked.
1318  */
1319 void ldlm_lock_allow_match_locked(struct ldlm_lock *lock)
1320 {
1321         ldlm_set_lvb_ready(lock);
1322         wake_up_all(&lock->l_waitq);
1323 }
1324 EXPORT_SYMBOL(ldlm_lock_allow_match_locked);
1325
1326 /**
1327  * Mark lock as "matchable" by OST.
1328  * Locks the lock and then \see ldlm_lock_allow_match_locked
1329  */
1330 void ldlm_lock_allow_match(struct ldlm_lock *lock)
1331 {
1332         lock_res_and_lock(lock);
1333         ldlm_lock_allow_match_locked(lock);
1334         unlock_res_and_lock(lock);
1335 }
1336 EXPORT_SYMBOL(ldlm_lock_allow_match);
1337
1338 /**
1339  * Attempt to find a lock with specified properties.
1340  *
1341  * Typically returns a reference to matched lock unless LDLM_FL_TEST_LOCK is
1342  * set in \a flags
1343  *
1344  * Can be called in two ways:
1345  *
1346  * If 'ns' is NULL, then lockh describes an existing lock that we want to look
1347  * for a duplicate of.
1348  *
1349  * Otherwise, all of the fields must be filled in, to match against.
1350  *
1351  * If 'flags' contains LDLM_FL_LOCAL_ONLY, then only match local locks on the
1352  *     server (ie, connh is NULL)
1353  * If 'flags' contains LDLM_FL_BLOCK_GRANTED, then only locks on the granted
1354  *     list will be considered
1355  * If 'flags' contains LDLM_FL_CBPENDING, then locks that have been marked
1356  *     to be canceled can still be matched as long as they still have reader
1357  *     or writer refernces
1358  * If 'flags' contains LDLM_FL_TEST_LOCK, then don't actually reference a lock,
1359  *     just tell us if we would have matched.
1360  *
1361  * \retval 1 if it finds an already-existing lock that is compatible; in this
1362  * case, lockh is filled in with a addref()ed lock
1363  *
1364  * We also check security context, and if that fails we simply return 0 (to
1365  * keep caller code unchanged), the context failure will be discovered by
1366  * caller sometime later.
1367  */
1368 enum ldlm_mode ldlm_lock_match(struct ldlm_namespace *ns, __u64 flags,
1369                                const struct ldlm_res_id *res_id,
1370                                enum ldlm_type type,
1371                                union ldlm_policy_data *policy,
1372                                enum ldlm_mode mode,
1373                                struct lustre_handle *lockh, int unref)
1374 {
1375         struct lock_match_data data = {
1376                 .lmd_old        = NULL,
1377                 .lmd_lock       = NULL,
1378                 .lmd_mode       = &mode,
1379                 .lmd_policy     = policy,
1380                 .lmd_flags      = flags,
1381                 .lmd_unref      = unref,
1382         };
1383         struct ldlm_resource *res;
1384         struct ldlm_lock *lock;
1385         int rc = 0;
1386         ENTRY;
1387
1388         if (ns == NULL) {
1389                 data.lmd_old = ldlm_handle2lock(lockh);
1390                 LASSERT(data.lmd_old != NULL);
1391
1392                 ns = ldlm_lock_to_ns(data.lmd_old);
1393                 res_id = &data.lmd_old->l_resource->lr_name;
1394                 type = data.lmd_old->l_resource->lr_type;
1395                 *data.lmd_mode = data.lmd_old->l_req_mode;
1396         }
1397
1398         res = ldlm_resource_get(ns, NULL, res_id, type, 0);
1399         if (IS_ERR(res)) {
1400                 LASSERT(data.lmd_old == NULL);
1401                 RETURN(0);
1402         }
1403
1404         LDLM_RESOURCE_ADDREF(res);
1405         lock_res(res);
1406
1407         if (res->lr_type == LDLM_EXTENT)
1408                 lock = search_itree(res, &data);
1409         else
1410                 lock = search_queue(&res->lr_granted, &data);
1411         if (lock != NULL)
1412                 GOTO(out, rc = 1);
1413         if (flags & LDLM_FL_BLOCK_GRANTED)
1414                 GOTO(out, rc = 0);
1415         lock = search_queue(&res->lr_waiting, &data);
1416         if (lock != NULL)
1417                 GOTO(out, rc = 1);
1418
1419         EXIT;
1420  out:
1421         unlock_res(res);
1422         LDLM_RESOURCE_DELREF(res);
1423         ldlm_resource_putref(res);
1424
1425         if (lock) {
1426                 ldlm_lock2handle(lock, lockh);
1427                 if ((flags & LDLM_FL_LVB_READY) &&
1428                     (!ldlm_is_lvb_ready(lock))) {
1429                         __u64 wait_flags = LDLM_FL_LVB_READY |
1430                                 LDLM_FL_DESTROYED | LDLM_FL_FAIL_NOTIFIED;
1431                         struct l_wait_info lwi;
1432                         if (lock->l_completion_ast) {
1433                                 int err = lock->l_completion_ast(lock,
1434                                                           LDLM_FL_WAIT_NOREPROC,
1435                                                                  NULL);
1436                                 if (err) {
1437                                         if (flags & LDLM_FL_TEST_LOCK)
1438                                                 LDLM_LOCK_RELEASE(lock);
1439                                         else
1440                                                 ldlm_lock_decref_internal(lock,
1441                                                                           mode);
1442                                         rc = 0;
1443                                         goto out2;
1444                                 }
1445                         }
1446
1447                         lwi = LWI_TIMEOUT_INTR(cfs_time_seconds(obd_timeout),
1448                                                NULL, LWI_ON_SIGNAL_NOOP, NULL);
1449
1450                         /* XXX FIXME see comment on CAN_MATCH in lustre_dlm.h */
1451                         l_wait_event(lock->l_waitq,
1452                                      lock->l_flags & wait_flags,
1453                                      &lwi);
1454                         if (!ldlm_is_lvb_ready(lock)) {
1455                                 if (flags & LDLM_FL_TEST_LOCK)
1456                                         LDLM_LOCK_RELEASE(lock);
1457                                 else
1458                                         ldlm_lock_decref_internal(lock, mode);
1459                                 rc = 0;
1460                         }
1461                 }
1462         }
1463  out2:
1464         if (rc) {
1465                 LDLM_DEBUG(lock, "matched (%llu %llu)",
1466                            (type == LDLM_PLAIN || type == LDLM_IBITS) ?
1467                                 res_id->name[2] : policy->l_extent.start,
1468                            (type == LDLM_PLAIN || type == LDLM_IBITS) ?
1469                                 res_id->name[3] : policy->l_extent.end);
1470
1471                 /* check user's security context */
1472                 if (lock->l_conn_export &&
1473                     sptlrpc_import_check_ctx(
1474                                 class_exp2cliimp(lock->l_conn_export))) {
1475                         if (!(flags & LDLM_FL_TEST_LOCK))
1476                                 ldlm_lock_decref_internal(lock, mode);
1477                         rc = 0;
1478                 }
1479
1480                 if (flags & LDLM_FL_TEST_LOCK)
1481                         LDLM_LOCK_RELEASE(lock);
1482
1483         } else if (!(flags & LDLM_FL_TEST_LOCK)) {/*less verbose for test-only*/
1484                 LDLM_DEBUG_NOLOCK("not matched ns %p type %u mode %u res "
1485                                   "%llu/%llu (%llu %llu)", ns,
1486                                   type, mode, res_id->name[0], res_id->name[1],
1487                                   (type == LDLM_PLAIN || type == LDLM_IBITS) ?
1488                                         res_id->name[2] :policy->l_extent.start,
1489                                   (type == LDLM_PLAIN || type == LDLM_IBITS) ?
1490                                         res_id->name[3] : policy->l_extent.end);
1491         }
1492         if (data.lmd_old != NULL)
1493                 LDLM_LOCK_PUT(data.lmd_old);
1494
1495         return rc ? mode : 0;
1496 }
1497 EXPORT_SYMBOL(ldlm_lock_match);
1498
1499 enum ldlm_mode ldlm_revalidate_lock_handle(const struct lustre_handle *lockh,
1500                                            __u64 *bits)
1501 {
1502         struct ldlm_lock *lock;
1503         enum ldlm_mode mode = 0;
1504         ENTRY;
1505
1506         lock = ldlm_handle2lock(lockh);
1507         if (lock != NULL) {
1508                 lock_res_and_lock(lock);
1509                 if (LDLM_HAVE_MASK(lock, GONE))
1510                         GOTO(out, mode);
1511
1512                 if (ldlm_is_cbpending(lock) &&
1513                     lock->l_readers == 0 && lock->l_writers == 0)
1514                         GOTO(out, mode);
1515
1516                 if (bits)
1517                         *bits = lock->l_policy_data.l_inodebits.bits;
1518                 mode = lock->l_granted_mode;
1519                 ldlm_lock_addref_internal_nolock(lock, mode);
1520         }
1521
1522         EXIT;
1523
1524 out:
1525         if (lock != NULL) {
1526                 unlock_res_and_lock(lock);
1527                 LDLM_LOCK_PUT(lock);
1528         }
1529         return mode;
1530 }
1531 EXPORT_SYMBOL(ldlm_revalidate_lock_handle);
1532
1533 /** The caller must guarantee that the buffer is large enough. */
1534 int ldlm_fill_lvb(struct ldlm_lock *lock, struct req_capsule *pill,
1535                   enum req_location loc, void *data, int size)
1536 {
1537         void *lvb;
1538         ENTRY;
1539
1540         LASSERT(data != NULL);
1541         LASSERT(size >= 0);
1542
1543         switch (lock->l_lvb_type) {
1544         case LVB_T_OST:
1545                 if (size == sizeof(struct ost_lvb)) {
1546                         if (loc == RCL_CLIENT)
1547                                 lvb = req_capsule_client_swab_get(pill,
1548                                                 &RMF_DLM_LVB,
1549                                                 lustre_swab_ost_lvb);
1550                         else
1551                                 lvb = req_capsule_server_swab_get(pill,
1552                                                 &RMF_DLM_LVB,
1553                                                 lustre_swab_ost_lvb);
1554                         if (unlikely(lvb == NULL)) {
1555                                 LDLM_ERROR(lock, "no LVB");
1556                                 RETURN(-EPROTO);
1557                         }
1558
1559                         memcpy(data, lvb, size);
1560                 } else if (size == sizeof(struct ost_lvb_v1)) {
1561                         struct ost_lvb *olvb = data;
1562
1563                         if (loc == RCL_CLIENT)
1564                                 lvb = req_capsule_client_swab_get(pill,
1565                                                 &RMF_DLM_LVB,
1566                                                 lustre_swab_ost_lvb_v1);
1567                         else
1568                                 lvb = req_capsule_server_sized_swab_get(pill,
1569                                                 &RMF_DLM_LVB, size,
1570                                                 lustre_swab_ost_lvb_v1);
1571                         if (unlikely(lvb == NULL)) {
1572                                 LDLM_ERROR(lock, "no LVB");
1573                                 RETURN(-EPROTO);
1574                         }
1575
1576                         memcpy(data, lvb, size);
1577                         olvb->lvb_mtime_ns = 0;
1578                         olvb->lvb_atime_ns = 0;
1579                         olvb->lvb_ctime_ns = 0;
1580                 } else {
1581                         LDLM_ERROR(lock, "Replied unexpected ost LVB size %d",
1582                                    size);
1583                         RETURN(-EINVAL);
1584                 }
1585                 break;
1586         case LVB_T_LQUOTA:
1587                 if (size == sizeof(struct lquota_lvb)) {
1588                         if (loc == RCL_CLIENT)
1589                                 lvb = req_capsule_client_swab_get(pill,
1590                                                 &RMF_DLM_LVB,
1591                                                 lustre_swab_lquota_lvb);
1592                         else
1593                                 lvb = req_capsule_server_swab_get(pill,
1594                                                 &RMF_DLM_LVB,
1595                                                 lustre_swab_lquota_lvb);
1596                         if (unlikely(lvb == NULL)) {
1597                                 LDLM_ERROR(lock, "no LVB");
1598                                 RETURN(-EPROTO);
1599                         }
1600
1601                         memcpy(data, lvb, size);
1602                 } else {
1603                         LDLM_ERROR(lock, "Replied unexpected lquota LVB size %d",
1604                                    size);
1605                         RETURN(-EINVAL);
1606                 }
1607                 break;
1608         case LVB_T_LAYOUT:
1609                 if (size == 0)
1610                         break;
1611
1612                 if (loc == RCL_CLIENT)
1613                         lvb = req_capsule_client_get(pill, &RMF_DLM_LVB);
1614                 else
1615                         lvb = req_capsule_server_get(pill, &RMF_DLM_LVB);
1616                 if (unlikely(lvb == NULL)) {
1617                         LDLM_ERROR(lock, "no LVB");
1618                         RETURN(-EPROTO);
1619                 }
1620
1621                 memcpy(data, lvb, size);
1622                 break;
1623         default:
1624                 LDLM_ERROR(lock, "Unknown LVB type: %d", lock->l_lvb_type);
1625                 libcfs_debug_dumpstack(NULL);
1626                 RETURN(-EINVAL);
1627         }
1628
1629         RETURN(0);
1630 }
1631
1632 /**
1633  * Create and fill in new LDLM lock with specified properties.
1634  * Returns a referenced lock
1635  */
1636 struct ldlm_lock *ldlm_lock_create(struct ldlm_namespace *ns,
1637                                    const struct ldlm_res_id *res_id,
1638                                    enum ldlm_type type,
1639                                    enum ldlm_mode mode,
1640                                    const struct ldlm_callback_suite *cbs,
1641                                    void *data, __u32 lvb_len,
1642                                    enum lvb_type lvb_type)
1643 {
1644         struct ldlm_lock        *lock;
1645         struct ldlm_resource    *res;
1646         int                     rc;
1647         ENTRY;
1648
1649         res = ldlm_resource_get(ns, NULL, res_id, type, 1);
1650         if (IS_ERR(res))
1651                 RETURN(ERR_CAST(res));
1652
1653         lock = ldlm_lock_new(res);
1654         if (lock == NULL)
1655                 RETURN(ERR_PTR(-ENOMEM));
1656
1657         lock->l_req_mode = mode;
1658         lock->l_ast_data = data;
1659         lock->l_pid = current_pid();
1660         if (ns_is_server(ns))
1661                 ldlm_set_ns_srv(lock);
1662         if (cbs) {
1663                 lock->l_blocking_ast = cbs->lcs_blocking;
1664                 lock->l_completion_ast = cbs->lcs_completion;
1665                 lock->l_glimpse_ast = cbs->lcs_glimpse;
1666         }
1667
1668         lock->l_tree_node = NULL;
1669         /* if this is the extent lock, allocate the interval tree node */
1670         if (type == LDLM_EXTENT)
1671                 if (ldlm_interval_alloc(lock) == NULL)
1672                         GOTO(out, rc = -ENOMEM);
1673
1674         if (lvb_len) {
1675                 lock->l_lvb_len = lvb_len;
1676                 OBD_ALLOC_LARGE(lock->l_lvb_data, lvb_len);
1677                 if (lock->l_lvb_data == NULL)
1678                         GOTO(out, rc = -ENOMEM);
1679         }
1680
1681         lock->l_lvb_type = lvb_type;
1682         if (OBD_FAIL_CHECK(OBD_FAIL_LDLM_NEW_LOCK))
1683                 GOTO(out, rc = -ENOENT);
1684
1685         RETURN(lock);
1686
1687 out:
1688         ldlm_lock_destroy(lock);
1689         LDLM_LOCK_RELEASE(lock);
1690         RETURN(ERR_PTR(rc));
1691 }
1692
1693 #ifdef HAVE_SERVER_SUPPORT
1694 static enum ldlm_error ldlm_lock_enqueue_helper(struct ldlm_lock *lock,
1695                                              __u64 *flags)
1696 {
1697         struct ldlm_resource *res = lock->l_resource;
1698         enum ldlm_error rc = ELDLM_OK;
1699         struct list_head rpc_list = LIST_HEAD_INIT(rpc_list);
1700         ldlm_processing_policy policy;
1701         ENTRY;
1702
1703         policy = ldlm_processing_policy_table[res->lr_type];
1704 restart:
1705         policy(lock, flags, LDLM_PROCESS_ENQUEUE, &rc, &rpc_list);
1706         if (rc == ELDLM_OK && lock->l_granted_mode != lock->l_req_mode &&
1707             res->lr_type != LDLM_FLOCK) {
1708                 rc = ldlm_handle_conflict_lock(lock, flags, &rpc_list);
1709                 if (rc == -ERESTART)
1710                         GOTO(restart, rc);
1711         }
1712
1713         if (!list_empty(&rpc_list))
1714                 ldlm_discard_bl_list(&rpc_list);
1715
1716         RETURN(rc);
1717 }
1718 #endif
1719
1720 /**
1721  * Enqueue (request) a lock.
1722  *
1723  * Does not block. As a result of enqueue the lock would be put
1724  * into granted or waiting list.
1725  *
1726  * If namespace has intent policy sent and the lock has LDLM_FL_HAS_INTENT flag
1727  * set, skip all the enqueueing and delegate lock processing to intent policy
1728  * function.
1729  */
1730 enum ldlm_error ldlm_lock_enqueue(const struct lu_env *env,
1731                                   struct ldlm_namespace *ns,
1732                                   struct ldlm_lock **lockp,
1733                                   void *cookie, __u64 *flags)
1734 {
1735         struct ldlm_lock *lock = *lockp;
1736         struct ldlm_resource *res = lock->l_resource;
1737         int local = ns_is_client(ldlm_res_to_ns(res));
1738         enum ldlm_error rc = ELDLM_OK;
1739         struct ldlm_interval *node = NULL;
1740         ENTRY;
1741
1742         /* policies are not executed on the client or during replay */
1743         if ((*flags & (LDLM_FL_HAS_INTENT|LDLM_FL_REPLAY)) == LDLM_FL_HAS_INTENT
1744             && !local && ns->ns_policy) {
1745                 rc = ns->ns_policy(env, ns, lockp, cookie, lock->l_req_mode,
1746                                    *flags, NULL);
1747                 if (rc == ELDLM_LOCK_REPLACED) {
1748                         /* The lock that was returned has already been granted,
1749                          * and placed into lockp.  If it's not the same as the
1750                          * one we passed in, then destroy the old one and our
1751                          * work here is done. */
1752                         if (lock != *lockp) {
1753                                 ldlm_lock_destroy(lock);
1754                                 LDLM_LOCK_RELEASE(lock);
1755                         }
1756                         *flags |= LDLM_FL_LOCK_CHANGED;
1757                         RETURN(0);
1758                 } else if (rc != ELDLM_OK &&
1759                            lock->l_req_mode == lock->l_granted_mode) {
1760                         LASSERT(*flags & LDLM_FL_RESENT);
1761                         /* It may happen that ns_policy returns an error in
1762                          * resend case, object may be unlinked or just some
1763                          * error occurs. It is unclear if lock reached the
1764                          * client in the original reply, just leave the lock on
1765                          * server, not returning it again to client. Due to
1766                          * LU-6529, the server will not OOM. */
1767                         RETURN(rc);
1768                 } else if (rc != ELDLM_OK ||
1769                            (rc == ELDLM_OK && (*flags & LDLM_FL_INTENT_ONLY))) {
1770                         ldlm_lock_destroy(lock);
1771                         RETURN(rc);
1772                 }
1773         }
1774
1775         if (*flags & LDLM_FL_RESENT) {
1776                 /* Reconstruct LDLM_FL_SRV_ENQ_MASK @flags for reply.
1777                  * Set LOCK_CHANGED always.
1778                  * Check if the lock is granted for BLOCK_GRANTED.
1779                  * Take NO_TIMEOUT from the lock as it is inherited through
1780                  * LDLM_FL_INHERIT_MASK */
1781                 *flags |= LDLM_FL_LOCK_CHANGED;
1782                 if (lock->l_req_mode != lock->l_granted_mode)
1783                         *flags |= LDLM_FL_BLOCK_GRANTED;
1784                 *flags |= lock->l_flags & LDLM_FL_NO_TIMEOUT;
1785                 RETURN(ELDLM_OK);
1786         }
1787
1788         /* For a replaying lock, it might be already in granted list. So
1789          * unlinking the lock will cause the interval node to be freed, we
1790          * have to allocate the interval node early otherwise we can't regrant
1791          * this lock in the future. - jay */
1792         if (!local && (*flags & LDLM_FL_REPLAY) && res->lr_type == LDLM_EXTENT)
1793                 OBD_SLAB_ALLOC_PTR_GFP(node, ldlm_interval_slab, GFP_NOFS);
1794
1795         lock_res_and_lock(lock);
1796         if (local && lock->l_req_mode == lock->l_granted_mode) {
1797                 /* The server returned a blocked lock, but it was granted
1798                  * before we got a chance to actually enqueue it.  We don't
1799                  * need to do anything else. */
1800                 *flags &= ~LDLM_FL_BLOCKED_MASK;
1801                 GOTO(out, rc = ELDLM_OK);
1802         }
1803
1804         ldlm_resource_unlink_lock(lock);
1805         if (res->lr_type == LDLM_EXTENT && lock->l_tree_node == NULL) {
1806                 if (node == NULL) {
1807                         ldlm_lock_destroy_nolock(lock);
1808                         GOTO(out, rc = -ENOMEM);
1809                 }
1810
1811                 INIT_LIST_HEAD(&node->li_group);
1812                 ldlm_interval_attach(node, lock);
1813                 node = NULL;
1814         }
1815
1816         /* Some flags from the enqueue want to make it into the AST, via the
1817          * lock's l_flags. */
1818         if (*flags & LDLM_FL_AST_DISCARD_DATA)
1819                 ldlm_set_ast_discard_data(lock);
1820         if (*flags & LDLM_FL_TEST_LOCK)
1821                 ldlm_set_test_lock(lock);
1822         if (*flags & LDLM_FL_COS_INCOMPAT)
1823                 ldlm_set_cos_incompat(lock);
1824         if (*flags & LDLM_FL_COS_ENABLED)
1825                 ldlm_set_cos_enabled(lock);
1826
1827         /* This distinction between local lock trees is very important; a client
1828          * namespace only has information about locks taken by that client, and
1829          * thus doesn't have enough information to decide for itself if it can
1830          * be granted (below).  In this case, we do exactly what the server
1831          * tells us to do, as dictated by the 'flags'.
1832          *
1833          * We do exactly the same thing during recovery, when the server is
1834          * more or less trusting the clients not to lie.
1835          *
1836          * FIXME (bug 268): Detect obvious lies by checking compatibility in
1837          * granted queue. */
1838         if (local) {
1839                 if (*flags & (LDLM_FL_BLOCK_WAIT | LDLM_FL_BLOCK_GRANTED))
1840                         ldlm_resource_add_lock(res, &res->lr_waiting, lock);
1841                 else
1842                         ldlm_grant_lock(lock, NULL);
1843                 GOTO(out, rc = ELDLM_OK);
1844 #ifdef HAVE_SERVER_SUPPORT
1845         } else if (*flags & LDLM_FL_REPLAY) {
1846                 if (*flags & LDLM_FL_BLOCK_WAIT) {
1847                         ldlm_resource_add_lock(res, &res->lr_waiting, lock);
1848                         GOTO(out, rc = ELDLM_OK);
1849                 } else if (*flags & LDLM_FL_BLOCK_GRANTED) {
1850                         ldlm_grant_lock(lock, NULL);
1851                         GOTO(out, rc = ELDLM_OK);
1852                 }
1853                 /* If no flags, fall through to normal enqueue path. */
1854         }
1855
1856         rc = ldlm_lock_enqueue_helper(lock, flags);
1857         GOTO(out, rc);
1858 #else
1859         } else {
1860                 CERROR("This is client-side-only module, cannot handle "
1861                        "LDLM_NAMESPACE_SERVER resource type lock.\n");
1862                 LBUG();
1863         }
1864 #endif
1865
1866 out:
1867         unlock_res_and_lock(lock);
1868         if (node)
1869                 OBD_SLAB_FREE(node, ldlm_interval_slab, sizeof(*node));
1870         return rc;
1871 }
1872
1873 #ifdef HAVE_SERVER_SUPPORT
1874 /**
1875  * Iterate through all waiting locks on a given resource queue and attempt to
1876  * grant them.
1877  *
1878  * Must be called with resource lock held.
1879  */
1880 int ldlm_reprocess_queue(struct ldlm_resource *res, struct list_head *queue,
1881                          struct list_head *work_list,
1882                          enum ldlm_process_intention intention)
1883 {
1884         struct list_head *tmp, *pos;
1885         ldlm_processing_policy policy;
1886         __u64 flags;
1887         int rc = LDLM_ITER_CONTINUE;
1888         enum ldlm_error err;
1889         struct list_head bl_ast_list = LIST_HEAD_INIT(bl_ast_list);
1890         ENTRY;
1891
1892         check_res_locked(res);
1893
1894         policy = ldlm_processing_policy_table[res->lr_type];
1895         LASSERT(policy);
1896         LASSERT(intention == LDLM_PROCESS_RESCAN ||
1897                 intention == LDLM_PROCESS_RECOVERY);
1898
1899 restart:
1900         list_for_each_safe(tmp, pos, queue) {
1901                 struct ldlm_lock *pending;
1902                 struct list_head rpc_list = LIST_HEAD_INIT(rpc_list);
1903
1904                 pending = list_entry(tmp, struct ldlm_lock, l_res_link);
1905
1906                 CDEBUG(D_INFO, "Reprocessing lock %p\n", pending);
1907
1908                 flags = 0;
1909                 rc = policy(pending, &flags, intention, &err, &rpc_list);
1910                 if (pending->l_granted_mode == pending->l_req_mode ||
1911                     res->lr_type == LDLM_FLOCK) {
1912                         list_splice(&rpc_list, work_list);
1913                 } else {
1914                         list_splice(&rpc_list, &bl_ast_list);
1915                 }
1916                 /*
1917                  * When this is called from recovery done, we always want
1918                  * to scan the whole list no matter what 'rc' is returned.
1919                  */
1920                 if (rc != LDLM_ITER_CONTINUE &&
1921                     intention == LDLM_PROCESS_RESCAN)
1922                         break;
1923         }
1924
1925         if (!list_empty(&bl_ast_list)) {
1926                 unlock_res(res);
1927
1928                 rc = ldlm_run_ast_work(ldlm_res_to_ns(res), &bl_ast_list,
1929                                        LDLM_WORK_BL_AST);
1930
1931                 lock_res(res);
1932                 if (rc == -ERESTART)
1933                         GOTO(restart, rc);
1934         }
1935
1936         if (!list_empty(&bl_ast_list))
1937                 ldlm_discard_bl_list(&bl_ast_list);
1938
1939         RETURN(intention == LDLM_PROCESS_RESCAN ? rc : LDLM_ITER_CONTINUE);
1940 }
1941
1942 /**
1943  * Conflicting locks are detected for a lock to be enqueued, add the lock
1944  * into waiting list and send blocking ASTs to the conflicting locks.
1945  *
1946  * \param[in] lock              The lock to be enqueued.
1947  * \param[out] flags            Lock flags for the lock to be enqueued.
1948  * \param[in] rpc_list          Conflicting locks list.
1949  *
1950  * \retval -ERESTART:   Some lock was instantly canceled while sending
1951  *                      blocking ASTs, caller needs to re-check conflicting
1952  *                      locks.
1953  * \retval -EAGAIN:     Lock was destroyed, caller should return error.
1954  * \reval 0:            Lock is successfully added in waiting list.
1955  */
1956 int ldlm_handle_conflict_lock(struct ldlm_lock *lock, __u64 *flags,
1957                               struct list_head *rpc_list)
1958 {
1959         struct ldlm_resource *res = lock->l_resource;
1960         int rc;
1961         ENTRY;
1962
1963         check_res_locked(res);
1964
1965         /* If either of the compat_queue()s returned failure, then we
1966          * have ASTs to send and must go onto the waiting list.
1967          *
1968          * bug 2322: we used to unlink and re-add here, which was a
1969          * terrible folly -- if we goto restart, we could get
1970          * re-ordered!  Causes deadlock, because ASTs aren't sent! */
1971         if (list_empty(&lock->l_res_link))
1972                 ldlm_resource_add_lock(res, &res->lr_waiting, lock);
1973         unlock_res(res);
1974
1975         rc = ldlm_run_ast_work(ldlm_res_to_ns(res), rpc_list,
1976                                LDLM_WORK_BL_AST);
1977
1978         if (OBD_FAIL_CHECK(OBD_FAIL_LDLM_OST_FAIL_RACE) &&
1979             !ns_is_client(ldlm_res_to_ns(res)))
1980                 class_fail_export(lock->l_export);
1981
1982         lock_res(res);
1983         if (rc == -ERESTART) {
1984                 /* 15715: The lock was granted and destroyed after
1985                  * resource lock was dropped. Interval node was freed
1986                  * in ldlm_lock_destroy. Anyway, this always happens
1987                  * when a client is being evicted. So it would be
1988                  * ok to return an error. -jay */
1989                 if (ldlm_is_destroyed(lock))
1990                         RETURN(-EAGAIN);
1991
1992                 /* lock was granted while resource was unlocked. */
1993                 if (lock->l_granted_mode == lock->l_req_mode) {
1994                         /* bug 11300: if the lock has been granted,
1995                          * break earlier because otherwise, we will go
1996                          * to restart and ldlm_resource_unlink will be
1997                          * called and it causes the interval node to be
1998                          * freed. Then we will fail at
1999                          * ldlm_extent_add_lock() */
2000                         *flags &= ~LDLM_FL_BLOCKED_MASK;
2001                         RETURN(0);
2002                 }
2003
2004                 RETURN(rc);
2005         }
2006         *flags |= LDLM_FL_BLOCK_GRANTED;
2007
2008         RETURN(0);
2009 }
2010
2011 /**
2012  * Discard all AST work items from list.
2013  *
2014  * If for whatever reason we do not want to send ASTs to conflicting locks
2015  * anymore, disassemble the list with this function.
2016  */
2017 void ldlm_discard_bl_list(struct list_head *bl_list)
2018 {
2019         struct list_head *tmp, *pos;
2020         ENTRY;
2021
2022         list_for_each_safe(pos, tmp, bl_list) {
2023                 struct ldlm_lock *lock =
2024                         list_entry(pos, struct ldlm_lock, l_bl_ast);
2025
2026                 list_del_init(&lock->l_bl_ast);
2027                 LASSERT(ldlm_is_ast_sent(lock));
2028                 ldlm_clear_ast_sent(lock);
2029                 LASSERT(lock->l_bl_ast_run == 0);
2030                 LASSERT(lock->l_blocking_lock);
2031                 LDLM_LOCK_RELEASE(lock->l_blocking_lock);
2032                 lock->l_blocking_lock = NULL;
2033                 LDLM_LOCK_RELEASE(lock);
2034         }
2035         EXIT;
2036 }
2037
2038 #endif
2039
2040 /**
2041  * Process a call to blocking AST callback for a lock in ast_work list
2042  */
2043 static int
2044 ldlm_work_bl_ast_lock(struct ptlrpc_request_set *rqset, void *opaq)
2045 {
2046         struct ldlm_cb_set_arg *arg = opaq;
2047         struct ldlm_lock_desc   d;
2048         int                     rc;
2049         struct ldlm_lock       *lock;
2050         ENTRY;
2051
2052         if (list_empty(arg->list))
2053                 RETURN(-ENOENT);
2054
2055         lock = list_entry(arg->list->next, struct ldlm_lock, l_bl_ast);
2056
2057         /* nobody should touch l_bl_ast */
2058         lock_res_and_lock(lock);
2059         list_del_init(&lock->l_bl_ast);
2060
2061         LASSERT(ldlm_is_ast_sent(lock));
2062         LASSERT(lock->l_bl_ast_run == 0);
2063         LASSERT(lock->l_blocking_lock);
2064         lock->l_bl_ast_run++;
2065         unlock_res_and_lock(lock);
2066
2067         ldlm_lock2desc(lock->l_blocking_lock, &d);
2068         /* copy blocking lock ibits in cancel_bits as well,
2069          * new client may use them for lock convert and it is
2070          * important to use new field to convert locks from
2071          * new servers only
2072          */
2073         d.l_policy_data.l_inodebits.cancel_bits =
2074                 lock->l_blocking_lock->l_policy_data.l_inodebits.bits;
2075
2076         rc = lock->l_blocking_ast(lock, &d, (void *)arg, LDLM_CB_BLOCKING);
2077         LDLM_LOCK_RELEASE(lock->l_blocking_lock);
2078         lock->l_blocking_lock = NULL;
2079         LDLM_LOCK_RELEASE(lock);
2080
2081         RETURN(rc);
2082 }
2083
2084 /**
2085  * Process a call to completion AST callback for a lock in ast_work list
2086  */
2087 static int
2088 ldlm_work_cp_ast_lock(struct ptlrpc_request_set *rqset, void *opaq)
2089 {
2090         struct ldlm_cb_set_arg  *arg = opaq;
2091         int                      rc = 0;
2092         struct ldlm_lock        *lock;
2093         ldlm_completion_callback completion_callback;
2094         ENTRY;
2095
2096         if (list_empty(arg->list))
2097                 RETURN(-ENOENT);
2098
2099         lock = list_entry(arg->list->next, struct ldlm_lock, l_cp_ast);
2100
2101         /* It's possible to receive a completion AST before we've set
2102          * the l_completion_ast pointer: either because the AST arrived
2103          * before the reply, or simply because there's a small race
2104          * window between receiving the reply and finishing the local
2105          * enqueue. (bug 842)
2106          *
2107          * This can't happen with the blocking_ast, however, because we
2108          * will never call the local blocking_ast until we drop our
2109          * reader/writer reference, which we won't do until we get the
2110          * reply and finish enqueueing. */
2111
2112         /* nobody should touch l_cp_ast */
2113         lock_res_and_lock(lock);
2114         list_del_init(&lock->l_cp_ast);
2115         LASSERT(ldlm_is_cp_reqd(lock));
2116         /* save l_completion_ast since it can be changed by
2117          * mds_intent_policy(), see bug 14225 */
2118         completion_callback = lock->l_completion_ast;
2119         ldlm_clear_cp_reqd(lock);
2120         unlock_res_and_lock(lock);
2121
2122         if (completion_callback != NULL)
2123                 rc = completion_callback(lock, 0, (void *)arg);
2124         LDLM_LOCK_RELEASE(lock);
2125
2126         RETURN(rc);
2127 }
2128
2129 /**
2130  * Process a call to revocation AST callback for a lock in ast_work list
2131  */
2132 static int
2133 ldlm_work_revoke_ast_lock(struct ptlrpc_request_set *rqset, void *opaq)
2134 {
2135         struct ldlm_cb_set_arg *arg = opaq;
2136         struct ldlm_lock_desc   desc;
2137         int                     rc;
2138         struct ldlm_lock       *lock;
2139         ENTRY;
2140
2141         if (list_empty(arg->list))
2142                 RETURN(-ENOENT);
2143
2144         lock = list_entry(arg->list->next, struct ldlm_lock, l_rk_ast);
2145         list_del_init(&lock->l_rk_ast);
2146
2147         /* the desc just pretend to exclusive */
2148         ldlm_lock2desc(lock, &desc);
2149         desc.l_req_mode = LCK_EX;
2150         desc.l_granted_mode = 0;
2151
2152         rc = lock->l_blocking_ast(lock, &desc, (void*)arg, LDLM_CB_BLOCKING);
2153         LDLM_LOCK_RELEASE(lock);
2154
2155         RETURN(rc);
2156 }
2157
2158 /**
2159  * Process a call to glimpse AST callback for a lock in ast_work list
2160  */
2161 int ldlm_work_gl_ast_lock(struct ptlrpc_request_set *rqset, void *opaq)
2162 {
2163         struct ldlm_cb_set_arg          *arg = opaq;
2164         struct ldlm_glimpse_work        *gl_work;
2165         struct ldlm_lock                *lock;
2166         int                              rc = 0;
2167         ENTRY;
2168
2169         if (list_empty(arg->list))
2170                 RETURN(-ENOENT);
2171
2172         gl_work = list_entry(arg->list->next, struct ldlm_glimpse_work,
2173                                  gl_list);
2174         list_del_init(&gl_work->gl_list);
2175
2176         lock = gl_work->gl_lock;
2177
2178         /* transfer the glimpse descriptor to ldlm_cb_set_arg */
2179         arg->gl_desc = gl_work->gl_desc;
2180         arg->gl_interpret_reply = gl_work->gl_interpret_reply;
2181         arg->gl_interpret_data = gl_work->gl_interpret_data;
2182
2183         /* invoke the actual glimpse callback */
2184         if (lock->l_glimpse_ast(lock, (void*)arg) == 0)
2185                 rc = 1;
2186
2187         LDLM_LOCK_RELEASE(lock);
2188         if (gl_work->gl_flags & LDLM_GL_WORK_SLAB_ALLOCATED)
2189                 OBD_SLAB_FREE_PTR(gl_work, ldlm_glimpse_work_kmem);
2190         else
2191                 OBD_FREE_PTR(gl_work);
2192
2193         RETURN(rc);
2194 }
2195
2196 /**
2197  * Process list of locks in need of ASTs being sent.
2198  *
2199  * Used on server to send multiple ASTs together instead of sending one by
2200  * one.
2201  */
2202 int ldlm_run_ast_work(struct ldlm_namespace *ns, struct list_head *rpc_list,
2203                       ldlm_desc_ast_t ast_type)
2204 {
2205         struct ldlm_cb_set_arg *arg;
2206         set_producer_func       work_ast_lock;
2207         int                     rc;
2208
2209         if (list_empty(rpc_list))
2210                 RETURN(0);
2211
2212         OBD_ALLOC_PTR(arg);
2213         if (arg == NULL)
2214                 RETURN(-ENOMEM);
2215
2216         atomic_set(&arg->restart, 0);
2217         arg->list = rpc_list;
2218
2219         switch (ast_type) {
2220                 case LDLM_WORK_BL_AST:
2221                         arg->type = LDLM_BL_CALLBACK;
2222                         work_ast_lock = ldlm_work_bl_ast_lock;
2223                         break;
2224                 case LDLM_WORK_CP_AST:
2225                         arg->type = LDLM_CP_CALLBACK;
2226                         work_ast_lock = ldlm_work_cp_ast_lock;
2227                         break;
2228                 case LDLM_WORK_REVOKE_AST:
2229                         arg->type = LDLM_BL_CALLBACK;
2230                         work_ast_lock = ldlm_work_revoke_ast_lock;
2231                         break;
2232                 case LDLM_WORK_GL_AST:
2233                         arg->type = LDLM_GL_CALLBACK;
2234                         work_ast_lock = ldlm_work_gl_ast_lock;
2235                         break;
2236                 default:
2237                         LBUG();
2238         }
2239
2240         /* We create a ptlrpc request set with flow control extension.
2241          * This request set will use the work_ast_lock function to produce new
2242          * requests and will send a new request each time one completes in order
2243          * to keep the number of requests in flight to ns_max_parallel_ast */
2244         arg->set = ptlrpc_prep_fcset(ns->ns_max_parallel_ast ? : UINT_MAX,
2245                                      work_ast_lock, arg);
2246         if (arg->set == NULL)
2247                 GOTO(out, rc = -ENOMEM);
2248
2249         ptlrpc_set_wait(NULL, arg->set);
2250         ptlrpc_set_destroy(arg->set);
2251
2252         rc = atomic_read(&arg->restart) ? -ERESTART : 0;
2253         GOTO(out, rc);
2254 out:
2255         OBD_FREE_PTR(arg);
2256         return rc;
2257 }
2258
2259 /**
2260  * Try to grant all waiting locks on a resource.
2261  *
2262  * Calls ldlm_reprocess_queue on waiting queue.
2263  *
2264  * Typically called after some resource locks are cancelled to see
2265  * if anything could be granted as a result of the cancellation.
2266  */
2267 static void __ldlm_reprocess_all(struct ldlm_resource *res,
2268                                  enum ldlm_process_intention intention)
2269 {
2270         struct list_head rpc_list;
2271 #ifdef HAVE_SERVER_SUPPORT
2272         struct obd_device *obd;
2273         int rc;
2274         ENTRY;
2275
2276         INIT_LIST_HEAD(&rpc_list);
2277         /* Local lock trees don't get reprocessed. */
2278         if (ns_is_client(ldlm_res_to_ns(res))) {
2279                 EXIT;
2280                 return;
2281         }
2282
2283         /* Disable reprocess during lock replay stage but allow during
2284          * request replay stage.
2285          */
2286         obd = ldlm_res_to_ns(res)->ns_obd;
2287         if (obd->obd_recovering &&
2288             atomic_read(&obd->obd_req_replay_clients) == 0)
2289                 RETURN_EXIT;
2290 restart:
2291         lock_res(res);
2292         ldlm_reprocess_queue(res, &res->lr_waiting, &rpc_list, intention);
2293         unlock_res(res);
2294
2295         rc = ldlm_run_ast_work(ldlm_res_to_ns(res), &rpc_list,
2296                                LDLM_WORK_CP_AST);
2297         if (rc == -ERESTART) {
2298                 LASSERT(list_empty(&rpc_list));
2299                 goto restart;
2300         }
2301 #else
2302         ENTRY;
2303
2304         INIT_LIST_HEAD(&rpc_list);
2305         if (!ns_is_client(ldlm_res_to_ns(res))) {
2306                 CERROR("This is client-side-only module, cannot handle "
2307                        "LDLM_NAMESPACE_SERVER resource type lock.\n");
2308                 LBUG();
2309         }
2310 #endif
2311         EXIT;
2312 }
2313
2314 void ldlm_reprocess_all(struct ldlm_resource *res)
2315 {
2316         __ldlm_reprocess_all(res, LDLM_PROCESS_RESCAN);
2317 }
2318 EXPORT_SYMBOL(ldlm_reprocess_all);
2319
2320 static int ldlm_reprocess_res(struct cfs_hash *hs, struct cfs_hash_bd *bd,
2321                               struct hlist_node *hnode, void *arg)
2322 {
2323         struct ldlm_resource *res = cfs_hash_object(hs, hnode);
2324
2325         /* This is only called once after recovery done. LU-8306. */
2326         __ldlm_reprocess_all(res, LDLM_PROCESS_RECOVERY);
2327         return 0;
2328 }
2329
2330 /**
2331  * Iterate through all resources on a namespace attempting to grant waiting
2332  * locks.
2333  */
2334 void ldlm_reprocess_recovery_done(struct ldlm_namespace *ns)
2335 {
2336         ENTRY;
2337
2338         if (ns != NULL) {
2339                 cfs_hash_for_each_nolock(ns->ns_rs_hash,
2340                                          ldlm_reprocess_res, NULL, 0);
2341         }
2342         EXIT;
2343 }
2344
2345 /**
2346  * Helper function to call blocking AST for LDLM lock \a lock in a
2347  * "cancelling" mode.
2348  */
2349 void ldlm_cancel_callback(struct ldlm_lock *lock)
2350 {
2351         check_res_locked(lock->l_resource);
2352         if (!ldlm_is_cancel(lock)) {
2353                 ldlm_set_cancel(lock);
2354                 if (lock->l_blocking_ast) {
2355                         unlock_res_and_lock(lock);
2356                         lock->l_blocking_ast(lock, NULL, lock->l_ast_data,
2357                                              LDLM_CB_CANCELING);
2358                         lock_res_and_lock(lock);
2359                 } else {
2360                         LDLM_DEBUG(lock, "no blocking ast");
2361                 }
2362
2363                 /* only canceller can set bl_done bit */
2364                 ldlm_set_bl_done(lock);
2365                 wake_up_all(&lock->l_waitq);
2366         } else if (!ldlm_is_bl_done(lock)) {
2367                 struct l_wait_info lwi = { 0 };
2368
2369                 /* The lock is guaranteed to have been canceled once
2370                  * returning from this function. */
2371                 unlock_res_and_lock(lock);
2372                 l_wait_event(lock->l_waitq, is_bl_done(lock), &lwi);
2373                 lock_res_and_lock(lock);
2374         }
2375 }
2376
2377 /**
2378  * Remove skiplist-enabled LDLM lock \a req from granted list
2379  */
2380 void ldlm_unlink_lock_skiplist(struct ldlm_lock *req)
2381 {
2382         if (req->l_resource->lr_type != LDLM_PLAIN &&
2383             req->l_resource->lr_type != LDLM_IBITS)
2384                 return;
2385
2386         list_del_init(&req->l_sl_policy);
2387         list_del_init(&req->l_sl_mode);
2388 }
2389
2390 /**
2391  * Attempts to cancel LDLM lock \a lock that has no reader/writer references.
2392  */
2393 void ldlm_lock_cancel(struct ldlm_lock *lock)
2394 {
2395         struct ldlm_resource *res;
2396         struct ldlm_namespace *ns;
2397         ENTRY;
2398
2399         lock_res_and_lock(lock);
2400
2401         res = lock->l_resource;
2402         ns  = ldlm_res_to_ns(res);
2403
2404         /* Please do not, no matter how tempting, remove this LBUG without
2405          * talking to me first. -phik */
2406         if (lock->l_readers || lock->l_writers) {
2407                 LDLM_ERROR(lock, "lock still has references");
2408                 unlock_res_and_lock(lock);
2409                 LBUG();
2410         }
2411
2412         if (ldlm_is_waited(lock))
2413                 ldlm_del_waiting_lock(lock);
2414
2415         /* Releases cancel callback. */
2416         ldlm_cancel_callback(lock);
2417
2418         /* Yes, second time, just in case it was added again while we were
2419          * running with no res lock in ldlm_cancel_callback */
2420         if (ldlm_is_waited(lock))
2421                 ldlm_del_waiting_lock(lock);
2422
2423         ldlm_resource_unlink_lock(lock);
2424         ldlm_lock_destroy_nolock(lock);
2425
2426         if (lock->l_granted_mode == lock->l_req_mode)
2427                 ldlm_pool_del(&ns->ns_pool, lock);
2428
2429         /* Make sure we will not be called again for same lock what is possible
2430          * if not to zero out lock->l_granted_mode */
2431         lock->l_granted_mode = LCK_MINMODE;
2432         unlock_res_and_lock(lock);
2433
2434         EXIT;
2435 }
2436 EXPORT_SYMBOL(ldlm_lock_cancel);
2437
2438 /**
2439  * Set opaque data into the lock that only makes sense to upper layer.
2440  */
2441 int ldlm_lock_set_data(const struct lustre_handle *lockh, void *data)
2442 {
2443         struct ldlm_lock *lock = ldlm_handle2lock(lockh);
2444         int rc = -EINVAL;
2445         ENTRY;
2446
2447         if (lock) {
2448                 if (lock->l_ast_data == NULL)
2449                         lock->l_ast_data = data;
2450                 if (lock->l_ast_data == data)
2451                         rc = 0;
2452                 LDLM_LOCK_PUT(lock);
2453         }
2454         RETURN(rc);
2455 }
2456 EXPORT_SYMBOL(ldlm_lock_set_data);
2457
2458 struct export_cl_data {
2459         const struct lu_env     *ecl_env;
2460         struct obd_export       *ecl_exp;
2461         int                     ecl_loop;
2462 };
2463
2464 static void ldlm_cancel_lock_for_export(struct obd_export *exp,
2465                                         struct ldlm_lock *lock,
2466                                         struct export_cl_data *ecl)
2467 {
2468         struct ldlm_resource *res;
2469
2470         res = ldlm_resource_getref(lock->l_resource);
2471
2472         ldlm_lvbo_update(ecl->ecl_env, res, lock, NULL, 1);
2473         ldlm_lock_cancel(lock);
2474         if (!exp->exp_obd->obd_stopping)
2475                 ldlm_reprocess_all(res);
2476         ldlm_resource_putref(res);
2477
2478         ecl->ecl_loop++;
2479         if ((ecl->ecl_loop & -ecl->ecl_loop) == ecl->ecl_loop) {
2480                 CDEBUG(D_INFO, "Export %p, %d locks cancelled.\n",
2481                        exp, ecl->ecl_loop);
2482         }
2483 }
2484
2485 /**
2486  * Iterator function for ldlm_export_cancel_locks.
2487  * Cancels passed locks.
2488  */
2489 static int
2490 ldlm_cancel_locks_for_export_cb(struct cfs_hash *hs, struct cfs_hash_bd *bd,
2491                                 struct hlist_node *hnode, void *data)
2492
2493 {
2494         struct export_cl_data   *ecl = (struct export_cl_data *)data;
2495         struct obd_export       *exp  = ecl->ecl_exp;
2496         struct ldlm_lock        *lock = cfs_hash_object(hs, hnode);
2497
2498         LDLM_LOCK_GET(lock);
2499         ldlm_cancel_lock_for_export(exp, lock, ecl);
2500         LDLM_LOCK_RELEASE(lock);
2501
2502         return 0;
2503 }
2504
2505 /**
2506  * Cancel all blocked locks for given export.
2507  *
2508  * Typically called on client disconnection/eviction
2509  */
2510 int ldlm_export_cancel_blocked_locks(struct obd_export *exp)
2511 {
2512         struct lu_env env;
2513         struct export_cl_data   ecl = {
2514                 .ecl_exp        = exp,
2515                 .ecl_loop       = 0,
2516         };
2517         int rc;
2518
2519         rc = lu_env_init(&env, LCT_DT_THREAD);
2520         if (rc)
2521                 RETURN(rc);
2522         ecl.ecl_env = &env;
2523
2524         while (!list_empty(&exp->exp_bl_list)) {
2525                 struct ldlm_lock *lock;
2526
2527                 spin_lock_bh(&exp->exp_bl_list_lock);
2528                 if (!list_empty(&exp->exp_bl_list)) {
2529                         lock = list_entry(exp->exp_bl_list.next,
2530                                           struct ldlm_lock, l_exp_list);
2531                         LDLM_LOCK_GET(lock);
2532                         list_del_init(&lock->l_exp_list);
2533                 } else {
2534                         lock = NULL;
2535                 }
2536                 spin_unlock_bh(&exp->exp_bl_list_lock);
2537
2538                 if (lock == NULL)
2539                         break;
2540
2541                 ldlm_cancel_lock_for_export(exp, lock, &ecl);
2542                 LDLM_LOCK_RELEASE(lock);
2543         }
2544
2545         lu_env_fini(&env);
2546
2547         CDEBUG(D_DLMTRACE, "Export %p, canceled %d locks, "
2548                "left on hash table %d.\n", exp, ecl.ecl_loop,
2549                atomic_read(&exp->exp_lock_hash->hs_count));
2550
2551         return ecl.ecl_loop;
2552 }
2553
2554 /**
2555  * Cancel all locks for given export.
2556  *
2557  * Typically called after client disconnection/eviction
2558  */
2559 int ldlm_export_cancel_locks(struct obd_export *exp)
2560 {
2561         struct export_cl_data ecl;
2562         struct lu_env env;
2563         int rc;
2564
2565         rc = lu_env_init(&env, LCT_DT_THREAD);
2566         if (rc)
2567                 RETURN(rc);
2568         ecl.ecl_env = &env;
2569         ecl.ecl_exp = exp;
2570         ecl.ecl_loop = 0;
2571
2572         cfs_hash_for_each_empty(exp->exp_lock_hash,
2573                                 ldlm_cancel_locks_for_export_cb, &ecl);
2574
2575         CDEBUG(D_DLMTRACE, "Export %p, canceled %d locks, "
2576                "left on hash table %d.\n", exp, ecl.ecl_loop,
2577                atomic_read(&exp->exp_lock_hash->hs_count));
2578
2579         if (ecl.ecl_loop > 0 &&
2580             atomic_read(&exp->exp_lock_hash->hs_count) == 0 &&
2581             exp->exp_obd->obd_stopping)
2582                 ldlm_reprocess_recovery_done(exp->exp_obd->obd_namespace);
2583
2584         lu_env_fini(&env);
2585
2586         return ecl.ecl_loop;
2587 }
2588
2589 /**
2590  * Downgrade an PW/EX lock to COS mode.
2591  *
2592  * A lock mode convertion from PW/EX mode to less conflict mode. The
2593  * convertion may fail if lock was canceled before downgrade, but it doesn't
2594  * indicate any problem, because such lock has no reader or writer, and will
2595  * be released soon.
2596  * Used by Commit on Sharing (COS) code only for now.
2597  *
2598  * \param lock A lock to convert
2599  * \param new_mode new lock mode
2600  */
2601 void ldlm_lock_mode_downgrade(struct ldlm_lock *lock, enum ldlm_mode new_mode)
2602 {
2603         ENTRY;
2604
2605         LASSERT(new_mode == LCK_COS);
2606
2607         lock_res_and_lock(lock);
2608
2609         if (!(lock->l_granted_mode & (LCK_PW | LCK_EX))) {
2610                 unlock_res_and_lock(lock);
2611
2612                 LASSERT(lock->l_granted_mode == LCK_MINMODE);
2613                 LDLM_DEBUG(lock, "lock was canceled before downgrade");
2614                 RETURN_EXIT;
2615         }
2616
2617         ldlm_resource_unlink_lock(lock);
2618         /*
2619          * Remove the lock from pool as it will be added again in
2620          * ldlm_grant_lock() called below.
2621          */
2622         ldlm_pool_del(&ldlm_lock_to_ns(lock)->ns_pool, lock);
2623         lock->l_req_mode = new_mode;
2624         ldlm_grant_lock(lock, NULL);
2625
2626         unlock_res_and_lock(lock);
2627
2628         ldlm_reprocess_all(lock->l_resource);
2629
2630         EXIT;
2631 }
2632 EXPORT_SYMBOL(ldlm_lock_mode_downgrade);
2633
2634 /**
2635  * Print lock with lock handle \a lockh description into debug log.
2636  *
2637  * Used when printing all locks on a resource for debug purposes.
2638  */
2639 void ldlm_lock_dump_handle(int level, const struct lustre_handle *lockh)
2640 {
2641         struct ldlm_lock *lock;
2642
2643         if (!((libcfs_debug | D_ERROR) & level))
2644                 return;
2645
2646         lock = ldlm_handle2lock(lockh);
2647         if (lock == NULL)
2648                 return;
2649
2650         LDLM_DEBUG_LIMIT(level, lock, "###");
2651
2652         LDLM_LOCK_PUT(lock);
2653 }
2654 EXPORT_SYMBOL(ldlm_lock_dump_handle);
2655
2656 /**
2657  * Print lock information with custom message into debug log.
2658  * Helper function.
2659  */
2660 void _ldlm_lock_debug(struct ldlm_lock *lock,
2661                       struct libcfs_debug_msg_data *msgdata,
2662                       const char *fmt, ...)
2663 {
2664         va_list args;
2665         struct obd_export *exp = lock->l_export;
2666         struct ldlm_resource *resource = NULL;
2667         char *nid = "local";
2668
2669         /* on server-side resource of lock doesn't change */
2670         if ((lock->l_flags & LDLM_FL_NS_SRV) != 0) {
2671                 if (lock->l_resource != NULL)
2672                         resource = ldlm_resource_getref(lock->l_resource);
2673         } else if (spin_trylock(&lock->l_lock)) {
2674                 if (lock->l_resource != NULL)
2675                         resource = ldlm_resource_getref(lock->l_resource);
2676                 spin_unlock(&lock->l_lock);
2677         }
2678
2679         va_start(args, fmt);
2680
2681         if (exp && exp->exp_connection) {
2682                 nid = obd_export_nid2str(exp);
2683         } else if (exp && exp->exp_obd != NULL) {
2684                 struct obd_import *imp = exp->exp_obd->u.cli.cl_import;
2685                 nid = obd_import_nid2str(imp);
2686         }
2687
2688         if (resource == NULL) {
2689                 libcfs_debug_vmsg2(msgdata, fmt, args,
2690                        " ns: \?\? lock: %p/%#llx lrc: %d/%d,%d mode: %s/%s "
2691                        "res: \?\? rrc=\?\? type: \?\?\? flags: %#llx nid: %s "
2692                        "remote: %#llx expref: %d pid: %u timeout: %lld "
2693                        "lvb_type: %d\n",
2694                        lock,
2695                        lock->l_handle.h_cookie, atomic_read(&lock->l_refc),
2696                        lock->l_readers, lock->l_writers,
2697                        ldlm_lockname[lock->l_granted_mode],
2698                        ldlm_lockname[lock->l_req_mode],
2699                        lock->l_flags, nid, lock->l_remote_handle.cookie,
2700                        exp ? atomic_read(&exp->exp_refcount) : -99,
2701                        lock->l_pid, lock->l_callback_timeout, lock->l_lvb_type);
2702                 va_end(args);
2703                 return;
2704         }
2705
2706         switch (resource->lr_type) {
2707         case LDLM_EXTENT:
2708                 libcfs_debug_vmsg2(msgdata, fmt, args,
2709                         " ns: %s lock: %p/%#llx lrc: %d/%d,%d mode: %s/%s "
2710                         "res: "DLDLMRES" rrc: %d type: %s [%llu->%llu] "
2711                         "(req %llu->%llu) flags: %#llx nid: %s remote: "
2712                         "%#llx expref: %d pid: %u timeout: %lld lvb_type: %d\n",
2713                         ldlm_lock_to_ns_name(lock), lock,
2714                         lock->l_handle.h_cookie, atomic_read(&lock->l_refc),
2715                         lock->l_readers, lock->l_writers,
2716                         ldlm_lockname[lock->l_granted_mode],
2717                         ldlm_lockname[lock->l_req_mode],
2718                         PLDLMRES(resource),
2719                         atomic_read(&resource->lr_refcount),
2720                         ldlm_typename[resource->lr_type],
2721                         lock->l_policy_data.l_extent.start,
2722                         lock->l_policy_data.l_extent.end,
2723                         lock->l_req_extent.start, lock->l_req_extent.end,
2724                         lock->l_flags, nid, lock->l_remote_handle.cookie,
2725                         exp ? atomic_read(&exp->exp_refcount) : -99,
2726                         lock->l_pid, lock->l_callback_timeout,
2727                         lock->l_lvb_type);
2728                 break;
2729
2730         case LDLM_FLOCK:
2731                 libcfs_debug_vmsg2(msgdata, fmt, args,
2732                         " ns: %s lock: %p/%#llx lrc: %d/%d,%d mode: %s/%s "
2733                         "res: "DLDLMRES" rrc: %d type: %s pid: %d "
2734                         "[%llu->%llu] flags: %#llx nid: %s "
2735                         "remote: %#llx expref: %d pid: %u timeout: %lld\n",
2736                         ldlm_lock_to_ns_name(lock), lock,
2737                         lock->l_handle.h_cookie, atomic_read(&lock->l_refc),
2738                         lock->l_readers, lock->l_writers,
2739                         ldlm_lockname[lock->l_granted_mode],
2740                         ldlm_lockname[lock->l_req_mode],
2741                         PLDLMRES(resource),
2742                         atomic_read(&resource->lr_refcount),
2743                         ldlm_typename[resource->lr_type],
2744                         lock->l_policy_data.l_flock.pid,
2745                         lock->l_policy_data.l_flock.start,
2746                         lock->l_policy_data.l_flock.end,
2747                         lock->l_flags, nid, lock->l_remote_handle.cookie,
2748                         exp ? atomic_read(&exp->exp_refcount) : -99,
2749                         lock->l_pid, lock->l_callback_timeout);
2750                 break;
2751
2752         case LDLM_IBITS:
2753                 libcfs_debug_vmsg2(msgdata, fmt, args,
2754                         " ns: %s lock: %p/%#llx lrc: %d/%d,%d mode: %s/%s "
2755                         "res: "DLDLMRES" bits %#llx/%#llx rrc: %d type: %s "
2756                         "flags: %#llx nid: %s remote: %#llx expref: %d "
2757                         "pid: %u timeout: %lld lvb_type: %d\n",
2758                         ldlm_lock_to_ns_name(lock),
2759                         lock, lock->l_handle.h_cookie,
2760                         atomic_read(&lock->l_refc),
2761                         lock->l_readers, lock->l_writers,
2762                         ldlm_lockname[lock->l_granted_mode],
2763                         ldlm_lockname[lock->l_req_mode],
2764                         PLDLMRES(resource),
2765                         lock->l_policy_data.l_inodebits.bits,
2766                         lock->l_policy_data.l_inodebits.try_bits,
2767                         atomic_read(&resource->lr_refcount),
2768                         ldlm_typename[resource->lr_type],
2769                         lock->l_flags, nid, lock->l_remote_handle.cookie,
2770                         exp ? atomic_read(&exp->exp_refcount) : -99,
2771                         lock->l_pid, lock->l_callback_timeout,
2772                         lock->l_lvb_type);
2773                 break;
2774
2775         default:
2776                 libcfs_debug_vmsg2(msgdata, fmt, args,
2777                         " ns: %s lock: %p/%#llx lrc: %d/%d,%d mode: %s/%s "
2778                         "res: "DLDLMRES" rrc: %d type: %s flags: %#llx "
2779                         "nid: %s remote: %#llx expref: %d pid: %u "
2780                         "timeout: %lld lvb_type: %d\n",
2781                         ldlm_lock_to_ns_name(lock),
2782                         lock, lock->l_handle.h_cookie,
2783                         atomic_read(&lock->l_refc),
2784                         lock->l_readers, lock->l_writers,
2785                         ldlm_lockname[lock->l_granted_mode],
2786                         ldlm_lockname[lock->l_req_mode],
2787                         PLDLMRES(resource),
2788                         atomic_read(&resource->lr_refcount),
2789                         ldlm_typename[resource->lr_type],
2790                         lock->l_flags, nid, lock->l_remote_handle.cookie,
2791                         exp ? atomic_read(&exp->exp_refcount) : -99,
2792                         lock->l_pid, lock->l_callback_timeout,
2793                         lock->l_lvb_type);
2794                 break;
2795         }
2796         va_end(args);
2797         ldlm_resource_putref(resource);
2798 }
2799 EXPORT_SYMBOL(_ldlm_lock_debug);