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