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