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