Whamcloud - gitweb
b402a2d33f1bf14a81499cc3b7d9fed25e72361a
[fs/lustre-release.git] / lustre / ldlm / ldlm_lock.c
1 /*
2  * GPL HEADER START
3  *
4  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License version 2 only,
8  * as published by the Free Software Foundation.
9  *
10  * This program is distributed in the hope that it will be useful, but
11  * WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * General Public License version 2 for more details (a copy is included
14  * in the LICENSE file that accompanied this code).
15  *
16  * You should have received a copy of the GNU General Public License
17  * version 2 along with this program; If not, see
18  * http://www.sun.com/software/products/lustre/docs/GPLv2.pdf
19  *
20  * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
21  * CA 95054 USA or visit www.sun.com if you need additional information or
22  * have any questions.
23  *
24  * GPL HEADER END
25  */
26 /*
27  * Copyright (c) 2002, 2010, Oracle and/or its affiliates. All rights reserved.
28  * Use is subject to license terms.
29  *
30  * Copyright (c) 2010, 2015, Intel Corporation.
31  */
32 /*
33  * This file is part of Lustre, http://www.lustre.org/
34  * Lustre is a trademark of Sun Microsystems, Inc.
35  *
36  * lustre/ldlm/ldlm_lock.c
37  *
38  * Author: Peter Braam <braam@clusterfs.com>
39  * Author: Phil Schwan <phil@clusterfs.com>
40  */
41
42 #define DEBUG_SUBSYSTEM S_LDLM
43
44 #include <libcfs/libcfs.h>
45 #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 const char *ldlm_it2str(enum ldlm_intent_flags 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 0x%08x\n", it);
134                 return "UNKNOWN";
135         }
136 }
137 EXPORT_SYMBOL(ldlm_it2str);
138
139 extern struct kmem_cache *ldlm_lock_slab;
140
141 #ifdef HAVE_SERVER_SUPPORT
142 static ldlm_processing_policy ldlm_processing_policy_table[] = {
143         [LDLM_PLAIN]    = ldlm_process_plain_lock,
144         [LDLM_EXTENT]   = ldlm_process_extent_lock,
145         [LDLM_FLOCK]    = ldlm_process_flock_lock,
146         [LDLM_IBITS]    = ldlm_process_inodebits_lock,
147 };
148
149 ldlm_processing_policy ldlm_get_processing_policy(struct ldlm_resource *res)
150 {
151         return ldlm_processing_policy_table[res->lr_type];
152 }
153 EXPORT_SYMBOL(ldlm_get_processing_policy);
154 #endif /* HAVE_SERVER_SUPPORT */
155
156 void ldlm_register_intent(struct ldlm_namespace *ns, ldlm_res_policy arg)
157 {
158         ns->ns_policy = arg;
159 }
160 EXPORT_SYMBOL(ldlm_register_intent);
161
162 /*
163  * REFCOUNTED LOCK OBJECTS
164  */
165
166
167 /**
168  * Get a reference on a lock.
169  *
170  * Lock refcounts, during creation:
171  *   - one special one for allocation, dec'd only once in destroy
172  *   - one for being a lock that's in-use
173  *   - one for the addref associated with a new lock
174  */
175 struct ldlm_lock *ldlm_lock_get(struct ldlm_lock *lock)
176 {
177         atomic_inc(&lock->l_refc);
178         return lock;
179 }
180 EXPORT_SYMBOL(ldlm_lock_get);
181
182 /**
183  * Release lock reference.
184  *
185  * Also frees the lock if it was last reference.
186  */
187 void ldlm_lock_put(struct ldlm_lock *lock)
188 {
189         ENTRY;
190
191         LASSERT(lock->l_resource != LP_POISON);
192         LASSERT(atomic_read(&lock->l_refc) > 0);
193         if (atomic_dec_and_test(&lock->l_refc)) {
194                 struct ldlm_resource *res;
195
196                 LDLM_DEBUG(lock,
197                            "final lock_put on destroyed lock, freeing it.");
198
199                 res = lock->l_resource;
200                 LASSERT(ldlm_is_destroyed(lock));
201                 LASSERT(list_empty(&lock->l_exp_list));
202                 LASSERT(list_empty(&lock->l_res_link));
203                 LASSERT(list_empty(&lock->l_pending_chain));
204
205                 lprocfs_counter_decr(ldlm_res_to_ns(res)->ns_stats,
206                                      LDLM_NSS_LOCKS);
207                 lu_ref_del(&res->lr_reference, "lock", lock);
208                 ldlm_resource_putref(res);
209                 lock->l_resource = NULL;
210                 if (lock->l_export) {
211                         class_export_lock_put(lock->l_export, lock);
212                         lock->l_export = NULL;
213                 }
214
215                 if (lock->l_lvb_data != NULL)
216                         OBD_FREE_LARGE(lock->l_lvb_data, lock->l_lvb_len);
217
218                 ldlm_interval_free(ldlm_interval_detach(lock));
219                 lu_ref_fini(&lock->l_reference);
220                 OBD_FREE_RCU(lock, sizeof(*lock), &lock->l_handle);
221         }
222
223         EXIT;
224 }
225 EXPORT_SYMBOL(ldlm_lock_put);
226
227 /**
228  * Removes LDLM lock \a lock from LRU. Assumes LRU is already locked.
229  */
230 int ldlm_lock_remove_from_lru_nolock(struct ldlm_lock *lock)
231 {
232         int rc = 0;
233         if (!list_empty(&lock->l_lru)) {
234                 struct ldlm_namespace *ns = ldlm_lock_to_ns(lock);
235
236                 LASSERT(lock->l_resource->lr_type != LDLM_FLOCK);
237                 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) || lock->l_req_mode == LCK_GROUP) &&
836             !lock->l_readers && !lock->l_writers) {
837                 /* If this is a local lock on a server namespace and this was
838                  * the last reference, cancel the lock.
839                  *
840                  * Group locks are special:
841                  * They must not go in LRU, but they are not called back
842                  * like non-group locks, instead they are manually released.
843                  * They have an l_writers reference which they keep until
844                  * they are manually released, so we remove them when they have
845                  * no more reader or writer references. - LU-6368 */
846                 ldlm_set_cbpending(lock);
847         }
848
849         if (!lock->l_readers && !lock->l_writers && ldlm_is_cbpending(lock)) {
850                 /* If we received a blocked AST and this was the last reference,
851                  * run the callback. */
852                 if (ldlm_is_ns_srv(lock) && lock->l_export)
853                         CERROR("FL_CBPENDING set on non-local lock--just a "
854                                "warning\n");
855
856                 LDLM_DEBUG(lock, "final decref done on cbpending lock");
857
858                 LDLM_LOCK_GET(lock); /* dropped by bl thread */
859                 ldlm_lock_remove_from_lru(lock);
860                 unlock_res_and_lock(lock);
861
862                 if (ldlm_is_fail_loc(lock))
863                         OBD_RACE(OBD_FAIL_LDLM_CP_BL_RACE);
864
865                 if (ldlm_is_atomic_cb(lock) ||
866                     ldlm_bl_to_thread_lock(ns, NULL, lock) != 0)
867                         ldlm_handle_bl_callback(ns, NULL, lock);
868         } else if (ns_is_client(ns) &&
869                    !lock->l_readers && !lock->l_writers &&
870                    !ldlm_is_no_lru(lock) &&
871                    !ldlm_is_bl_ast(lock)) {
872
873                 LDLM_DEBUG(lock, "add lock into lru list");
874
875                 /* If this is a client-side namespace and this was the last
876                  * reference, put it on the LRU. */
877                 ldlm_lock_add_to_lru(lock);
878                 unlock_res_and_lock(lock);
879
880                 if (ldlm_is_fail_loc(lock))
881                         OBD_RACE(OBD_FAIL_LDLM_CP_BL_RACE);
882
883                 /* Call ldlm_cancel_lru() only if EARLY_CANCEL and LRU RESIZE
884                  * are not supported by the server, otherwise, it is done on
885                  * enqueue. */
886                 if (!exp_connect_cancelset(lock->l_conn_export) &&
887                     !ns_connect_lru_resize(ns))
888                         ldlm_cancel_lru(ns, 0, LCF_ASYNC, 0);
889         } else {
890                 LDLM_DEBUG(lock, "do not add lock into lru list");
891                 unlock_res_and_lock(lock);
892         }
893
894         EXIT;
895 }
896
897 /**
898  * Decrease reader/writer refcount for LDLM lock with handle \a lockh
899  */
900 void ldlm_lock_decref(struct lustre_handle *lockh, enum ldlm_mode mode)
901 {
902         struct ldlm_lock *lock = __ldlm_handle2lock(lockh, 0);
903         LASSERTF(lock != NULL, "Non-existing lock: "LPX64"\n", lockh->cookie);
904         ldlm_lock_decref_internal(lock, mode);
905         LDLM_LOCK_PUT(lock);
906 }
907 EXPORT_SYMBOL(ldlm_lock_decref);
908
909 /**
910  * Decrease reader/writer refcount for LDLM lock with handle
911  * \a lockh and mark it for subsequent cancellation once r/w refcount
912  * drops to zero instead of putting into LRU.
913  *
914  */
915 void ldlm_lock_decref_and_cancel(struct lustre_handle *lockh,
916                                  enum ldlm_mode mode)
917 {
918         struct ldlm_lock *lock = __ldlm_handle2lock(lockh, 0);
919         ENTRY;
920
921         LASSERT(lock != NULL);
922
923         LDLM_DEBUG(lock, "ldlm_lock_decref(%s)", ldlm_lockname[mode]);
924         lock_res_and_lock(lock);
925         ldlm_set_cbpending(lock);
926         unlock_res_and_lock(lock);
927         ldlm_lock_decref_internal(lock, mode);
928         LDLM_LOCK_PUT(lock);
929 }
930 EXPORT_SYMBOL(ldlm_lock_decref_and_cancel);
931
932 struct sl_insert_point {
933         struct list_head *res_link;
934         struct list_head *mode_link;
935         struct list_head *policy_link;
936 };
937
938 /**
939  * Finds a position to insert the new lock into granted lock list.
940  *
941  * Used for locks eligible for skiplist optimization.
942  *
943  * Parameters:
944  *      queue [input]:  the granted list where search acts on;
945  *      req [input]:    the lock whose position to be located;
946  *      prev [output]:  positions within 3 lists to insert @req to
947  * Return Value:
948  *      filled @prev
949  * NOTE: called by
950  *  - ldlm_grant_lock_with_skiplist
951  */
952 static void search_granted_lock(struct list_head *queue,
953                                 struct ldlm_lock *req,
954                                 struct sl_insert_point *prev)
955 {
956         struct list_head *tmp;
957         struct ldlm_lock *lock, *mode_end, *policy_end;
958         ENTRY;
959
960         list_for_each(tmp, queue) {
961                 lock = list_entry(tmp, struct ldlm_lock, l_res_link);
962
963                 mode_end = list_entry(lock->l_sl_mode.prev,
964                                           struct ldlm_lock, l_sl_mode);
965
966                 if (lock->l_req_mode != req->l_req_mode) {
967                         /* jump to last lock of mode group */
968                         tmp = &mode_end->l_res_link;
969                         continue;
970                 }
971
972                 /* suitable mode group is found */
973                 if (lock->l_resource->lr_type == LDLM_PLAIN) {
974                         /* insert point is last lock of the mode group */
975                         prev->res_link = &mode_end->l_res_link;
976                         prev->mode_link = &mode_end->l_sl_mode;
977                         prev->policy_link = &req->l_sl_policy;
978                         EXIT;
979                         return;
980                 } else if (lock->l_resource->lr_type == LDLM_IBITS) {
981                         for (;;) {
982                                 policy_end =
983                                         list_entry(lock->l_sl_policy.prev,
984                                                        struct ldlm_lock,
985                                                        l_sl_policy);
986
987                                 if (lock->l_policy_data.l_inodebits.bits ==
988                                     req->l_policy_data.l_inodebits.bits) {
989                                         /* insert point is last lock of
990                                          * the policy group */
991                                         prev->res_link =
992                                                 &policy_end->l_res_link;
993                                         prev->mode_link =
994                                                 &policy_end->l_sl_mode;
995                                         prev->policy_link =
996                                                 &policy_end->l_sl_policy;
997                                         EXIT;
998                                         return;
999                                 }
1000
1001                                 if (policy_end == mode_end)
1002                                         /* done with mode group */
1003                                         break;
1004
1005                                 /* go to next policy group within mode group */
1006                                 tmp = policy_end->l_res_link.next;
1007                                 lock = list_entry(tmp, struct ldlm_lock,
1008                                                       l_res_link);
1009                         }  /* loop over policy groups within the mode group */
1010
1011                         /* insert point is last lock of the mode group,
1012                          * new policy group is started */
1013                         prev->res_link = &mode_end->l_res_link;
1014                         prev->mode_link = &mode_end->l_sl_mode;
1015                         prev->policy_link = &req->l_sl_policy;
1016                         EXIT;
1017                         return;
1018                 } else {
1019                         LDLM_ERROR(lock,"is not LDLM_PLAIN or LDLM_IBITS lock");
1020                         LBUG();
1021                 }
1022         }
1023
1024         /* insert point is last lock on the queue,
1025          * new mode group and new policy group are started */
1026         prev->res_link = queue->prev;
1027         prev->mode_link = &req->l_sl_mode;
1028         prev->policy_link = &req->l_sl_policy;
1029         EXIT;
1030         return;
1031 }
1032
1033 /**
1034  * Add a lock into resource granted list after a position described by
1035  * \a prev.
1036  */
1037 static void ldlm_granted_list_add_lock(struct ldlm_lock *lock,
1038                                        struct sl_insert_point *prev)
1039 {
1040         struct ldlm_resource *res = lock->l_resource;
1041         ENTRY;
1042
1043         check_res_locked(res);
1044
1045         ldlm_resource_dump(D_INFO, res);
1046         LDLM_DEBUG(lock, "About to add lock:");
1047
1048         if (ldlm_is_destroyed(lock)) {
1049                 CDEBUG(D_OTHER, "Lock destroyed, not adding to resource\n");
1050                 return;
1051         }
1052
1053         LASSERT(list_empty(&lock->l_res_link));
1054         LASSERT(list_empty(&lock->l_sl_mode));
1055         LASSERT(list_empty(&lock->l_sl_policy));
1056
1057         /*
1058          * lock->link == prev->link means lock is first starting the group.
1059          * Don't re-add to itself to suppress kernel warnings.
1060          */
1061         if (&lock->l_res_link != prev->res_link)
1062                 list_add(&lock->l_res_link, prev->res_link);
1063         if (&lock->l_sl_mode != prev->mode_link)
1064                 list_add(&lock->l_sl_mode, prev->mode_link);
1065         if (&lock->l_sl_policy != prev->policy_link)
1066                 list_add(&lock->l_sl_policy, prev->policy_link);
1067
1068         EXIT;
1069 }
1070
1071 /**
1072  * Add a lock to granted list on a resource maintaining skiplist
1073  * correctness.
1074  */
1075 static void ldlm_grant_lock_with_skiplist(struct ldlm_lock *lock)
1076 {
1077         struct sl_insert_point prev;
1078         ENTRY;
1079
1080         LASSERT(lock->l_req_mode == lock->l_granted_mode);
1081
1082         search_granted_lock(&lock->l_resource->lr_granted, lock, &prev);
1083         ldlm_granted_list_add_lock(lock, &prev);
1084         EXIT;
1085 }
1086
1087 /**
1088  * Perform lock granting bookkeeping.
1089  *
1090  * Includes putting the lock into granted list and updating lock mode.
1091  * NOTE: called by
1092  *  - ldlm_lock_enqueue
1093  *  - ldlm_reprocess_queue
1094  *  - ldlm_lock_convert
1095  *
1096  * must be called with lr_lock held
1097  */
1098 void ldlm_grant_lock(struct ldlm_lock *lock, struct list_head *work_list)
1099 {
1100         struct ldlm_resource *res = lock->l_resource;
1101         ENTRY;
1102
1103         check_res_locked(res);
1104
1105         lock->l_granted_mode = lock->l_req_mode;
1106
1107         if (work_list && lock->l_completion_ast != NULL)
1108                 ldlm_add_ast_work_item(lock, NULL, work_list);
1109
1110         /* We should not add locks to granted list in the following cases:
1111          * - this is an UNLOCK but not a real lock;
1112          * - this is a TEST lock;
1113          * - this is a F_CANCELLK lock (async flock has req_mode == 0)
1114          * - this is a deadlock (flock cannot be granted) */
1115         if (lock->l_req_mode == 0 ||
1116             lock->l_req_mode == LCK_NL ||
1117             ldlm_is_test_lock(lock) ||
1118             ldlm_is_flock_deadlock(lock))
1119                 RETURN_EXIT;
1120
1121         if (res->lr_type == LDLM_PLAIN || res->lr_type == LDLM_IBITS)
1122                 ldlm_grant_lock_with_skiplist(lock);
1123         else if (res->lr_type == LDLM_EXTENT)
1124                 ldlm_extent_add_lock(res, lock);
1125         else
1126                 ldlm_resource_add_lock(res, &res->lr_granted, lock);
1127
1128         ldlm_pool_add(&ldlm_res_to_ns(res)->ns_pool, lock);
1129         EXIT;
1130 }
1131
1132 /**
1133  * Describe the overlap between two locks.  itree_overlap_cb data.
1134  */
1135 struct lock_match_data {
1136         struct ldlm_lock        *lmd_old;
1137         struct ldlm_lock        *lmd_lock;
1138         enum ldlm_mode          *lmd_mode;
1139         union ldlm_policy_data  *lmd_policy;
1140         __u64                    lmd_flags;
1141         int                      lmd_unref;
1142 };
1143
1144 /**
1145  * Check if the given @lock meets the criteria for a match.
1146  * A reference on the lock is taken if matched.
1147  *
1148  * \param lock     test-against this lock
1149  * \param data     parameters
1150  */
1151 static int lock_matches(struct ldlm_lock *lock, struct lock_match_data *data)
1152 {
1153         union ldlm_policy_data *lpol = &lock->l_policy_data;
1154         enum ldlm_mode match;
1155
1156         if (lock == data->lmd_old)
1157                 return INTERVAL_ITER_STOP;
1158
1159         /* Check if this lock can be matched.
1160          * Used by LU-2919(exclusive open) for open lease lock */
1161         if (ldlm_is_excl(lock))
1162                 return INTERVAL_ITER_CONT;
1163
1164         /* llite sometimes wants to match locks that will be
1165          * canceled when their users drop, but we allow it to match
1166          * if it passes in CBPENDING and the lock still has users.
1167          * this is generally only going to be used by children
1168          * whose parents already hold a lock so forward progress
1169          * can still happen. */
1170         if (ldlm_is_cbpending(lock) &&
1171             !(data->lmd_flags & LDLM_FL_CBPENDING))
1172                 return INTERVAL_ITER_CONT;
1173         if (!data->lmd_unref && ldlm_is_cbpending(lock) &&
1174             lock->l_readers == 0 && lock->l_writers == 0)
1175                 return INTERVAL_ITER_CONT;
1176
1177         if (!(lock->l_req_mode & *data->lmd_mode))
1178                 return INTERVAL_ITER_CONT;
1179         match = lock->l_req_mode;
1180
1181         switch (lock->l_resource->lr_type) {
1182         case LDLM_EXTENT:
1183                 if (lpol->l_extent.start > data->lmd_policy->l_extent.start ||
1184                     lpol->l_extent.end < data->lmd_policy->l_extent.end)
1185                         return INTERVAL_ITER_CONT;
1186
1187                 if (unlikely(match == LCK_GROUP) &&
1188                     data->lmd_policy->l_extent.gid != LDLM_GID_ANY &&
1189                     lpol->l_extent.gid != data->lmd_policy->l_extent.gid)
1190                         return INTERVAL_ITER_CONT;
1191                 break;
1192         case LDLM_IBITS:
1193                 /* We match if we have existing lock with same or wider set
1194                    of bits. */
1195                 if ((lpol->l_inodebits.bits &
1196                      data->lmd_policy->l_inodebits.bits) !=
1197                     data->lmd_policy->l_inodebits.bits)
1198                         return INTERVAL_ITER_CONT;
1199                 break;
1200         default:
1201                 ;
1202         }
1203
1204         /* We match if we have existing lock with same or wider set
1205            of bits. */
1206         if (!data->lmd_unref && LDLM_HAVE_MASK(lock, GONE))
1207                 return INTERVAL_ITER_CONT;
1208
1209         if (!equi(data->lmd_flags & LDLM_FL_LOCAL_ONLY, ldlm_is_local(lock)))
1210                 return INTERVAL_ITER_CONT;
1211
1212         if (data->lmd_flags & LDLM_FL_TEST_LOCK) {
1213                 LDLM_LOCK_GET(lock);
1214                 ldlm_lock_touch_in_lru(lock);
1215         } else {
1216                 ldlm_lock_addref_internal_nolock(lock, match);
1217         }
1218
1219         *data->lmd_mode = match;
1220         data->lmd_lock = lock;
1221
1222         return INTERVAL_ITER_STOP;
1223 }
1224
1225 static unsigned int itree_overlap_cb(struct interval_node *in, void *args)
1226 {
1227         struct ldlm_interval *node = to_ldlm_interval(in);
1228         struct lock_match_data *data = args;
1229         struct ldlm_lock *lock;
1230         int rc;
1231
1232         list_for_each_entry(lock, &node->li_group, l_sl_policy) {
1233                 rc = lock_matches(lock, data);
1234                 if (rc == INTERVAL_ITER_STOP)
1235                         return INTERVAL_ITER_STOP;
1236         }
1237         return INTERVAL_ITER_CONT;
1238 }
1239
1240 /**
1241  * Search for a lock with given parameters in interval trees.
1242  *
1243  * \param res      search for a lock in this resource
1244  * \param data     parameters
1245  *
1246  * \retval a referenced lock or NULL.
1247  */
1248 static struct ldlm_lock *search_itree(struct ldlm_resource *res,
1249                                       struct lock_match_data *data)
1250 {
1251         struct interval_node_extent ext = {
1252                 .start     = data->lmd_policy->l_extent.start,
1253                 .end       = data->lmd_policy->l_extent.end
1254         };
1255         int idx;
1256
1257         for (idx = 0; idx < LCK_MODE_NUM; idx++) {
1258                 struct ldlm_interval_tree *tree = &res->lr_itree[idx];
1259
1260                 if (tree->lit_root == NULL)
1261                         continue;
1262
1263                 if (!(tree->lit_mode & *data->lmd_mode))
1264                         continue;
1265
1266                 interval_search(tree->lit_root, &ext,
1267                                 itree_overlap_cb, data);
1268         }
1269         return data->lmd_lock;
1270 }
1271
1272
1273 /**
1274  * Search for a lock with given properties in a queue.
1275  *
1276  * \param queue    search for a lock in this queue
1277  * \param data     parameters
1278  *
1279  * \retval a referenced lock or NULL.
1280  */
1281 static struct ldlm_lock *search_queue(struct list_head *queue,
1282                                       struct lock_match_data *data)
1283 {
1284         struct ldlm_lock *lock;
1285         int rc;
1286
1287         list_for_each_entry(lock, queue, l_res_link) {
1288                 rc = lock_matches(lock, data);
1289                 if (rc == INTERVAL_ITER_STOP)
1290                         return data->lmd_lock;
1291         }
1292         return NULL;
1293 }
1294
1295 void ldlm_lock_fail_match_locked(struct ldlm_lock *lock)
1296 {
1297         if ((lock->l_flags & LDLM_FL_FAIL_NOTIFIED) == 0) {
1298                 lock->l_flags |= LDLM_FL_FAIL_NOTIFIED;
1299                 wake_up_all(&lock->l_waitq);
1300         }
1301 }
1302 EXPORT_SYMBOL(ldlm_lock_fail_match_locked);
1303
1304 void ldlm_lock_fail_match(struct ldlm_lock *lock)
1305 {
1306         lock_res_and_lock(lock);
1307         ldlm_lock_fail_match_locked(lock);
1308         unlock_res_and_lock(lock);
1309 }
1310
1311 /**
1312  * Mark lock as "matchable" by OST.
1313  *
1314  * Used to prevent certain races in LOV/OSC where the lock is granted, but LVB
1315  * is not yet valid.
1316  * Assumes LDLM lock is already locked.
1317  */
1318 void ldlm_lock_allow_match_locked(struct ldlm_lock *lock)
1319 {
1320         ldlm_set_lvb_ready(lock);
1321         wake_up_all(&lock->l_waitq);
1322 }
1323 EXPORT_SYMBOL(ldlm_lock_allow_match_locked);
1324
1325 /**
1326  * Mark lock as "matchable" by OST.
1327  * Locks the lock and then \see ldlm_lock_allow_match_locked
1328  */
1329 void ldlm_lock_allow_match(struct ldlm_lock *lock)
1330 {
1331         lock_res_and_lock(lock);
1332         ldlm_lock_allow_match_locked(lock);
1333         unlock_res_and_lock(lock);
1334 }
1335 EXPORT_SYMBOL(ldlm_lock_allow_match);
1336
1337 /**
1338  * Attempt to find a lock with specified properties.
1339  *
1340  * Typically returns a reference to matched lock unless LDLM_FL_TEST_LOCK is
1341  * set in \a flags
1342  *
1343  * Can be called in two ways:
1344  *
1345  * If 'ns' is NULL, then lockh describes an existing lock that we want to look
1346  * for a duplicate of.
1347  *
1348  * Otherwise, all of the fields must be filled in, to match against.
1349  *
1350  * If 'flags' contains LDLM_FL_LOCAL_ONLY, then only match local locks on the
1351  *     server (ie, connh is NULL)
1352  * If 'flags' contains LDLM_FL_BLOCK_GRANTED, then only locks on the granted
1353  *     list will be considered
1354  * If 'flags' contains LDLM_FL_CBPENDING, then locks that have been marked
1355  *     to be canceled can still be matched as long as they still have reader
1356  *     or writer refernces
1357  * If 'flags' contains LDLM_FL_TEST_LOCK, then don't actually reference a lock,
1358  *     just tell us if we would have matched.
1359  *
1360  * \retval 1 if it finds an already-existing lock that is compatible; in this
1361  * case, lockh is filled in with a addref()ed lock
1362  *
1363  * We also check security context, and if that fails we simply return 0 (to
1364  * keep caller code unchanged), the context failure will be discovered by
1365  * caller sometime later.
1366  */
1367 enum ldlm_mode ldlm_lock_match(struct ldlm_namespace *ns, __u64 flags,
1368                                const struct ldlm_res_id *res_id,
1369                                enum ldlm_type type,
1370                                union ldlm_policy_data *policy,
1371                                enum ldlm_mode mode,
1372                                struct lustre_handle *lockh, int unref)
1373 {
1374         struct lock_match_data data = {
1375                 .lmd_old        = NULL,
1376                 .lmd_lock       = NULL,
1377                 .lmd_mode       = &mode,
1378                 .lmd_policy     = policy,
1379                 .lmd_flags      = flags,
1380                 .lmd_unref      = unref,
1381         };
1382         struct ldlm_resource *res;
1383         struct ldlm_lock *lock;
1384         int rc = 0;
1385         ENTRY;
1386
1387         if (ns == NULL) {
1388                 data.lmd_old = ldlm_handle2lock(lockh);
1389                 LASSERT(data.lmd_old != NULL);
1390
1391                 ns = ldlm_lock_to_ns(data.lmd_old);
1392                 res_id = &data.lmd_old->l_resource->lr_name;
1393                 type = data.lmd_old->l_resource->lr_type;
1394                 *data.lmd_mode = data.lmd_old->l_req_mode;
1395         }
1396
1397         res = ldlm_resource_get(ns, NULL, res_id, type, 0);
1398         if (IS_ERR(res)) {
1399                 LASSERT(data.lmd_old == NULL);
1400                 RETURN(0);
1401         }
1402
1403         LDLM_RESOURCE_ADDREF(res);
1404         lock_res(res);
1405
1406         if (res->lr_type == LDLM_EXTENT)
1407                 lock = search_itree(res, &data);
1408         else
1409                 lock = search_queue(&res->lr_granted, &data);
1410         if (lock != NULL)
1411                 GOTO(out, rc = 1);
1412         if (flags & LDLM_FL_BLOCK_GRANTED)
1413                 GOTO(out, rc = 0);
1414         lock = search_queue(&res->lr_converting, &data);
1415         if (lock != NULL)
1416                 GOTO(out, rc = 1);
1417         lock = search_queue(&res->lr_waiting, &data);
1418         if (lock != NULL)
1419                 GOTO(out, rc = 1);
1420
1421         EXIT;
1422  out:
1423         unlock_res(res);
1424         LDLM_RESOURCE_DELREF(res);
1425         ldlm_resource_putref(res);
1426
1427         if (lock) {
1428                 ldlm_lock2handle(lock, lockh);
1429                 if ((flags & LDLM_FL_LVB_READY) &&
1430                     (!ldlm_is_lvb_ready(lock))) {
1431                         __u64 wait_flags = LDLM_FL_LVB_READY |
1432                                 LDLM_FL_DESTROYED | LDLM_FL_FAIL_NOTIFIED;
1433                         struct l_wait_info lwi;
1434                         if (lock->l_completion_ast) {
1435                                 int err = lock->l_completion_ast(lock,
1436                                                           LDLM_FL_WAIT_NOREPROC,
1437                                                                  NULL);
1438                                 if (err) {
1439                                         if (flags & LDLM_FL_TEST_LOCK)
1440                                                 LDLM_LOCK_RELEASE(lock);
1441                                         else
1442                                                 ldlm_lock_decref_internal(lock,
1443                                                                           mode);
1444                                         rc = 0;
1445                                         goto out2;
1446                                 }
1447                         }
1448
1449                         lwi = LWI_TIMEOUT_INTR(cfs_time_seconds(obd_timeout),
1450                                                NULL, LWI_ON_SIGNAL_NOOP, NULL);
1451
1452                         /* XXX FIXME see comment on CAN_MATCH in lustre_dlm.h */
1453                         l_wait_event(lock->l_waitq,
1454                                      lock->l_flags & wait_flags,
1455                                      &lwi);
1456                         if (!ldlm_is_lvb_ready(lock)) {
1457                                 if (flags & LDLM_FL_TEST_LOCK)
1458                                         LDLM_LOCK_RELEASE(lock);
1459                                 else
1460                                         ldlm_lock_decref_internal(lock, mode);
1461                                 rc = 0;
1462                         }
1463                 }
1464         }
1465  out2:
1466         if (rc) {
1467                 LDLM_DEBUG(lock, "matched ("LPU64" "LPU64")",
1468                            (type == LDLM_PLAIN || type == LDLM_IBITS) ?
1469                                 res_id->name[2] : policy->l_extent.start,
1470                            (type == LDLM_PLAIN || type == LDLM_IBITS) ?
1471                                 res_id->name[3] : policy->l_extent.end);
1472
1473                 /* check user's security context */
1474                 if (lock->l_conn_export &&
1475                     sptlrpc_import_check_ctx(
1476                                 class_exp2cliimp(lock->l_conn_export))) {
1477                         if (!(flags & LDLM_FL_TEST_LOCK))
1478                                 ldlm_lock_decref_internal(lock, mode);
1479                         rc = 0;
1480                 }
1481
1482                 if (flags & LDLM_FL_TEST_LOCK)
1483                         LDLM_LOCK_RELEASE(lock);
1484
1485         } else if (!(flags & LDLM_FL_TEST_LOCK)) {/*less verbose for test-only*/
1486                 LDLM_DEBUG_NOLOCK("not matched ns %p type %u mode %u res "
1487                                   LPU64"/"LPU64" ("LPU64" "LPU64")", ns,
1488                                   type, mode, res_id->name[0], res_id->name[1],
1489                                   (type == LDLM_PLAIN || type == LDLM_IBITS) ?
1490                                         res_id->name[2] :policy->l_extent.start,
1491                                   (type == LDLM_PLAIN || type == LDLM_IBITS) ?
1492                                         res_id->name[3] : policy->l_extent.end);
1493         }
1494         if (data.lmd_old != NULL)
1495                 LDLM_LOCK_PUT(data.lmd_old);
1496
1497         return rc ? mode : 0;
1498 }
1499 EXPORT_SYMBOL(ldlm_lock_match);
1500
1501 enum ldlm_mode ldlm_revalidate_lock_handle(struct lustre_handle *lockh,
1502                                            __u64 *bits)
1503 {
1504         struct ldlm_lock *lock;
1505         enum ldlm_mode mode = 0;
1506         ENTRY;
1507
1508         lock = ldlm_handle2lock(lockh);
1509         if (lock != NULL) {
1510                 lock_res_and_lock(lock);
1511                 if (LDLM_HAVE_MASK(lock, GONE))
1512                         GOTO(out, mode);
1513
1514                 if (ldlm_is_cbpending(lock) &&
1515                     lock->l_readers == 0 && lock->l_writers == 0)
1516                         GOTO(out, mode);
1517
1518                 if (bits)
1519                         *bits = lock->l_policy_data.l_inodebits.bits;
1520                 mode = lock->l_granted_mode;
1521                 ldlm_lock_addref_internal_nolock(lock, mode);
1522         }
1523
1524         EXIT;
1525
1526 out:
1527         if (lock != NULL) {
1528                 unlock_res_and_lock(lock);
1529                 LDLM_LOCK_PUT(lock);
1530         }
1531         return mode;
1532 }
1533 EXPORT_SYMBOL(ldlm_revalidate_lock_handle);
1534
1535 /** The caller must guarantee that the buffer is large enough. */
1536 int ldlm_fill_lvb(struct ldlm_lock *lock, struct req_capsule *pill,
1537                   enum req_location loc, void *data, int size)
1538 {
1539         void *lvb;
1540         ENTRY;
1541
1542         LASSERT(data != NULL);
1543         LASSERT(size >= 0);
1544
1545         switch (lock->l_lvb_type) {
1546         case LVB_T_OST:
1547                 if (size == sizeof(struct ost_lvb)) {
1548                         if (loc == RCL_CLIENT)
1549                                 lvb = req_capsule_client_swab_get(pill,
1550                                                 &RMF_DLM_LVB,
1551                                                 lustre_swab_ost_lvb);
1552                         else
1553                                 lvb = req_capsule_server_swab_get(pill,
1554                                                 &RMF_DLM_LVB,
1555                                                 lustre_swab_ost_lvb);
1556                         if (unlikely(lvb == NULL)) {
1557                                 LDLM_ERROR(lock, "no LVB");
1558                                 RETURN(-EPROTO);
1559                         }
1560
1561                         memcpy(data, lvb, size);
1562                 } else if (size == sizeof(struct ost_lvb_v1)) {
1563                         struct ost_lvb *olvb = data;
1564
1565                         if (loc == RCL_CLIENT)
1566                                 lvb = req_capsule_client_swab_get(pill,
1567                                                 &RMF_DLM_LVB,
1568                                                 lustre_swab_ost_lvb_v1);
1569                         else
1570                                 lvb = req_capsule_server_sized_swab_get(pill,
1571                                                 &RMF_DLM_LVB, size,
1572                                                 lustre_swab_ost_lvb_v1);
1573                         if (unlikely(lvb == NULL)) {
1574                                 LDLM_ERROR(lock, "no LVB");
1575                                 RETURN(-EPROTO);
1576                         }
1577
1578                         memcpy(data, lvb, size);
1579                         olvb->lvb_mtime_ns = 0;
1580                         olvb->lvb_atime_ns = 0;
1581                         olvb->lvb_ctime_ns = 0;
1582                 } else {
1583                         LDLM_ERROR(lock, "Replied unexpected ost LVB size %d",
1584                                    size);
1585                         RETURN(-EINVAL);
1586                 }
1587                 break;
1588         case LVB_T_LQUOTA:
1589                 if (size == sizeof(struct lquota_lvb)) {
1590                         if (loc == RCL_CLIENT)
1591                                 lvb = req_capsule_client_swab_get(pill,
1592                                                 &RMF_DLM_LVB,
1593                                                 lustre_swab_lquota_lvb);
1594                         else
1595                                 lvb = req_capsule_server_swab_get(pill,
1596                                                 &RMF_DLM_LVB,
1597                                                 lustre_swab_lquota_lvb);
1598                         if (unlikely(lvb == NULL)) {
1599                                 LDLM_ERROR(lock, "no LVB");
1600                                 RETURN(-EPROTO);
1601                         }
1602
1603                         memcpy(data, lvb, size);
1604                 } else {
1605                         LDLM_ERROR(lock, "Replied unexpected lquota LVB size %d",
1606                                    size);
1607                         RETURN(-EINVAL);
1608                 }
1609                 break;
1610         case LVB_T_LAYOUT:
1611                 if (size == 0)
1612                         break;
1613
1614                 if (loc == RCL_CLIENT)
1615                         lvb = req_capsule_client_get(pill, &RMF_DLM_LVB);
1616                 else
1617                         lvb = req_capsule_server_get(pill, &RMF_DLM_LVB);
1618                 if (unlikely(lvb == NULL)) {
1619                         LDLM_ERROR(lock, "no LVB");
1620                         RETURN(-EPROTO);
1621                 }
1622
1623                 memcpy(data, lvb, size);
1624                 break;
1625         default:
1626                 LDLM_ERROR(lock, "Unknown LVB type: %d\n", lock->l_lvb_type);
1627                 libcfs_debug_dumpstack(NULL);
1628                 RETURN(-EINVAL);
1629         }
1630
1631         RETURN(0);
1632 }
1633
1634 /**
1635  * Create and fill in new LDLM lock with specified properties.
1636  * Returns a referenced lock
1637  */
1638 struct ldlm_lock *ldlm_lock_create(struct ldlm_namespace *ns,
1639                                    const struct ldlm_res_id *res_id,
1640                                    enum ldlm_type type,
1641                                    enum ldlm_mode mode,
1642                                    const struct ldlm_callback_suite *cbs,
1643                                    void *data, __u32 lvb_len,
1644                                    enum lvb_type lvb_type)
1645 {
1646         struct ldlm_lock        *lock;
1647         struct ldlm_resource    *res;
1648         int                     rc;
1649         ENTRY;
1650
1651         res = ldlm_resource_get(ns, NULL, res_id, type, 1);
1652         if (IS_ERR(res))
1653                 RETURN(ERR_CAST(res));
1654
1655         lock = ldlm_lock_new(res);
1656         if (lock == NULL)
1657                 RETURN(ERR_PTR(-ENOMEM));
1658
1659         lock->l_req_mode = mode;
1660         lock->l_ast_data = data;
1661         lock->l_pid = current_pid();
1662         if (ns_is_server(ns))
1663                 ldlm_set_ns_srv(lock);
1664         if (cbs) {
1665                 lock->l_blocking_ast = cbs->lcs_blocking;
1666                 lock->l_completion_ast = cbs->lcs_completion;
1667                 lock->l_glimpse_ast = cbs->lcs_glimpse;
1668         }
1669
1670         lock->l_tree_node = NULL;
1671         /* if this is the extent lock, allocate the interval tree node */
1672         if (type == LDLM_EXTENT)
1673                 if (ldlm_interval_alloc(lock) == NULL)
1674                         GOTO(out, rc = -ENOMEM);
1675
1676         if (lvb_len) {
1677                 lock->l_lvb_len = lvb_len;
1678                 OBD_ALLOC_LARGE(lock->l_lvb_data, lvb_len);
1679                 if (lock->l_lvb_data == NULL)
1680                         GOTO(out, rc = -ENOMEM);
1681         }
1682
1683         lock->l_lvb_type = lvb_type;
1684         if (OBD_FAIL_CHECK(OBD_FAIL_LDLM_NEW_LOCK))
1685                 GOTO(out, rc = -ENOENT);
1686
1687         RETURN(lock);
1688
1689 out:
1690         ldlm_lock_destroy(lock);
1691         LDLM_LOCK_RELEASE(lock);
1692         RETURN(ERR_PTR(rc));
1693 }
1694
1695 /**
1696  * Enqueue (request) a lock.
1697  *
1698  * Does not block. As a result of enqueue the lock would be put
1699  * into granted or waiting list.
1700  *
1701  * If namespace has intent policy sent and the lock has LDLM_FL_HAS_INTENT flag
1702  * set, skip all the enqueueing and delegate lock processing to intent policy
1703  * function.
1704  */
1705 enum ldlm_error ldlm_lock_enqueue(struct ldlm_namespace *ns,
1706                                   struct ldlm_lock **lockp,
1707                                   void *cookie, __u64 *flags)
1708 {
1709         struct ldlm_lock *lock = *lockp;
1710         struct ldlm_resource *res = lock->l_resource;
1711         int local = ns_is_client(ldlm_res_to_ns(res));
1712 #ifdef HAVE_SERVER_SUPPORT
1713         ldlm_processing_policy policy;
1714 #endif
1715         enum ldlm_error rc = ELDLM_OK;
1716         struct ldlm_interval *node = NULL;
1717         ENTRY;
1718
1719         /* policies are not executed on the client or during replay */
1720         if ((*flags & (LDLM_FL_HAS_INTENT|LDLM_FL_REPLAY)) == LDLM_FL_HAS_INTENT
1721             && !local && ns->ns_policy) {
1722                 rc = ns->ns_policy(ns, lockp, cookie, lock->l_req_mode, *flags,
1723                                    NULL);
1724                 if (rc == ELDLM_LOCK_REPLACED) {
1725                         /* The lock that was returned has already been granted,
1726                          * and placed into lockp.  If it's not the same as the
1727                          * one we passed in, then destroy the old one and our
1728                          * work here is done. */
1729                         if (lock != *lockp) {
1730                                 ldlm_lock_destroy(lock);
1731                                 LDLM_LOCK_RELEASE(lock);
1732                         }
1733                         *flags |= LDLM_FL_LOCK_CHANGED;
1734                         RETURN(0);
1735                 } else if (rc != ELDLM_OK &&
1736                            lock->l_req_mode == lock->l_granted_mode) {
1737                         LASSERT(*flags & LDLM_FL_RESENT);
1738                         /* It may happen that ns_policy returns an error in
1739                          * resend case, object may be unlinked or just some
1740                          * error occurs. It is unclear if lock reached the
1741                          * client in the original reply, just leave the lock on
1742                          * server, not returning it again to client. Due to
1743                          * LU-6529, the server will not OOM. */
1744                         RETURN(rc);
1745                 } else if (rc != ELDLM_OK ||
1746                            (rc == ELDLM_OK && (*flags & LDLM_FL_INTENT_ONLY))) {
1747                         ldlm_lock_destroy(lock);
1748                         RETURN(rc);
1749                 }
1750         }
1751
1752         if (*flags & LDLM_FL_RESENT) {
1753                 /* Reconstruct LDLM_FL_SRV_ENQ_MASK @flags for reply.
1754                  * Set LOCK_CHANGED always.
1755                  * Check if the lock is granted for BLOCK_GRANTED.
1756                  * Take NO_TIMEOUT from the lock as it is inherited through
1757                  * LDLM_FL_INHERIT_MASK */
1758                 *flags |= LDLM_FL_LOCK_CHANGED;
1759                 if (lock->l_req_mode != lock->l_granted_mode)
1760                         *flags |= LDLM_FL_BLOCK_GRANTED;
1761                 *flags |= lock->l_flags & LDLM_FL_NO_TIMEOUT;
1762                 RETURN(ELDLM_OK);
1763         }
1764
1765         /* For a replaying lock, it might be already in granted list. So
1766          * unlinking the lock will cause the interval node to be freed, we
1767          * have to allocate the interval node early otherwise we can't regrant
1768          * this lock in the future. - jay */
1769         if (!local && (*flags & LDLM_FL_REPLAY) && res->lr_type == LDLM_EXTENT)
1770                 OBD_SLAB_ALLOC_PTR_GFP(node, ldlm_interval_slab, GFP_NOFS);
1771
1772         lock_res_and_lock(lock);
1773         if (local && lock->l_req_mode == lock->l_granted_mode) {
1774                 /* The server returned a blocked lock, but it was granted
1775                  * before we got a chance to actually enqueue it.  We don't
1776                  * need to do anything else. */
1777                 *flags &= ~LDLM_FL_BLOCKED_MASK;
1778                 GOTO(out, rc = ELDLM_OK);
1779         }
1780
1781         ldlm_resource_unlink_lock(lock);
1782         if (res->lr_type == LDLM_EXTENT && lock->l_tree_node == NULL) {
1783                 if (node == NULL) {
1784                         ldlm_lock_destroy_nolock(lock);
1785                         GOTO(out, rc = -ENOMEM);
1786                 }
1787
1788                 INIT_LIST_HEAD(&node->li_group);
1789                 ldlm_interval_attach(node, lock);
1790                 node = NULL;
1791         }
1792
1793         /* Some flags from the enqueue want to make it into the AST, via the
1794          * lock's l_flags. */
1795         if (*flags & LDLM_FL_AST_DISCARD_DATA)
1796                 ldlm_set_ast_discard_data(lock);
1797         if (*flags & LDLM_FL_TEST_LOCK)
1798                 ldlm_set_test_lock(lock);
1799
1800         /* This distinction between local lock trees is very important; a client
1801          * namespace only has information about locks taken by that client, and
1802          * thus doesn't have enough information to decide for itself if it can
1803          * be granted (below).  In this case, we do exactly what the server
1804          * tells us to do, as dictated by the 'flags'.
1805          *
1806          * We do exactly the same thing during recovery, when the server is
1807          * more or less trusting the clients not to lie.
1808          *
1809          * FIXME (bug 268): Detect obvious lies by checking compatibility in
1810          * granted/converting queues. */
1811         if (local) {
1812                 if (*flags & LDLM_FL_BLOCK_CONV)
1813                         ldlm_resource_add_lock(res, &res->lr_converting, lock);
1814                 else if (*flags & (LDLM_FL_BLOCK_WAIT | LDLM_FL_BLOCK_GRANTED))
1815                         ldlm_resource_add_lock(res, &res->lr_waiting, lock);
1816                 else
1817                         ldlm_grant_lock(lock, NULL);
1818                 GOTO(out, rc = ELDLM_OK);
1819 #ifdef HAVE_SERVER_SUPPORT
1820         } else if (*flags & LDLM_FL_REPLAY) {
1821                 if (*flags & LDLM_FL_BLOCK_CONV) {
1822                         ldlm_resource_add_lock(res, &res->lr_converting, lock);
1823                         GOTO(out, rc = ELDLM_OK);
1824                 } else if (*flags & LDLM_FL_BLOCK_WAIT) {
1825                         ldlm_resource_add_lock(res, &res->lr_waiting, lock);
1826                         GOTO(out, rc = ELDLM_OK);
1827                 } else if (*flags & LDLM_FL_BLOCK_GRANTED) {
1828                         ldlm_grant_lock(lock, NULL);
1829                         GOTO(out, rc = ELDLM_OK);
1830                 }
1831                 /* If no flags, fall through to normal enqueue path. */
1832         }
1833
1834         policy = ldlm_processing_policy_table[res->lr_type];
1835         policy(lock, flags, 1, &rc, NULL);
1836         GOTO(out, rc);
1837 #else
1838         } else {
1839                 CERROR("This is client-side-only module, cannot handle "
1840                        "LDLM_NAMESPACE_SERVER resource type lock.\n");
1841                 LBUG();
1842         }
1843 #endif
1844
1845 out:
1846         unlock_res_and_lock(lock);
1847         if (node)
1848                 OBD_SLAB_FREE(node, ldlm_interval_slab, sizeof(*node));
1849         return rc;
1850 }
1851
1852 #ifdef HAVE_SERVER_SUPPORT
1853 /**
1854  * Iterate through all waiting locks on a given resource queue and attempt to
1855  * grant them.
1856  *
1857  * Must be called with resource lock held.
1858  */
1859 int ldlm_reprocess_queue(struct ldlm_resource *res, struct list_head *queue,
1860                          struct list_head *work_list)
1861 {
1862         struct list_head *tmp, *pos;
1863         ldlm_processing_policy policy;
1864         __u64 flags;
1865         int rc = LDLM_ITER_CONTINUE;
1866         enum ldlm_error err;
1867         ENTRY;
1868
1869         check_res_locked(res);
1870
1871         policy = ldlm_processing_policy_table[res->lr_type];
1872         LASSERT(policy);
1873
1874         list_for_each_safe(tmp, pos, queue) {
1875                 struct ldlm_lock *pending;
1876
1877                 pending = list_entry(tmp, struct ldlm_lock, l_res_link);
1878
1879                 CDEBUG(D_INFO, "Reprocessing lock %p\n", pending);
1880
1881                 flags = 0;
1882                 rc = policy(pending, &flags, 0, &err, work_list);
1883                 if (rc != LDLM_ITER_CONTINUE)
1884                         break;
1885         }
1886
1887         RETURN(rc);
1888 }
1889 #endif
1890
1891 /**
1892  * Process a call to blocking AST callback for a lock in ast_work list
1893  */
1894 static int
1895 ldlm_work_bl_ast_lock(struct ptlrpc_request_set *rqset, void *opaq)
1896 {
1897         struct ldlm_cb_set_arg *arg = opaq;
1898         struct ldlm_lock_desc   d;
1899         int                     rc;
1900         struct ldlm_lock       *lock;
1901         ENTRY;
1902
1903         if (list_empty(arg->list))
1904                 RETURN(-ENOENT);
1905
1906         lock = list_entry(arg->list->next, struct ldlm_lock, l_bl_ast);
1907
1908         /* nobody should touch l_bl_ast */
1909         lock_res_and_lock(lock);
1910         list_del_init(&lock->l_bl_ast);
1911
1912         LASSERT(ldlm_is_ast_sent(lock));
1913         LASSERT(lock->l_bl_ast_run == 0);
1914         LASSERT(lock->l_blocking_lock);
1915         lock->l_bl_ast_run++;
1916         unlock_res_and_lock(lock);
1917
1918         ldlm_lock2desc(lock->l_blocking_lock, &d);
1919
1920         rc = lock->l_blocking_ast(lock, &d, (void *)arg, LDLM_CB_BLOCKING);
1921         LDLM_LOCK_RELEASE(lock->l_blocking_lock);
1922         lock->l_blocking_lock = NULL;
1923         LDLM_LOCK_RELEASE(lock);
1924
1925         RETURN(rc);
1926 }
1927
1928 /**
1929  * Process a call to completion AST callback for a lock in ast_work list
1930  */
1931 static int
1932 ldlm_work_cp_ast_lock(struct ptlrpc_request_set *rqset, void *opaq)
1933 {
1934         struct ldlm_cb_set_arg  *arg = opaq;
1935         int                      rc = 0;
1936         struct ldlm_lock        *lock;
1937         ldlm_completion_callback completion_callback;
1938         ENTRY;
1939
1940         if (list_empty(arg->list))
1941                 RETURN(-ENOENT);
1942
1943         lock = list_entry(arg->list->next, struct ldlm_lock, l_cp_ast);
1944
1945         /* It's possible to receive a completion AST before we've set
1946          * the l_completion_ast pointer: either because the AST arrived
1947          * before the reply, or simply because there's a small race
1948          * window between receiving the reply and finishing the local
1949          * enqueue. (bug 842)
1950          *
1951          * This can't happen with the blocking_ast, however, because we
1952          * will never call the local blocking_ast until we drop our
1953          * reader/writer reference, which we won't do until we get the
1954          * reply and finish enqueueing. */
1955
1956         /* nobody should touch l_cp_ast */
1957         lock_res_and_lock(lock);
1958         list_del_init(&lock->l_cp_ast);
1959         LASSERT(ldlm_is_cp_reqd(lock));
1960         /* save l_completion_ast since it can be changed by
1961          * mds_intent_policy(), see bug 14225 */
1962         completion_callback = lock->l_completion_ast;
1963         ldlm_clear_cp_reqd(lock);
1964         unlock_res_and_lock(lock);
1965
1966         if (completion_callback != NULL)
1967                 rc = completion_callback(lock, 0, (void *)arg);
1968         LDLM_LOCK_RELEASE(lock);
1969
1970         RETURN(rc);
1971 }
1972
1973 /**
1974  * Process a call to revocation AST callback for a lock in ast_work list
1975  */
1976 static int
1977 ldlm_work_revoke_ast_lock(struct ptlrpc_request_set *rqset, void *opaq)
1978 {
1979         struct ldlm_cb_set_arg *arg = opaq;
1980         struct ldlm_lock_desc   desc;
1981         int                     rc;
1982         struct ldlm_lock       *lock;
1983         ENTRY;
1984
1985         if (list_empty(arg->list))
1986                 RETURN(-ENOENT);
1987
1988         lock = list_entry(arg->list->next, struct ldlm_lock, l_rk_ast);
1989         list_del_init(&lock->l_rk_ast);
1990
1991         /* the desc just pretend to exclusive */
1992         ldlm_lock2desc(lock, &desc);
1993         desc.l_req_mode = LCK_EX;
1994         desc.l_granted_mode = 0;
1995
1996         rc = lock->l_blocking_ast(lock, &desc, (void*)arg, LDLM_CB_BLOCKING);
1997         LDLM_LOCK_RELEASE(lock);
1998
1999         RETURN(rc);
2000 }
2001
2002 /**
2003  * Process a call to glimpse AST callback for a lock in ast_work list
2004  */
2005 int ldlm_work_gl_ast_lock(struct ptlrpc_request_set *rqset, void *opaq)
2006 {
2007         struct ldlm_cb_set_arg          *arg = opaq;
2008         struct ldlm_glimpse_work        *gl_work;
2009         struct ldlm_lock                *lock;
2010         int                              rc = 0;
2011         ENTRY;
2012
2013         if (list_empty(arg->list))
2014                 RETURN(-ENOENT);
2015
2016         gl_work = list_entry(arg->list->next, struct ldlm_glimpse_work,
2017                                  gl_list);
2018         list_del_init(&gl_work->gl_list);
2019
2020         lock = gl_work->gl_lock;
2021
2022         /* transfer the glimpse descriptor to ldlm_cb_set_arg */
2023         arg->gl_desc = gl_work->gl_desc;
2024
2025         /* invoke the actual glimpse callback */
2026         if (lock->l_glimpse_ast(lock, (void*)arg) == 0)
2027                 rc = 1;
2028
2029         LDLM_LOCK_RELEASE(lock);
2030
2031         if ((gl_work->gl_flags & LDLM_GL_WORK_NOFREE) == 0)
2032                 OBD_FREE_PTR(gl_work);
2033
2034         RETURN(rc);
2035 }
2036
2037 /**
2038  * Process list of locks in need of ASTs being sent.
2039  *
2040  * Used on server to send multiple ASTs together instead of sending one by
2041  * one.
2042  */
2043 int ldlm_run_ast_work(struct ldlm_namespace *ns, struct list_head *rpc_list,
2044                       ldlm_desc_ast_t ast_type)
2045 {
2046         struct ldlm_cb_set_arg *arg;
2047         set_producer_func       work_ast_lock;
2048         int                     rc;
2049
2050         if (list_empty(rpc_list))
2051                 RETURN(0);
2052
2053         OBD_ALLOC_PTR(arg);
2054         if (arg == NULL)
2055                 RETURN(-ENOMEM);
2056
2057         atomic_set(&arg->restart, 0);
2058         arg->list = rpc_list;
2059
2060         switch (ast_type) {
2061                 case LDLM_WORK_BL_AST:
2062                         arg->type = LDLM_BL_CALLBACK;
2063                         work_ast_lock = ldlm_work_bl_ast_lock;
2064                         break;
2065                 case LDLM_WORK_CP_AST:
2066                         arg->type = LDLM_CP_CALLBACK;
2067                         work_ast_lock = ldlm_work_cp_ast_lock;
2068                         break;
2069                 case LDLM_WORK_REVOKE_AST:
2070                         arg->type = LDLM_BL_CALLBACK;
2071                         work_ast_lock = ldlm_work_revoke_ast_lock;
2072                         break;
2073                 case LDLM_WORK_GL_AST:
2074                         arg->type = LDLM_GL_CALLBACK;
2075                         work_ast_lock = ldlm_work_gl_ast_lock;
2076                         break;
2077                 default:
2078                         LBUG();
2079         }
2080
2081         /* We create a ptlrpc request set with flow control extension.
2082          * This request set will use the work_ast_lock function to produce new
2083          * requests and will send a new request each time one completes in order
2084          * to keep the number of requests in flight to ns_max_parallel_ast */
2085         arg->set = ptlrpc_prep_fcset(ns->ns_max_parallel_ast ? : UINT_MAX,
2086                                      work_ast_lock, arg);
2087         if (arg->set == NULL)
2088                 GOTO(out, rc = -ENOMEM);
2089
2090         ptlrpc_set_wait(arg->set);
2091         ptlrpc_set_destroy(arg->set);
2092
2093         rc = atomic_read(&arg->restart) ? -ERESTART : 0;
2094         GOTO(out, rc);
2095 out:
2096         OBD_FREE_PTR(arg);
2097         return rc;
2098 }
2099
2100 static int reprocess_one_queue(struct ldlm_resource *res, void *closure)
2101 {
2102         ldlm_reprocess_all(res);
2103         return LDLM_ITER_CONTINUE;
2104 }
2105
2106 static int ldlm_reprocess_res(struct cfs_hash *hs, struct cfs_hash_bd *bd,
2107                               struct hlist_node *hnode, void *arg)
2108 {
2109         struct ldlm_resource *res = cfs_hash_object(hs, hnode);
2110         int    rc;
2111
2112         rc = reprocess_one_queue(res, arg);
2113
2114         return rc == LDLM_ITER_STOP;
2115 }
2116
2117 /**
2118  * Iterate through all resources on a namespace attempting to grant waiting
2119  * locks.
2120  */
2121 void ldlm_reprocess_all_ns(struct ldlm_namespace *ns)
2122 {
2123         ENTRY;
2124
2125         if (ns != NULL) {
2126                 cfs_hash_for_each_nolock(ns->ns_rs_hash,
2127                                          ldlm_reprocess_res, NULL, 0);
2128         }
2129         EXIT;
2130 }
2131
2132 /**
2133  * Try to grant all waiting locks on a resource.
2134  *
2135  * Calls ldlm_reprocess_queue on converting and waiting queues.
2136  *
2137  * Typically called after some resource locks are cancelled to see
2138  * if anything could be granted as a result of the cancellation.
2139  */
2140 void ldlm_reprocess_all(struct ldlm_resource *res)
2141 {
2142         struct list_head rpc_list;
2143 #ifdef HAVE_SERVER_SUPPORT
2144         int rc;
2145         ENTRY;
2146
2147         INIT_LIST_HEAD(&rpc_list);
2148         /* Local lock trees don't get reprocessed. */
2149         if (ns_is_client(ldlm_res_to_ns(res))) {
2150                 EXIT;
2151                 return;
2152         }
2153
2154 restart:
2155         lock_res(res);
2156         rc = ldlm_reprocess_queue(res, &res->lr_converting, &rpc_list);
2157         if (rc == LDLM_ITER_CONTINUE)
2158                 ldlm_reprocess_queue(res, &res->lr_waiting, &rpc_list);
2159         unlock_res(res);
2160
2161         rc = ldlm_run_ast_work(ldlm_res_to_ns(res), &rpc_list,
2162                                LDLM_WORK_CP_AST);
2163         if (rc == -ERESTART) {
2164                 LASSERT(list_empty(&rpc_list));
2165                 goto restart;
2166         }
2167 #else
2168         ENTRY;
2169
2170         INIT_LIST_HEAD(&rpc_list);
2171         if (!ns_is_client(ldlm_res_to_ns(res))) {
2172                 CERROR("This is client-side-only module, cannot handle "
2173                        "LDLM_NAMESPACE_SERVER resource type lock.\n");
2174                 LBUG();
2175         }
2176 #endif
2177         EXIT;
2178 }
2179 EXPORT_SYMBOL(ldlm_reprocess_all);
2180
2181 static bool is_bl_done(struct ldlm_lock *lock)
2182 {
2183         bool bl_done = true;
2184
2185         if (!ldlm_is_bl_done(lock)) {
2186                 lock_res_and_lock(lock);
2187                 bl_done = ldlm_is_bl_done(lock);
2188                 unlock_res_and_lock(lock);
2189         }
2190
2191         return bl_done;
2192 }
2193
2194 /**
2195  * Helper function to call blocking AST for LDLM lock \a lock in a
2196  * "cancelling" mode.
2197  */
2198 void ldlm_cancel_callback(struct ldlm_lock *lock)
2199 {
2200         check_res_locked(lock->l_resource);
2201         if (!ldlm_is_cancel(lock)) {
2202                 ldlm_set_cancel(lock);
2203                 if (lock->l_blocking_ast) {
2204                         unlock_res_and_lock(lock);
2205                         lock->l_blocking_ast(lock, NULL, lock->l_ast_data,
2206                                              LDLM_CB_CANCELING);
2207                         lock_res_and_lock(lock);
2208                 } else {
2209                         LDLM_DEBUG(lock, "no blocking ast");
2210                 }
2211
2212                 /* only canceller can set bl_done bit */
2213                 ldlm_set_bl_done(lock);
2214                 wake_up_all(&lock->l_waitq);
2215         } else if (!ldlm_is_bl_done(lock)) {
2216                 struct l_wait_info lwi = { 0 };
2217
2218                 /* The lock is guaranteed to have been canceled once
2219                  * returning from this function. */
2220                 unlock_res_and_lock(lock);
2221                 l_wait_event(lock->l_waitq, is_bl_done(lock), &lwi);
2222                 lock_res_and_lock(lock);
2223         }
2224 }
2225
2226 /**
2227  * Remove skiplist-enabled LDLM lock \a req from granted list
2228  */
2229 void ldlm_unlink_lock_skiplist(struct ldlm_lock *req)
2230 {
2231         if (req->l_resource->lr_type != LDLM_PLAIN &&
2232             req->l_resource->lr_type != LDLM_IBITS)
2233                 return;
2234
2235         list_del_init(&req->l_sl_policy);
2236         list_del_init(&req->l_sl_mode);
2237 }
2238
2239 /**
2240  * Attempts to cancel LDLM lock \a lock that has no reader/writer references.
2241  */
2242 void ldlm_lock_cancel(struct ldlm_lock *lock)
2243 {
2244         struct ldlm_resource *res;
2245         struct ldlm_namespace *ns;
2246         ENTRY;
2247
2248         lock_res_and_lock(lock);
2249
2250         res = lock->l_resource;
2251         ns  = ldlm_res_to_ns(res);
2252
2253         /* Please do not, no matter how tempting, remove this LBUG without
2254          * talking to me first. -phik */
2255         if (lock->l_readers || lock->l_writers) {
2256                 LDLM_ERROR(lock, "lock still has references");
2257                 LBUG();
2258         }
2259
2260         if (ldlm_is_waited(lock))
2261                 ldlm_del_waiting_lock(lock);
2262
2263         /* Releases cancel callback. */
2264         ldlm_cancel_callback(lock);
2265
2266         LASSERT(!ldlm_is_waited(lock));
2267
2268         ldlm_resource_unlink_lock(lock);
2269         ldlm_lock_destroy_nolock(lock);
2270
2271         if (lock->l_granted_mode == lock->l_req_mode)
2272                 ldlm_pool_del(&ns->ns_pool, lock);
2273
2274         /* Make sure we will not be called again for same lock what is possible
2275          * if not to zero out lock->l_granted_mode */
2276         lock->l_granted_mode = LCK_MINMODE;
2277         unlock_res_and_lock(lock);
2278
2279         EXIT;
2280 }
2281 EXPORT_SYMBOL(ldlm_lock_cancel);
2282
2283 /**
2284  * Set opaque data into the lock that only makes sense to upper layer.
2285  */
2286 int ldlm_lock_set_data(struct lustre_handle *lockh, void *data)
2287 {
2288         struct ldlm_lock *lock = ldlm_handle2lock(lockh);
2289         int rc = -EINVAL;
2290         ENTRY;
2291
2292         if (lock) {
2293                 if (lock->l_ast_data == NULL)
2294                         lock->l_ast_data = data;
2295                 if (lock->l_ast_data == data)
2296                         rc = 0;
2297                 LDLM_LOCK_PUT(lock);
2298         }
2299         RETURN(rc);
2300 }
2301 EXPORT_SYMBOL(ldlm_lock_set_data);
2302
2303 struct export_cl_data {
2304         struct obd_export       *ecl_exp;
2305         int                     ecl_loop;
2306 };
2307
2308 static void ldlm_cancel_lock_for_export(struct obd_export *exp,
2309                                         struct ldlm_lock *lock,
2310                                         struct export_cl_data *ecl)
2311 {
2312         struct ldlm_resource *res;
2313
2314         res = ldlm_resource_getref(lock->l_resource);
2315
2316         ldlm_res_lvbo_update(res, NULL, 1);
2317         ldlm_lock_cancel(lock);
2318         if (!exp->exp_obd->obd_stopping)
2319                 ldlm_reprocess_all(res);
2320         ldlm_resource_putref(res);
2321
2322         ecl->ecl_loop++;
2323         if ((ecl->ecl_loop & -ecl->ecl_loop) == ecl->ecl_loop) {
2324                 CDEBUG(D_INFO, "Export %p, %d locks cancelled.\n",
2325                        exp, ecl->ecl_loop);
2326         }
2327 }
2328
2329 /**
2330  * Iterator function for ldlm_export_cancel_locks.
2331  * Cancels passed locks.
2332  */
2333 static int
2334 ldlm_cancel_locks_for_export_cb(struct cfs_hash *hs, struct cfs_hash_bd *bd,
2335                                 struct hlist_node *hnode, void *data)
2336
2337 {
2338         struct export_cl_data   *ecl = (struct export_cl_data *)data;
2339         struct obd_export       *exp  = ecl->ecl_exp;
2340         struct ldlm_lock        *lock = cfs_hash_object(hs, hnode);
2341
2342         LDLM_LOCK_GET(lock);
2343         ldlm_cancel_lock_for_export(exp, lock, ecl);
2344         LDLM_LOCK_RELEASE(lock);
2345
2346         return 0;
2347 }
2348
2349 /**
2350  * Cancel all blocked locks for given export.
2351  *
2352  * Typically called on client disconnection/eviction
2353  */
2354 int ldlm_export_cancel_blocked_locks(struct obd_export *exp)
2355 {
2356         struct export_cl_data   ecl = {
2357                 .ecl_exp        = exp,
2358                 .ecl_loop       = 0,
2359         };
2360
2361         while (!list_empty(&exp->exp_bl_list)) {
2362                 struct ldlm_lock *lock;
2363
2364                 spin_lock_bh(&exp->exp_bl_list_lock);
2365                 if (!list_empty(&exp->exp_bl_list)) {
2366                         lock = list_entry(exp->exp_bl_list.next,
2367                                           struct ldlm_lock, l_exp_list);
2368                         LDLM_LOCK_GET(lock);
2369                         list_del_init(&lock->l_exp_list);
2370                 } else {
2371                         lock = NULL;
2372                 }
2373                 spin_unlock_bh(&exp->exp_bl_list_lock);
2374
2375                 if (lock == NULL)
2376                         break;
2377
2378                 ldlm_cancel_lock_for_export(exp, lock, &ecl);
2379                 LDLM_LOCK_RELEASE(lock);
2380         }
2381
2382         CDEBUG(D_DLMTRACE, "Export %p, canceled %d locks, "
2383                "left on hash table %d.\n", exp, ecl.ecl_loop,
2384                atomic_read(&exp->exp_lock_hash->hs_count));
2385
2386         return ecl.ecl_loop;
2387 }
2388
2389 /**
2390  * Cancel all locks for given export.
2391  *
2392  * Typically called after client disconnection/eviction
2393  */
2394 int ldlm_export_cancel_locks(struct obd_export *exp)
2395 {
2396         struct export_cl_data   ecl = {
2397                 .ecl_exp        = exp,
2398                 .ecl_loop       = 0,
2399         };
2400
2401         cfs_hash_for_each_empty(exp->exp_lock_hash,
2402                                 ldlm_cancel_locks_for_export_cb, &ecl);
2403
2404         CDEBUG(D_DLMTRACE, "Export %p, canceled %d locks, "
2405                "left on hash table %d.\n", exp, ecl.ecl_loop,
2406                atomic_read(&exp->exp_lock_hash->hs_count));
2407
2408         return ecl.ecl_loop;
2409 }
2410
2411 /**
2412  * Downgrade an exclusive lock.
2413  *
2414  * A fast variant of ldlm_lock_convert for convertion of exclusive
2415  * locks. The convertion is always successful.
2416  * Used by Commit on Sharing (COS) code.
2417  *
2418  * \param lock A lock to convert
2419  * \param new_mode new lock mode
2420  */
2421 void ldlm_lock_downgrade(struct ldlm_lock *lock, enum ldlm_mode new_mode)
2422 {
2423         ENTRY;
2424
2425         LASSERT(lock->l_granted_mode & (LCK_PW | LCK_EX));
2426         LASSERT(new_mode == LCK_COS);
2427
2428         lock_res_and_lock(lock);
2429         ldlm_resource_unlink_lock(lock);
2430         /*
2431          * Remove the lock from pool as it will be added again in
2432          * ldlm_grant_lock() called below.
2433          */
2434         ldlm_pool_del(&ldlm_lock_to_ns(lock)->ns_pool, lock);
2435
2436         lock->l_req_mode = new_mode;
2437         ldlm_grant_lock(lock, NULL);
2438         unlock_res_and_lock(lock);
2439         ldlm_reprocess_all(lock->l_resource);
2440
2441         EXIT;
2442 }
2443 EXPORT_SYMBOL(ldlm_lock_downgrade);
2444
2445 /**
2446  * Attempt to convert already granted lock to a different mode.
2447  *
2448  * While lock conversion is not currently used, future client-side
2449  * optimizations could take advantage of it to avoid discarding cached
2450  * pages on a file.
2451  */
2452 struct ldlm_resource *ldlm_lock_convert(struct ldlm_lock *lock,
2453                                         enum ldlm_mode new_mode, __u32 *flags)
2454 {
2455         struct list_head rpc_list;
2456         struct ldlm_resource *res;
2457         struct ldlm_namespace *ns;
2458         int granted = 0;
2459 #ifdef HAVE_SERVER_SUPPORT
2460         int old_mode;
2461         struct sl_insert_point prev;
2462 #endif
2463         struct ldlm_interval *node;
2464         ENTRY;
2465
2466         INIT_LIST_HEAD(&rpc_list);
2467         /* Just return if mode is unchanged. */
2468         if (new_mode == lock->l_granted_mode) {
2469                 *flags |= LDLM_FL_BLOCK_GRANTED;
2470                 RETURN(lock->l_resource);
2471         }
2472
2473         /* I can't check the type of lock here because the bitlock of lock
2474          * is not held here, so do the allocation blindly. -jay */
2475         OBD_SLAB_ALLOC_PTR_GFP(node, ldlm_interval_slab, GFP_NOFS);
2476         if (node == NULL)  /* Actually, this causes EDEADLOCK to be returned */
2477                 RETURN(NULL);
2478
2479         LASSERTF((new_mode == LCK_PW && lock->l_granted_mode == LCK_PR),
2480                  "new_mode %u, granted %u\n", new_mode, lock->l_granted_mode);
2481
2482         lock_res_and_lock(lock);
2483
2484         res = lock->l_resource;
2485         ns  = ldlm_res_to_ns(res);
2486
2487 #ifdef HAVE_SERVER_SUPPORT
2488         old_mode = lock->l_req_mode;
2489 #endif
2490         lock->l_req_mode = new_mode;
2491         if (res->lr_type == LDLM_PLAIN || res->lr_type == LDLM_IBITS) {
2492 #ifdef HAVE_SERVER_SUPPORT
2493                 /* remember the lock position where the lock might be
2494                  * added back to the granted list later and also
2495                  * remember the join mode for skiplist fixing. */
2496                 prev.res_link = lock->l_res_link.prev;
2497                 prev.mode_link = lock->l_sl_mode.prev;
2498                 prev.policy_link = lock->l_sl_policy.prev;
2499 #endif
2500                 ldlm_resource_unlink_lock(lock);
2501         } else {
2502                 ldlm_resource_unlink_lock(lock);
2503                 if (res->lr_type == LDLM_EXTENT) {
2504                         /* FIXME: ugly code, I have to attach the lock to a
2505                          * interval node again since perhaps it will be granted
2506                          * soon */
2507                         INIT_LIST_HEAD(&node->li_group);
2508                         ldlm_interval_attach(node, lock);
2509                         node = NULL;
2510                 }
2511         }
2512
2513         /*
2514          * Remove old lock from the pool before adding the lock with new
2515          * mode below in ->policy()
2516          */
2517         ldlm_pool_del(&ns->ns_pool, lock);
2518
2519         /* If this is a local resource, put it on the appropriate list. */
2520         if (ns_is_client(ldlm_res_to_ns(res))) {
2521                 if (*flags & (LDLM_FL_BLOCK_CONV | LDLM_FL_BLOCK_GRANTED)) {
2522                         ldlm_resource_add_lock(res, &res->lr_converting, lock);
2523                 } else {
2524                         /* This should never happen, because of the way the
2525                          * server handles conversions. */
2526                         LDLM_ERROR(lock, "Erroneous flags %x on local lock\n",
2527                                    *flags);
2528                         LBUG();
2529
2530                         ldlm_grant_lock(lock, &rpc_list);
2531                         granted = 1;
2532                         /* FIXME: completion handling not with lr_lock held ! */
2533                         if (lock->l_completion_ast)
2534                                 lock->l_completion_ast(lock, 0, NULL);
2535                 }
2536 #ifdef HAVE_SERVER_SUPPORT
2537         } else {
2538                 int rc;
2539                 enum ldlm_error err;
2540                 __u64 pflags = 0;
2541                 ldlm_processing_policy policy;
2542
2543                 policy = ldlm_processing_policy_table[res->lr_type];
2544                 rc = policy(lock, &pflags, 0, &err, &rpc_list);
2545                 if (rc == LDLM_ITER_STOP) {
2546                         lock->l_req_mode = old_mode;
2547                         if (res->lr_type == LDLM_EXTENT)
2548                                 ldlm_extent_add_lock(res, lock);
2549                         else
2550                                 ldlm_granted_list_add_lock(lock, &prev);
2551
2552                         res = NULL;
2553                 } else {
2554                         *flags |= LDLM_FL_BLOCK_GRANTED;
2555                         granted = 1;
2556                 }
2557         }
2558 #else
2559         } else {
2560                 CERROR("This is client-side-only module, cannot handle "
2561                        "LDLM_NAMESPACE_SERVER resource type lock.\n");
2562                 LBUG();
2563         }
2564 #endif
2565         unlock_res_and_lock(lock);
2566
2567         if (granted)
2568                 ldlm_run_ast_work(ns, &rpc_list, LDLM_WORK_CP_AST);
2569         if (node)
2570                 OBD_SLAB_FREE(node, ldlm_interval_slab, sizeof(*node));
2571         RETURN(res);
2572 }
2573
2574 /**
2575  * Print lock with lock handle \a lockh description into debug log.
2576  *
2577  * Used when printing all locks on a resource for debug purposes.
2578  */
2579 void ldlm_lock_dump_handle(int level, struct lustre_handle *lockh)
2580 {
2581         struct ldlm_lock *lock;
2582
2583         if (!((libcfs_debug | D_ERROR) & level))
2584                 return;
2585
2586         lock = ldlm_handle2lock(lockh);
2587         if (lock == NULL)
2588                 return;
2589
2590         LDLM_DEBUG_LIMIT(level, lock, "###");
2591
2592         LDLM_LOCK_PUT(lock);
2593 }
2594 EXPORT_SYMBOL(ldlm_lock_dump_handle);
2595
2596 /**
2597  * Print lock information with custom message into debug log.
2598  * Helper function.
2599  */
2600 void _ldlm_lock_debug(struct ldlm_lock *lock,
2601                       struct libcfs_debug_msg_data *msgdata,
2602                       const char *fmt, ...)
2603 {
2604         va_list args;
2605         struct obd_export *exp = lock->l_export;
2606         struct ldlm_resource *resource = lock->l_resource;
2607         char *nid = "local";
2608
2609         va_start(args, fmt);
2610
2611         if (exp && exp->exp_connection) {
2612                 nid = libcfs_nid2str(exp->exp_connection->c_peer.nid);
2613         } else if (exp && exp->exp_obd != NULL) {
2614                 struct obd_import *imp = exp->exp_obd->u.cli.cl_import;
2615                 nid = libcfs_nid2str(imp->imp_connection->c_peer.nid);
2616         }
2617
2618         if (resource == NULL) {
2619                 libcfs_debug_vmsg2(msgdata, fmt, args,
2620                        " ns: \?\? lock: %p/"LPX64" lrc: %d/%d,%d mode: %s/%s "
2621                        "res: \?\? rrc=\?\? type: \?\?\? flags: "LPX64" nid: %s "
2622                        "remote: "LPX64" expref: %d pid: %u timeout: %lu "
2623                        "lvb_type: %d\n",
2624                        lock,
2625                        lock->l_handle.h_cookie, atomic_read(&lock->l_refc),
2626                        lock->l_readers, lock->l_writers,
2627                        ldlm_lockname[lock->l_granted_mode],
2628                        ldlm_lockname[lock->l_req_mode],
2629                        lock->l_flags, nid, lock->l_remote_handle.cookie,
2630                        exp ? atomic_read(&exp->exp_refcount) : -99,
2631                        lock->l_pid, lock->l_callback_timeout, lock->l_lvb_type);
2632                 va_end(args);
2633                 return;
2634         }
2635
2636         switch (resource->lr_type) {
2637         case LDLM_EXTENT:
2638                 libcfs_debug_vmsg2(msgdata, fmt, args,
2639                         " ns: %s lock: %p/"LPX64" lrc: %d/%d,%d mode: %s/%s "
2640                         "res: "DLDLMRES" rrc: %d type: %s ["LPU64"->"LPU64"] "
2641                         "(req "LPU64"->"LPU64") flags: "LPX64" nid: %s remote: "
2642                         LPX64" expref: %d pid: %u timeout: %lu lvb_type: %d\n",
2643                         ldlm_lock_to_ns_name(lock), lock,
2644                         lock->l_handle.h_cookie, atomic_read(&lock->l_refc),
2645                         lock->l_readers, lock->l_writers,
2646                         ldlm_lockname[lock->l_granted_mode],
2647                         ldlm_lockname[lock->l_req_mode],
2648                         PLDLMRES(resource),
2649                         atomic_read(&resource->lr_refcount),
2650                         ldlm_typename[resource->lr_type],
2651                         lock->l_policy_data.l_extent.start,
2652                         lock->l_policy_data.l_extent.end,
2653                         lock->l_req_extent.start, lock->l_req_extent.end,
2654                         lock->l_flags, nid, lock->l_remote_handle.cookie,
2655                         exp ? atomic_read(&exp->exp_refcount) : -99,
2656                         lock->l_pid, lock->l_callback_timeout,
2657                         lock->l_lvb_type);
2658                 break;
2659
2660         case LDLM_FLOCK:
2661                 libcfs_debug_vmsg2(msgdata, fmt, args,
2662                         " ns: %s lock: %p/"LPX64" lrc: %d/%d,%d mode: %s/%s "
2663                         "res: "DLDLMRES" rrc: %d type: %s pid: %d "
2664                         "["LPU64"->"LPU64"] flags: "LPX64" nid: %s "
2665                         "remote: "LPX64" expref: %d pid: %u timeout: %lu\n",
2666                         ldlm_lock_to_ns_name(lock), lock,
2667                         lock->l_handle.h_cookie, atomic_read(&lock->l_refc),
2668                         lock->l_readers, lock->l_writers,
2669                         ldlm_lockname[lock->l_granted_mode],
2670                         ldlm_lockname[lock->l_req_mode],
2671                         PLDLMRES(resource),
2672                         atomic_read(&resource->lr_refcount),
2673                         ldlm_typename[resource->lr_type],
2674                         lock->l_policy_data.l_flock.pid,
2675                         lock->l_policy_data.l_flock.start,
2676                         lock->l_policy_data.l_flock.end,
2677                         lock->l_flags, nid, lock->l_remote_handle.cookie,
2678                         exp ? atomic_read(&exp->exp_refcount) : -99,
2679                         lock->l_pid, lock->l_callback_timeout);
2680                 break;
2681
2682         case LDLM_IBITS:
2683                 libcfs_debug_vmsg2(msgdata, fmt, args,
2684                         " ns: %s lock: %p/"LPX64" lrc: %d/%d,%d mode: %s/%s "
2685                         "res: "DLDLMRES" bits "LPX64" rrc: %d type: %s "
2686                         "flags: "LPX64" nid: %s remote: "LPX64" expref: %d "
2687                         "pid: %u timeout: %lu lvb_type: %d\n",
2688                         ldlm_lock_to_ns_name(lock),
2689                         lock, lock->l_handle.h_cookie,
2690                         atomic_read(&lock->l_refc),
2691                         lock->l_readers, lock->l_writers,
2692                         ldlm_lockname[lock->l_granted_mode],
2693                         ldlm_lockname[lock->l_req_mode],
2694                         PLDLMRES(resource),
2695                         lock->l_policy_data.l_inodebits.bits,
2696                         atomic_read(&resource->lr_refcount),
2697                         ldlm_typename[resource->lr_type],
2698                         lock->l_flags, nid, lock->l_remote_handle.cookie,
2699                         exp ? atomic_read(&exp->exp_refcount) : -99,
2700                         lock->l_pid, lock->l_callback_timeout,
2701                         lock->l_lvb_type);
2702                 break;
2703
2704         default:
2705                 libcfs_debug_vmsg2(msgdata, fmt, args,
2706                         " ns: %s lock: %p/"LPX64" lrc: %d/%d,%d mode: %s/%s "
2707                         "res: "DLDLMRES" rrc: %d type: %s flags: "LPX64" "
2708                         "nid: %s remote: "LPX64" expref: %d pid: %u "
2709                         "timeout: %lu lvb_type: %d\n",
2710                         ldlm_lock_to_ns_name(lock),
2711                         lock, lock->l_handle.h_cookie,
2712                         atomic_read(&lock->l_refc),
2713                         lock->l_readers, lock->l_writers,
2714                         ldlm_lockname[lock->l_granted_mode],
2715                         ldlm_lockname[lock->l_req_mode],
2716                         PLDLMRES(resource),
2717                         atomic_read(&resource->lr_refcount),
2718                         ldlm_typename[resource->lr_type],
2719                         lock->l_flags, nid, lock->l_remote_handle.cookie,
2720                         exp ? atomic_read(&exp->exp_refcount) : -99,
2721                         lock->l_pid, lock->l_callback_timeout,
2722                         lock->l_lvb_type);
2723                 break;
2724         }
2725         va_end(args);
2726 }
2727 EXPORT_SYMBOL(_ldlm_lock_debug);