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