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