1 /* -*- mode: c; c-basic-offset: 8; -*-
2 * vim: noexpandtab sw=8 ts=8 sts=0:
6 * Code which implements an OCFS2 specific interface to our DLM.
8 * Copyright (C) 2003, 2004 Oracle. All rights reserved.
10 * This program is free software; you can redistribute it and/or
11 * modify it under the terms of the GNU General Public
12 * License as published by the Free Software Foundation; either
13 * version 2 of the License, or (at your option) any later version.
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18 * General Public License for more details.
20 * You should have received a copy of the GNU General Public
21 * License along with this program; if not, write to the
22 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
23 * Boston, MA 021110-1307, USA.
26 #include <linux/types.h>
27 #include <linux/slab.h>
28 #include <linux/highmem.h>
30 #include <linux/kthread.h>
31 #include <linux/pagemap.h>
32 #include <linux/debugfs.h>
33 #include <linux/seq_file.h>
35 #define MLOG_MASK_PREFIX ML_DLM_GLUE
36 #include <cluster/masklog.h>
39 #include "ocfs2_lockingver.h"
44 #include "extent_map.h"
46 #include "heartbeat.h"
49 #include "stackglue.h"
54 #include "buffer_head_io.h"
56 struct ocfs2_mask_waiter
{
57 struct list_head mw_item
;
59 struct completion mw_complete
;
60 unsigned long mw_mask
;
61 unsigned long mw_goal
;
64 static struct ocfs2_super
*ocfs2_get_dentry_osb(struct ocfs2_lock_res
*lockres
);
65 static struct ocfs2_super
*ocfs2_get_inode_osb(struct ocfs2_lock_res
*lockres
);
66 static struct ocfs2_super
*ocfs2_get_file_osb(struct ocfs2_lock_res
*lockres
);
69 * Return value from ->downconvert_worker functions.
71 * These control the precise actions of ocfs2_unblock_lock()
72 * and ocfs2_process_blocked_lock()
75 enum ocfs2_unblock_action
{
76 UNBLOCK_CONTINUE
= 0, /* Continue downconvert */
77 UNBLOCK_CONTINUE_POST
= 1, /* Continue downconvert, fire
78 * ->post_unlock callback */
79 UNBLOCK_STOP_POST
= 2, /* Do not downconvert, fire
80 * ->post_unlock() callback. */
83 struct ocfs2_unblock_ctl
{
85 enum ocfs2_unblock_action unblock_action
;
88 static int ocfs2_check_meta_downconvert(struct ocfs2_lock_res
*lockres
,
90 static void ocfs2_set_meta_lvb(struct ocfs2_lock_res
*lockres
);
92 static int ocfs2_data_convert_worker(struct ocfs2_lock_res
*lockres
,
95 static int ocfs2_dentry_convert_worker(struct ocfs2_lock_res
*lockres
,
98 static void ocfs2_dentry_post_unlock(struct ocfs2_super
*osb
,
99 struct ocfs2_lock_res
*lockres
);
102 #define mlog_meta_lvb(__level, __lockres) ocfs2_dump_meta_lvb_info(__level, __PRETTY_FUNCTION__, __LINE__, __lockres)
104 /* This aids in debugging situations where a bad LVB might be involved. */
105 static void ocfs2_dump_meta_lvb_info(u64 level
,
106 const char *function
,
108 struct ocfs2_lock_res
*lockres
)
110 struct ocfs2_meta_lvb
*lvb
=
111 (struct ocfs2_meta_lvb
*)ocfs2_dlm_lvb(&lockres
->l_lksb
);
113 mlog(level
, "LVB information for %s (called from %s:%u):\n",
114 lockres
->l_name
, function
, line
);
115 mlog(level
, "version: %u, clusters: %u, generation: 0x%x\n",
116 lvb
->lvb_version
, be32_to_cpu(lvb
->lvb_iclusters
),
117 be32_to_cpu(lvb
->lvb_igeneration
));
118 mlog(level
, "size: %llu, uid %u, gid %u, mode 0x%x\n",
119 (unsigned long long)be64_to_cpu(lvb
->lvb_isize
),
120 be32_to_cpu(lvb
->lvb_iuid
), be32_to_cpu(lvb
->lvb_igid
),
121 be16_to_cpu(lvb
->lvb_imode
));
122 mlog(level
, "nlink %u, atime_packed 0x%llx, ctime_packed 0x%llx, "
123 "mtime_packed 0x%llx iattr 0x%x\n", be16_to_cpu(lvb
->lvb_inlink
),
124 (long long)be64_to_cpu(lvb
->lvb_iatime_packed
),
125 (long long)be64_to_cpu(lvb
->lvb_ictime_packed
),
126 (long long)be64_to_cpu(lvb
->lvb_imtime_packed
),
127 be32_to_cpu(lvb
->lvb_iattr
));
132 * OCFS2 Lock Resource Operations
134 * These fine tune the behavior of the generic dlmglue locking infrastructure.
136 * The most basic of lock types can point ->l_priv to their respective
137 * struct ocfs2_super and allow the default actions to manage things.
139 * Right now, each lock type also needs to implement an init function,
140 * and trivial lock/unlock wrappers. ocfs2_simple_drop_lockres()
141 * should be called when the lock is no longer needed (i.e., object
144 struct ocfs2_lock_res_ops
{
146 * Translate an ocfs2_lock_res * into an ocfs2_super *. Define
147 * this callback if ->l_priv is not an ocfs2_super pointer
149 struct ocfs2_super
* (*get_osb
)(struct ocfs2_lock_res
*);
152 * Optionally called in the downconvert thread after a
153 * successful downconvert. The lockres will not be referenced
154 * after this callback is called, so it is safe to free
157 * The exact semantics of when this is called are controlled
158 * by ->downconvert_worker()
160 void (*post_unlock
)(struct ocfs2_super
*, struct ocfs2_lock_res
*);
163 * Allow a lock type to add checks to determine whether it is
164 * safe to downconvert a lock. Return 0 to re-queue the
165 * downconvert at a later time, nonzero to continue.
167 * For most locks, the default checks that there are no
168 * incompatible holders are sufficient.
170 * Called with the lockres spinlock held.
172 int (*check_downconvert
)(struct ocfs2_lock_res
*, int);
175 * Allows a lock type to populate the lock value block. This
176 * is called on downconvert, and when we drop a lock.
178 * Locks that want to use this should set LOCK_TYPE_USES_LVB
179 * in the flags field.
181 * Called with the lockres spinlock held.
183 void (*set_lvb
)(struct ocfs2_lock_res
*);
186 * Called from the downconvert thread when it is determined
187 * that a lock will be downconverted. This is called without
188 * any locks held so the function can do work that might
189 * schedule (syncing out data, etc).
191 * This should return any one of the ocfs2_unblock_action
192 * values, depending on what it wants the thread to do.
194 int (*downconvert_worker
)(struct ocfs2_lock_res
*, int);
197 * LOCK_TYPE_* flags which describe the specific requirements
198 * of a lock type. Descriptions of each individual flag follow.
204 * Some locks want to "refresh" potentially stale data when a
205 * meaningful (PRMODE or EXMODE) lock level is first obtained. If this
206 * flag is set, the OCFS2_LOCK_NEEDS_REFRESH flag will be set on the
207 * individual lockres l_flags member from the ast function. It is
208 * expected that the locking wrapper will clear the
209 * OCFS2_LOCK_NEEDS_REFRESH flag when done.
211 #define LOCK_TYPE_REQUIRES_REFRESH 0x1
214 * Indicate that a lock type makes use of the lock value block. The
215 * ->set_lvb lock type callback must be defined.
217 #define LOCK_TYPE_USES_LVB 0x2
219 static struct ocfs2_lock_res_ops ocfs2_inode_rw_lops
= {
220 .get_osb
= ocfs2_get_inode_osb
,
224 static struct ocfs2_lock_res_ops ocfs2_inode_inode_lops
= {
225 .get_osb
= ocfs2_get_inode_osb
,
226 .check_downconvert
= ocfs2_check_meta_downconvert
,
227 .set_lvb
= ocfs2_set_meta_lvb
,
228 .downconvert_worker
= ocfs2_data_convert_worker
,
229 .flags
= LOCK_TYPE_REQUIRES_REFRESH
|LOCK_TYPE_USES_LVB
,
232 static struct ocfs2_lock_res_ops ocfs2_super_lops
= {
233 .flags
= LOCK_TYPE_REQUIRES_REFRESH
,
236 static struct ocfs2_lock_res_ops ocfs2_rename_lops
= {
240 static struct ocfs2_lock_res_ops ocfs2_dentry_lops
= {
241 .get_osb
= ocfs2_get_dentry_osb
,
242 .post_unlock
= ocfs2_dentry_post_unlock
,
243 .downconvert_worker
= ocfs2_dentry_convert_worker
,
247 static struct ocfs2_lock_res_ops ocfs2_inode_open_lops
= {
248 .get_osb
= ocfs2_get_inode_osb
,
252 static struct ocfs2_lock_res_ops ocfs2_flock_lops
= {
253 .get_osb
= ocfs2_get_file_osb
,
257 static inline int ocfs2_is_inode_lock(struct ocfs2_lock_res
*lockres
)
259 return lockres
->l_type
== OCFS2_LOCK_TYPE_META
||
260 lockres
->l_type
== OCFS2_LOCK_TYPE_RW
||
261 lockres
->l_type
== OCFS2_LOCK_TYPE_OPEN
;
264 static inline struct inode
*ocfs2_lock_res_inode(struct ocfs2_lock_res
*lockres
)
266 BUG_ON(!ocfs2_is_inode_lock(lockres
));
268 return (struct inode
*) lockres
->l_priv
;
271 static inline struct ocfs2_dentry_lock
*ocfs2_lock_res_dl(struct ocfs2_lock_res
*lockres
)
273 BUG_ON(lockres
->l_type
!= OCFS2_LOCK_TYPE_DENTRY
);
275 return (struct ocfs2_dentry_lock
*)lockres
->l_priv
;
278 static inline struct ocfs2_super
*ocfs2_get_lockres_osb(struct ocfs2_lock_res
*lockres
)
280 if (lockres
->l_ops
->get_osb
)
281 return lockres
->l_ops
->get_osb(lockres
);
283 return (struct ocfs2_super
*)lockres
->l_priv
;
286 static int ocfs2_lock_create(struct ocfs2_super
*osb
,
287 struct ocfs2_lock_res
*lockres
,
290 static inline int ocfs2_may_continue_on_blocked_lock(struct ocfs2_lock_res
*lockres
,
292 static void ocfs2_cluster_unlock(struct ocfs2_super
*osb
,
293 struct ocfs2_lock_res
*lockres
,
295 static inline void ocfs2_generic_handle_downconvert_action(struct ocfs2_lock_res
*lockres
);
296 static inline void ocfs2_generic_handle_convert_action(struct ocfs2_lock_res
*lockres
);
297 static inline void ocfs2_generic_handle_attach_action(struct ocfs2_lock_res
*lockres
);
298 static int ocfs2_generic_handle_bast(struct ocfs2_lock_res
*lockres
, int level
);
299 static void ocfs2_schedule_blocked_lock(struct ocfs2_super
*osb
,
300 struct ocfs2_lock_res
*lockres
);
301 static inline void ocfs2_recover_from_dlm_error(struct ocfs2_lock_res
*lockres
,
303 #define ocfs2_log_dlm_error(_func, _err, _lockres) do { \
304 mlog(ML_ERROR, "DLM error %d while calling %s on resource %s\n", \
305 _err, _func, _lockres->l_name); \
307 static int ocfs2_downconvert_thread(void *arg
);
308 static void ocfs2_downconvert_on_unlock(struct ocfs2_super
*osb
,
309 struct ocfs2_lock_res
*lockres
);
310 static int ocfs2_inode_lock_update(struct inode
*inode
,
311 struct buffer_head
**bh
);
312 static void ocfs2_drop_osb_locks(struct ocfs2_super
*osb
);
313 static inline int ocfs2_highest_compat_lock_level(int level
);
314 static unsigned int ocfs2_prepare_downconvert(struct ocfs2_lock_res
*lockres
,
316 static int ocfs2_downconvert_lock(struct ocfs2_super
*osb
,
317 struct ocfs2_lock_res
*lockres
,
320 unsigned int generation
);
321 static int ocfs2_prepare_cancel_convert(struct ocfs2_super
*osb
,
322 struct ocfs2_lock_res
*lockres
);
323 static int ocfs2_cancel_convert(struct ocfs2_super
*osb
,
324 struct ocfs2_lock_res
*lockres
);
327 static void ocfs2_build_lock_name(enum ocfs2_lock_type type
,
336 BUG_ON(type
>= OCFS2_NUM_LOCK_TYPES
);
338 len
= snprintf(name
, OCFS2_LOCK_ID_MAX_LEN
, "%c%s%016llx%08x",
339 ocfs2_lock_type_char(type
), OCFS2_LOCK_ID_PAD
,
340 (long long)blkno
, generation
);
342 BUG_ON(len
!= (OCFS2_LOCK_ID_MAX_LEN
- 1));
344 mlog(0, "built lock resource with name: %s\n", name
);
349 static DEFINE_SPINLOCK(ocfs2_dlm_tracking_lock
);
351 static void ocfs2_add_lockres_tracking(struct ocfs2_lock_res
*res
,
352 struct ocfs2_dlm_debug
*dlm_debug
)
354 mlog(0, "Add tracking for lockres %s\n", res
->l_name
);
356 spin_lock(&ocfs2_dlm_tracking_lock
);
357 list_add(&res
->l_debug_list
, &dlm_debug
->d_lockres_tracking
);
358 spin_unlock(&ocfs2_dlm_tracking_lock
);
361 static void ocfs2_remove_lockres_tracking(struct ocfs2_lock_res
*res
)
363 spin_lock(&ocfs2_dlm_tracking_lock
);
364 if (!list_empty(&res
->l_debug_list
))
365 list_del_init(&res
->l_debug_list
);
366 spin_unlock(&ocfs2_dlm_tracking_lock
);
369 static void ocfs2_lock_res_init_common(struct ocfs2_super
*osb
,
370 struct ocfs2_lock_res
*res
,
371 enum ocfs2_lock_type type
,
372 struct ocfs2_lock_res_ops
*ops
,
379 res
->l_level
= DLM_LOCK_IV
;
380 res
->l_requested
= DLM_LOCK_IV
;
381 res
->l_blocking
= DLM_LOCK_IV
;
382 res
->l_action
= OCFS2_AST_INVALID
;
383 res
->l_unlock_action
= OCFS2_UNLOCK_INVALID
;
385 res
->l_flags
= OCFS2_LOCK_INITIALIZED
;
387 ocfs2_add_lockres_tracking(res
, osb
->osb_dlm_debug
);
390 void ocfs2_lock_res_init_once(struct ocfs2_lock_res
*res
)
392 /* This also clears out the lock status block */
393 memset(res
, 0, sizeof(struct ocfs2_lock_res
));
394 spin_lock_init(&res
->l_lock
);
395 init_waitqueue_head(&res
->l_event
);
396 INIT_LIST_HEAD(&res
->l_blocked_list
);
397 INIT_LIST_HEAD(&res
->l_mask_waiters
);
400 void ocfs2_inode_lock_res_init(struct ocfs2_lock_res
*res
,
401 enum ocfs2_lock_type type
,
402 unsigned int generation
,
405 struct ocfs2_lock_res_ops
*ops
;
408 case OCFS2_LOCK_TYPE_RW
:
409 ops
= &ocfs2_inode_rw_lops
;
411 case OCFS2_LOCK_TYPE_META
:
412 ops
= &ocfs2_inode_inode_lops
;
414 case OCFS2_LOCK_TYPE_OPEN
:
415 ops
= &ocfs2_inode_open_lops
;
418 mlog_bug_on_msg(1, "type: %d\n", type
);
419 ops
= NULL
; /* thanks, gcc */
423 ocfs2_build_lock_name(type
, OCFS2_I(inode
)->ip_blkno
,
424 generation
, res
->l_name
);
425 ocfs2_lock_res_init_common(OCFS2_SB(inode
->i_sb
), res
, type
, ops
, inode
);
428 static struct ocfs2_super
*ocfs2_get_inode_osb(struct ocfs2_lock_res
*lockres
)
430 struct inode
*inode
= ocfs2_lock_res_inode(lockres
);
432 return OCFS2_SB(inode
->i_sb
);
435 static struct ocfs2_super
*ocfs2_get_file_osb(struct ocfs2_lock_res
*lockres
)
437 struct ocfs2_file_private
*fp
= lockres
->l_priv
;
439 return OCFS2_SB(fp
->fp_file
->f_mapping
->host
->i_sb
);
442 static __u64
ocfs2_get_dentry_lock_ino(struct ocfs2_lock_res
*lockres
)
444 __be64 inode_blkno_be
;
446 memcpy(&inode_blkno_be
, &lockres
->l_name
[OCFS2_DENTRY_LOCK_INO_START
],
449 return be64_to_cpu(inode_blkno_be
);
452 static struct ocfs2_super
*ocfs2_get_dentry_osb(struct ocfs2_lock_res
*lockres
)
454 struct ocfs2_dentry_lock
*dl
= lockres
->l_priv
;
456 return OCFS2_SB(dl
->dl_inode
->i_sb
);
459 void ocfs2_dentry_lock_res_init(struct ocfs2_dentry_lock
*dl
,
460 u64 parent
, struct inode
*inode
)
463 u64 inode_blkno
= OCFS2_I(inode
)->ip_blkno
;
464 __be64 inode_blkno_be
= cpu_to_be64(inode_blkno
);
465 struct ocfs2_lock_res
*lockres
= &dl
->dl_lockres
;
467 ocfs2_lock_res_init_once(lockres
);
470 * Unfortunately, the standard lock naming scheme won't work
471 * here because we have two 16 byte values to use. Instead,
472 * we'll stuff the inode number as a binary value. We still
473 * want error prints to show something without garbling the
474 * display, so drop a null byte in there before the inode
475 * number. A future version of OCFS2 will likely use all
476 * binary lock names. The stringified names have been a
477 * tremendous aid in debugging, but now that the debugfs
478 * interface exists, we can mangle things there if need be.
480 * NOTE: We also drop the standard "pad" value (the total lock
481 * name size stays the same though - the last part is all
482 * zeros due to the memset in ocfs2_lock_res_init_once()
484 len
= snprintf(lockres
->l_name
, OCFS2_DENTRY_LOCK_INO_START
,
486 ocfs2_lock_type_char(OCFS2_LOCK_TYPE_DENTRY
),
489 BUG_ON(len
!= (OCFS2_DENTRY_LOCK_INO_START
- 1));
491 memcpy(&lockres
->l_name
[OCFS2_DENTRY_LOCK_INO_START
], &inode_blkno_be
,
494 ocfs2_lock_res_init_common(OCFS2_SB(inode
->i_sb
), lockres
,
495 OCFS2_LOCK_TYPE_DENTRY
, &ocfs2_dentry_lops
,
499 static void ocfs2_super_lock_res_init(struct ocfs2_lock_res
*res
,
500 struct ocfs2_super
*osb
)
502 /* Superblock lockres doesn't come from a slab so we call init
503 * once on it manually. */
504 ocfs2_lock_res_init_once(res
);
505 ocfs2_build_lock_name(OCFS2_LOCK_TYPE_SUPER
, OCFS2_SUPER_BLOCK_BLKNO
,
507 ocfs2_lock_res_init_common(osb
, res
, OCFS2_LOCK_TYPE_SUPER
,
508 &ocfs2_super_lops
, osb
);
511 static void ocfs2_rename_lock_res_init(struct ocfs2_lock_res
*res
,
512 struct ocfs2_super
*osb
)
514 /* Rename lockres doesn't come from a slab so we call init
515 * once on it manually. */
516 ocfs2_lock_res_init_once(res
);
517 ocfs2_build_lock_name(OCFS2_LOCK_TYPE_RENAME
, 0, 0, res
->l_name
);
518 ocfs2_lock_res_init_common(osb
, res
, OCFS2_LOCK_TYPE_RENAME
,
519 &ocfs2_rename_lops
, osb
);
522 void ocfs2_file_lock_res_init(struct ocfs2_lock_res
*lockres
,
523 struct ocfs2_file_private
*fp
)
525 struct inode
*inode
= fp
->fp_file
->f_mapping
->host
;
526 struct ocfs2_inode_info
*oi
= OCFS2_I(inode
);
528 ocfs2_lock_res_init_once(lockres
);
529 ocfs2_build_lock_name(OCFS2_LOCK_TYPE_FLOCK
, oi
->ip_blkno
,
530 inode
->i_generation
, lockres
->l_name
);
531 ocfs2_lock_res_init_common(OCFS2_SB(inode
->i_sb
), lockres
,
532 OCFS2_LOCK_TYPE_FLOCK
, &ocfs2_flock_lops
,
534 lockres
->l_flags
|= OCFS2_LOCK_NOCACHE
;
537 void ocfs2_lock_res_free(struct ocfs2_lock_res
*res
)
541 if (!(res
->l_flags
& OCFS2_LOCK_INITIALIZED
))
544 ocfs2_remove_lockres_tracking(res
);
546 mlog_bug_on_msg(!list_empty(&res
->l_blocked_list
),
547 "Lockres %s is on the blocked list\n",
549 mlog_bug_on_msg(!list_empty(&res
->l_mask_waiters
),
550 "Lockres %s has mask waiters pending\n",
552 mlog_bug_on_msg(spin_is_locked(&res
->l_lock
),
553 "Lockres %s is locked\n",
555 mlog_bug_on_msg(res
->l_ro_holders
,
556 "Lockres %s has %u ro holders\n",
557 res
->l_name
, res
->l_ro_holders
);
558 mlog_bug_on_msg(res
->l_ex_holders
,
559 "Lockres %s has %u ex holders\n",
560 res
->l_name
, res
->l_ex_holders
);
562 /* Need to clear out the lock status block for the dlm */
563 memset(&res
->l_lksb
, 0, sizeof(res
->l_lksb
));
569 static inline void ocfs2_inc_holders(struct ocfs2_lock_res
*lockres
,
578 lockres
->l_ex_holders
++;
581 lockres
->l_ro_holders
++;
590 static inline void ocfs2_dec_holders(struct ocfs2_lock_res
*lockres
,
599 BUG_ON(!lockres
->l_ex_holders
);
600 lockres
->l_ex_holders
--;
603 BUG_ON(!lockres
->l_ro_holders
);
604 lockres
->l_ro_holders
--;
612 /* WARNING: This function lives in a world where the only three lock
613 * levels are EX, PR, and NL. It *will* have to be adjusted when more
614 * lock types are added. */
615 static inline int ocfs2_highest_compat_lock_level(int level
)
617 int new_level
= DLM_LOCK_EX
;
619 if (level
== DLM_LOCK_EX
)
620 new_level
= DLM_LOCK_NL
;
621 else if (level
== DLM_LOCK_PR
)
622 new_level
= DLM_LOCK_PR
;
626 static void lockres_set_flags(struct ocfs2_lock_res
*lockres
,
627 unsigned long newflags
)
629 struct ocfs2_mask_waiter
*mw
, *tmp
;
631 assert_spin_locked(&lockres
->l_lock
);
633 lockres
->l_flags
= newflags
;
635 list_for_each_entry_safe(mw
, tmp
, &lockres
->l_mask_waiters
, mw_item
) {
636 if ((lockres
->l_flags
& mw
->mw_mask
) != mw
->mw_goal
)
639 list_del_init(&mw
->mw_item
);
641 complete(&mw
->mw_complete
);
644 static void lockres_or_flags(struct ocfs2_lock_res
*lockres
, unsigned long or)
646 lockres_set_flags(lockres
, lockres
->l_flags
| or);
648 static void lockres_clear_flags(struct ocfs2_lock_res
*lockres
,
651 lockres_set_flags(lockres
, lockres
->l_flags
& ~clear
);
654 static inline void ocfs2_generic_handle_downconvert_action(struct ocfs2_lock_res
*lockres
)
658 BUG_ON(!(lockres
->l_flags
& OCFS2_LOCK_BUSY
));
659 BUG_ON(!(lockres
->l_flags
& OCFS2_LOCK_ATTACHED
));
660 BUG_ON(!(lockres
->l_flags
& OCFS2_LOCK_BLOCKED
));
661 BUG_ON(lockres
->l_blocking
<= DLM_LOCK_NL
);
663 lockres
->l_level
= lockres
->l_requested
;
664 if (lockres
->l_level
<=
665 ocfs2_highest_compat_lock_level(lockres
->l_blocking
)) {
666 lockres
->l_blocking
= DLM_LOCK_NL
;
667 lockres_clear_flags(lockres
, OCFS2_LOCK_BLOCKED
);
669 lockres_clear_flags(lockres
, OCFS2_LOCK_BUSY
);
674 static inline void ocfs2_generic_handle_convert_action(struct ocfs2_lock_res
*lockres
)
678 BUG_ON(!(lockres
->l_flags
& OCFS2_LOCK_BUSY
));
679 BUG_ON(!(lockres
->l_flags
& OCFS2_LOCK_ATTACHED
));
681 /* Convert from RO to EX doesn't really need anything as our
682 * information is already up to data. Convert from NL to
683 * *anything* however should mark ourselves as needing an
685 if (lockres
->l_level
== DLM_LOCK_NL
&&
686 lockres
->l_ops
->flags
& LOCK_TYPE_REQUIRES_REFRESH
)
687 lockres_or_flags(lockres
, OCFS2_LOCK_NEEDS_REFRESH
);
689 lockres
->l_level
= lockres
->l_requested
;
690 lockres_clear_flags(lockres
, OCFS2_LOCK_BUSY
);
695 static inline void ocfs2_generic_handle_attach_action(struct ocfs2_lock_res
*lockres
)
699 BUG_ON((!(lockres
->l_flags
& OCFS2_LOCK_BUSY
)));
700 BUG_ON(lockres
->l_flags
& OCFS2_LOCK_ATTACHED
);
702 if (lockres
->l_requested
> DLM_LOCK_NL
&&
703 !(lockres
->l_flags
& OCFS2_LOCK_LOCAL
) &&
704 lockres
->l_ops
->flags
& LOCK_TYPE_REQUIRES_REFRESH
)
705 lockres_or_flags(lockres
, OCFS2_LOCK_NEEDS_REFRESH
);
707 lockres
->l_level
= lockres
->l_requested
;
708 lockres_or_flags(lockres
, OCFS2_LOCK_ATTACHED
);
709 lockres_clear_flags(lockres
, OCFS2_LOCK_BUSY
);
714 static int ocfs2_generic_handle_bast(struct ocfs2_lock_res
*lockres
,
717 int needs_downconvert
= 0;
720 assert_spin_locked(&lockres
->l_lock
);
722 lockres_or_flags(lockres
, OCFS2_LOCK_BLOCKED
);
724 if (level
> lockres
->l_blocking
) {
725 /* only schedule a downconvert if we haven't already scheduled
726 * one that goes low enough to satisfy the level we're
727 * blocking. this also catches the case where we get
729 if (ocfs2_highest_compat_lock_level(level
) <
730 ocfs2_highest_compat_lock_level(lockres
->l_blocking
))
731 needs_downconvert
= 1;
733 lockres
->l_blocking
= level
;
736 mlog_exit(needs_downconvert
);
737 return needs_downconvert
;
741 * OCFS2_LOCK_PENDING and l_pending_gen.
743 * Why does OCFS2_LOCK_PENDING exist? To close a race between setting
744 * OCFS2_LOCK_BUSY and calling ocfs2_dlm_lock(). See ocfs2_unblock_lock()
745 * for more details on the race.
747 * OCFS2_LOCK_PENDING closes the race quite nicely. However, it introduces
748 * a race on itself. In o2dlm, we can get the ast before ocfs2_dlm_lock()
749 * returns. The ast clears OCFS2_LOCK_BUSY, and must therefore clear
750 * OCFS2_LOCK_PENDING at the same time. When ocfs2_dlm_lock() returns,
751 * the caller is going to try to clear PENDING again. If nothing else is
752 * happening, __lockres_clear_pending() sees PENDING is unset and does
755 * But what if another path (eg downconvert thread) has just started a
756 * new locking action? The other path has re-set PENDING. Our path
757 * cannot clear PENDING, because that will re-open the original race
763 * ocfs2_cluster_lock()
768 * ocfs2_locking_ast() ocfs2_downconvert_thread()
769 * clear PENDING ocfs2_unblock_lock()
772 * ocfs2_prepare_downconvert()
782 * So as you can see, we now have a window where l_lock is not held,
783 * PENDING is not set, and ocfs2_dlm_lock() has not been called.
785 * The core problem is that ocfs2_cluster_lock() has cleared the PENDING
786 * set by ocfs2_prepare_downconvert(). That wasn't nice.
788 * To solve this we introduce l_pending_gen. A call to
789 * lockres_clear_pending() will only do so when it is passed a generation
790 * number that matches the lockres. lockres_set_pending() will return the
791 * current generation number. When ocfs2_cluster_lock() goes to clear
792 * PENDING, it passes the generation it got from set_pending(). In our
793 * example above, the generation numbers will *not* match. Thus,
794 * ocfs2_cluster_lock() will not clear the PENDING set by
795 * ocfs2_prepare_downconvert().
798 /* Unlocked version for ocfs2_locking_ast() */
799 static void __lockres_clear_pending(struct ocfs2_lock_res
*lockres
,
800 unsigned int generation
,
801 struct ocfs2_super
*osb
)
803 assert_spin_locked(&lockres
->l_lock
);
806 * The ast and locking functions can race us here. The winner
807 * will clear pending, the loser will not.
809 if (!(lockres
->l_flags
& OCFS2_LOCK_PENDING
) ||
810 (lockres
->l_pending_gen
!= generation
))
813 lockres_clear_flags(lockres
, OCFS2_LOCK_PENDING
);
814 lockres
->l_pending_gen
++;
817 * The downconvert thread may have skipped us because we
818 * were PENDING. Wake it up.
820 if (lockres
->l_flags
& OCFS2_LOCK_BLOCKED
)
821 ocfs2_wake_downconvert_thread(osb
);
824 /* Locked version for callers of ocfs2_dlm_lock() */
825 static void lockres_clear_pending(struct ocfs2_lock_res
*lockres
,
826 unsigned int generation
,
827 struct ocfs2_super
*osb
)
831 spin_lock_irqsave(&lockres
->l_lock
, flags
);
832 __lockres_clear_pending(lockres
, generation
, osb
);
833 spin_unlock_irqrestore(&lockres
->l_lock
, flags
);
836 static unsigned int lockres_set_pending(struct ocfs2_lock_res
*lockres
)
838 assert_spin_locked(&lockres
->l_lock
);
839 BUG_ON(!(lockres
->l_flags
& OCFS2_LOCK_BUSY
));
841 lockres_or_flags(lockres
, OCFS2_LOCK_PENDING
);
843 return lockres
->l_pending_gen
;
847 static void ocfs2_blocking_ast(void *opaque
, int level
)
849 struct ocfs2_lock_res
*lockres
= opaque
;
850 struct ocfs2_super
*osb
= ocfs2_get_lockres_osb(lockres
);
851 int needs_downconvert
;
854 BUG_ON(level
<= DLM_LOCK_NL
);
856 mlog(0, "BAST fired for lockres %s, blocking %d, level %d type %s\n",
857 lockres
->l_name
, level
, lockres
->l_level
,
858 ocfs2_lock_type_string(lockres
->l_type
));
861 * We can skip the bast for locks which don't enable caching -
862 * they'll be dropped at the earliest possible time anyway.
864 if (lockres
->l_flags
& OCFS2_LOCK_NOCACHE
)
867 spin_lock_irqsave(&lockres
->l_lock
, flags
);
868 needs_downconvert
= ocfs2_generic_handle_bast(lockres
, level
);
869 if (needs_downconvert
)
870 ocfs2_schedule_blocked_lock(osb
, lockres
);
871 spin_unlock_irqrestore(&lockres
->l_lock
, flags
);
873 wake_up(&lockres
->l_event
);
875 ocfs2_wake_downconvert_thread(osb
);
878 static void ocfs2_locking_ast(void *opaque
)
880 struct ocfs2_lock_res
*lockres
= opaque
;
881 struct ocfs2_super
*osb
= ocfs2_get_lockres_osb(lockres
);
885 spin_lock_irqsave(&lockres
->l_lock
, flags
);
887 status
= ocfs2_dlm_lock_status(&lockres
->l_lksb
);
889 if (status
== -EAGAIN
) {
890 lockres_clear_flags(lockres
, OCFS2_LOCK_BUSY
);
895 mlog(ML_ERROR
, "lockres %s: lksb status value of %d!\n",
896 lockres
->l_name
, status
);
897 spin_unlock_irqrestore(&lockres
->l_lock
, flags
);
901 switch(lockres
->l_action
) {
902 case OCFS2_AST_ATTACH
:
903 ocfs2_generic_handle_attach_action(lockres
);
904 lockres_clear_flags(lockres
, OCFS2_LOCK_LOCAL
);
906 case OCFS2_AST_CONVERT
:
907 ocfs2_generic_handle_convert_action(lockres
);
909 case OCFS2_AST_DOWNCONVERT
:
910 ocfs2_generic_handle_downconvert_action(lockres
);
913 mlog(ML_ERROR
, "lockres %s: ast fired with invalid action: %u "
914 "lockres flags = 0x%lx, unlock action: %u\n",
915 lockres
->l_name
, lockres
->l_action
, lockres
->l_flags
,
916 lockres
->l_unlock_action
);
920 /* set it to something invalid so if we get called again we
922 lockres
->l_action
= OCFS2_AST_INVALID
;
924 /* Did we try to cancel this lock? Clear that state */
925 if (lockres
->l_unlock_action
== OCFS2_UNLOCK_CANCEL_CONVERT
)
926 lockres
->l_unlock_action
= OCFS2_UNLOCK_INVALID
;
929 * We may have beaten the locking functions here. We certainly
930 * know that dlm_lock() has been called :-)
931 * Because we can't have two lock calls in flight at once, we
932 * can use lockres->l_pending_gen.
934 __lockres_clear_pending(lockres
, lockres
->l_pending_gen
, osb
);
936 wake_up(&lockres
->l_event
);
937 spin_unlock_irqrestore(&lockres
->l_lock
, flags
);
940 static inline void ocfs2_recover_from_dlm_error(struct ocfs2_lock_res
*lockres
,
946 spin_lock_irqsave(&lockres
->l_lock
, flags
);
947 lockres_clear_flags(lockres
, OCFS2_LOCK_BUSY
);
949 lockres
->l_action
= OCFS2_AST_INVALID
;
951 lockres
->l_unlock_action
= OCFS2_UNLOCK_INVALID
;
952 spin_unlock_irqrestore(&lockres
->l_lock
, flags
);
954 wake_up(&lockres
->l_event
);
958 /* Note: If we detect another process working on the lock (i.e.,
959 * OCFS2_LOCK_BUSY), we'll bail out returning 0. It's up to the caller
960 * to do the right thing in that case.
962 static int ocfs2_lock_create(struct ocfs2_super
*osb
,
963 struct ocfs2_lock_res
*lockres
,
973 mlog(0, "lock %s, level = %d, flags = %u\n", lockres
->l_name
, level
,
976 spin_lock_irqsave(&lockres
->l_lock
, flags
);
977 if ((lockres
->l_flags
& OCFS2_LOCK_ATTACHED
) ||
978 (lockres
->l_flags
& OCFS2_LOCK_BUSY
)) {
979 spin_unlock_irqrestore(&lockres
->l_lock
, flags
);
983 lockres
->l_action
= OCFS2_AST_ATTACH
;
984 lockres
->l_requested
= level
;
985 lockres_or_flags(lockres
, OCFS2_LOCK_BUSY
);
986 gen
= lockres_set_pending(lockres
);
987 spin_unlock_irqrestore(&lockres
->l_lock
, flags
);
989 ret
= ocfs2_dlm_lock(osb
->cconn
,
994 OCFS2_LOCK_ID_MAX_LEN
- 1,
996 lockres_clear_pending(lockres
, gen
, osb
);
998 ocfs2_log_dlm_error("ocfs2_dlm_lock", ret
, lockres
);
999 ocfs2_recover_from_dlm_error(lockres
, 1);
1002 mlog(0, "lock %s, return from ocfs2_dlm_lock\n", lockres
->l_name
);
1009 static inline int ocfs2_check_wait_flag(struct ocfs2_lock_res
*lockres
,
1012 unsigned long flags
;
1015 spin_lock_irqsave(&lockres
->l_lock
, flags
);
1016 ret
= lockres
->l_flags
& flag
;
1017 spin_unlock_irqrestore(&lockres
->l_lock
, flags
);
1022 static inline void ocfs2_wait_on_busy_lock(struct ocfs2_lock_res
*lockres
)
1025 wait_event(lockres
->l_event
,
1026 !ocfs2_check_wait_flag(lockres
, OCFS2_LOCK_BUSY
));
1029 static inline void ocfs2_wait_on_refreshing_lock(struct ocfs2_lock_res
*lockres
)
1032 wait_event(lockres
->l_event
,
1033 !ocfs2_check_wait_flag(lockres
, OCFS2_LOCK_REFRESHING
));
1036 /* predict what lock level we'll be dropping down to on behalf
1037 * of another node, and return true if the currently wanted
1038 * level will be compatible with it. */
1039 static inline int ocfs2_may_continue_on_blocked_lock(struct ocfs2_lock_res
*lockres
,
1042 BUG_ON(!(lockres
->l_flags
& OCFS2_LOCK_BLOCKED
));
1044 return wanted
<= ocfs2_highest_compat_lock_level(lockres
->l_blocking
);
1047 static void ocfs2_init_mask_waiter(struct ocfs2_mask_waiter
*mw
)
1049 INIT_LIST_HEAD(&mw
->mw_item
);
1050 init_completion(&mw
->mw_complete
);
1053 static int ocfs2_wait_for_mask(struct ocfs2_mask_waiter
*mw
)
1055 wait_for_completion(&mw
->mw_complete
);
1056 /* Re-arm the completion in case we want to wait on it again */
1057 INIT_COMPLETION(mw
->mw_complete
);
1058 return mw
->mw_status
;
1061 static void lockres_add_mask_waiter(struct ocfs2_lock_res
*lockres
,
1062 struct ocfs2_mask_waiter
*mw
,
1066 BUG_ON(!list_empty(&mw
->mw_item
));
1068 assert_spin_locked(&lockres
->l_lock
);
1070 list_add_tail(&mw
->mw_item
, &lockres
->l_mask_waiters
);
1075 /* returns 0 if the mw that was removed was already satisfied, -EBUSY
1076 * if the mask still hadn't reached its goal */
1077 static int lockres_remove_mask_waiter(struct ocfs2_lock_res
*lockres
,
1078 struct ocfs2_mask_waiter
*mw
)
1080 unsigned long flags
;
1083 spin_lock_irqsave(&lockres
->l_lock
, flags
);
1084 if (!list_empty(&mw
->mw_item
)) {
1085 if ((lockres
->l_flags
& mw
->mw_mask
) != mw
->mw_goal
)
1088 list_del_init(&mw
->mw_item
);
1089 init_completion(&mw
->mw_complete
);
1091 spin_unlock_irqrestore(&lockres
->l_lock
, flags
);
1097 static int ocfs2_wait_for_mask_interruptible(struct ocfs2_mask_waiter
*mw
,
1098 struct ocfs2_lock_res
*lockres
)
1102 ret
= wait_for_completion_interruptible(&mw
->mw_complete
);
1104 lockres_remove_mask_waiter(lockres
, mw
);
1106 ret
= mw
->mw_status
;
1107 /* Re-arm the completion in case we want to wait on it again */
1108 INIT_COMPLETION(mw
->mw_complete
);
1112 static int ocfs2_cluster_lock(struct ocfs2_super
*osb
,
1113 struct ocfs2_lock_res
*lockres
,
1118 struct ocfs2_mask_waiter mw
;
1119 int wait
, catch_signals
= !(osb
->s_mount_opt
& OCFS2_MOUNT_NOINTR
);
1120 int ret
= 0; /* gcc doesn't realize wait = 1 guarantees ret is set */
1121 unsigned long flags
;
1123 int noqueue_attempted
= 0;
1127 ocfs2_init_mask_waiter(&mw
);
1129 if (lockres
->l_ops
->flags
& LOCK_TYPE_USES_LVB
)
1130 lkm_flags
|= DLM_LKF_VALBLK
;
1135 if (catch_signals
&& signal_pending(current
)) {
1140 spin_lock_irqsave(&lockres
->l_lock
, flags
);
1142 mlog_bug_on_msg(lockres
->l_flags
& OCFS2_LOCK_FREEING
,
1143 "Cluster lock called on freeing lockres %s! flags "
1144 "0x%lx\n", lockres
->l_name
, lockres
->l_flags
);
1146 /* We only compare against the currently granted level
1147 * here. If the lock is blocked waiting on a downconvert,
1148 * we'll get caught below. */
1149 if (lockres
->l_flags
& OCFS2_LOCK_BUSY
&&
1150 level
> lockres
->l_level
) {
1151 /* is someone sitting in dlm_lock? If so, wait on
1153 lockres_add_mask_waiter(lockres
, &mw
, OCFS2_LOCK_BUSY
, 0);
1158 if (lockres
->l_flags
& OCFS2_LOCK_BLOCKED
&&
1159 !ocfs2_may_continue_on_blocked_lock(lockres
, level
)) {
1160 /* is the lock is currently blocked on behalf of
1162 lockres_add_mask_waiter(lockres
, &mw
, OCFS2_LOCK_BLOCKED
, 0);
1167 if (level
> lockres
->l_level
) {
1168 if (noqueue_attempted
> 0) {
1172 if (lkm_flags
& DLM_LKF_NOQUEUE
)
1173 noqueue_attempted
= 1;
1175 if (lockres
->l_action
!= OCFS2_AST_INVALID
)
1176 mlog(ML_ERROR
, "lockres %s has action %u pending\n",
1177 lockres
->l_name
, lockres
->l_action
);
1179 if (!(lockres
->l_flags
& OCFS2_LOCK_ATTACHED
)) {
1180 lockres
->l_action
= OCFS2_AST_ATTACH
;
1181 lkm_flags
&= ~DLM_LKF_CONVERT
;
1183 lockres
->l_action
= OCFS2_AST_CONVERT
;
1184 lkm_flags
|= DLM_LKF_CONVERT
;
1187 lockres
->l_requested
= level
;
1188 lockres_or_flags(lockres
, OCFS2_LOCK_BUSY
);
1189 gen
= lockres_set_pending(lockres
);
1190 spin_unlock_irqrestore(&lockres
->l_lock
, flags
);
1192 BUG_ON(level
== DLM_LOCK_IV
);
1193 BUG_ON(level
== DLM_LOCK_NL
);
1195 mlog(0, "lock %s, convert from %d to level = %d\n",
1196 lockres
->l_name
, lockres
->l_level
, level
);
1198 /* call dlm_lock to upgrade lock now */
1199 ret
= ocfs2_dlm_lock(osb
->cconn
,
1204 OCFS2_LOCK_ID_MAX_LEN
- 1,
1206 lockres_clear_pending(lockres
, gen
, osb
);
1208 if (!(lkm_flags
& DLM_LKF_NOQUEUE
) ||
1210 ocfs2_log_dlm_error("ocfs2_dlm_lock",
1213 ocfs2_recover_from_dlm_error(lockres
, 1);
1217 mlog(0, "lock %s, successfull return from ocfs2_dlm_lock\n",
1220 /* At this point we've gone inside the dlm and need to
1221 * complete our work regardless. */
1224 /* wait for busy to clear and carry on */
1228 /* Ok, if we get here then we're good to go. */
1229 ocfs2_inc_holders(lockres
, level
);
1233 spin_unlock_irqrestore(&lockres
->l_lock
, flags
);
1236 * This is helping work around a lock inversion between the page lock
1237 * and dlm locks. One path holds the page lock while calling aops
1238 * which block acquiring dlm locks. The voting thread holds dlm
1239 * locks while acquiring page locks while down converting data locks.
1240 * This block is helping an aop path notice the inversion and back
1241 * off to unlock its page lock before trying the dlm lock again.
1243 if (wait
&& arg_flags
& OCFS2_LOCK_NONBLOCK
&&
1244 mw
.mw_mask
& (OCFS2_LOCK_BUSY
|OCFS2_LOCK_BLOCKED
)) {
1246 if (lockres_remove_mask_waiter(lockres
, &mw
))
1252 ret
= ocfs2_wait_for_mask(&mw
);
1262 static void ocfs2_cluster_unlock(struct ocfs2_super
*osb
,
1263 struct ocfs2_lock_res
*lockres
,
1266 unsigned long flags
;
1269 spin_lock_irqsave(&lockres
->l_lock
, flags
);
1270 ocfs2_dec_holders(lockres
, level
);
1271 ocfs2_downconvert_on_unlock(osb
, lockres
);
1272 spin_unlock_irqrestore(&lockres
->l_lock
, flags
);
1276 static int ocfs2_create_new_lock(struct ocfs2_super
*osb
,
1277 struct ocfs2_lock_res
*lockres
,
1281 int level
= ex
? DLM_LOCK_EX
: DLM_LOCK_PR
;
1282 unsigned long flags
;
1283 u32 lkm_flags
= local
? DLM_LKF_LOCAL
: 0;
1285 spin_lock_irqsave(&lockres
->l_lock
, flags
);
1286 BUG_ON(lockres
->l_flags
& OCFS2_LOCK_ATTACHED
);
1287 lockres_or_flags(lockres
, OCFS2_LOCK_LOCAL
);
1288 spin_unlock_irqrestore(&lockres
->l_lock
, flags
);
1290 return ocfs2_lock_create(osb
, lockres
, level
, lkm_flags
);
1293 /* Grants us an EX lock on the data and metadata resources, skipping
1294 * the normal cluster directory lookup. Use this ONLY on newly created
1295 * inodes which other nodes can't possibly see, and which haven't been
1296 * hashed in the inode hash yet. This can give us a good performance
1297 * increase as it'll skip the network broadcast normally associated
1298 * with creating a new lock resource. */
1299 int ocfs2_create_new_inode_locks(struct inode
*inode
)
1302 struct ocfs2_super
*osb
= OCFS2_SB(inode
->i_sb
);
1305 BUG_ON(!ocfs2_inode_is_new(inode
));
1309 mlog(0, "Inode %llu\n", (unsigned long long)OCFS2_I(inode
)->ip_blkno
);
1311 /* NOTE: That we don't increment any of the holder counts, nor
1312 * do we add anything to a journal handle. Since this is
1313 * supposed to be a new inode which the cluster doesn't know
1314 * about yet, there is no need to. As far as the LVB handling
1315 * is concerned, this is basically like acquiring an EX lock
1316 * on a resource which has an invalid one -- we'll set it
1317 * valid when we release the EX. */
1319 ret
= ocfs2_create_new_lock(osb
, &OCFS2_I(inode
)->ip_rw_lockres
, 1, 1);
1326 * We don't want to use DLM_LKF_LOCAL on a meta data lock as they
1327 * don't use a generation in their lock names.
1329 ret
= ocfs2_create_new_lock(osb
, &OCFS2_I(inode
)->ip_inode_lockres
, 1, 0);
1335 ret
= ocfs2_create_new_lock(osb
, &OCFS2_I(inode
)->ip_open_lockres
, 0, 0);
1346 int ocfs2_rw_lock(struct inode
*inode
, int write
)
1349 struct ocfs2_lock_res
*lockres
;
1350 struct ocfs2_super
*osb
= OCFS2_SB(inode
->i_sb
);
1356 mlog(0, "inode %llu take %s RW lock\n",
1357 (unsigned long long)OCFS2_I(inode
)->ip_blkno
,
1358 write
? "EXMODE" : "PRMODE");
1360 if (ocfs2_mount_local(osb
))
1363 lockres
= &OCFS2_I(inode
)->ip_rw_lockres
;
1365 level
= write
? DLM_LOCK_EX
: DLM_LOCK_PR
;
1367 status
= ocfs2_cluster_lock(OCFS2_SB(inode
->i_sb
), lockres
, level
, 0,
1376 void ocfs2_rw_unlock(struct inode
*inode
, int write
)
1378 int level
= write
? DLM_LOCK_EX
: DLM_LOCK_PR
;
1379 struct ocfs2_lock_res
*lockres
= &OCFS2_I(inode
)->ip_rw_lockres
;
1380 struct ocfs2_super
*osb
= OCFS2_SB(inode
->i_sb
);
1384 mlog(0, "inode %llu drop %s RW lock\n",
1385 (unsigned long long)OCFS2_I(inode
)->ip_blkno
,
1386 write
? "EXMODE" : "PRMODE");
1388 if (!ocfs2_mount_local(osb
))
1389 ocfs2_cluster_unlock(OCFS2_SB(inode
->i_sb
), lockres
, level
);
1395 * ocfs2_open_lock always get PR mode lock.
1397 int ocfs2_open_lock(struct inode
*inode
)
1400 struct ocfs2_lock_res
*lockres
;
1401 struct ocfs2_super
*osb
= OCFS2_SB(inode
->i_sb
);
1407 mlog(0, "inode %llu take PRMODE open lock\n",
1408 (unsigned long long)OCFS2_I(inode
)->ip_blkno
);
1410 if (ocfs2_mount_local(osb
))
1413 lockres
= &OCFS2_I(inode
)->ip_open_lockres
;
1415 status
= ocfs2_cluster_lock(OCFS2_SB(inode
->i_sb
), lockres
,
1425 int ocfs2_try_open_lock(struct inode
*inode
, int write
)
1427 int status
= 0, level
;
1428 struct ocfs2_lock_res
*lockres
;
1429 struct ocfs2_super
*osb
= OCFS2_SB(inode
->i_sb
);
1435 mlog(0, "inode %llu try to take %s open lock\n",
1436 (unsigned long long)OCFS2_I(inode
)->ip_blkno
,
1437 write
? "EXMODE" : "PRMODE");
1439 if (ocfs2_mount_local(osb
))
1442 lockres
= &OCFS2_I(inode
)->ip_open_lockres
;
1444 level
= write
? DLM_LOCK_EX
: DLM_LOCK_PR
;
1447 * The file system may already holding a PRMODE/EXMODE open lock.
1448 * Since we pass DLM_LKF_NOQUEUE, the request won't block waiting on
1449 * other nodes and the -EAGAIN will indicate to the caller that
1450 * this inode is still in use.
1452 status
= ocfs2_cluster_lock(OCFS2_SB(inode
->i_sb
), lockres
,
1453 level
, DLM_LKF_NOQUEUE
, 0);
1461 * ocfs2_open_unlock unlock PR and EX mode open locks.
1463 void ocfs2_open_unlock(struct inode
*inode
)
1465 struct ocfs2_lock_res
*lockres
= &OCFS2_I(inode
)->ip_open_lockres
;
1466 struct ocfs2_super
*osb
= OCFS2_SB(inode
->i_sb
);
1470 mlog(0, "inode %llu drop open lock\n",
1471 (unsigned long long)OCFS2_I(inode
)->ip_blkno
);
1473 if (ocfs2_mount_local(osb
))
1476 if(lockres
->l_ro_holders
)
1477 ocfs2_cluster_unlock(OCFS2_SB(inode
->i_sb
), lockres
,
1479 if(lockres
->l_ex_holders
)
1480 ocfs2_cluster_unlock(OCFS2_SB(inode
->i_sb
), lockres
,
1487 static int ocfs2_flock_handle_signal(struct ocfs2_lock_res
*lockres
,
1491 struct ocfs2_super
*osb
= ocfs2_get_lockres_osb(lockres
);
1492 unsigned long flags
;
1493 struct ocfs2_mask_waiter mw
;
1495 ocfs2_init_mask_waiter(&mw
);
1498 spin_lock_irqsave(&lockres
->l_lock
, flags
);
1499 if (lockres
->l_flags
& OCFS2_LOCK_BUSY
) {
1500 ret
= ocfs2_prepare_cancel_convert(osb
, lockres
);
1502 spin_unlock_irqrestore(&lockres
->l_lock
, flags
);
1503 ret
= ocfs2_cancel_convert(osb
, lockres
);
1510 lockres_add_mask_waiter(lockres
, &mw
, OCFS2_LOCK_BUSY
, 0);
1511 spin_unlock_irqrestore(&lockres
->l_lock
, flags
);
1513 ocfs2_wait_for_mask(&mw
);
1519 * We may still have gotten the lock, in which case there's no
1520 * point to restarting the syscall.
1522 if (lockres
->l_level
== level
)
1525 mlog(0, "Cancel returning %d. flags: 0x%lx, level: %d, act: %d\n", ret
,
1526 lockres
->l_flags
, lockres
->l_level
, lockres
->l_action
);
1528 spin_unlock_irqrestore(&lockres
->l_lock
, flags
);
1535 * ocfs2_file_lock() and ocfs2_file_unlock() map to a single pair of
1536 * flock() calls. The locking approach this requires is sufficiently
1537 * different from all other cluster lock types that we implement a
1538 * seperate path to the "low-level" dlm calls. In particular:
1540 * - No optimization of lock levels is done - we take at exactly
1541 * what's been requested.
1543 * - No lock caching is employed. We immediately downconvert to
1544 * no-lock at unlock time. This also means flock locks never go on
1545 * the blocking list).
1547 * - Since userspace can trivially deadlock itself with flock, we make
1548 * sure to allow cancellation of a misbehaving applications flock()
1551 * - Access to any flock lockres doesn't require concurrency, so we
1552 * can simplify the code by requiring the caller to guarantee
1553 * serialization of dlmglue flock calls.
1555 int ocfs2_file_lock(struct file
*file
, int ex
, int trylock
)
1557 int ret
, level
= ex
? LKM_EXMODE
: LKM_PRMODE
;
1558 unsigned int lkm_flags
= trylock
? LKM_NOQUEUE
: 0;
1559 unsigned long flags
;
1560 struct ocfs2_file_private
*fp
= file
->private_data
;
1561 struct ocfs2_lock_res
*lockres
= &fp
->fp_flock
;
1562 struct ocfs2_super
*osb
= OCFS2_SB(file
->f_mapping
->host
->i_sb
);
1563 struct ocfs2_mask_waiter mw
;
1565 ocfs2_init_mask_waiter(&mw
);
1567 if ((lockres
->l_flags
& OCFS2_LOCK_BUSY
) ||
1568 (lockres
->l_level
> DLM_LOCK_NL
)) {
1570 "File lock \"%s\" has busy or locked state: flags: 0x%lx, "
1571 "level: %u\n", lockres
->l_name
, lockres
->l_flags
,
1576 spin_lock_irqsave(&lockres
->l_lock
, flags
);
1577 if (!(lockres
->l_flags
& OCFS2_LOCK_ATTACHED
)) {
1578 lockres_add_mask_waiter(lockres
, &mw
, OCFS2_LOCK_BUSY
, 0);
1579 spin_unlock_irqrestore(&lockres
->l_lock
, flags
);
1582 * Get the lock at NLMODE to start - that way we
1583 * can cancel the upconvert request if need be.
1585 ret
= ocfs2_lock_create(osb
, lockres
, LKM_NLMODE
, 0);
1591 ret
= ocfs2_wait_for_mask(&mw
);
1596 spin_lock_irqsave(&lockres
->l_lock
, flags
);
1599 lockres
->l_action
= OCFS2_AST_CONVERT
;
1600 lkm_flags
|= LKM_CONVERT
;
1601 lockres
->l_requested
= level
;
1602 lockres_or_flags(lockres
, OCFS2_LOCK_BUSY
);
1604 lockres_add_mask_waiter(lockres
, &mw
, OCFS2_LOCK_BUSY
, 0);
1605 spin_unlock_irqrestore(&lockres
->l_lock
, flags
);
1607 ret
= ocfs2_dlm_lock(osb
->cconn
, level
, &lockres
->l_lksb
, lkm_flags
,
1608 lockres
->l_name
, OCFS2_LOCK_ID_MAX_LEN
- 1,
1611 if (!trylock
|| (ret
!= -EAGAIN
)) {
1612 ocfs2_log_dlm_error("ocfs2_dlm_lock", ret
, lockres
);
1616 ocfs2_recover_from_dlm_error(lockres
, 1);
1617 lockres_remove_mask_waiter(lockres
, &mw
);
1621 ret
= ocfs2_wait_for_mask_interruptible(&mw
, lockres
);
1622 if (ret
== -ERESTARTSYS
) {
1624 * Userspace can cause deadlock itself with
1625 * flock(). Current behavior locally is to allow the
1626 * deadlock, but abort the system call if a signal is
1627 * received. We follow this example, otherwise a
1628 * poorly written program could sit in kernel until
1631 * Handling this is a bit more complicated for Ocfs2
1632 * though. We can't exit this function with an
1633 * outstanding lock request, so a cancel convert is
1634 * required. We intentionally overwrite 'ret' - if the
1635 * cancel fails and the lock was granted, it's easier
1636 * to just bubble sucess back up to the user.
1638 ret
= ocfs2_flock_handle_signal(lockres
, level
);
1639 } else if (!ret
&& (level
> lockres
->l_level
)) {
1640 /* Trylock failed asynchronously */
1647 mlog(0, "Lock: \"%s\" ex: %d, trylock: %d, returns: %d\n",
1648 lockres
->l_name
, ex
, trylock
, ret
);
1652 void ocfs2_file_unlock(struct file
*file
)
1656 unsigned long flags
;
1657 struct ocfs2_file_private
*fp
= file
->private_data
;
1658 struct ocfs2_lock_res
*lockres
= &fp
->fp_flock
;
1659 struct ocfs2_super
*osb
= OCFS2_SB(file
->f_mapping
->host
->i_sb
);
1660 struct ocfs2_mask_waiter mw
;
1662 ocfs2_init_mask_waiter(&mw
);
1664 if (!(lockres
->l_flags
& OCFS2_LOCK_ATTACHED
))
1667 if (lockres
->l_level
== LKM_NLMODE
)
1670 mlog(0, "Unlock: \"%s\" flags: 0x%lx, level: %d, act: %d\n",
1671 lockres
->l_name
, lockres
->l_flags
, lockres
->l_level
,
1674 spin_lock_irqsave(&lockres
->l_lock
, flags
);
1676 * Fake a blocking ast for the downconvert code.
1678 lockres_or_flags(lockres
, OCFS2_LOCK_BLOCKED
);
1679 lockres
->l_blocking
= DLM_LOCK_EX
;
1681 gen
= ocfs2_prepare_downconvert(lockres
, LKM_NLMODE
);
1682 lockres_add_mask_waiter(lockres
, &mw
, OCFS2_LOCK_BUSY
, 0);
1683 spin_unlock_irqrestore(&lockres
->l_lock
, flags
);
1685 ret
= ocfs2_downconvert_lock(osb
, lockres
, LKM_NLMODE
, 0, gen
);
1691 ret
= ocfs2_wait_for_mask(&mw
);
1696 static void ocfs2_downconvert_on_unlock(struct ocfs2_super
*osb
,
1697 struct ocfs2_lock_res
*lockres
)
1703 /* If we know that another node is waiting on our lock, kick
1704 * the downconvert thread * pre-emptively when we reach a release
1706 if (lockres
->l_flags
& OCFS2_LOCK_BLOCKED
) {
1707 switch(lockres
->l_blocking
) {
1709 if (!lockres
->l_ex_holders
&& !lockres
->l_ro_holders
)
1713 if (!lockres
->l_ex_holders
)
1722 ocfs2_wake_downconvert_thread(osb
);
1727 #define OCFS2_SEC_BITS 34
1728 #define OCFS2_SEC_SHIFT (64 - 34)
1729 #define OCFS2_NSEC_MASK ((1ULL << OCFS2_SEC_SHIFT) - 1)
1731 /* LVB only has room for 64 bits of time here so we pack it for
1733 static u64
ocfs2_pack_timespec(struct timespec
*spec
)
1736 u64 sec
= spec
->tv_sec
;
1737 u32 nsec
= spec
->tv_nsec
;
1739 res
= (sec
<< OCFS2_SEC_SHIFT
) | (nsec
& OCFS2_NSEC_MASK
);
1744 /* Call this with the lockres locked. I am reasonably sure we don't
1745 * need ip_lock in this function as anyone who would be changing those
1746 * values is supposed to be blocked in ocfs2_inode_lock right now. */
1747 static void __ocfs2_stuff_meta_lvb(struct inode
*inode
)
1749 struct ocfs2_inode_info
*oi
= OCFS2_I(inode
);
1750 struct ocfs2_lock_res
*lockres
= &oi
->ip_inode_lockres
;
1751 struct ocfs2_meta_lvb
*lvb
;
1755 lvb
= (struct ocfs2_meta_lvb
*)ocfs2_dlm_lvb(&lockres
->l_lksb
);
1758 * Invalidate the LVB of a deleted inode - this way other
1759 * nodes are forced to go to disk and discover the new inode
1762 if (oi
->ip_flags
& OCFS2_INODE_DELETED
) {
1763 lvb
->lvb_version
= 0;
1767 lvb
->lvb_version
= OCFS2_LVB_VERSION
;
1768 lvb
->lvb_isize
= cpu_to_be64(i_size_read(inode
));
1769 lvb
->lvb_iclusters
= cpu_to_be32(oi
->ip_clusters
);
1770 lvb
->lvb_iuid
= cpu_to_be32(inode
->i_uid
);
1771 lvb
->lvb_igid
= cpu_to_be32(inode
->i_gid
);
1772 lvb
->lvb_imode
= cpu_to_be16(inode
->i_mode
);
1773 lvb
->lvb_inlink
= cpu_to_be16(inode
->i_nlink
);
1774 lvb
->lvb_iatime_packed
=
1775 cpu_to_be64(ocfs2_pack_timespec(&inode
->i_atime
));
1776 lvb
->lvb_ictime_packed
=
1777 cpu_to_be64(ocfs2_pack_timespec(&inode
->i_ctime
));
1778 lvb
->lvb_imtime_packed
=
1779 cpu_to_be64(ocfs2_pack_timespec(&inode
->i_mtime
));
1780 lvb
->lvb_iattr
= cpu_to_be32(oi
->ip_attr
);
1781 lvb
->lvb_idynfeatures
= cpu_to_be16(oi
->ip_dyn_features
);
1782 lvb
->lvb_igeneration
= cpu_to_be32(inode
->i_generation
);
1785 mlog_meta_lvb(0, lockres
);
1790 static void ocfs2_unpack_timespec(struct timespec
*spec
,
1793 spec
->tv_sec
= packed_time
>> OCFS2_SEC_SHIFT
;
1794 spec
->tv_nsec
= packed_time
& OCFS2_NSEC_MASK
;
1797 static void ocfs2_refresh_inode_from_lvb(struct inode
*inode
)
1799 struct ocfs2_inode_info
*oi
= OCFS2_I(inode
);
1800 struct ocfs2_lock_res
*lockres
= &oi
->ip_inode_lockres
;
1801 struct ocfs2_meta_lvb
*lvb
;
1805 mlog_meta_lvb(0, lockres
);
1807 lvb
= (struct ocfs2_meta_lvb
*)ocfs2_dlm_lvb(&lockres
->l_lksb
);
1809 /* We're safe here without the lockres lock... */
1810 spin_lock(&oi
->ip_lock
);
1811 oi
->ip_clusters
= be32_to_cpu(lvb
->lvb_iclusters
);
1812 i_size_write(inode
, be64_to_cpu(lvb
->lvb_isize
));
1814 oi
->ip_attr
= be32_to_cpu(lvb
->lvb_iattr
);
1815 oi
->ip_dyn_features
= be16_to_cpu(lvb
->lvb_idynfeatures
);
1816 ocfs2_set_inode_flags(inode
);
1818 /* fast-symlinks are a special case */
1819 if (S_ISLNK(inode
->i_mode
) && !oi
->ip_clusters
)
1820 inode
->i_blocks
= 0;
1822 inode
->i_blocks
= ocfs2_inode_sector_count(inode
);
1824 inode
->i_uid
= be32_to_cpu(lvb
->lvb_iuid
);
1825 inode
->i_gid
= be32_to_cpu(lvb
->lvb_igid
);
1826 inode
->i_mode
= be16_to_cpu(lvb
->lvb_imode
);
1827 inode
->i_nlink
= be16_to_cpu(lvb
->lvb_inlink
);
1828 ocfs2_unpack_timespec(&inode
->i_atime
,
1829 be64_to_cpu(lvb
->lvb_iatime_packed
));
1830 ocfs2_unpack_timespec(&inode
->i_mtime
,
1831 be64_to_cpu(lvb
->lvb_imtime_packed
));
1832 ocfs2_unpack_timespec(&inode
->i_ctime
,
1833 be64_to_cpu(lvb
->lvb_ictime_packed
));
1834 spin_unlock(&oi
->ip_lock
);
1839 static inline int ocfs2_meta_lvb_is_trustable(struct inode
*inode
,
1840 struct ocfs2_lock_res
*lockres
)
1842 struct ocfs2_meta_lvb
*lvb
=
1843 (struct ocfs2_meta_lvb
*)ocfs2_dlm_lvb(&lockres
->l_lksb
);
1845 if (lvb
->lvb_version
== OCFS2_LVB_VERSION
1846 && be32_to_cpu(lvb
->lvb_igeneration
) == inode
->i_generation
)
1851 /* Determine whether a lock resource needs to be refreshed, and
1852 * arbitrate who gets to refresh it.
1854 * 0 means no refresh needed.
1856 * > 0 means you need to refresh this and you MUST call
1857 * ocfs2_complete_lock_res_refresh afterwards. */
1858 static int ocfs2_should_refresh_lock_res(struct ocfs2_lock_res
*lockres
)
1860 unsigned long flags
;
1866 spin_lock_irqsave(&lockres
->l_lock
, flags
);
1867 if (!(lockres
->l_flags
& OCFS2_LOCK_NEEDS_REFRESH
)) {
1868 spin_unlock_irqrestore(&lockres
->l_lock
, flags
);
1872 if (lockres
->l_flags
& OCFS2_LOCK_REFRESHING
) {
1873 spin_unlock_irqrestore(&lockres
->l_lock
, flags
);
1875 ocfs2_wait_on_refreshing_lock(lockres
);
1879 /* Ok, I'll be the one to refresh this lock. */
1880 lockres_or_flags(lockres
, OCFS2_LOCK_REFRESHING
);
1881 spin_unlock_irqrestore(&lockres
->l_lock
, flags
);
1889 /* If status is non zero, I'll mark it as not being in refresh
1890 * anymroe, but i won't clear the needs refresh flag. */
1891 static inline void ocfs2_complete_lock_res_refresh(struct ocfs2_lock_res
*lockres
,
1894 unsigned long flags
;
1897 spin_lock_irqsave(&lockres
->l_lock
, flags
);
1898 lockres_clear_flags(lockres
, OCFS2_LOCK_REFRESHING
);
1900 lockres_clear_flags(lockres
, OCFS2_LOCK_NEEDS_REFRESH
);
1901 spin_unlock_irqrestore(&lockres
->l_lock
, flags
);
1903 wake_up(&lockres
->l_event
);
1908 /* may or may not return a bh if it went to disk. */
1909 static int ocfs2_inode_lock_update(struct inode
*inode
,
1910 struct buffer_head
**bh
)
1913 struct ocfs2_inode_info
*oi
= OCFS2_I(inode
);
1914 struct ocfs2_lock_res
*lockres
= &oi
->ip_inode_lockres
;
1915 struct ocfs2_dinode
*fe
;
1916 struct ocfs2_super
*osb
= OCFS2_SB(inode
->i_sb
);
1920 if (ocfs2_mount_local(osb
))
1923 spin_lock(&oi
->ip_lock
);
1924 if (oi
->ip_flags
& OCFS2_INODE_DELETED
) {
1925 mlog(0, "Orphaned inode %llu was deleted while we "
1926 "were waiting on a lock. ip_flags = 0x%x\n",
1927 (unsigned long long)oi
->ip_blkno
, oi
->ip_flags
);
1928 spin_unlock(&oi
->ip_lock
);
1932 spin_unlock(&oi
->ip_lock
);
1934 if (!ocfs2_should_refresh_lock_res(lockres
))
1937 /* This will discard any caching information we might have had
1938 * for the inode metadata. */
1939 ocfs2_metadata_cache_purge(inode
);
1941 ocfs2_extent_map_trunc(inode
, 0);
1943 if (ocfs2_meta_lvb_is_trustable(inode
, lockres
)) {
1944 mlog(0, "Trusting LVB on inode %llu\n",
1945 (unsigned long long)oi
->ip_blkno
);
1946 ocfs2_refresh_inode_from_lvb(inode
);
1948 /* Boo, we have to go to disk. */
1949 /* read bh, cast, ocfs2_refresh_inode */
1950 status
= ocfs2_read_block(OCFS2_SB(inode
->i_sb
), oi
->ip_blkno
,
1951 bh
, OCFS2_BH_CACHED
, inode
);
1956 fe
= (struct ocfs2_dinode
*) (*bh
)->b_data
;
1958 /* This is a good chance to make sure we're not
1959 * locking an invalid object.
1961 * We bug on a stale inode here because we checked
1962 * above whether it was wiped from disk. The wiping
1963 * node provides a guarantee that we receive that
1964 * message and can mark the inode before dropping any
1965 * locks associated with it. */
1966 if (!OCFS2_IS_VALID_DINODE(fe
)) {
1967 OCFS2_RO_ON_INVALID_DINODE(inode
->i_sb
, fe
);
1971 mlog_bug_on_msg(inode
->i_generation
!=
1972 le32_to_cpu(fe
->i_generation
),
1973 "Invalid dinode %llu disk generation: %u "
1974 "inode->i_generation: %u\n",
1975 (unsigned long long)oi
->ip_blkno
,
1976 le32_to_cpu(fe
->i_generation
),
1977 inode
->i_generation
);
1978 mlog_bug_on_msg(le64_to_cpu(fe
->i_dtime
) ||
1979 !(fe
->i_flags
& cpu_to_le32(OCFS2_VALID_FL
)),
1980 "Stale dinode %llu dtime: %llu flags: 0x%x\n",
1981 (unsigned long long)oi
->ip_blkno
,
1982 (unsigned long long)le64_to_cpu(fe
->i_dtime
),
1983 le32_to_cpu(fe
->i_flags
));
1985 ocfs2_refresh_inode(inode
, fe
);
1990 ocfs2_complete_lock_res_refresh(lockres
, status
);
1996 static int ocfs2_assign_bh(struct inode
*inode
,
1997 struct buffer_head
**ret_bh
,
1998 struct buffer_head
*passed_bh
)
2003 /* Ok, the update went to disk for us, use the
2005 *ret_bh
= passed_bh
;
2011 status
= ocfs2_read_block(OCFS2_SB(inode
->i_sb
),
2012 OCFS2_I(inode
)->ip_blkno
,
2023 * returns < 0 error if the callback will never be called, otherwise
2024 * the result of the lock will be communicated via the callback.
2026 int ocfs2_inode_lock_full(struct inode
*inode
,
2027 struct buffer_head
**ret_bh
,
2031 int status
, level
, acquired
;
2033 struct ocfs2_lock_res
*lockres
= NULL
;
2034 struct ocfs2_super
*osb
= OCFS2_SB(inode
->i_sb
);
2035 struct buffer_head
*local_bh
= NULL
;
2041 mlog(0, "inode %llu, take %s META lock\n",
2042 (unsigned long long)OCFS2_I(inode
)->ip_blkno
,
2043 ex
? "EXMODE" : "PRMODE");
2047 /* We'll allow faking a readonly metadata lock for
2049 if (ocfs2_is_hard_readonly(osb
)) {
2055 if (ocfs2_mount_local(osb
))
2058 if (!(arg_flags
& OCFS2_META_LOCK_RECOVERY
))
2059 ocfs2_wait_for_recovery(osb
);
2061 lockres
= &OCFS2_I(inode
)->ip_inode_lockres
;
2062 level
= ex
? DLM_LOCK_EX
: DLM_LOCK_PR
;
2064 if (arg_flags
& OCFS2_META_LOCK_NOQUEUE
)
2065 dlm_flags
|= DLM_LKF_NOQUEUE
;
2067 status
= ocfs2_cluster_lock(osb
, lockres
, level
, dlm_flags
, arg_flags
);
2069 if (status
!= -EAGAIN
&& status
!= -EIOCBRETRY
)
2074 /* Notify the error cleanup path to drop the cluster lock. */
2077 /* We wait twice because a node may have died while we were in
2078 * the lower dlm layers. The second time though, we've
2079 * committed to owning this lock so we don't allow signals to
2080 * abort the operation. */
2081 if (!(arg_flags
& OCFS2_META_LOCK_RECOVERY
))
2082 ocfs2_wait_for_recovery(osb
);
2086 * We only see this flag if we're being called from
2087 * ocfs2_read_locked_inode(). It means we're locking an inode
2088 * which hasn't been populated yet, so clear the refresh flag
2089 * and let the caller handle it.
2091 if (inode
->i_state
& I_NEW
) {
2094 ocfs2_complete_lock_res_refresh(lockres
, 0);
2098 /* This is fun. The caller may want a bh back, or it may
2099 * not. ocfs2_inode_lock_update definitely wants one in, but
2100 * may or may not read one, depending on what's in the
2101 * LVB. The result of all of this is that we've *only* gone to
2102 * disk if we have to, so the complexity is worthwhile. */
2103 status
= ocfs2_inode_lock_update(inode
, &local_bh
);
2105 if (status
!= -ENOENT
)
2111 status
= ocfs2_assign_bh(inode
, ret_bh
, local_bh
);
2120 if (ret_bh
&& (*ret_bh
)) {
2125 ocfs2_inode_unlock(inode
, ex
);
2136 * This is working around a lock inversion between tasks acquiring DLM
2137 * locks while holding a page lock and the downconvert thread which
2138 * blocks dlm lock acquiry while acquiring page locks.
2140 * ** These _with_page variantes are only intended to be called from aop
2141 * methods that hold page locks and return a very specific *positive* error
2142 * code that aop methods pass up to the VFS -- test for errors with != 0. **
2144 * The DLM is called such that it returns -EAGAIN if it would have
2145 * blocked waiting for the downconvert thread. In that case we unlock
2146 * our page so the downconvert thread can make progress. Once we've
2147 * done this we have to return AOP_TRUNCATED_PAGE so the aop method
2148 * that called us can bubble that back up into the VFS who will then
2149 * immediately retry the aop call.
2151 * We do a blocking lock and immediate unlock before returning, though, so that
2152 * the lock has a great chance of being cached on this node by the time the VFS
2153 * calls back to retry the aop. This has a potential to livelock as nodes
2154 * ping locks back and forth, but that's a risk we're willing to take to avoid
2155 * the lock inversion simply.
2157 int ocfs2_inode_lock_with_page(struct inode
*inode
,
2158 struct buffer_head
**ret_bh
,
2164 ret
= ocfs2_inode_lock_full(inode
, ret_bh
, ex
, OCFS2_LOCK_NONBLOCK
);
2165 if (ret
== -EAGAIN
) {
2167 if (ocfs2_inode_lock(inode
, ret_bh
, ex
) == 0)
2168 ocfs2_inode_unlock(inode
, ex
);
2169 ret
= AOP_TRUNCATED_PAGE
;
2175 int ocfs2_inode_lock_atime(struct inode
*inode
,
2176 struct vfsmount
*vfsmnt
,
2182 ret
= ocfs2_inode_lock(inode
, NULL
, 0);
2189 * If we should update atime, we will get EX lock,
2190 * otherwise we just get PR lock.
2192 if (ocfs2_should_update_atime(inode
, vfsmnt
)) {
2193 struct buffer_head
*bh
= NULL
;
2195 ocfs2_inode_unlock(inode
, 0);
2196 ret
= ocfs2_inode_lock(inode
, &bh
, 1);
2202 if (ocfs2_should_update_atime(inode
, vfsmnt
))
2203 ocfs2_update_inode_atime(inode
, bh
);
2213 void ocfs2_inode_unlock(struct inode
*inode
,
2216 int level
= ex
? DLM_LOCK_EX
: DLM_LOCK_PR
;
2217 struct ocfs2_lock_res
*lockres
= &OCFS2_I(inode
)->ip_inode_lockres
;
2218 struct ocfs2_super
*osb
= OCFS2_SB(inode
->i_sb
);
2222 mlog(0, "inode %llu drop %s META lock\n",
2223 (unsigned long long)OCFS2_I(inode
)->ip_blkno
,
2224 ex
? "EXMODE" : "PRMODE");
2226 if (!ocfs2_is_hard_readonly(OCFS2_SB(inode
->i_sb
)) &&
2227 !ocfs2_mount_local(osb
))
2228 ocfs2_cluster_unlock(OCFS2_SB(inode
->i_sb
), lockres
, level
);
2233 int ocfs2_super_lock(struct ocfs2_super
*osb
,
2237 int level
= ex
? DLM_LOCK_EX
: DLM_LOCK_PR
;
2238 struct ocfs2_lock_res
*lockres
= &osb
->osb_super_lockres
;
2242 if (ocfs2_is_hard_readonly(osb
))
2245 if (ocfs2_mount_local(osb
))
2248 status
= ocfs2_cluster_lock(osb
, lockres
, level
, 0, 0);
2254 /* The super block lock path is really in the best position to
2255 * know when resources covered by the lock need to be
2256 * refreshed, so we do it here. Of course, making sense of
2257 * everything is up to the caller :) */
2258 status
= ocfs2_should_refresh_lock_res(lockres
);
2264 status
= ocfs2_refresh_slot_info(osb
);
2266 ocfs2_complete_lock_res_refresh(lockres
, status
);
2276 void ocfs2_super_unlock(struct ocfs2_super
*osb
,
2279 int level
= ex
? DLM_LOCK_EX
: DLM_LOCK_PR
;
2280 struct ocfs2_lock_res
*lockres
= &osb
->osb_super_lockres
;
2282 if (!ocfs2_mount_local(osb
))
2283 ocfs2_cluster_unlock(osb
, lockres
, level
);
2286 int ocfs2_rename_lock(struct ocfs2_super
*osb
)
2289 struct ocfs2_lock_res
*lockres
= &osb
->osb_rename_lockres
;
2291 if (ocfs2_is_hard_readonly(osb
))
2294 if (ocfs2_mount_local(osb
))
2297 status
= ocfs2_cluster_lock(osb
, lockres
, DLM_LOCK_EX
, 0, 0);
2304 void ocfs2_rename_unlock(struct ocfs2_super
*osb
)
2306 struct ocfs2_lock_res
*lockres
= &osb
->osb_rename_lockres
;
2308 if (!ocfs2_mount_local(osb
))
2309 ocfs2_cluster_unlock(osb
, lockres
, DLM_LOCK_EX
);
2312 int ocfs2_dentry_lock(struct dentry
*dentry
, int ex
)
2315 int level
= ex
? DLM_LOCK_EX
: DLM_LOCK_PR
;
2316 struct ocfs2_dentry_lock
*dl
= dentry
->d_fsdata
;
2317 struct ocfs2_super
*osb
= OCFS2_SB(dentry
->d_sb
);
2321 if (ocfs2_is_hard_readonly(osb
))
2324 if (ocfs2_mount_local(osb
))
2327 ret
= ocfs2_cluster_lock(osb
, &dl
->dl_lockres
, level
, 0, 0);
2334 void ocfs2_dentry_unlock(struct dentry
*dentry
, int ex
)
2336 int level
= ex
? DLM_LOCK_EX
: DLM_LOCK_PR
;
2337 struct ocfs2_dentry_lock
*dl
= dentry
->d_fsdata
;
2338 struct ocfs2_super
*osb
= OCFS2_SB(dentry
->d_sb
);
2340 if (!ocfs2_mount_local(osb
))
2341 ocfs2_cluster_unlock(osb
, &dl
->dl_lockres
, level
);
2344 /* Reference counting of the dlm debug structure. We want this because
2345 * open references on the debug inodes can live on after a mount, so
2346 * we can't rely on the ocfs2_super to always exist. */
2347 static void ocfs2_dlm_debug_free(struct kref
*kref
)
2349 struct ocfs2_dlm_debug
*dlm_debug
;
2351 dlm_debug
= container_of(kref
, struct ocfs2_dlm_debug
, d_refcnt
);
2356 void ocfs2_put_dlm_debug(struct ocfs2_dlm_debug
*dlm_debug
)
2359 kref_put(&dlm_debug
->d_refcnt
, ocfs2_dlm_debug_free
);
2362 static void ocfs2_get_dlm_debug(struct ocfs2_dlm_debug
*debug
)
2364 kref_get(&debug
->d_refcnt
);
2367 struct ocfs2_dlm_debug
*ocfs2_new_dlm_debug(void)
2369 struct ocfs2_dlm_debug
*dlm_debug
;
2371 dlm_debug
= kmalloc(sizeof(struct ocfs2_dlm_debug
), GFP_KERNEL
);
2373 mlog_errno(-ENOMEM
);
2377 kref_init(&dlm_debug
->d_refcnt
);
2378 INIT_LIST_HEAD(&dlm_debug
->d_lockres_tracking
);
2379 dlm_debug
->d_locking_state
= NULL
;
2384 /* Access to this is arbitrated for us via seq_file->sem. */
2385 struct ocfs2_dlm_seq_priv
{
2386 struct ocfs2_dlm_debug
*p_dlm_debug
;
2387 struct ocfs2_lock_res p_iter_res
;
2388 struct ocfs2_lock_res p_tmp_res
;
2391 static struct ocfs2_lock_res
*ocfs2_dlm_next_res(struct ocfs2_lock_res
*start
,
2392 struct ocfs2_dlm_seq_priv
*priv
)
2394 struct ocfs2_lock_res
*iter
, *ret
= NULL
;
2395 struct ocfs2_dlm_debug
*dlm_debug
= priv
->p_dlm_debug
;
2397 assert_spin_locked(&ocfs2_dlm_tracking_lock
);
2399 list_for_each_entry(iter
, &start
->l_debug_list
, l_debug_list
) {
2400 /* discover the head of the list */
2401 if (&iter
->l_debug_list
== &dlm_debug
->d_lockres_tracking
) {
2402 mlog(0, "End of list found, %p\n", ret
);
2406 /* We track our "dummy" iteration lockres' by a NULL
2408 if (iter
->l_ops
!= NULL
) {
2417 static void *ocfs2_dlm_seq_start(struct seq_file
*m
, loff_t
*pos
)
2419 struct ocfs2_dlm_seq_priv
*priv
= m
->private;
2420 struct ocfs2_lock_res
*iter
;
2422 spin_lock(&ocfs2_dlm_tracking_lock
);
2423 iter
= ocfs2_dlm_next_res(&priv
->p_iter_res
, priv
);
2425 /* Since lockres' have the lifetime of their container
2426 * (which can be inodes, ocfs2_supers, etc) we want to
2427 * copy this out to a temporary lockres while still
2428 * under the spinlock. Obviously after this we can't
2429 * trust any pointers on the copy returned, but that's
2430 * ok as the information we want isn't typically held
2432 priv
->p_tmp_res
= *iter
;
2433 iter
= &priv
->p_tmp_res
;
2435 spin_unlock(&ocfs2_dlm_tracking_lock
);
2440 static void ocfs2_dlm_seq_stop(struct seq_file
*m
, void *v
)
2444 static void *ocfs2_dlm_seq_next(struct seq_file
*m
, void *v
, loff_t
*pos
)
2446 struct ocfs2_dlm_seq_priv
*priv
= m
->private;
2447 struct ocfs2_lock_res
*iter
= v
;
2448 struct ocfs2_lock_res
*dummy
= &priv
->p_iter_res
;
2450 spin_lock(&ocfs2_dlm_tracking_lock
);
2451 iter
= ocfs2_dlm_next_res(iter
, priv
);
2452 list_del_init(&dummy
->l_debug_list
);
2454 list_add(&dummy
->l_debug_list
, &iter
->l_debug_list
);
2455 priv
->p_tmp_res
= *iter
;
2456 iter
= &priv
->p_tmp_res
;
2458 spin_unlock(&ocfs2_dlm_tracking_lock
);
2463 /* So that debugfs.ocfs2 can determine which format is being used */
2464 #define OCFS2_DLM_DEBUG_STR_VERSION 1
2465 static int ocfs2_dlm_seq_show(struct seq_file
*m
, void *v
)
2469 struct ocfs2_lock_res
*lockres
= v
;
2474 seq_printf(m
, "0x%x\t", OCFS2_DLM_DEBUG_STR_VERSION
);
2476 if (lockres
->l_type
== OCFS2_LOCK_TYPE_DENTRY
)
2477 seq_printf(m
, "%.*s%08x\t", OCFS2_DENTRY_LOCK_INO_START
- 1,
2479 (unsigned int)ocfs2_get_dentry_lock_ino(lockres
));
2481 seq_printf(m
, "%.*s\t", OCFS2_LOCK_ID_MAX_LEN
, lockres
->l_name
);
2483 seq_printf(m
, "%d\t"
2494 lockres
->l_unlock_action
,
2495 lockres
->l_ro_holders
,
2496 lockres
->l_ex_holders
,
2497 lockres
->l_requested
,
2498 lockres
->l_blocking
);
2500 /* Dump the raw LVB */
2501 lvb
= ocfs2_dlm_lvb(&lockres
->l_lksb
);
2502 for(i
= 0; i
< DLM_LVB_LEN
; i
++)
2503 seq_printf(m
, "0x%x\t", lvb
[i
]);
2506 seq_printf(m
, "\n");
2510 static const struct seq_operations ocfs2_dlm_seq_ops
= {
2511 .start
= ocfs2_dlm_seq_start
,
2512 .stop
= ocfs2_dlm_seq_stop
,
2513 .next
= ocfs2_dlm_seq_next
,
2514 .show
= ocfs2_dlm_seq_show
,
2517 static int ocfs2_dlm_debug_release(struct inode
*inode
, struct file
*file
)
2519 struct seq_file
*seq
= (struct seq_file
*) file
->private_data
;
2520 struct ocfs2_dlm_seq_priv
*priv
= seq
->private;
2521 struct ocfs2_lock_res
*res
= &priv
->p_iter_res
;
2523 ocfs2_remove_lockres_tracking(res
);
2524 ocfs2_put_dlm_debug(priv
->p_dlm_debug
);
2525 return seq_release_private(inode
, file
);
2528 static int ocfs2_dlm_debug_open(struct inode
*inode
, struct file
*file
)
2531 struct ocfs2_dlm_seq_priv
*priv
;
2532 struct seq_file
*seq
;
2533 struct ocfs2_super
*osb
;
2535 priv
= kzalloc(sizeof(struct ocfs2_dlm_seq_priv
), GFP_KERNEL
);
2541 osb
= inode
->i_private
;
2542 ocfs2_get_dlm_debug(osb
->osb_dlm_debug
);
2543 priv
->p_dlm_debug
= osb
->osb_dlm_debug
;
2544 INIT_LIST_HEAD(&priv
->p_iter_res
.l_debug_list
);
2546 ret
= seq_open(file
, &ocfs2_dlm_seq_ops
);
2553 seq
= (struct seq_file
*) file
->private_data
;
2554 seq
->private = priv
;
2556 ocfs2_add_lockres_tracking(&priv
->p_iter_res
,
2563 static const struct file_operations ocfs2_dlm_debug_fops
= {
2564 .open
= ocfs2_dlm_debug_open
,
2565 .release
= ocfs2_dlm_debug_release
,
2567 .llseek
= seq_lseek
,
2570 static int ocfs2_dlm_init_debug(struct ocfs2_super
*osb
)
2573 struct ocfs2_dlm_debug
*dlm_debug
= osb
->osb_dlm_debug
;
2575 dlm_debug
->d_locking_state
= debugfs_create_file("locking_state",
2577 osb
->osb_debug_root
,
2579 &ocfs2_dlm_debug_fops
);
2580 if (!dlm_debug
->d_locking_state
) {
2583 "Unable to create locking state debugfs file.\n");
2587 ocfs2_get_dlm_debug(dlm_debug
);
2592 static void ocfs2_dlm_shutdown_debug(struct ocfs2_super
*osb
)
2594 struct ocfs2_dlm_debug
*dlm_debug
= osb
->osb_dlm_debug
;
2597 debugfs_remove(dlm_debug
->d_locking_state
);
2598 ocfs2_put_dlm_debug(dlm_debug
);
2602 int ocfs2_dlm_init(struct ocfs2_super
*osb
)
2605 struct ocfs2_cluster_connection
*conn
= NULL
;
2609 if (ocfs2_mount_local(osb
)) {
2614 status
= ocfs2_dlm_init_debug(osb
);
2620 /* launch downconvert thread */
2621 osb
->dc_task
= kthread_run(ocfs2_downconvert_thread
, osb
, "ocfs2dc");
2622 if (IS_ERR(osb
->dc_task
)) {
2623 status
= PTR_ERR(osb
->dc_task
);
2624 osb
->dc_task
= NULL
;
2629 /* for now, uuid == domain */
2630 status
= ocfs2_cluster_connect(osb
->uuid_str
,
2631 strlen(osb
->uuid_str
),
2632 ocfs2_do_node_down
, osb
,
2639 status
= ocfs2_cluster_this_node(&osb
->node_num
);
2643 "could not find this host's node number\n");
2644 ocfs2_cluster_disconnect(conn
, 0);
2649 ocfs2_super_lock_res_init(&osb
->osb_super_lockres
, osb
);
2650 ocfs2_rename_lock_res_init(&osb
->osb_rename_lockres
, osb
);
2657 ocfs2_dlm_shutdown_debug(osb
);
2659 kthread_stop(osb
->dc_task
);
2666 void ocfs2_dlm_shutdown(struct ocfs2_super
*osb
,
2671 ocfs2_drop_osb_locks(osb
);
2674 * Now that we have dropped all locks and ocfs2_dismount_volume()
2675 * has disabled recovery, the DLM won't be talking to us. It's
2676 * safe to tear things down before disconnecting the cluster.
2680 kthread_stop(osb
->dc_task
);
2681 osb
->dc_task
= NULL
;
2684 ocfs2_lock_res_free(&osb
->osb_super_lockres
);
2685 ocfs2_lock_res_free(&osb
->osb_rename_lockres
);
2687 ocfs2_cluster_disconnect(osb
->cconn
, hangup_pending
);
2690 ocfs2_dlm_shutdown_debug(osb
);
2695 static void ocfs2_unlock_ast(void *opaque
, int error
)
2697 struct ocfs2_lock_res
*lockres
= opaque
;
2698 unsigned long flags
;
2702 mlog(0, "UNLOCK AST called on lock %s, action = %d\n", lockres
->l_name
,
2703 lockres
->l_unlock_action
);
2705 spin_lock_irqsave(&lockres
->l_lock
, flags
);
2707 mlog(ML_ERROR
, "Dlm passes error %d for lock %s, "
2708 "unlock_action %d\n", error
, lockres
->l_name
,
2709 lockres
->l_unlock_action
);
2710 spin_unlock_irqrestore(&lockres
->l_lock
, flags
);
2714 switch(lockres
->l_unlock_action
) {
2715 case OCFS2_UNLOCK_CANCEL_CONVERT
:
2716 mlog(0, "Cancel convert success for %s\n", lockres
->l_name
);
2717 lockres
->l_action
= OCFS2_AST_INVALID
;
2719 case OCFS2_UNLOCK_DROP_LOCK
:
2720 lockres
->l_level
= DLM_LOCK_IV
;
2726 lockres_clear_flags(lockres
, OCFS2_LOCK_BUSY
);
2727 lockres
->l_unlock_action
= OCFS2_UNLOCK_INVALID
;
2728 spin_unlock_irqrestore(&lockres
->l_lock
, flags
);
2730 wake_up(&lockres
->l_event
);
2735 static int ocfs2_drop_lock(struct ocfs2_super
*osb
,
2736 struct ocfs2_lock_res
*lockres
)
2739 unsigned long flags
;
2742 /* We didn't get anywhere near actually using this lockres. */
2743 if (!(lockres
->l_flags
& OCFS2_LOCK_INITIALIZED
))
2746 if (lockres
->l_ops
->flags
& LOCK_TYPE_USES_LVB
)
2747 lkm_flags
|= DLM_LKF_VALBLK
;
2749 spin_lock_irqsave(&lockres
->l_lock
, flags
);
2751 mlog_bug_on_msg(!(lockres
->l_flags
& OCFS2_LOCK_FREEING
),
2752 "lockres %s, flags 0x%lx\n",
2753 lockres
->l_name
, lockres
->l_flags
);
2755 while (lockres
->l_flags
& OCFS2_LOCK_BUSY
) {
2756 mlog(0, "waiting on busy lock \"%s\": flags = %lx, action = "
2757 "%u, unlock_action = %u\n",
2758 lockres
->l_name
, lockres
->l_flags
, lockres
->l_action
,
2759 lockres
->l_unlock_action
);
2761 spin_unlock_irqrestore(&lockres
->l_lock
, flags
);
2763 /* XXX: Today we just wait on any busy
2764 * locks... Perhaps we need to cancel converts in the
2766 ocfs2_wait_on_busy_lock(lockres
);
2768 spin_lock_irqsave(&lockres
->l_lock
, flags
);
2771 if (lockres
->l_ops
->flags
& LOCK_TYPE_USES_LVB
) {
2772 if (lockres
->l_flags
& OCFS2_LOCK_ATTACHED
&&
2773 lockres
->l_level
== DLM_LOCK_EX
&&
2774 !(lockres
->l_flags
& OCFS2_LOCK_NEEDS_REFRESH
))
2775 lockres
->l_ops
->set_lvb(lockres
);
2778 if (lockres
->l_flags
& OCFS2_LOCK_BUSY
)
2779 mlog(ML_ERROR
, "destroying busy lock: \"%s\"\n",
2781 if (lockres
->l_flags
& OCFS2_LOCK_BLOCKED
)
2782 mlog(0, "destroying blocked lock: \"%s\"\n", lockres
->l_name
);
2784 if (!(lockres
->l_flags
& OCFS2_LOCK_ATTACHED
)) {
2785 spin_unlock_irqrestore(&lockres
->l_lock
, flags
);
2789 lockres_clear_flags(lockres
, OCFS2_LOCK_ATTACHED
);
2791 /* make sure we never get here while waiting for an ast to
2793 BUG_ON(lockres
->l_action
!= OCFS2_AST_INVALID
);
2795 /* is this necessary? */
2796 lockres_or_flags(lockres
, OCFS2_LOCK_BUSY
);
2797 lockres
->l_unlock_action
= OCFS2_UNLOCK_DROP_LOCK
;
2798 spin_unlock_irqrestore(&lockres
->l_lock
, flags
);
2800 mlog(0, "lock %s\n", lockres
->l_name
);
2802 ret
= ocfs2_dlm_unlock(osb
->cconn
, &lockres
->l_lksb
, lkm_flags
,
2805 ocfs2_log_dlm_error("ocfs2_dlm_unlock", ret
, lockres
);
2806 mlog(ML_ERROR
, "lockres flags: %lu\n", lockres
->l_flags
);
2807 ocfs2_dlm_dump_lksb(&lockres
->l_lksb
);
2810 mlog(0, "lock %s, successfull return from ocfs2_dlm_unlock\n",
2813 ocfs2_wait_on_busy_lock(lockres
);
2819 /* Mark the lockres as being dropped. It will no longer be
2820 * queued if blocking, but we still may have to wait on it
2821 * being dequeued from the downconvert thread before we can consider
2824 * You can *not* attempt to call cluster_lock on this lockres anymore. */
2825 void ocfs2_mark_lockres_freeing(struct ocfs2_lock_res
*lockres
)
2828 struct ocfs2_mask_waiter mw
;
2829 unsigned long flags
;
2831 ocfs2_init_mask_waiter(&mw
);
2833 spin_lock_irqsave(&lockres
->l_lock
, flags
);
2834 lockres
->l_flags
|= OCFS2_LOCK_FREEING
;
2835 while (lockres
->l_flags
& OCFS2_LOCK_QUEUED
) {
2836 lockres_add_mask_waiter(lockres
, &mw
, OCFS2_LOCK_QUEUED
, 0);
2837 spin_unlock_irqrestore(&lockres
->l_lock
, flags
);
2839 mlog(0, "Waiting on lockres %s\n", lockres
->l_name
);
2841 status
= ocfs2_wait_for_mask(&mw
);
2845 spin_lock_irqsave(&lockres
->l_lock
, flags
);
2847 spin_unlock_irqrestore(&lockres
->l_lock
, flags
);
2850 void ocfs2_simple_drop_lockres(struct ocfs2_super
*osb
,
2851 struct ocfs2_lock_res
*lockres
)
2855 ocfs2_mark_lockres_freeing(lockres
);
2856 ret
= ocfs2_drop_lock(osb
, lockres
);
2861 static void ocfs2_drop_osb_locks(struct ocfs2_super
*osb
)
2863 ocfs2_simple_drop_lockres(osb
, &osb
->osb_super_lockres
);
2864 ocfs2_simple_drop_lockres(osb
, &osb
->osb_rename_lockres
);
2867 int ocfs2_drop_inode_locks(struct inode
*inode
)
2873 /* No need to call ocfs2_mark_lockres_freeing here -
2874 * ocfs2_clear_inode has done it for us. */
2876 err
= ocfs2_drop_lock(OCFS2_SB(inode
->i_sb
),
2877 &OCFS2_I(inode
)->ip_open_lockres
);
2883 err
= ocfs2_drop_lock(OCFS2_SB(inode
->i_sb
),
2884 &OCFS2_I(inode
)->ip_inode_lockres
);
2887 if (err
< 0 && !status
)
2890 err
= ocfs2_drop_lock(OCFS2_SB(inode
->i_sb
),
2891 &OCFS2_I(inode
)->ip_rw_lockres
);
2894 if (err
< 0 && !status
)
2901 static unsigned int ocfs2_prepare_downconvert(struct ocfs2_lock_res
*lockres
,
2904 assert_spin_locked(&lockres
->l_lock
);
2906 BUG_ON(lockres
->l_blocking
<= DLM_LOCK_NL
);
2908 if (lockres
->l_level
<= new_level
) {
2909 mlog(ML_ERROR
, "lockres->l_level (%d) <= new_level (%d)\n",
2910 lockres
->l_level
, new_level
);
2914 mlog(0, "lock %s, new_level = %d, l_blocking = %d\n",
2915 lockres
->l_name
, new_level
, lockres
->l_blocking
);
2917 lockres
->l_action
= OCFS2_AST_DOWNCONVERT
;
2918 lockres
->l_requested
= new_level
;
2919 lockres_or_flags(lockres
, OCFS2_LOCK_BUSY
);
2920 return lockres_set_pending(lockres
);
2923 static int ocfs2_downconvert_lock(struct ocfs2_super
*osb
,
2924 struct ocfs2_lock_res
*lockres
,
2927 unsigned int generation
)
2930 u32 dlm_flags
= DLM_LKF_CONVERT
;
2935 dlm_flags
|= DLM_LKF_VALBLK
;
2937 ret
= ocfs2_dlm_lock(osb
->cconn
,
2942 OCFS2_LOCK_ID_MAX_LEN
- 1,
2944 lockres_clear_pending(lockres
, generation
, osb
);
2946 ocfs2_log_dlm_error("ocfs2_dlm_lock", ret
, lockres
);
2947 ocfs2_recover_from_dlm_error(lockres
, 1);
2957 /* returns 1 when the caller should unlock and call ocfs2_dlm_unlock */
2958 static int ocfs2_prepare_cancel_convert(struct ocfs2_super
*osb
,
2959 struct ocfs2_lock_res
*lockres
)
2961 assert_spin_locked(&lockres
->l_lock
);
2964 mlog(0, "lock %s\n", lockres
->l_name
);
2966 if (lockres
->l_unlock_action
== OCFS2_UNLOCK_CANCEL_CONVERT
) {
2967 /* If we're already trying to cancel a lock conversion
2968 * then just drop the spinlock and allow the caller to
2969 * requeue this lock. */
2971 mlog(0, "Lockres %s, skip convert\n", lockres
->l_name
);
2975 /* were we in a convert when we got the bast fire? */
2976 BUG_ON(lockres
->l_action
!= OCFS2_AST_CONVERT
&&
2977 lockres
->l_action
!= OCFS2_AST_DOWNCONVERT
);
2978 /* set things up for the unlockast to know to just
2979 * clear out the ast_action and unset busy, etc. */
2980 lockres
->l_unlock_action
= OCFS2_UNLOCK_CANCEL_CONVERT
;
2982 mlog_bug_on_msg(!(lockres
->l_flags
& OCFS2_LOCK_BUSY
),
2983 "lock %s, invalid flags: 0x%lx\n",
2984 lockres
->l_name
, lockres
->l_flags
);
2989 static int ocfs2_cancel_convert(struct ocfs2_super
*osb
,
2990 struct ocfs2_lock_res
*lockres
)
2995 mlog(0, "lock %s\n", lockres
->l_name
);
2997 ret
= ocfs2_dlm_unlock(osb
->cconn
, &lockres
->l_lksb
,
2998 DLM_LKF_CANCEL
, lockres
);
3000 ocfs2_log_dlm_error("ocfs2_dlm_unlock", ret
, lockres
);
3001 ocfs2_recover_from_dlm_error(lockres
, 0);
3004 mlog(0, "lock %s return from ocfs2_dlm_unlock\n", lockres
->l_name
);
3010 static int ocfs2_unblock_lock(struct ocfs2_super
*osb
,
3011 struct ocfs2_lock_res
*lockres
,
3012 struct ocfs2_unblock_ctl
*ctl
)
3014 unsigned long flags
;
3023 spin_lock_irqsave(&lockres
->l_lock
, flags
);
3025 BUG_ON(!(lockres
->l_flags
& OCFS2_LOCK_BLOCKED
));
3028 if (lockres
->l_flags
& OCFS2_LOCK_BUSY
) {
3030 * This is a *big* race. The OCFS2_LOCK_PENDING flag
3031 * exists entirely for one reason - another thread has set
3032 * OCFS2_LOCK_BUSY, but has *NOT* yet called dlm_lock().
3034 * If we do ocfs2_cancel_convert() before the other thread
3035 * calls dlm_lock(), our cancel will do nothing. We will
3036 * get no ast, and we will have no way of knowing the
3037 * cancel failed. Meanwhile, the other thread will call
3038 * into dlm_lock() and wait...forever.
3040 * Why forever? Because another node has asked for the
3041 * lock first; that's why we're here in unblock_lock().
3043 * The solution is OCFS2_LOCK_PENDING. When PENDING is
3044 * set, we just requeue the unblock. Only when the other
3045 * thread has called dlm_lock() and cleared PENDING will
3046 * we then cancel their request.
3048 * All callers of dlm_lock() must set OCFS2_DLM_PENDING
3049 * at the same time they set OCFS2_DLM_BUSY. They must
3050 * clear OCFS2_DLM_PENDING after dlm_lock() returns.
3052 if (lockres
->l_flags
& OCFS2_LOCK_PENDING
)
3056 ret
= ocfs2_prepare_cancel_convert(osb
, lockres
);
3057 spin_unlock_irqrestore(&lockres
->l_lock
, flags
);
3059 ret
= ocfs2_cancel_convert(osb
, lockres
);
3066 /* if we're blocking an exclusive and we have *any* holders,
3068 if ((lockres
->l_blocking
== DLM_LOCK_EX
)
3069 && (lockres
->l_ex_holders
|| lockres
->l_ro_holders
))
3072 /* If it's a PR we're blocking, then only
3073 * requeue if we've got any EX holders */
3074 if (lockres
->l_blocking
== DLM_LOCK_PR
&&
3075 lockres
->l_ex_holders
)
3079 * Can we get a lock in this state if the holder counts are
3080 * zero? The meta data unblock code used to check this.
3082 if ((lockres
->l_ops
->flags
& LOCK_TYPE_REQUIRES_REFRESH
)
3083 && (lockres
->l_flags
& OCFS2_LOCK_REFRESHING
))
3086 new_level
= ocfs2_highest_compat_lock_level(lockres
->l_blocking
);
3088 if (lockres
->l_ops
->check_downconvert
3089 && !lockres
->l_ops
->check_downconvert(lockres
, new_level
))
3092 /* If we get here, then we know that there are no more
3093 * incompatible holders (and anyone asking for an incompatible
3094 * lock is blocked). We can now downconvert the lock */
3095 if (!lockres
->l_ops
->downconvert_worker
)
3098 /* Some lockres types want to do a bit of work before
3099 * downconverting a lock. Allow that here. The worker function
3100 * may sleep, so we save off a copy of what we're blocking as
3101 * it may change while we're not holding the spin lock. */
3102 blocking
= lockres
->l_blocking
;
3103 spin_unlock_irqrestore(&lockres
->l_lock
, flags
);
3105 ctl
->unblock_action
= lockres
->l_ops
->downconvert_worker(lockres
, blocking
);
3107 if (ctl
->unblock_action
== UNBLOCK_STOP_POST
)
3110 spin_lock_irqsave(&lockres
->l_lock
, flags
);
3111 if (blocking
!= lockres
->l_blocking
) {
3112 /* If this changed underneath us, then we can't drop
3120 if (lockres
->l_ops
->flags
& LOCK_TYPE_USES_LVB
) {
3121 if (lockres
->l_level
== DLM_LOCK_EX
)
3125 * We only set the lvb if the lock has been fully
3126 * refreshed - otherwise we risk setting stale
3127 * data. Otherwise, there's no need to actually clear
3128 * out the lvb here as it's value is still valid.
3130 if (set_lvb
&& !(lockres
->l_flags
& OCFS2_LOCK_NEEDS_REFRESH
))
3131 lockres
->l_ops
->set_lvb(lockres
);
3134 gen
= ocfs2_prepare_downconvert(lockres
, new_level
);
3135 spin_unlock_irqrestore(&lockres
->l_lock
, flags
);
3136 ret
= ocfs2_downconvert_lock(osb
, lockres
, new_level
, set_lvb
,
3144 spin_unlock_irqrestore(&lockres
->l_lock
, flags
);
3151 static int ocfs2_data_convert_worker(struct ocfs2_lock_res
*lockres
,
3154 struct inode
*inode
;
3155 struct address_space
*mapping
;
3157 inode
= ocfs2_lock_res_inode(lockres
);
3158 mapping
= inode
->i_mapping
;
3160 if (!S_ISREG(inode
->i_mode
))
3164 * We need this before the filemap_fdatawrite() so that it can
3165 * transfer the dirty bit from the PTE to the
3166 * page. Unfortunately this means that even for EX->PR
3167 * downconverts, we'll lose our mappings and have to build
3170 unmap_mapping_range(mapping
, 0, 0, 0);
3172 if (filemap_fdatawrite(mapping
)) {
3173 mlog(ML_ERROR
, "Could not sync inode %llu for downconvert!",
3174 (unsigned long long)OCFS2_I(inode
)->ip_blkno
);
3176 sync_mapping_buffers(mapping
);
3177 if (blocking
== DLM_LOCK_EX
) {
3178 truncate_inode_pages(mapping
, 0);
3180 /* We only need to wait on the I/O if we're not also
3181 * truncating pages because truncate_inode_pages waits
3182 * for us above. We don't truncate pages if we're
3183 * blocking anything < EXMODE because we want to keep
3184 * them around in that case. */
3185 filemap_fdatawait(mapping
);
3189 return UNBLOCK_CONTINUE
;
3192 static int ocfs2_check_meta_downconvert(struct ocfs2_lock_res
*lockres
,
3195 struct inode
*inode
= ocfs2_lock_res_inode(lockres
);
3196 int checkpointed
= ocfs2_inode_fully_checkpointed(inode
);
3198 BUG_ON(new_level
!= DLM_LOCK_NL
&& new_level
!= DLM_LOCK_PR
);
3199 BUG_ON(lockres
->l_level
!= DLM_LOCK_EX
&& !checkpointed
);
3204 ocfs2_start_checkpoint(OCFS2_SB(inode
->i_sb
));
3208 static void ocfs2_set_meta_lvb(struct ocfs2_lock_res
*lockres
)
3210 struct inode
*inode
= ocfs2_lock_res_inode(lockres
);
3212 __ocfs2_stuff_meta_lvb(inode
);
3216 * Does the final reference drop on our dentry lock. Right now this
3217 * happens in the downconvert thread, but we could choose to simplify the
3218 * dlmglue API and push these off to the ocfs2_wq in the future.
3220 static void ocfs2_dentry_post_unlock(struct ocfs2_super
*osb
,
3221 struct ocfs2_lock_res
*lockres
)
3223 struct ocfs2_dentry_lock
*dl
= ocfs2_lock_res_dl(lockres
);
3224 ocfs2_dentry_lock_put(osb
, dl
);
3228 * d_delete() matching dentries before the lock downconvert.
3230 * At this point, any process waiting to destroy the
3231 * dentry_lock due to last ref count is stopped by the
3232 * OCFS2_LOCK_QUEUED flag.
3234 * We have two potential problems
3236 * 1) If we do the last reference drop on our dentry_lock (via dput)
3237 * we'll wind up in ocfs2_release_dentry_lock(), waiting on
3238 * the downconvert to finish. Instead we take an elevated
3239 * reference and push the drop until after we've completed our
3240 * unblock processing.
3242 * 2) There might be another process with a final reference,
3243 * waiting on us to finish processing. If this is the case, we
3244 * detect it and exit out - there's no more dentries anyway.
3246 static int ocfs2_dentry_convert_worker(struct ocfs2_lock_res
*lockres
,
3249 struct ocfs2_dentry_lock
*dl
= ocfs2_lock_res_dl(lockres
);
3250 struct ocfs2_inode_info
*oi
= OCFS2_I(dl
->dl_inode
);
3251 struct dentry
*dentry
;
3252 unsigned long flags
;
3256 * This node is blocking another node from getting a read
3257 * lock. This happens when we've renamed within a
3258 * directory. We've forced the other nodes to d_delete(), but
3259 * we never actually dropped our lock because it's still
3260 * valid. The downconvert code will retain a PR for this node,
3261 * so there's no further work to do.
3263 if (blocking
== DLM_LOCK_PR
)
3264 return UNBLOCK_CONTINUE
;
3267 * Mark this inode as potentially orphaned. The code in
3268 * ocfs2_delete_inode() will figure out whether it actually
3269 * needs to be freed or not.
3271 spin_lock(&oi
->ip_lock
);
3272 oi
->ip_flags
|= OCFS2_INODE_MAYBE_ORPHANED
;
3273 spin_unlock(&oi
->ip_lock
);
3276 * Yuck. We need to make sure however that the check of
3277 * OCFS2_LOCK_FREEING and the extra reference are atomic with
3278 * respect to a reference decrement or the setting of that
3281 spin_lock_irqsave(&lockres
->l_lock
, flags
);
3282 spin_lock(&dentry_attach_lock
);
3283 if (!(lockres
->l_flags
& OCFS2_LOCK_FREEING
)
3288 spin_unlock(&dentry_attach_lock
);
3289 spin_unlock_irqrestore(&lockres
->l_lock
, flags
);
3291 mlog(0, "extra_ref = %d\n", extra_ref
);
3294 * We have a process waiting on us in ocfs2_dentry_iput(),
3295 * which means we can't have any more outstanding
3296 * aliases. There's no need to do any more work.
3299 return UNBLOCK_CONTINUE
;
3301 spin_lock(&dentry_attach_lock
);
3303 dentry
= ocfs2_find_local_alias(dl
->dl_inode
,
3304 dl
->dl_parent_blkno
, 1);
3307 spin_unlock(&dentry_attach_lock
);
3309 mlog(0, "d_delete(%.*s);\n", dentry
->d_name
.len
,
3310 dentry
->d_name
.name
);
3313 * The following dcache calls may do an
3314 * iput(). Normally we don't want that from the
3315 * downconverting thread, but in this case it's ok
3316 * because the requesting node already has an
3317 * exclusive lock on the inode, so it can't be queued
3318 * for a downconvert.
3323 spin_lock(&dentry_attach_lock
);
3325 spin_unlock(&dentry_attach_lock
);
3328 * If we are the last holder of this dentry lock, there is no
3329 * reason to downconvert so skip straight to the unlock.
3331 if (dl
->dl_count
== 1)
3332 return UNBLOCK_STOP_POST
;
3334 return UNBLOCK_CONTINUE_POST
;
3338 * This is the filesystem locking protocol. It provides the lock handling
3339 * hooks for the underlying DLM. It has a maximum version number.
3340 * The version number allows interoperability with systems running at
3341 * the same major number and an equal or smaller minor number.
3343 * Whenever the filesystem does new things with locks (adds or removes a
3344 * lock, orders them differently, does different things underneath a lock),
3345 * the version must be changed. The protocol is negotiated when joining
3346 * the dlm domain. A node may join the domain if its major version is
3347 * identical to all other nodes and its minor version is greater than
3348 * or equal to all other nodes. When its minor version is greater than
3349 * the other nodes, it will run at the minor version specified by the
3352 * If a locking change is made that will not be compatible with older
3353 * versions, the major number must be increased and the minor version set
3354 * to zero. If a change merely adds a behavior that can be disabled when
3355 * speaking to older versions, the minor version must be increased. If a
3356 * change adds a fully backwards compatible change (eg, LVB changes that
3357 * are just ignored by older versions), the version does not need to be
3360 static struct ocfs2_locking_protocol lproto
= {
3362 .pv_major
= OCFS2_LOCKING_PROTOCOL_MAJOR
,
3363 .pv_minor
= OCFS2_LOCKING_PROTOCOL_MINOR
,
3365 .lp_lock_ast
= ocfs2_locking_ast
,
3366 .lp_blocking_ast
= ocfs2_blocking_ast
,
3367 .lp_unlock_ast
= ocfs2_unlock_ast
,
3370 void ocfs2_set_locking_protocol(void)
3372 ocfs2_stack_glue_set_locking_protocol(&lproto
);
3376 static void ocfs2_process_blocked_lock(struct ocfs2_super
*osb
,
3377 struct ocfs2_lock_res
*lockres
)
3380 struct ocfs2_unblock_ctl ctl
= {0, 0,};
3381 unsigned long flags
;
3383 /* Our reference to the lockres in this function can be
3384 * considered valid until we remove the OCFS2_LOCK_QUEUED
3390 BUG_ON(!lockres
->l_ops
);
3392 mlog(0, "lockres %s blocked.\n", lockres
->l_name
);
3394 /* Detect whether a lock has been marked as going away while
3395 * the downconvert thread was processing other things. A lock can
3396 * still be marked with OCFS2_LOCK_FREEING after this check,
3397 * but short circuiting here will still save us some
3399 spin_lock_irqsave(&lockres
->l_lock
, flags
);
3400 if (lockres
->l_flags
& OCFS2_LOCK_FREEING
)
3402 spin_unlock_irqrestore(&lockres
->l_lock
, flags
);
3404 status
= ocfs2_unblock_lock(osb
, lockres
, &ctl
);
3408 spin_lock_irqsave(&lockres
->l_lock
, flags
);
3410 if (lockres
->l_flags
& OCFS2_LOCK_FREEING
|| !ctl
.requeue
) {
3411 lockres_clear_flags(lockres
, OCFS2_LOCK_QUEUED
);
3413 ocfs2_schedule_blocked_lock(osb
, lockres
);
3415 mlog(0, "lockres %s, requeue = %s.\n", lockres
->l_name
,
3416 ctl
.requeue
? "yes" : "no");
3417 spin_unlock_irqrestore(&lockres
->l_lock
, flags
);
3419 if (ctl
.unblock_action
!= UNBLOCK_CONTINUE
3420 && lockres
->l_ops
->post_unlock
)
3421 lockres
->l_ops
->post_unlock(osb
, lockres
);
3426 static void ocfs2_schedule_blocked_lock(struct ocfs2_super
*osb
,
3427 struct ocfs2_lock_res
*lockres
)
3431 assert_spin_locked(&lockres
->l_lock
);
3433 if (lockres
->l_flags
& OCFS2_LOCK_FREEING
) {
3434 /* Do not schedule a lock for downconvert when it's on
3435 * the way to destruction - any nodes wanting access
3436 * to the resource will get it soon. */
3437 mlog(0, "Lockres %s won't be scheduled: flags 0x%lx\n",
3438 lockres
->l_name
, lockres
->l_flags
);
3442 lockres_or_flags(lockres
, OCFS2_LOCK_QUEUED
);
3444 spin_lock(&osb
->dc_task_lock
);
3445 if (list_empty(&lockres
->l_blocked_list
)) {
3446 list_add_tail(&lockres
->l_blocked_list
,
3447 &osb
->blocked_lock_list
);
3448 osb
->blocked_lock_count
++;
3450 spin_unlock(&osb
->dc_task_lock
);
3455 static void ocfs2_downconvert_thread_do_work(struct ocfs2_super
*osb
)
3457 unsigned long processed
;
3458 struct ocfs2_lock_res
*lockres
;
3462 spin_lock(&osb
->dc_task_lock
);
3463 /* grab this early so we know to try again if a state change and
3464 * wake happens part-way through our work */
3465 osb
->dc_work_sequence
= osb
->dc_wake_sequence
;
3467 processed
= osb
->blocked_lock_count
;
3469 BUG_ON(list_empty(&osb
->blocked_lock_list
));
3471 lockres
= list_entry(osb
->blocked_lock_list
.next
,
3472 struct ocfs2_lock_res
, l_blocked_list
);
3473 list_del_init(&lockres
->l_blocked_list
);
3474 osb
->blocked_lock_count
--;
3475 spin_unlock(&osb
->dc_task_lock
);
3480 ocfs2_process_blocked_lock(osb
, lockres
);
3482 spin_lock(&osb
->dc_task_lock
);
3484 spin_unlock(&osb
->dc_task_lock
);
3489 static int ocfs2_downconvert_thread_lists_empty(struct ocfs2_super
*osb
)
3493 spin_lock(&osb
->dc_task_lock
);
3494 if (list_empty(&osb
->blocked_lock_list
))
3497 spin_unlock(&osb
->dc_task_lock
);
3501 static int ocfs2_downconvert_thread_should_wake(struct ocfs2_super
*osb
)
3503 int should_wake
= 0;
3505 spin_lock(&osb
->dc_task_lock
);
3506 if (osb
->dc_work_sequence
!= osb
->dc_wake_sequence
)
3508 spin_unlock(&osb
->dc_task_lock
);
3513 static int ocfs2_downconvert_thread(void *arg
)
3516 struct ocfs2_super
*osb
= arg
;
3518 /* only quit once we've been asked to stop and there is no more
3520 while (!(kthread_should_stop() &&
3521 ocfs2_downconvert_thread_lists_empty(osb
))) {
3523 wait_event_interruptible(osb
->dc_event
,
3524 ocfs2_downconvert_thread_should_wake(osb
) ||
3525 kthread_should_stop());
3527 mlog(0, "downconvert_thread: awoken\n");
3529 ocfs2_downconvert_thread_do_work(osb
);
3532 osb
->dc_task
= NULL
;
3536 void ocfs2_wake_downconvert_thread(struct ocfs2_super
*osb
)
3538 spin_lock(&osb
->dc_task_lock
);
3539 /* make sure the voting thread gets a swipe at whatever changes
3540 * the caller may have made to the voting state */
3541 osb
->dc_wake_sequence
++;
3542 spin_unlock(&osb
->dc_task_lock
);
3543 wake_up(&osb
->dc_event
);