Whamcloud - gitweb
Introduce ldlm_lock_addref_try() function (used by CLIO) that attempts to
[fs/lustre-release.git] / lustre / include / lustre_dlm.h
1 /* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*-
2  * vim:expandtab:shiftwidth=8:tabstop=8:
3  *
4  * GPL HEADER START
5  *
6  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License version 2 only,
10  * as published by the Free Software Foundation.
11  *
12  * This program is distributed in the hope that it will be useful, but
13  * WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * General Public License version 2 for more details (a copy is included
16  * in the LICENSE file that accompanied this code).
17  *
18  * You should have received a copy of the GNU General Public License
19  * version 2 along with this program; If not, see
20  * http://www.sun.com/software/products/lustre/docs/GPLv2.pdf
21  *
22  * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
23  * CA 95054 USA or visit www.sun.com if you need additional information or
24  * have any questions.
25  *
26  * GPL HEADER END
27  */
28 /*
29  * Copyright  2008 Sun Microsystems, Inc. All rights reserved
30  * Use is subject to license terms.
31  */
32 /*
33  * This file is part of Lustre, http://www.lustre.org/
34  * Lustre is a trademark of Sun Microsystems, Inc.
35  */
36
37 #ifndef _LUSTRE_DLM_H__
38 #define _LUSTRE_DLM_H__
39
40 #if defined(__linux__)
41 #include <linux/lustre_dlm.h>
42 #elif defined(__APPLE__)
43 #include <darwin/lustre_dlm.h>
44 #elif defined(__WINNT__)
45 #include <winnt/lustre_dlm.h>
46 #else
47 #error Unsupported operating system.
48 #endif
49
50 #include <lustre_lib.h>
51 #include <lustre_net.h>
52 #include <lustre_import.h>
53 #include <lustre_handles.h>
54 #include <lustre_export.h> /* for obd_export, for LDLM_DEBUG */
55 #include <interval_tree.h> /* for interval_node{}, ldlm_extent */
56 #include <lu_ref.h>
57
58 struct obd_ops;
59 struct obd_device;
60
61 #define OBD_LDLM_DEVICENAME  "ldlm"
62
63 #ifdef HAVE_BGL_SUPPORT
64 /* 1.5 times the maximum 128 tasks available in VN mode */
65 #define LDLM_DEFAULT_LRU_SIZE 196
66 #else
67 #define LDLM_DEFAULT_LRU_SIZE (100 * num_online_cpus())
68 #endif
69 #define LDLM_DEFAULT_MAX_ALIVE (cfs_time_seconds(36000))
70 #define LDLM_CTIME_AGE_LIMIT (10)
71
72 typedef enum {
73         ELDLM_OK = 0,
74
75         ELDLM_LOCK_CHANGED = 300,
76         ELDLM_LOCK_ABORTED = 301,
77         ELDLM_LOCK_REPLACED = 302,
78         ELDLM_NO_LOCK_DATA = 303,
79
80         ELDLM_NAMESPACE_EXISTS = 400,
81         ELDLM_BAD_NAMESPACE    = 401
82 } ldlm_error_t;
83
84 typedef enum {
85         LDLM_NAMESPACE_SERVER = 1 << 0,
86         LDLM_NAMESPACE_CLIENT = 1 << 1
87 } ldlm_side_t;
88
89 #define LDLM_FL_LOCK_CHANGED   0x000001 /* extent, mode, or resource changed */
90
91 /* If the server returns one of these flags, then the lock was put on that list.
92  * If the client sends one of these flags (during recovery ONLY!), it wants the
93  * lock added to the specified list, no questions asked. -p */
94 #define LDLM_FL_BLOCK_GRANTED  0x000002
95 #define LDLM_FL_BLOCK_CONV     0x000004
96 #define LDLM_FL_BLOCK_WAIT     0x000008
97
98 #define LDLM_FL_CBPENDING      0x000010 /* this lock is being destroyed */
99 #define LDLM_FL_AST_SENT       0x000020 /* blocking or cancel packet was
100                                          * queued for sending. */
101 #define LDLM_FL_WAIT_NOREPROC  0x000040 /* not a real flag, not saved in lock */
102 #define LDLM_FL_CANCEL         0x000080 /* cancellation callback already run */
103
104 /* Lock is being replayed.  This could probably be implied by the fact that one
105  * of BLOCK_{GRANTED,CONV,WAIT} is set, but that is pretty dangerous. */
106 #define LDLM_FL_REPLAY         0x000100
107
108 #define LDLM_FL_INTENT_ONLY    0x000200 /* don't grant lock, just do intent */
109 #define LDLM_FL_LOCAL_ONLY     0x000400 /* see ldlm_cli_cancel_unused */
110
111 /* don't run the cancel callback under ldlm_cli_cancel_unused */
112 #define LDLM_FL_FAILED         0x000800
113
114 #define LDLM_FL_HAS_INTENT     0x001000 /* lock request has intent */
115 #define LDLM_FL_CANCELING      0x002000 /* lock cancel has already been sent */
116 #define LDLM_FL_LOCAL          0x004000 /* local lock (ie, no srv/cli split) */
117 #define LDLM_FL_WARN           0x008000 /* see ldlm_cli_cancel_unused */
118 #define LDLM_FL_DISCARD_DATA   0x010000 /* discard (no writeback) on cancel */
119
120 #define LDLM_FL_NO_TIMEOUT     0x020000 /* Blocked by group lock - wait
121                                          * indefinitely */
122
123 /* file & record locking */
124 #define LDLM_FL_BLOCK_NOWAIT   0x040000 // server told not to wait if blocked
125 #define LDLM_FL_TEST_LOCK      0x080000 // return blocking lock
126
127 /* XXX FIXME: This is being added to b_size as a low-risk fix to the fact that
128  * the LVB filling happens _after_ the lock has been granted, so another thread
129  * can match`t before the LVB has been updated.  As a dirty hack, we set
130  * LDLM_FL_LVB_READY only after we've done the LVB poop.
131  * this is only needed on lov/osc now, where lvb is actually used and callers
132  * must set it in input flags.
133  *
134  * The proper fix is to do the granting inside of the completion AST, which can
135  * be replaced with a LVB-aware wrapping function for OSC locks.  That change is
136  * pretty high-risk, though, and would need a lot more testing. */
137
138 #define LDLM_FL_LVB_READY      0x100000
139
140 /* A lock contributes to the kms calculation until it has finished the part
141  * of it's cancelation that performs write back on its dirty pages.  It
142  * can remain on the granted list during this whole time.  Threads racing
143  * to update the kms after performing their writeback need to know to
144  * exclude each others locks from the calculation as they walk the granted
145  * list. */
146 #define LDLM_FL_KMS_IGNORE     0x200000
147
148 /* Immediatelly cancel such locks when they block some other locks. Send
149  * cancel notification to original lock holder, but expect no reply. This is
150  * for clients (like liblustre) that cannot be expected to reliably response
151  * to blocking ast. */
152 #define LDLM_FL_CANCEL_ON_BLOCK 0x800000
153
154 /* Flags flags inherited from parent lock when doing intents. */
155 #define LDLM_INHERIT_FLAGS     (LDLM_FL_CANCEL_ON_BLOCK)
156
157 /* These are flags that are mapped into the flags and ASTs of blocking locks */
158 #define LDLM_AST_DISCARD_DATA  0x80000000 /* Add FL_DISCARD to blocking ASTs */
159 /* Flags sent in AST lock_flags to be mapped into the receiving lock. */
160 #define LDLM_AST_FLAGS         (LDLM_FL_DISCARD_DATA)
161
162 /* completion ast to be executed */
163 #define LDLM_FL_CP_REQD        0x1000000
164
165 /* cleanup_resource has already handled the lock */
166 #define LDLM_FL_CLEANED        0x2000000
167
168 /* optimization hint: LDLM can run blocking callback from current context
169  * w/o involving separate thread. in order to decrease cs rate */
170 #define LDLM_FL_ATOMIC_CB      0x4000000
171
172 /* Cancel lock asynchronously. See ldlm_cli_cancel_unused_resource. */
173 #define LDLM_FL_ASYNC           0x8000000
174
175 /* It may happen that a client initiate 2 operations, e.g. unlink and mkdir,
176  * such that server send blocking ast for conflict locks to this client for
177  * the 1st operation, whereas the 2nd operation has canceled this lock and
178  * is waiting for rpc_lock which is taken by the 1st operation.
179  * LDLM_FL_BL_AST is to be set by ldlm_callback_handler() to the lock not allow
180  * ELC code to cancel it.
181  * LDLM_FL_BL_DONE is to be set by ldlm_cancel_callback() when lock cache is
182  * droped to let ldlm_callback_handler() return EINVAL to the server. It is
183  * used when ELC rpc is already prepared and is waiting for rpc_lock, too late
184  * to send a separate CANCEL rpc. */
185 #define LDLM_FL_BL_AST          0x10000000
186 #define LDLM_FL_BL_DONE         0x20000000
187
188 /* measure lock contention and return -EUSERS if locking contention is high */
189 #define LDLM_FL_DENY_ON_CONTENTION 0x40000000
190
191 /* The blocking callback is overloaded to perform two functions.  These flags
192  * indicate which operation should be performed. */
193 #define LDLM_CB_BLOCKING    1
194 #define LDLM_CB_CANCELING   2
195
196 /* compatibility matrix */
197 #define LCK_COMPAT_EX  LCK_NL
198 #define LCK_COMPAT_PW  (LCK_COMPAT_EX | LCK_CR)
199 #define LCK_COMPAT_PR  (LCK_COMPAT_PW | LCK_PR)
200 #define LCK_COMPAT_CW  (LCK_COMPAT_PW | LCK_CW)
201 #define LCK_COMPAT_CR  (LCK_COMPAT_CW | LCK_PR | LCK_PW)
202 #define LCK_COMPAT_NL  (LCK_COMPAT_CR | LCK_EX | LCK_GROUP)
203 #define LCK_COMPAT_GROUP  (LCK_GROUP | LCK_NL)
204
205 extern ldlm_mode_t lck_compat_array[];
206
207 static inline void lockmode_verify(ldlm_mode_t mode)
208 {
209        LASSERT(mode > LCK_MINMODE && mode < LCK_MAXMODE);
210 }
211
212 static inline int lockmode_compat(ldlm_mode_t exist_mode, ldlm_mode_t new_mode)
213 {
214        return (lck_compat_array[exist_mode] & new_mode);
215 }
216
217 /*
218  *
219  * cluster name spaces
220  *
221  */
222
223 #define DLM_OST_NAMESPACE 1
224 #define DLM_MDS_NAMESPACE 2
225
226 /* XXX
227    - do we just separate this by security domains and use a prefix for
228      multiple namespaces in the same domain?
229    -
230 */
231
232 /*
233  * Locking rules:
234  *
235  * lr_lock
236  *
237  * lr_lock
238  *     waiting_locks_spinlock
239  *
240  * lr_lock
241  *     led_lock
242  *
243  * lr_lock
244  *     ns_unused_lock
245  *
246  * lr_lvb_sem
247  *     lr_lock
248  *
249  */
250
251 struct ldlm_pool;
252 struct ldlm_lock;
253 struct ldlm_resource;
254 struct ldlm_namespace;
255
256 struct ldlm_pool_ops {
257         int (*po_recalc)(struct ldlm_pool *pl);
258         int (*po_shrink)(struct ldlm_pool *pl, int nr,
259                          unsigned int gfp_mask);
260         int (*po_setup)(struct ldlm_pool *pl, int limit);
261 };
262
263 /** 
264  * One second for pools thread check interval. Each pool has own period. 
265  */
266 #define LDLM_POOLS_THREAD_PERIOD (1)
267
268 /** 
269  * 5% margin for modest pools. See ldlm_pool.c for details. 
270  */
271 #define LDLM_POOLS_MODEST_MARGIN (5)
272
273 /**
274  * Default recalc period for server side pools in sec.
275  */
276 #define LDLM_POOL_SRV_DEF_RECALC_PERIOD (1)
277
278 /**
279  * Default recalc period for client side pools in sec.
280  */
281 #define LDLM_POOL_CLI_DEF_RECALC_PERIOD (10)
282
283 struct ldlm_pool {
284         /**
285          * Pool proc directory.
286          */
287         cfs_proc_dir_entry_t  *pl_proc_dir;
288         /**
289          * Pool name, should be long enough to contain compound proc entry name.
290          */
291         char                   pl_name[100];
292         /**
293          * Lock for protecting slv/clv updates.
294          */
295         spinlock_t             pl_lock;
296         /**
297          * Number of allowed locks in in pool, both, client and server side.
298          */
299         atomic_t               pl_limit;
300         /**
301          * Number of granted locks in
302          */
303         atomic_t               pl_granted;
304         /**
305          * Grant rate per T.
306          */
307         atomic_t               pl_grant_rate;
308         /**
309          * Cancel rate per T.
310          */
311         atomic_t               pl_cancel_rate;
312         /**
313          * Grant speed (GR-CR) per T.
314          */
315         atomic_t               pl_grant_speed;
316         /**
317          * Server lock volume. Protected by pl_lock.
318          */
319         __u64                  pl_server_lock_volume;
320         /**
321          * Current biggest client lock volume. Protected by pl_lock.
322          */
323         __u64                  pl_client_lock_volume;
324         /**
325          * Lock volume factor. SLV on client is calculated as following:
326          * server_slv * lock_volume_factor.
327          */
328         atomic_t               pl_lock_volume_factor;
329         /**
330          * Time when last slv from server was obtained.
331          */
332         time_t                 pl_recalc_time;
333         /**
334           * Recalc period for pool.
335           */
336         time_t                 pl_recalc_period;
337         /**
338          * Recalc and shrink ops.
339          */
340         struct ldlm_pool_ops  *pl_ops;
341         /**
342          * Number of planned locks for next period.
343          */
344         int                    pl_grant_plan;
345         /**
346          * Pool statistics.
347          */
348         struct lprocfs_stats  *pl_stats;
349 };
350
351 typedef int (*ldlm_res_policy)(struct ldlm_namespace *, struct ldlm_lock **,
352                                void *req_cookie, ldlm_mode_t mode, int flags,
353                                void *data);
354
355 struct ldlm_valblock_ops {
356         int (*lvbo_init)(struct ldlm_resource *res);
357         int (*lvbo_update)(struct ldlm_resource *res, struct lustre_msg *m,
358                            int buf_idx, int increase);
359 };
360
361 typedef enum {
362         LDLM_NAMESPACE_GREEDY = 1 << 0,
363         LDLM_NAMESPACE_MODEST = 1 << 1
364 } ldlm_appetite_t;
365
366 /*
367  * Default value for ->ns_shrink_thumb. If lock is not extent one its cost
368  * is one page. Here we have 256 pages which is 1M on i386. Thus by default
369  * all extent locks which have more than 1M long extent will be kept in lru,
370  * others (including ibits locks) will be canceled on memory pressure event.
371  */
372 #define LDLM_LOCK_SHRINK_THUMB 256
373
374 /*
375  * Default values for the "max_nolock_size", "contention_time" and
376  * "contended_locks" namespace tunables.
377  */
378 #define NS_DEFAULT_MAX_NOLOCK_BYTES 0
379 #define NS_DEFAULT_CONTENTION_SECONDS 2
380 #define NS_DEFAULT_CONTENDED_LOCKS 32
381
382 struct ldlm_namespace {
383         /**
384          * Namespace name. Used for logging, etc.
385          */
386         char                  *ns_name;
387
388         /**
389          * Is this a client-side lock tree?
390          */
391         ldlm_side_t            ns_client;
392
393         /**
394          * Namespce connect flags supported by server (may be changed via proc,
395          * lru resize may be disabled/enabled).
396          */
397         __u64                  ns_connect_flags;
398
399          /**
400           * Client side orig connect flags supported by server.
401           */
402         __u64                  ns_orig_connect_flags;
403
404         /**
405          * Hash table for namespace.
406          */
407         struct list_head      *ns_hash;
408         spinlock_t             ns_hash_lock;
409
410          /**
411           * Count of resources in the hash.
412           */
413         __u32                  ns_refcount;
414
415          /**
416           * All root resources in namespace.
417           */
418         struct list_head       ns_root_list;
419
420         /**
421          * Position in global namespace list.
422          */
423         struct list_head       ns_list_chain;
424
425         /**
426          * All root resources in namespace.
427          */
428         struct list_head       ns_unused_list;
429         int                    ns_nr_unused;
430         spinlock_t             ns_unused_lock;
431
432         unsigned int           ns_max_unused;
433         unsigned int           ns_max_age;
434
435          /**
436           * Seconds.
437           */
438         unsigned int           ns_ctime_age_limit;
439
440         /**
441          * Lower limit to number of pages in lock to keep it in cache.
442          */
443         unsigned int           ns_shrink_thumb;
444
445         /**
446          * Next debug dump, jiffies.
447          */
448         cfs_time_t             ns_next_dump;
449
450         atomic_t               ns_locks;
451         __u64                  ns_resources;
452         ldlm_res_policy        ns_policy;
453         struct ldlm_valblock_ops *ns_lvbo;
454         void                  *ns_lvbp;
455         cfs_waitq_t            ns_waitq;
456         struct ldlm_pool       ns_pool;
457         ldlm_appetite_t        ns_appetite;
458
459         /**
460          * If more than @ns_contented_locks found, the resource considered
461          * as contended.
462          */
463         unsigned               ns_contended_locks;
464
465         /**
466          * The resource remembers contended state during @ns_contention_time,
467          * in seconds.
468          */
469         unsigned               ns_contention_time;
470
471         /**
472          * Limit size of nolock requests, in bytes.
473          */
474         unsigned               ns_max_nolock_size;
475
476         /**
477          * Backward link to obd, required for ldlm pool to store new SLV.
478          */
479         struct obd_device     *ns_obd;
480
481         struct adaptive_timeout ns_at_estimate;/* estimated lock callback time*/
482 };
483
484 static inline int ns_is_client(struct ldlm_namespace *ns)
485 {
486         LASSERT(ns != NULL);
487         LASSERT(!(ns->ns_client & ~(LDLM_NAMESPACE_CLIENT |
488                                     LDLM_NAMESPACE_SERVER)));
489         LASSERT(ns->ns_client == LDLM_NAMESPACE_CLIENT ||
490                 ns->ns_client == LDLM_NAMESPACE_SERVER);
491         return ns->ns_client == LDLM_NAMESPACE_CLIENT;
492 }
493
494 static inline int ns_is_server(struct ldlm_namespace *ns)
495 {
496         LASSERT(ns != NULL);
497         LASSERT(!(ns->ns_client & ~(LDLM_NAMESPACE_CLIENT |
498                                     LDLM_NAMESPACE_SERVER)));
499         LASSERT(ns->ns_client == LDLM_NAMESPACE_CLIENT ||
500                 ns->ns_client == LDLM_NAMESPACE_SERVER);
501         return ns->ns_client == LDLM_NAMESPACE_SERVER;
502 }
503
504 static inline int ns_connect_lru_resize(struct ldlm_namespace *ns)
505 {
506         LASSERT(ns != NULL);
507         return !!(ns->ns_connect_flags & OBD_CONNECT_LRU_RESIZE);
508 }
509
510 /*
511  *
512  * Resource hash table
513  *
514  */
515
516 #define RES_HASH_BITS 10
517 #define RES_HASH_SIZE (1UL << RES_HASH_BITS)
518 #define RES_HASH_MASK (RES_HASH_SIZE - 1)
519
520 struct ldlm_lock;
521
522 typedef int (*ldlm_blocking_callback)(struct ldlm_lock *lock,
523                                       struct ldlm_lock_desc *new, void *data,
524                                       int flag);
525 typedef int (*ldlm_completion_callback)(struct ldlm_lock *lock, int flags,
526                                         void *data);
527 typedef int (*ldlm_glimpse_callback)(struct ldlm_lock *lock, void *data);
528
529 /* Interval node data for each LDLM_EXTENT lock */
530 struct ldlm_interval {
531         struct interval_node li_node;   /* node for tree mgmt */
532         struct list_head     li_group;  /* the locks which have the same
533                                          * policy - group of the policy */
534 };
535 #define to_ldlm_interval(n) container_of(n, struct ldlm_interval, li_node)
536
537 /* the interval tree must be accessed inside the resource lock. */
538 struct ldlm_interval_tree {
539         /* tree size, this variable is used to count
540          * granted PW locks in ldlm_extent_policy()*/
541         int                   lit_size;
542         ldlm_mode_t           lit_mode; /* lock mode */
543         struct interval_node *lit_root; /* actually ldlm_interval */
544 };
545
546 struct ldlm_lock {
547         /** 
548          * Must be first in the structure.
549          */
550         struct portals_handle    l_handle;
551         /**
552          * Lock reference count.
553          */
554         atomic_t                 l_refc;
555         /** 
556          * Internal spinlock protects l_resource.  we should hold this lock
557          * first before grabbing res_lock.
558          */
559         spinlock_t               l_lock;
560         /** 
561          * ldlm_lock_change_resource() can change this. 
562          */
563         struct ldlm_resource    *l_resource;
564         /** 
565          * Protected by ns_hash_lock. List item for client side lru list.
566          */
567         struct list_head         l_lru;
568         /** 
569          * Protected by lr_lock, linkage to resource's lock queues. 
570          */
571         struct list_head         l_res_link;
572         /** 
573          * Tree node for ldlm_extent. 
574          */
575         struct ldlm_interval    *l_tree_node;
576         /** 
577          * Protected by per-bucket exp->exp_lock_hash locks. Per export hash
578          * of locks.
579          */
580         struct hlist_node        l_exp_hash;
581         /** 
582          * Protected by lr_lock. Requested mode. 
583          */
584         ldlm_mode_t              l_req_mode;
585         /**
586          * Granted mode, also protected by lr_lock.
587          */
588         ldlm_mode_t              l_granted_mode;
589         /**
590          * Lock enqueue completion handler.
591          */
592         ldlm_completion_callback l_completion_ast;
593         /**
594          * Lock blocking ast handler.
595          */
596         ldlm_blocking_callback   l_blocking_ast;
597         /**
598          * Lock glimpse handler.
599          */
600         ldlm_glimpse_callback    l_glimpse_ast;
601
602         /**
603          * Lock export.
604          */
605         struct obd_export       *l_export;
606         /**
607          * Lock connection export.
608          */
609         struct obd_export       *l_conn_export;
610
611         /**
612          * Remote lock handle.
613          */
614         struct lustre_handle     l_remote_handle;
615
616         ldlm_policy_data_t       l_policy_data;
617
618         /*
619          * Protected by lr_lock. Various counters: readers, writers, etc.
620          */
621         __u32                 l_flags;
622         __u32                 l_readers;
623         __u32                 l_writers;
624         /*
625          * Set for locks that were removed from class hash table and will be
626          * destroyed when last reference to them is released. Set by
627          * ldlm_lock_destroy_internal().
628          *
629          * Protected by lock and resource locks.
630          */
631         __u8                  l_destroyed;
632
633         /** 
634          * If the lock is granted, a process sleeps on this waitq to learn when
635          * it's no longer in use.  If the lock is not granted, a process sleeps
636          * on this waitq to learn when it becomes granted. 
637          */
638         cfs_waitq_t           l_waitq;
639
640         struct timeval        l_enqueued_time;
641
642         /**
643          * Jiffies. Should be converted to time if needed. 
644          */
645         cfs_time_t            l_last_used;
646
647         struct ldlm_extent    l_req_extent;
648
649         /* 
650          * Client-side-only members. 
651          */
652          
653         /** 
654          * Temporary storage for an LVB received during an enqueue operation.
655          */
656         __u32                 l_lvb_len;
657         void                 *l_lvb_data;
658         void                 *l_lvb_swabber;
659
660         void                 *l_ast_data;
661         spinlock_t            l_extents_list_lock;
662         struct list_head      l_extents_list;
663
664         struct list_head      l_cache_locks_list;
665
666         /* 
667          * Server-side-only members. 
668          */
669
670         /** 
671          * Protected by elt_lock. Callbacks pending.
672          */
673         struct list_head      l_pending_chain;
674
675         cfs_time_t            l_callback_timeout;
676
677         /** 
678          * Pid which created this lock. 
679          */
680         __u32                 l_pid;
681
682         /** 
683          * For ldlm_add_ast_work_item(). 
684          */
685         struct list_head      l_bl_ast;
686         /** 
687          * For ldlm_add_ast_work_item(). 
688          */
689         struct list_head      l_cp_ast;
690         /** 
691          * For ldlm_add_ast_work_item(). 
692          */
693         struct list_head      l_rk_ast;
694
695         struct ldlm_lock     *l_blocking_lock;
696         int                   l_bl_ast_run;
697
698         /** 
699          * Protected by lr_lock, linkages to "skip lists". 
700          */
701         struct list_head      l_sl_mode;
702         struct list_head      l_sl_policy;
703         struct lu_ref         l_reference;
704 };
705
706 struct ldlm_resource {
707         struct ldlm_namespace *lr_namespace;
708
709         /* protected by ns_hash_lock */
710         struct list_head       lr_hash;
711         struct ldlm_resource  *lr_parent;   /* 0 for a root resource */
712         struct list_head       lr_children; /* list head for child resources */
713         struct list_head       lr_childof;  /* part of ns_root_list if root res,
714                                              * part of lr_children if child */
715         spinlock_t             lr_lock;
716
717         /* protected by lr_lock */
718         struct list_head       lr_granted;
719         struct list_head       lr_converting;
720         struct list_head       lr_waiting;
721         ldlm_mode_t            lr_most_restr;
722         ldlm_type_t            lr_type; /* LDLM_{PLAIN,EXTENT,FLOCK} */
723         struct ldlm_res_id     lr_name;
724         atomic_t               lr_refcount;
725
726         struct ldlm_interval_tree lr_itree[LCK_MODE_NUM];  /* interval trees*/
727
728         /* Server-side-only lock value block elements */
729         struct semaphore       lr_lvb_sem;
730         __u32                  lr_lvb_len;
731         void                  *lr_lvb_data;
732
733         /* when the resource was considered as contended */
734         cfs_time_t             lr_contention_time;
735         /**
736          * List of references to this resource. For debugging.
737          */
738         struct lu_ref          lr_reference;
739 };
740
741 struct ldlm_ast_work {
742         struct ldlm_lock *w_lock;
743         int               w_blocking;
744         struct ldlm_lock_desc w_desc;
745         struct list_head   w_list;
746         int w_flags;
747         void *w_data;
748         int w_datalen;
749 };
750
751 /* ldlm_enqueue parameters common */
752 struct ldlm_enqueue_info {
753         __u32 ei_type;   /* Type of the lock being enqueued. */
754         __u32 ei_mode;   /* Mode of the lock being enqueued. */
755         void *ei_cb_bl;  /* blocking lock callback */
756         void *ei_cb_cp;  /* lock completion callback */
757         void *ei_cb_gl;  /* lock glimpse callback */
758         void *ei_cbdata; /* Data to be passed into callbacks. */
759         short ei_async:1; /* async request */
760 };
761
762 extern struct obd_ops ldlm_obd_ops;
763
764 extern char *ldlm_lockname[];
765 extern char *ldlm_typename[];
766 extern char *ldlm_it2str(int it);
767 #ifdef LIBCFS_DEBUG
768 #define ldlm_lock_debug(cdls, level, lock, file, func, line, fmt, a...) do { \
769         CHECK_STACK();                                                  \
770                                                                         \
771         if (((level) & D_CANTMASK) != 0 ||                              \
772             ((libcfs_debug & (level)) != 0 &&                           \
773              (libcfs_subsystem_debug & DEBUG_SUBSYSTEM) != 0)) {        \
774                 static struct libcfs_debug_msg_data _ldlm_dbg_data =    \
775                 DEBUG_MSG_DATA_INIT(cdls, DEBUG_SUBSYSTEM,              \
776                                     file, func, line);                  \
777                 _ldlm_lock_debug(lock, level, &_ldlm_dbg_data, fmt,     \
778                                  ##a );                                 \
779         }                                                               \
780 } while(0)
781
782 void _ldlm_lock_debug(struct ldlm_lock *lock, __u32 mask,
783                       struct libcfs_debug_msg_data *data, const char *fmt,
784                       ...)
785         __attribute__ ((format (printf, 4, 5)));
786
787 #define LDLM_ERROR(lock, fmt, a...) do {                                \
788         static cfs_debug_limit_state_t _ldlm_cdls;                      \
789         ldlm_lock_debug(&_ldlm_cdls, D_ERROR, lock,                     \
790                         __FILE__, __FUNCTION__, __LINE__,               \
791                         "### " fmt , ##a);                              \
792 } while (0)
793
794 #define LDLM_DEBUG(lock, fmt, a...)   do {                              \
795         ldlm_lock_debug(NULL, D_DLMTRACE, lock,                         \
796                         __FILE__, __FUNCTION__, __LINE__,               \
797                          "### " fmt , ##a);                             \
798 } while (0)
799 #else /* !LIBCFS_DEBUG */
800 # define LDLM_DEBUG(lock, fmt, a...) ((void)0)
801 # define LDLM_ERROR(lock, fmt, a...) ((void)0)
802 # define ldlm_lock_debuf(cdls, level, lock, file, func, line, fmt, a...) \
803          ((void)0)
804 #endif
805
806 #define LDLM_DEBUG_NOLOCK(format, a...)                 \
807         CDEBUG(D_DLMTRACE, "### " format "\n" , ##a)
808
809 typedef int (*ldlm_processing_policy)(struct ldlm_lock *lock, int *flags,
810                                       int first_enq, ldlm_error_t *err,
811                                       struct list_head *work_list);
812
813 /*
814  * Iterators.
815  */
816
817 #define LDLM_ITER_CONTINUE 1 /* keep iterating */
818 #define LDLM_ITER_STOP     2 /* stop iterating */
819
820 typedef int (*ldlm_iterator_t)(struct ldlm_lock *, void *);
821 typedef int (*ldlm_res_iterator_t)(struct ldlm_resource *, void *);
822
823 int ldlm_resource_foreach(struct ldlm_resource *res, ldlm_iterator_t iter,
824                           void *closure);
825 int ldlm_namespace_foreach(struct ldlm_namespace *ns, ldlm_iterator_t iter,
826                            void *closure);
827 int ldlm_namespace_foreach_res(struct ldlm_namespace *ns,
828                                ldlm_res_iterator_t iter, void *closure);
829
830 int ldlm_replay_locks(struct obd_import *imp);
831 void ldlm_resource_iterate(struct ldlm_namespace *, const struct ldlm_res_id *,
832                            ldlm_iterator_t iter, void *data);
833
834 /* ldlm_flock.c */
835 int ldlm_flock_completion_ast(struct ldlm_lock *lock, int flags, void *data);
836
837 /* ldlm_extent.c */
838 __u64 ldlm_extent_shift_kms(struct ldlm_lock *lock, __u64 old_kms);
839
840
841 /* ldlm_lockd.c */
842 int ldlm_server_blocking_ast(struct ldlm_lock *, struct ldlm_lock_desc *,
843                              void *data, int flag);
844 int ldlm_server_completion_ast(struct ldlm_lock *lock, int flags, void *data);
845 int ldlm_server_glimpse_ast(struct ldlm_lock *lock, void *data);
846 int ldlm_handle_enqueue(struct ptlrpc_request *req, ldlm_completion_callback,
847                         ldlm_blocking_callback, ldlm_glimpse_callback);
848 int ldlm_handle_convert(struct ptlrpc_request *req);
849 int ldlm_handle_cancel(struct ptlrpc_request *req);
850 int ldlm_request_cancel(struct ptlrpc_request *req,
851                         const struct ldlm_request *dlm_req, int first);
852 int ldlm_del_waiting_lock(struct ldlm_lock *lock);
853 int ldlm_refresh_waiting_lock(struct ldlm_lock *lock);
854 void ldlm_revoke_export_locks(struct obd_export *exp);
855 int ldlm_get_ref(void);
856 void ldlm_put_ref(void);
857 int ldlm_init_export(struct obd_export *exp);
858 void ldlm_destroy_export(struct obd_export *exp);
859
860 /* ldlm_lock.c */
861 ldlm_processing_policy ldlm_get_processing_policy(struct ldlm_resource *res);
862 void ldlm_register_intent(struct ldlm_namespace *ns, ldlm_res_policy arg);
863 void ldlm_lock2handle(const struct ldlm_lock *lock,
864                       struct lustre_handle *lockh);
865 struct ldlm_lock *__ldlm_handle2lock(const struct lustre_handle *, int flags);
866 void ldlm_cancel_callback(struct ldlm_lock *);
867 int ldlm_lock_set_data(struct lustre_handle *, void *data);
868 int ldlm_lock_remove_from_lru(struct ldlm_lock *);
869
870 static inline struct ldlm_lock *ldlm_handle2lock(const struct lustre_handle *h)
871 {
872         return __ldlm_handle2lock(h, 0);
873 }
874
875 #define LDLM_LOCK_REF_DEL(lock) \
876         lu_ref_del(&lock->l_reference, "handle", cfs_current())
877
878 static inline struct ldlm_lock *
879 ldlm_handle2lock_long(const struct lustre_handle *h, int flags)
880 {
881         struct ldlm_lock *lock;
882
883         lock = __ldlm_handle2lock(h, flags);
884         if (lock != NULL)
885                 LDLM_LOCK_REF_DEL(lock);
886         return lock;
887 }
888
889 static inline int ldlm_res_lvbo_update(struct ldlm_resource *res,
890                                        struct lustre_msg *m, int buf_idx,
891                                        int increase)
892 {
893         if (res->lr_namespace->ns_lvbo &&
894             res->lr_namespace->ns_lvbo->lvbo_update) {
895                 return res->lr_namespace->ns_lvbo->lvbo_update(res, m, buf_idx,
896                                                                increase);
897         }
898         return 0;
899 }
900
901 int ldlm_error2errno(ldlm_error_t error);
902 ldlm_error_t ldlm_errno2error(int err_no); /* don't call it `errno': this
903                                             * confuses user-space. */
904
905 /**
906  * Release a temporary lock reference obtained by ldlm_handle2lock() or
907  * __ldlm_handle2lock().
908  */
909 #define LDLM_LOCK_PUT(lock)                     \
910 do {                                            \
911         LDLM_LOCK_REF_DEL(lock);                \
912         /*LDLM_DEBUG((lock), "put");*/          \
913         ldlm_lock_put(lock);                    \
914 } while (0)
915
916 /**
917  * Release a lock reference obtained by some other means (see
918  * LDLM_LOCK_PUT()).
919  */
920 #define LDLM_LOCK_RELEASE(lock)                 \
921 do {                                            \
922         /*LDLM_DEBUG((lock), "put");*/          \
923         ldlm_lock_put(lock);                    \
924 } while (0)
925
926 #define LDLM_LOCK_GET(lock)                     \
927 ({                                              \
928         ldlm_lock_get(lock);                    \
929         /*LDLM_DEBUG((lock), "get");*/          \
930         lock;                                   \
931 })
932
933 #define ldlm_lock_list_put(head, member, count)                 \
934 ({                                                              \
935         struct ldlm_lock *_lock, *_next;                        \
936         int c = count;                                          \
937         list_for_each_entry_safe(_lock, _next, head, member) {  \
938                 if (c-- == 0)                                   \
939                         break;                                  \
940                 list_del_init(&_lock->member);                  \
941                 LDLM_LOCK_RELEASE(_lock);                       \
942         }                                                       \
943         LASSERT(c <= 0);                                        \
944 })
945
946 struct ldlm_lock *ldlm_lock_get(struct ldlm_lock *lock);
947 void ldlm_lock_put(struct ldlm_lock *lock);
948 void ldlm_lock_destroy(struct ldlm_lock *lock);
949 void ldlm_lock2desc(struct ldlm_lock *lock, struct ldlm_lock_desc *desc);
950 void ldlm_lock_addref(struct lustre_handle *lockh, __u32 mode);
951 int  ldlm_lock_addref_try(struct lustre_handle *lockh, __u32 mode);
952 void ldlm_lock_decref(struct lustre_handle *lockh, __u32 mode);
953 void ldlm_lock_decref_and_cancel(struct lustre_handle *lockh, __u32 mode);
954 void ldlm_lock_allow_match(struct ldlm_lock *lock);
955 int ldlm_lock_fast_match(struct ldlm_lock *, int, obd_off, obd_off, void **);
956 void ldlm_lock_fast_release(void *, int);
957 ldlm_mode_t ldlm_lock_match(struct ldlm_namespace *ns, int flags,
958                             const struct ldlm_res_id *, ldlm_type_t type,
959                             ldlm_policy_data_t *, ldlm_mode_t mode,
960                             struct lustre_handle *);
961 struct ldlm_resource *ldlm_lock_convert(struct ldlm_lock *lock, int new_mode,
962                                         __u32 *flags);
963 void ldlm_lock_cancel(struct ldlm_lock *lock);
964 void ldlm_cancel_locks_for_export(struct obd_export *export);
965 void ldlm_reprocess_all(struct ldlm_resource *res);
966 void ldlm_reprocess_all_ns(struct ldlm_namespace *ns);
967 void ldlm_lock_dump(int level, struct ldlm_lock *lock, int pos);
968 void ldlm_lock_dump_handle(int level, struct lustre_handle *);
969 void ldlm_unlink_lock_skiplist(struct ldlm_lock *req);
970
971 /* resource.c */
972 struct ldlm_namespace *
973 ldlm_namespace_new(struct obd_device *obd, char *name,
974                    ldlm_side_t client, ldlm_appetite_t apt);
975 int ldlm_namespace_cleanup(struct ldlm_namespace *ns, int flags);
976 void ldlm_namespace_free(struct ldlm_namespace *ns,
977                          struct obd_import *imp, int force);
978 void ldlm_namespace_register(struct ldlm_namespace *ns, ldlm_side_t client);
979 void ldlm_namespace_unregister(struct ldlm_namespace *ns, ldlm_side_t client);
980 void ldlm_namespace_move_locked(struct ldlm_namespace *ns, ldlm_side_t client);
981 struct ldlm_namespace *ldlm_namespace_first_locked(ldlm_side_t client);
982 void ldlm_namespace_get_locked(struct ldlm_namespace *ns);
983 void ldlm_namespace_put_locked(struct ldlm_namespace *ns, int wakeup);
984 void ldlm_namespace_get(struct ldlm_namespace *ns);
985 void ldlm_namespace_put(struct ldlm_namespace *ns, int wakeup);
986 int ldlm_proc_setup(void);
987 #ifdef LPROCFS
988 void ldlm_proc_cleanup(void);
989 #else
990 static inline void ldlm_proc_cleanup(void) {}
991 #endif
992
993 /* resource.c - internal */
994 struct ldlm_resource *ldlm_resource_get(struct ldlm_namespace *ns,
995                                         struct ldlm_resource *parent,
996                                         const struct ldlm_res_id *,
997                                         ldlm_type_t type, int create);
998 struct ldlm_resource *ldlm_resource_getref(struct ldlm_resource *res);
999 int ldlm_resource_putref(struct ldlm_resource *res);
1000 void ldlm_resource_add_lock(struct ldlm_resource *res, struct list_head *head,
1001                             struct ldlm_lock *lock);
1002 void ldlm_resource_unlink_lock(struct ldlm_lock *lock);
1003 void ldlm_res2desc(struct ldlm_resource *res, struct ldlm_resource_desc *desc);
1004 void ldlm_dump_all_namespaces(ldlm_side_t client, int level);
1005 void ldlm_namespace_dump(int level, struct ldlm_namespace *);
1006 void ldlm_resource_dump(int level, struct ldlm_resource *);
1007 int ldlm_lock_change_resource(struct ldlm_namespace *, struct ldlm_lock *,
1008                               const struct ldlm_res_id *);
1009
1010 #define LDLM_RESOURCE_ADDREF(res) do {                                  \
1011         lu_ref_add(&(res)->lr_reference, __FUNCTION__, cfs_current());  \
1012 } while (0)
1013
1014 #define LDLM_RESOURCE_DELREF(res) do {                                  \
1015         lu_ref_del(&(res)->lr_reference, __FUNCTION__, cfs_current());  \
1016 } while (0)
1017
1018 struct ldlm_callback_suite {
1019         ldlm_completion_callback lcs_completion;
1020         ldlm_blocking_callback   lcs_blocking;
1021         ldlm_glimpse_callback    lcs_glimpse;
1022         ldlm_weigh_callback      lcs_weigh;
1023 };
1024
1025 /* ldlm_request.c */
1026 int ldlm_expired_completion_wait(void *data);
1027 int ldlm_blocking_ast(struct ldlm_lock *lock, struct ldlm_lock_desc *desc,
1028                       void *data, int flag);
1029 int ldlm_glimpse_ast(struct ldlm_lock *lock, void *reqp);
1030 int ldlm_completion_ast_async(struct ldlm_lock *lock, int flags, void *data);
1031 int ldlm_completion_ast(struct ldlm_lock *lock, int flags, void *data);
1032 int ldlm_cli_enqueue(struct obd_export *exp, struct ptlrpc_request **reqp,
1033                      struct ldlm_enqueue_info *einfo,
1034                      const struct ldlm_res_id *res_id,
1035                      ldlm_policy_data_t *policy, int *flags,
1036                      void *lvb, __u32 lvb_len, void *lvb_swabber,
1037                      struct lustre_handle *lockh, int async);
1038 int ldlm_prep_enqueue_req(struct obd_export *exp,
1039                           struct ptlrpc_request *req,
1040                           struct list_head *cancels,
1041                           int count);
1042 int ldlm_prep_elc_req(struct obd_export *exp,
1043                       struct ptlrpc_request *req,
1044                       int version, int opc, int canceloff,
1045                       struct list_head *cancels, int count);
1046 int ldlm_handle_enqueue0(struct ldlm_namespace *ns, struct ptlrpc_request *req,
1047                          const struct ldlm_request *dlm_req,
1048                          const struct ldlm_callback_suite *cbs);
1049 int ldlm_cli_enqueue_fini(struct obd_export *exp, struct ptlrpc_request *req,
1050                           ldlm_type_t type, __u8 with_policy, ldlm_mode_t mode,
1051                           int *flags, void *lvb, __u32 lvb_len,
1052                           void *lvb_swabber, struct lustre_handle *lockh,
1053                           int rc);
1054 int ldlm_cli_enqueue_local(struct ldlm_namespace *ns,
1055                            const struct ldlm_res_id *res_id,
1056                            ldlm_type_t type, ldlm_policy_data_t *policy,
1057                            ldlm_mode_t mode, int *flags,
1058                            ldlm_blocking_callback blocking,
1059                            ldlm_completion_callback completion,
1060                            ldlm_glimpse_callback glimpse,
1061                            void *data, __u32 lvb_len, void *lvb_swabber,
1062                            struct lustre_handle *lockh);
1063 int ldlm_server_ast(struct lustre_handle *lockh, struct ldlm_lock_desc *new,
1064                     void *data, __u32 data_len);
1065 int ldlm_cli_convert(struct lustre_handle *, int new_mode, __u32 *flags);
1066 int ldlm_cli_update_pool(struct ptlrpc_request *req);
1067 int ldlm_handle_convert0(struct ptlrpc_request *req,
1068                          const struct ldlm_request *dlm_req);
1069 int ldlm_cli_cancel(struct lustre_handle *lockh);
1070 int ldlm_cli_cancel_unused(struct ldlm_namespace *, const struct ldlm_res_id *,
1071                            int flags, void *opaque);
1072 int ldlm_cli_cancel_unused_resource(struct ldlm_namespace *ns,
1073                                     const struct ldlm_res_id *res_id,
1074                                     ldlm_policy_data_t *policy,
1075                                     ldlm_mode_t mode, int flags, void *opaque);
1076 int ldlm_cli_cancel_req(struct obd_export *exp, struct list_head *head,
1077                         int count, int flags);
1078 int ldlm_cancel_resource_local(struct ldlm_resource *res,
1079                                struct list_head *cancels,
1080                                ldlm_policy_data_t *policy,
1081                                ldlm_mode_t mode, int lock_flags,
1082                                int cancel_flags, void *opaque);
1083 int ldlm_cli_cancel_list(struct list_head *head, int count,
1084                          struct ptlrpc_request *req, int flags);
1085
1086 /* mds/handler.c */
1087 /* This has to be here because recursive inclusion sucks. */
1088 int intent_disposition(struct ldlm_reply *rep, int flag);
1089 void intent_set_disposition(struct ldlm_reply *rep, int flag);
1090
1091
1092 /* ioctls for trying requests */
1093 #define IOC_LDLM_TYPE                   'f'
1094 #define IOC_LDLM_MIN_NR                 40
1095
1096 #define IOC_LDLM_TEST                   _IOWR('f', 40, long)
1097 #define IOC_LDLM_DUMP                   _IOWR('f', 41, long)
1098 #define IOC_LDLM_REGRESS_START          _IOWR('f', 42, long)
1099 #define IOC_LDLM_REGRESS_STOP           _IOWR('f', 43, long)
1100 #define IOC_LDLM_MAX_NR                 43
1101
1102 /**
1103  * "Modes" of acquiring lock_res, necessary to tell lockdep that taking more
1104  * than one lock_res is dead-lock safe.
1105  */
1106 enum lock_res_type {
1107         LRT_NORMAL,
1108         LRT_NEW
1109 };
1110
1111 static inline void lock_res(struct ldlm_resource *res)
1112 {
1113         spin_lock(&res->lr_lock);
1114 }
1115
1116 static inline void lock_res_nested(struct ldlm_resource *res,
1117                                    enum lock_res_type mode)
1118 {
1119         spin_lock_nested(&res->lr_lock, mode);
1120 }
1121
1122
1123 static inline void unlock_res(struct ldlm_resource *res)
1124 {
1125         spin_unlock(&res->lr_lock);
1126 }
1127
1128 static inline void check_res_locked(struct ldlm_resource *res)
1129 {
1130         LASSERT_SPIN_LOCKED(&res->lr_lock);
1131 }
1132
1133 struct ldlm_resource * lock_res_and_lock(struct ldlm_lock *lock);
1134 void unlock_res_and_lock(struct ldlm_lock *lock);
1135
1136 /* ldlm_pool.c */
1137 void ldlm_pools_recalc(ldlm_side_t client);
1138 int ldlm_pools_init(void);
1139 void ldlm_pools_fini(void);
1140
1141 int ldlm_pool_init(struct ldlm_pool *pl, struct ldlm_namespace *ns,
1142                    int idx, ldlm_side_t client);
1143 int ldlm_pool_shrink(struct ldlm_pool *pl, int nr,
1144                      unsigned int gfp_mask);
1145 void ldlm_pool_fini(struct ldlm_pool *pl);
1146 int ldlm_pool_setup(struct ldlm_pool *pl, int limit);
1147 int ldlm_pool_recalc(struct ldlm_pool *pl);
1148 __u32 ldlm_pool_get_lvf(struct ldlm_pool *pl);
1149 __u64 ldlm_pool_get_slv(struct ldlm_pool *pl);
1150 __u64 ldlm_pool_get_clv(struct ldlm_pool *pl);
1151 __u32 ldlm_pool_get_limit(struct ldlm_pool *pl);
1152 void ldlm_pool_set_slv(struct ldlm_pool *pl, __u64 slv);
1153 void ldlm_pool_set_clv(struct ldlm_pool *pl, __u64 clv);
1154 void ldlm_pool_set_limit(struct ldlm_pool *pl, __u32 limit);
1155 void ldlm_pool_add(struct ldlm_pool *pl, struct ldlm_lock *lock);
1156 void ldlm_pool_del(struct ldlm_pool *pl, struct ldlm_lock *lock);
1157 #endif