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>
34 #include <linux/time.h>
35 #include <linux/quotaops.h>
37 #define MLOG_MASK_PREFIX ML_DLM_GLUE
38 #include <cluster/masklog.h>
41 #include "ocfs2_lockingver.h"
46 #include "extent_map.h"
48 #include "heartbeat.h"
51 #include "stackglue.h"
57 #include "buffer_head_io.h"
59 struct ocfs2_mask_waiter
{
60 struct list_head mw_item
;
62 struct completion mw_complete
;
63 unsigned long mw_mask
;
64 unsigned long mw_goal
;
65 #ifdef CONFIG_OCFS2_FS_STATS
66 unsigned long long mw_lock_start
;
70 static struct ocfs2_super
*ocfs2_get_dentry_osb(struct ocfs2_lock_res
*lockres
);
71 static struct ocfs2_super
*ocfs2_get_inode_osb(struct ocfs2_lock_res
*lockres
);
72 static struct ocfs2_super
*ocfs2_get_file_osb(struct ocfs2_lock_res
*lockres
);
73 static struct ocfs2_super
*ocfs2_get_qinfo_osb(struct ocfs2_lock_res
*lockres
);
76 * Return value from ->downconvert_worker functions.
78 * These control the precise actions of ocfs2_unblock_lock()
79 * and ocfs2_process_blocked_lock()
82 enum ocfs2_unblock_action
{
83 UNBLOCK_CONTINUE
= 0, /* Continue downconvert */
84 UNBLOCK_CONTINUE_POST
= 1, /* Continue downconvert, fire
85 * ->post_unlock callback */
86 UNBLOCK_STOP_POST
= 2, /* Do not downconvert, fire
87 * ->post_unlock() callback. */
90 struct ocfs2_unblock_ctl
{
92 enum ocfs2_unblock_action unblock_action
;
95 static int ocfs2_check_meta_downconvert(struct ocfs2_lock_res
*lockres
,
97 static void ocfs2_set_meta_lvb(struct ocfs2_lock_res
*lockres
);
99 static int ocfs2_data_convert_worker(struct ocfs2_lock_res
*lockres
,
102 static int ocfs2_dentry_convert_worker(struct ocfs2_lock_res
*lockres
,
105 static void ocfs2_dentry_post_unlock(struct ocfs2_super
*osb
,
106 struct ocfs2_lock_res
*lockres
);
108 static void ocfs2_set_qinfo_lvb(struct ocfs2_lock_res
*lockres
);
110 #define mlog_meta_lvb(__level, __lockres) ocfs2_dump_meta_lvb_info(__level, __PRETTY_FUNCTION__, __LINE__, __lockres)
112 /* This aids in debugging situations where a bad LVB might be involved. */
113 static void ocfs2_dump_meta_lvb_info(u64 level
,
114 const char *function
,
116 struct ocfs2_lock_res
*lockres
)
118 struct ocfs2_meta_lvb
*lvb
= ocfs2_dlm_lvb(&lockres
->l_lksb
);
120 mlog(level
, "LVB information for %s (called from %s:%u):\n",
121 lockres
->l_name
, function
, line
);
122 mlog(level
, "version: %u, clusters: %u, generation: 0x%x\n",
123 lvb
->lvb_version
, be32_to_cpu(lvb
->lvb_iclusters
),
124 be32_to_cpu(lvb
->lvb_igeneration
));
125 mlog(level
, "size: %llu, uid %u, gid %u, mode 0x%x\n",
126 (unsigned long long)be64_to_cpu(lvb
->lvb_isize
),
127 be32_to_cpu(lvb
->lvb_iuid
), be32_to_cpu(lvb
->lvb_igid
),
128 be16_to_cpu(lvb
->lvb_imode
));
129 mlog(level
, "nlink %u, atime_packed 0x%llx, ctime_packed 0x%llx, "
130 "mtime_packed 0x%llx iattr 0x%x\n", be16_to_cpu(lvb
->lvb_inlink
),
131 (long long)be64_to_cpu(lvb
->lvb_iatime_packed
),
132 (long long)be64_to_cpu(lvb
->lvb_ictime_packed
),
133 (long long)be64_to_cpu(lvb
->lvb_imtime_packed
),
134 be32_to_cpu(lvb
->lvb_iattr
));
139 * OCFS2 Lock Resource Operations
141 * These fine tune the behavior of the generic dlmglue locking infrastructure.
143 * The most basic of lock types can point ->l_priv to their respective
144 * struct ocfs2_super and allow the default actions to manage things.
146 * Right now, each lock type also needs to implement an init function,
147 * and trivial lock/unlock wrappers. ocfs2_simple_drop_lockres()
148 * should be called when the lock is no longer needed (i.e., object
151 struct ocfs2_lock_res_ops
{
153 * Translate an ocfs2_lock_res * into an ocfs2_super *. Define
154 * this callback if ->l_priv is not an ocfs2_super pointer
156 struct ocfs2_super
* (*get_osb
)(struct ocfs2_lock_res
*);
159 * Optionally called in the downconvert thread after a
160 * successful downconvert. The lockres will not be referenced
161 * after this callback is called, so it is safe to free
164 * The exact semantics of when this is called are controlled
165 * by ->downconvert_worker()
167 void (*post_unlock
)(struct ocfs2_super
*, struct ocfs2_lock_res
*);
170 * Allow a lock type to add checks to determine whether it is
171 * safe to downconvert a lock. Return 0 to re-queue the
172 * downconvert at a later time, nonzero to continue.
174 * For most locks, the default checks that there are no
175 * incompatible holders are sufficient.
177 * Called with the lockres spinlock held.
179 int (*check_downconvert
)(struct ocfs2_lock_res
*, int);
182 * Allows a lock type to populate the lock value block. This
183 * is called on downconvert, and when we drop a lock.
185 * Locks that want to use this should set LOCK_TYPE_USES_LVB
186 * in the flags field.
188 * Called with the lockres spinlock held.
190 void (*set_lvb
)(struct ocfs2_lock_res
*);
193 * Called from the downconvert thread when it is determined
194 * that a lock will be downconverted. This is called without
195 * any locks held so the function can do work that might
196 * schedule (syncing out data, etc).
198 * This should return any one of the ocfs2_unblock_action
199 * values, depending on what it wants the thread to do.
201 int (*downconvert_worker
)(struct ocfs2_lock_res
*, int);
204 * LOCK_TYPE_* flags which describe the specific requirements
205 * of a lock type. Descriptions of each individual flag follow.
211 * Some locks want to "refresh" potentially stale data when a
212 * meaningful (PRMODE or EXMODE) lock level is first obtained. If this
213 * flag is set, the OCFS2_LOCK_NEEDS_REFRESH flag will be set on the
214 * individual lockres l_flags member from the ast function. It is
215 * expected that the locking wrapper will clear the
216 * OCFS2_LOCK_NEEDS_REFRESH flag when done.
218 #define LOCK_TYPE_REQUIRES_REFRESH 0x1
221 * Indicate that a lock type makes use of the lock value block. The
222 * ->set_lvb lock type callback must be defined.
224 #define LOCK_TYPE_USES_LVB 0x2
226 static struct ocfs2_lock_res_ops ocfs2_inode_rw_lops
= {
227 .get_osb
= ocfs2_get_inode_osb
,
231 static struct ocfs2_lock_res_ops ocfs2_inode_inode_lops
= {
232 .get_osb
= ocfs2_get_inode_osb
,
233 .check_downconvert
= ocfs2_check_meta_downconvert
,
234 .set_lvb
= ocfs2_set_meta_lvb
,
235 .downconvert_worker
= ocfs2_data_convert_worker
,
236 .flags
= LOCK_TYPE_REQUIRES_REFRESH
|LOCK_TYPE_USES_LVB
,
239 static struct ocfs2_lock_res_ops ocfs2_super_lops
= {
240 .flags
= LOCK_TYPE_REQUIRES_REFRESH
,
243 static struct ocfs2_lock_res_ops ocfs2_rename_lops
= {
247 static struct ocfs2_lock_res_ops ocfs2_nfs_sync_lops
= {
251 static struct ocfs2_lock_res_ops ocfs2_dentry_lops
= {
252 .get_osb
= ocfs2_get_dentry_osb
,
253 .post_unlock
= ocfs2_dentry_post_unlock
,
254 .downconvert_worker
= ocfs2_dentry_convert_worker
,
258 static struct ocfs2_lock_res_ops ocfs2_inode_open_lops
= {
259 .get_osb
= ocfs2_get_inode_osb
,
263 static struct ocfs2_lock_res_ops ocfs2_flock_lops
= {
264 .get_osb
= ocfs2_get_file_osb
,
268 static struct ocfs2_lock_res_ops ocfs2_qinfo_lops
= {
269 .set_lvb
= ocfs2_set_qinfo_lvb
,
270 .get_osb
= ocfs2_get_qinfo_osb
,
271 .flags
= LOCK_TYPE_REQUIRES_REFRESH
| LOCK_TYPE_USES_LVB
,
274 static inline int ocfs2_is_inode_lock(struct ocfs2_lock_res
*lockres
)
276 return lockres
->l_type
== OCFS2_LOCK_TYPE_META
||
277 lockres
->l_type
== OCFS2_LOCK_TYPE_RW
||
278 lockres
->l_type
== OCFS2_LOCK_TYPE_OPEN
;
281 static inline struct inode
*ocfs2_lock_res_inode(struct ocfs2_lock_res
*lockres
)
283 BUG_ON(!ocfs2_is_inode_lock(lockres
));
285 return (struct inode
*) lockres
->l_priv
;
288 static inline struct ocfs2_dentry_lock
*ocfs2_lock_res_dl(struct ocfs2_lock_res
*lockres
)
290 BUG_ON(lockres
->l_type
!= OCFS2_LOCK_TYPE_DENTRY
);
292 return (struct ocfs2_dentry_lock
*)lockres
->l_priv
;
295 static inline struct ocfs2_mem_dqinfo
*ocfs2_lock_res_qinfo(struct ocfs2_lock_res
*lockres
)
297 BUG_ON(lockres
->l_type
!= OCFS2_LOCK_TYPE_QINFO
);
299 return (struct ocfs2_mem_dqinfo
*)lockres
->l_priv
;
302 static inline struct ocfs2_super
*ocfs2_get_lockres_osb(struct ocfs2_lock_res
*lockres
)
304 if (lockres
->l_ops
->get_osb
)
305 return lockres
->l_ops
->get_osb(lockres
);
307 return (struct ocfs2_super
*)lockres
->l_priv
;
310 static int ocfs2_lock_create(struct ocfs2_super
*osb
,
311 struct ocfs2_lock_res
*lockres
,
314 static inline int ocfs2_may_continue_on_blocked_lock(struct ocfs2_lock_res
*lockres
,
316 static void ocfs2_cluster_unlock(struct ocfs2_super
*osb
,
317 struct ocfs2_lock_res
*lockres
,
319 static inline void ocfs2_generic_handle_downconvert_action(struct ocfs2_lock_res
*lockres
);
320 static inline void ocfs2_generic_handle_convert_action(struct ocfs2_lock_res
*lockres
);
321 static inline void ocfs2_generic_handle_attach_action(struct ocfs2_lock_res
*lockres
);
322 static int ocfs2_generic_handle_bast(struct ocfs2_lock_res
*lockres
, int level
);
323 static void ocfs2_schedule_blocked_lock(struct ocfs2_super
*osb
,
324 struct ocfs2_lock_res
*lockres
);
325 static inline void ocfs2_recover_from_dlm_error(struct ocfs2_lock_res
*lockres
,
327 #define ocfs2_log_dlm_error(_func, _err, _lockres) do { \
328 if ((_lockres)->l_type != OCFS2_LOCK_TYPE_DENTRY) \
329 mlog(ML_ERROR, "DLM error %d while calling %s on resource %s\n", \
330 _err, _func, _lockres->l_name); \
332 mlog(ML_ERROR, "DLM error %d while calling %s on resource %.*s%08x\n", \
333 _err, _func, OCFS2_DENTRY_LOCK_INO_START - 1, (_lockres)->l_name, \
334 (unsigned int)ocfs2_get_dentry_lock_ino(_lockres)); \
336 static int ocfs2_downconvert_thread(void *arg
);
337 static void ocfs2_downconvert_on_unlock(struct ocfs2_super
*osb
,
338 struct ocfs2_lock_res
*lockres
);
339 static int ocfs2_inode_lock_update(struct inode
*inode
,
340 struct buffer_head
**bh
);
341 static void ocfs2_drop_osb_locks(struct ocfs2_super
*osb
);
342 static inline int ocfs2_highest_compat_lock_level(int level
);
343 static unsigned int ocfs2_prepare_downconvert(struct ocfs2_lock_res
*lockres
,
345 static int ocfs2_downconvert_lock(struct ocfs2_super
*osb
,
346 struct ocfs2_lock_res
*lockres
,
349 unsigned int generation
);
350 static int ocfs2_prepare_cancel_convert(struct ocfs2_super
*osb
,
351 struct ocfs2_lock_res
*lockres
);
352 static int ocfs2_cancel_convert(struct ocfs2_super
*osb
,
353 struct ocfs2_lock_res
*lockres
);
356 static void ocfs2_build_lock_name(enum ocfs2_lock_type type
,
365 BUG_ON(type
>= OCFS2_NUM_LOCK_TYPES
);
367 len
= snprintf(name
, OCFS2_LOCK_ID_MAX_LEN
, "%c%s%016llx%08x",
368 ocfs2_lock_type_char(type
), OCFS2_LOCK_ID_PAD
,
369 (long long)blkno
, generation
);
371 BUG_ON(len
!= (OCFS2_LOCK_ID_MAX_LEN
- 1));
373 mlog(0, "built lock resource with name: %s\n", name
);
378 static DEFINE_SPINLOCK(ocfs2_dlm_tracking_lock
);
380 static void ocfs2_add_lockres_tracking(struct ocfs2_lock_res
*res
,
381 struct ocfs2_dlm_debug
*dlm_debug
)
383 mlog(0, "Add tracking for lockres %s\n", res
->l_name
);
385 spin_lock(&ocfs2_dlm_tracking_lock
);
386 list_add(&res
->l_debug_list
, &dlm_debug
->d_lockres_tracking
);
387 spin_unlock(&ocfs2_dlm_tracking_lock
);
390 static void ocfs2_remove_lockres_tracking(struct ocfs2_lock_res
*res
)
392 spin_lock(&ocfs2_dlm_tracking_lock
);
393 if (!list_empty(&res
->l_debug_list
))
394 list_del_init(&res
->l_debug_list
);
395 spin_unlock(&ocfs2_dlm_tracking_lock
);
398 #ifdef CONFIG_OCFS2_FS_STATS
399 static void ocfs2_init_lock_stats(struct ocfs2_lock_res
*res
)
401 res
->l_lock_num_prmode
= 0;
402 res
->l_lock_num_prmode_failed
= 0;
403 res
->l_lock_total_prmode
= 0;
404 res
->l_lock_max_prmode
= 0;
405 res
->l_lock_num_exmode
= 0;
406 res
->l_lock_num_exmode_failed
= 0;
407 res
->l_lock_total_exmode
= 0;
408 res
->l_lock_max_exmode
= 0;
409 res
->l_lock_refresh
= 0;
412 static void ocfs2_update_lock_stats(struct ocfs2_lock_res
*res
, int level
,
413 struct ocfs2_mask_waiter
*mw
, int ret
)
415 unsigned long long *num
, *sum
;
416 unsigned int *max
, *failed
;
417 struct timespec ts
= current_kernel_time();
418 unsigned long long time
= timespec_to_ns(&ts
) - mw
->mw_lock_start
;
420 if (level
== LKM_PRMODE
) {
421 num
= &res
->l_lock_num_prmode
;
422 sum
= &res
->l_lock_total_prmode
;
423 max
= &res
->l_lock_max_prmode
;
424 failed
= &res
->l_lock_num_prmode_failed
;
425 } else if (level
== LKM_EXMODE
) {
426 num
= &res
->l_lock_num_exmode
;
427 sum
= &res
->l_lock_total_exmode
;
428 max
= &res
->l_lock_max_exmode
;
429 failed
= &res
->l_lock_num_exmode_failed
;
441 static inline void ocfs2_track_lock_refresh(struct ocfs2_lock_res
*lockres
)
443 lockres
->l_lock_refresh
++;
446 static inline void ocfs2_init_start_time(struct ocfs2_mask_waiter
*mw
)
448 struct timespec ts
= current_kernel_time();
449 mw
->mw_lock_start
= timespec_to_ns(&ts
);
452 static inline void ocfs2_init_lock_stats(struct ocfs2_lock_res
*res
)
455 static inline void ocfs2_update_lock_stats(struct ocfs2_lock_res
*res
,
456 int level
, struct ocfs2_mask_waiter
*mw
, int ret
)
459 static inline void ocfs2_track_lock_refresh(struct ocfs2_lock_res
*lockres
)
462 static inline void ocfs2_init_start_time(struct ocfs2_mask_waiter
*mw
)
467 static void ocfs2_lock_res_init_common(struct ocfs2_super
*osb
,
468 struct ocfs2_lock_res
*res
,
469 enum ocfs2_lock_type type
,
470 struct ocfs2_lock_res_ops
*ops
,
477 res
->l_level
= DLM_LOCK_IV
;
478 res
->l_requested
= DLM_LOCK_IV
;
479 res
->l_blocking
= DLM_LOCK_IV
;
480 res
->l_action
= OCFS2_AST_INVALID
;
481 res
->l_unlock_action
= OCFS2_UNLOCK_INVALID
;
483 res
->l_flags
= OCFS2_LOCK_INITIALIZED
;
485 ocfs2_add_lockres_tracking(res
, osb
->osb_dlm_debug
);
487 ocfs2_init_lock_stats(res
);
490 void ocfs2_lock_res_init_once(struct ocfs2_lock_res
*res
)
492 /* This also clears out the lock status block */
493 memset(res
, 0, sizeof(struct ocfs2_lock_res
));
494 spin_lock_init(&res
->l_lock
);
495 init_waitqueue_head(&res
->l_event
);
496 INIT_LIST_HEAD(&res
->l_blocked_list
);
497 INIT_LIST_HEAD(&res
->l_mask_waiters
);
500 void ocfs2_inode_lock_res_init(struct ocfs2_lock_res
*res
,
501 enum ocfs2_lock_type type
,
502 unsigned int generation
,
505 struct ocfs2_lock_res_ops
*ops
;
508 case OCFS2_LOCK_TYPE_RW
:
509 ops
= &ocfs2_inode_rw_lops
;
511 case OCFS2_LOCK_TYPE_META
:
512 ops
= &ocfs2_inode_inode_lops
;
514 case OCFS2_LOCK_TYPE_OPEN
:
515 ops
= &ocfs2_inode_open_lops
;
518 mlog_bug_on_msg(1, "type: %d\n", type
);
519 ops
= NULL
; /* thanks, gcc */
523 ocfs2_build_lock_name(type
, OCFS2_I(inode
)->ip_blkno
,
524 generation
, res
->l_name
);
525 ocfs2_lock_res_init_common(OCFS2_SB(inode
->i_sb
), res
, type
, ops
, inode
);
528 static struct ocfs2_super
*ocfs2_get_inode_osb(struct ocfs2_lock_res
*lockres
)
530 struct inode
*inode
= ocfs2_lock_res_inode(lockres
);
532 return OCFS2_SB(inode
->i_sb
);
535 static struct ocfs2_super
*ocfs2_get_qinfo_osb(struct ocfs2_lock_res
*lockres
)
537 struct ocfs2_mem_dqinfo
*info
= lockres
->l_priv
;
539 return OCFS2_SB(info
->dqi_gi
.dqi_sb
);
542 static struct ocfs2_super
*ocfs2_get_file_osb(struct ocfs2_lock_res
*lockres
)
544 struct ocfs2_file_private
*fp
= lockres
->l_priv
;
546 return OCFS2_SB(fp
->fp_file
->f_mapping
->host
->i_sb
);
549 static __u64
ocfs2_get_dentry_lock_ino(struct ocfs2_lock_res
*lockres
)
551 __be64 inode_blkno_be
;
553 memcpy(&inode_blkno_be
, &lockres
->l_name
[OCFS2_DENTRY_LOCK_INO_START
],
556 return be64_to_cpu(inode_blkno_be
);
559 static struct ocfs2_super
*ocfs2_get_dentry_osb(struct ocfs2_lock_res
*lockres
)
561 struct ocfs2_dentry_lock
*dl
= lockres
->l_priv
;
563 return OCFS2_SB(dl
->dl_inode
->i_sb
);
566 void ocfs2_dentry_lock_res_init(struct ocfs2_dentry_lock
*dl
,
567 u64 parent
, struct inode
*inode
)
570 u64 inode_blkno
= OCFS2_I(inode
)->ip_blkno
;
571 __be64 inode_blkno_be
= cpu_to_be64(inode_blkno
);
572 struct ocfs2_lock_res
*lockres
= &dl
->dl_lockres
;
574 ocfs2_lock_res_init_once(lockres
);
577 * Unfortunately, the standard lock naming scheme won't work
578 * here because we have two 16 byte values to use. Instead,
579 * we'll stuff the inode number as a binary value. We still
580 * want error prints to show something without garbling the
581 * display, so drop a null byte in there before the inode
582 * number. A future version of OCFS2 will likely use all
583 * binary lock names. The stringified names have been a
584 * tremendous aid in debugging, but now that the debugfs
585 * interface exists, we can mangle things there if need be.
587 * NOTE: We also drop the standard "pad" value (the total lock
588 * name size stays the same though - the last part is all
589 * zeros due to the memset in ocfs2_lock_res_init_once()
591 len
= snprintf(lockres
->l_name
, OCFS2_DENTRY_LOCK_INO_START
,
593 ocfs2_lock_type_char(OCFS2_LOCK_TYPE_DENTRY
),
596 BUG_ON(len
!= (OCFS2_DENTRY_LOCK_INO_START
- 1));
598 memcpy(&lockres
->l_name
[OCFS2_DENTRY_LOCK_INO_START
], &inode_blkno_be
,
601 ocfs2_lock_res_init_common(OCFS2_SB(inode
->i_sb
), lockres
,
602 OCFS2_LOCK_TYPE_DENTRY
, &ocfs2_dentry_lops
,
606 static void ocfs2_super_lock_res_init(struct ocfs2_lock_res
*res
,
607 struct ocfs2_super
*osb
)
609 /* Superblock lockres doesn't come from a slab so we call init
610 * once on it manually. */
611 ocfs2_lock_res_init_once(res
);
612 ocfs2_build_lock_name(OCFS2_LOCK_TYPE_SUPER
, OCFS2_SUPER_BLOCK_BLKNO
,
614 ocfs2_lock_res_init_common(osb
, res
, OCFS2_LOCK_TYPE_SUPER
,
615 &ocfs2_super_lops
, osb
);
618 static void ocfs2_rename_lock_res_init(struct ocfs2_lock_res
*res
,
619 struct ocfs2_super
*osb
)
621 /* Rename lockres doesn't come from a slab so we call init
622 * once on it manually. */
623 ocfs2_lock_res_init_once(res
);
624 ocfs2_build_lock_name(OCFS2_LOCK_TYPE_RENAME
, 0, 0, res
->l_name
);
625 ocfs2_lock_res_init_common(osb
, res
, OCFS2_LOCK_TYPE_RENAME
,
626 &ocfs2_rename_lops
, osb
);
629 static void ocfs2_nfs_sync_lock_res_init(struct ocfs2_lock_res
*res
,
630 struct ocfs2_super
*osb
)
632 /* nfs_sync lockres doesn't come from a slab so we call init
633 * once on it manually. */
634 ocfs2_lock_res_init_once(res
);
635 ocfs2_build_lock_name(OCFS2_LOCK_TYPE_NFS_SYNC
, 0, 0, res
->l_name
);
636 ocfs2_lock_res_init_common(osb
, res
, OCFS2_LOCK_TYPE_NFS_SYNC
,
637 &ocfs2_nfs_sync_lops
, osb
);
640 void ocfs2_file_lock_res_init(struct ocfs2_lock_res
*lockres
,
641 struct ocfs2_file_private
*fp
)
643 struct inode
*inode
= fp
->fp_file
->f_mapping
->host
;
644 struct ocfs2_inode_info
*oi
= OCFS2_I(inode
);
646 ocfs2_lock_res_init_once(lockres
);
647 ocfs2_build_lock_name(OCFS2_LOCK_TYPE_FLOCK
, oi
->ip_blkno
,
648 inode
->i_generation
, lockres
->l_name
);
649 ocfs2_lock_res_init_common(OCFS2_SB(inode
->i_sb
), lockres
,
650 OCFS2_LOCK_TYPE_FLOCK
, &ocfs2_flock_lops
,
652 lockres
->l_flags
|= OCFS2_LOCK_NOCACHE
;
655 void ocfs2_qinfo_lock_res_init(struct ocfs2_lock_res
*lockres
,
656 struct ocfs2_mem_dqinfo
*info
)
658 ocfs2_lock_res_init_once(lockres
);
659 ocfs2_build_lock_name(OCFS2_LOCK_TYPE_QINFO
, info
->dqi_gi
.dqi_type
,
661 ocfs2_lock_res_init_common(OCFS2_SB(info
->dqi_gi
.dqi_sb
), lockres
,
662 OCFS2_LOCK_TYPE_QINFO
, &ocfs2_qinfo_lops
,
666 void ocfs2_lock_res_free(struct ocfs2_lock_res
*res
)
670 if (!(res
->l_flags
& OCFS2_LOCK_INITIALIZED
))
673 ocfs2_remove_lockres_tracking(res
);
675 mlog_bug_on_msg(!list_empty(&res
->l_blocked_list
),
676 "Lockres %s is on the blocked list\n",
678 mlog_bug_on_msg(!list_empty(&res
->l_mask_waiters
),
679 "Lockres %s has mask waiters pending\n",
681 mlog_bug_on_msg(spin_is_locked(&res
->l_lock
),
682 "Lockres %s is locked\n",
684 mlog_bug_on_msg(res
->l_ro_holders
,
685 "Lockres %s has %u ro holders\n",
686 res
->l_name
, res
->l_ro_holders
);
687 mlog_bug_on_msg(res
->l_ex_holders
,
688 "Lockres %s has %u ex holders\n",
689 res
->l_name
, res
->l_ex_holders
);
691 /* Need to clear out the lock status block for the dlm */
692 memset(&res
->l_lksb
, 0, sizeof(res
->l_lksb
));
698 static inline void ocfs2_inc_holders(struct ocfs2_lock_res
*lockres
,
707 lockres
->l_ex_holders
++;
710 lockres
->l_ro_holders
++;
719 static inline void ocfs2_dec_holders(struct ocfs2_lock_res
*lockres
,
728 BUG_ON(!lockres
->l_ex_holders
);
729 lockres
->l_ex_holders
--;
732 BUG_ON(!lockres
->l_ro_holders
);
733 lockres
->l_ro_holders
--;
741 /* WARNING: This function lives in a world where the only three lock
742 * levels are EX, PR, and NL. It *will* have to be adjusted when more
743 * lock types are added. */
744 static inline int ocfs2_highest_compat_lock_level(int level
)
746 int new_level
= DLM_LOCK_EX
;
748 if (level
== DLM_LOCK_EX
)
749 new_level
= DLM_LOCK_NL
;
750 else if (level
== DLM_LOCK_PR
)
751 new_level
= DLM_LOCK_PR
;
755 static void lockres_set_flags(struct ocfs2_lock_res
*lockres
,
756 unsigned long newflags
)
758 struct ocfs2_mask_waiter
*mw
, *tmp
;
760 assert_spin_locked(&lockres
->l_lock
);
762 lockres
->l_flags
= newflags
;
764 list_for_each_entry_safe(mw
, tmp
, &lockres
->l_mask_waiters
, mw_item
) {
765 if ((lockres
->l_flags
& mw
->mw_mask
) != mw
->mw_goal
)
768 list_del_init(&mw
->mw_item
);
770 complete(&mw
->mw_complete
);
773 static void lockres_or_flags(struct ocfs2_lock_res
*lockres
, unsigned long or)
775 lockres_set_flags(lockres
, lockres
->l_flags
| or);
777 static void lockres_clear_flags(struct ocfs2_lock_res
*lockres
,
780 lockres_set_flags(lockres
, lockres
->l_flags
& ~clear
);
783 static inline void ocfs2_generic_handle_downconvert_action(struct ocfs2_lock_res
*lockres
)
787 BUG_ON(!(lockres
->l_flags
& OCFS2_LOCK_BUSY
));
788 BUG_ON(!(lockres
->l_flags
& OCFS2_LOCK_ATTACHED
));
789 BUG_ON(!(lockres
->l_flags
& OCFS2_LOCK_BLOCKED
));
790 BUG_ON(lockres
->l_blocking
<= DLM_LOCK_NL
);
792 lockres
->l_level
= lockres
->l_requested
;
793 if (lockres
->l_level
<=
794 ocfs2_highest_compat_lock_level(lockres
->l_blocking
)) {
795 lockres
->l_blocking
= DLM_LOCK_NL
;
796 lockres_clear_flags(lockres
, OCFS2_LOCK_BLOCKED
);
798 lockres_clear_flags(lockres
, OCFS2_LOCK_BUSY
);
803 static inline void ocfs2_generic_handle_convert_action(struct ocfs2_lock_res
*lockres
)
807 BUG_ON(!(lockres
->l_flags
& OCFS2_LOCK_BUSY
));
808 BUG_ON(!(lockres
->l_flags
& OCFS2_LOCK_ATTACHED
));
810 /* Convert from RO to EX doesn't really need anything as our
811 * information is already up to data. Convert from NL to
812 * *anything* however should mark ourselves as needing an
814 if (lockres
->l_level
== DLM_LOCK_NL
&&
815 lockres
->l_ops
->flags
& LOCK_TYPE_REQUIRES_REFRESH
)
816 lockres_or_flags(lockres
, OCFS2_LOCK_NEEDS_REFRESH
);
818 lockres
->l_level
= lockres
->l_requested
;
819 lockres_clear_flags(lockres
, OCFS2_LOCK_BUSY
);
824 static inline void ocfs2_generic_handle_attach_action(struct ocfs2_lock_res
*lockres
)
828 BUG_ON((!(lockres
->l_flags
& OCFS2_LOCK_BUSY
)));
829 BUG_ON(lockres
->l_flags
& OCFS2_LOCK_ATTACHED
);
831 if (lockres
->l_requested
> DLM_LOCK_NL
&&
832 !(lockres
->l_flags
& OCFS2_LOCK_LOCAL
) &&
833 lockres
->l_ops
->flags
& LOCK_TYPE_REQUIRES_REFRESH
)
834 lockres_or_flags(lockres
, OCFS2_LOCK_NEEDS_REFRESH
);
836 lockres
->l_level
= lockres
->l_requested
;
837 lockres_or_flags(lockres
, OCFS2_LOCK_ATTACHED
);
838 lockres_clear_flags(lockres
, OCFS2_LOCK_BUSY
);
843 static int ocfs2_generic_handle_bast(struct ocfs2_lock_res
*lockres
,
846 int needs_downconvert
= 0;
849 assert_spin_locked(&lockres
->l_lock
);
851 lockres_or_flags(lockres
, OCFS2_LOCK_BLOCKED
);
853 if (level
> lockres
->l_blocking
) {
854 /* only schedule a downconvert if we haven't already scheduled
855 * one that goes low enough to satisfy the level we're
856 * blocking. this also catches the case where we get
858 if (ocfs2_highest_compat_lock_level(level
) <
859 ocfs2_highest_compat_lock_level(lockres
->l_blocking
))
860 needs_downconvert
= 1;
862 lockres
->l_blocking
= level
;
865 mlog_exit(needs_downconvert
);
866 return needs_downconvert
;
870 * OCFS2_LOCK_PENDING and l_pending_gen.
872 * Why does OCFS2_LOCK_PENDING exist? To close a race between setting
873 * OCFS2_LOCK_BUSY and calling ocfs2_dlm_lock(). See ocfs2_unblock_lock()
874 * for more details on the race.
876 * OCFS2_LOCK_PENDING closes the race quite nicely. However, it introduces
877 * a race on itself. In o2dlm, we can get the ast before ocfs2_dlm_lock()
878 * returns. The ast clears OCFS2_LOCK_BUSY, and must therefore clear
879 * OCFS2_LOCK_PENDING at the same time. When ocfs2_dlm_lock() returns,
880 * the caller is going to try to clear PENDING again. If nothing else is
881 * happening, __lockres_clear_pending() sees PENDING is unset and does
884 * But what if another path (eg downconvert thread) has just started a
885 * new locking action? The other path has re-set PENDING. Our path
886 * cannot clear PENDING, because that will re-open the original race
892 * ocfs2_cluster_lock()
897 * ocfs2_locking_ast() ocfs2_downconvert_thread()
898 * clear PENDING ocfs2_unblock_lock()
901 * ocfs2_prepare_downconvert()
911 * So as you can see, we now have a window where l_lock is not held,
912 * PENDING is not set, and ocfs2_dlm_lock() has not been called.
914 * The core problem is that ocfs2_cluster_lock() has cleared the PENDING
915 * set by ocfs2_prepare_downconvert(). That wasn't nice.
917 * To solve this we introduce l_pending_gen. A call to
918 * lockres_clear_pending() will only do so when it is passed a generation
919 * number that matches the lockres. lockres_set_pending() will return the
920 * current generation number. When ocfs2_cluster_lock() goes to clear
921 * PENDING, it passes the generation it got from set_pending(). In our
922 * example above, the generation numbers will *not* match. Thus,
923 * ocfs2_cluster_lock() will not clear the PENDING set by
924 * ocfs2_prepare_downconvert().
927 /* Unlocked version for ocfs2_locking_ast() */
928 static void __lockres_clear_pending(struct ocfs2_lock_res
*lockres
,
929 unsigned int generation
,
930 struct ocfs2_super
*osb
)
932 assert_spin_locked(&lockres
->l_lock
);
935 * The ast and locking functions can race us here. The winner
936 * will clear pending, the loser will not.
938 if (!(lockres
->l_flags
& OCFS2_LOCK_PENDING
) ||
939 (lockres
->l_pending_gen
!= generation
))
942 lockres_clear_flags(lockres
, OCFS2_LOCK_PENDING
);
943 lockres
->l_pending_gen
++;
946 * The downconvert thread may have skipped us because we
947 * were PENDING. Wake it up.
949 if (lockres
->l_flags
& OCFS2_LOCK_BLOCKED
)
950 ocfs2_wake_downconvert_thread(osb
);
953 /* Locked version for callers of ocfs2_dlm_lock() */
954 static void lockres_clear_pending(struct ocfs2_lock_res
*lockres
,
955 unsigned int generation
,
956 struct ocfs2_super
*osb
)
960 spin_lock_irqsave(&lockres
->l_lock
, flags
);
961 __lockres_clear_pending(lockres
, generation
, osb
);
962 spin_unlock_irqrestore(&lockres
->l_lock
, flags
);
965 static unsigned int lockres_set_pending(struct ocfs2_lock_res
*lockres
)
967 assert_spin_locked(&lockres
->l_lock
);
968 BUG_ON(!(lockres
->l_flags
& OCFS2_LOCK_BUSY
));
970 lockres_or_flags(lockres
, OCFS2_LOCK_PENDING
);
972 return lockres
->l_pending_gen
;
976 static void ocfs2_blocking_ast(void *opaque
, int level
)
978 struct ocfs2_lock_res
*lockres
= opaque
;
979 struct ocfs2_super
*osb
= ocfs2_get_lockres_osb(lockres
);
980 int needs_downconvert
;
983 BUG_ON(level
<= DLM_LOCK_NL
);
985 mlog(0, "BAST fired for lockres %s, blocking %d, level %d type %s\n",
986 lockres
->l_name
, level
, lockres
->l_level
,
987 ocfs2_lock_type_string(lockres
->l_type
));
990 * We can skip the bast for locks which don't enable caching -
991 * they'll be dropped at the earliest possible time anyway.
993 if (lockres
->l_flags
& OCFS2_LOCK_NOCACHE
)
996 spin_lock_irqsave(&lockres
->l_lock
, flags
);
997 needs_downconvert
= ocfs2_generic_handle_bast(lockres
, level
);
998 if (needs_downconvert
)
999 ocfs2_schedule_blocked_lock(osb
, lockres
);
1000 spin_unlock_irqrestore(&lockres
->l_lock
, flags
);
1002 wake_up(&lockres
->l_event
);
1004 ocfs2_wake_downconvert_thread(osb
);
1007 static void ocfs2_locking_ast(void *opaque
)
1009 struct ocfs2_lock_res
*lockres
= opaque
;
1010 struct ocfs2_super
*osb
= ocfs2_get_lockres_osb(lockres
);
1011 unsigned long flags
;
1014 spin_lock_irqsave(&lockres
->l_lock
, flags
);
1016 status
= ocfs2_dlm_lock_status(&lockres
->l_lksb
);
1018 if (status
== -EAGAIN
) {
1019 lockres_clear_flags(lockres
, OCFS2_LOCK_BUSY
);
1024 mlog(ML_ERROR
, "lockres %s: lksb status value of %d!\n",
1025 lockres
->l_name
, status
);
1026 spin_unlock_irqrestore(&lockres
->l_lock
, flags
);
1030 switch(lockres
->l_action
) {
1031 case OCFS2_AST_ATTACH
:
1032 ocfs2_generic_handle_attach_action(lockres
);
1033 lockres_clear_flags(lockres
, OCFS2_LOCK_LOCAL
);
1035 case OCFS2_AST_CONVERT
:
1036 ocfs2_generic_handle_convert_action(lockres
);
1038 case OCFS2_AST_DOWNCONVERT
:
1039 ocfs2_generic_handle_downconvert_action(lockres
);
1042 mlog(ML_ERROR
, "lockres %s: ast fired with invalid action: %u "
1043 "lockres flags = 0x%lx, unlock action: %u\n",
1044 lockres
->l_name
, lockres
->l_action
, lockres
->l_flags
,
1045 lockres
->l_unlock_action
);
1049 /* set it to something invalid so if we get called again we
1051 lockres
->l_action
= OCFS2_AST_INVALID
;
1053 /* Did we try to cancel this lock? Clear that state */
1054 if (lockres
->l_unlock_action
== OCFS2_UNLOCK_CANCEL_CONVERT
)
1055 lockres
->l_unlock_action
= OCFS2_UNLOCK_INVALID
;
1058 * We may have beaten the locking functions here. We certainly
1059 * know that dlm_lock() has been called :-)
1060 * Because we can't have two lock calls in flight at once, we
1061 * can use lockres->l_pending_gen.
1063 __lockres_clear_pending(lockres
, lockres
->l_pending_gen
, osb
);
1065 wake_up(&lockres
->l_event
);
1066 spin_unlock_irqrestore(&lockres
->l_lock
, flags
);
1069 static inline void ocfs2_recover_from_dlm_error(struct ocfs2_lock_res
*lockres
,
1072 unsigned long flags
;
1075 spin_lock_irqsave(&lockres
->l_lock
, flags
);
1076 lockres_clear_flags(lockres
, OCFS2_LOCK_BUSY
);
1078 lockres
->l_action
= OCFS2_AST_INVALID
;
1080 lockres
->l_unlock_action
= OCFS2_UNLOCK_INVALID
;
1081 spin_unlock_irqrestore(&lockres
->l_lock
, flags
);
1083 wake_up(&lockres
->l_event
);
1087 /* Note: If we detect another process working on the lock (i.e.,
1088 * OCFS2_LOCK_BUSY), we'll bail out returning 0. It's up to the caller
1089 * to do the right thing in that case.
1091 static int ocfs2_lock_create(struct ocfs2_super
*osb
,
1092 struct ocfs2_lock_res
*lockres
,
1097 unsigned long flags
;
1102 mlog(0, "lock %s, level = %d, flags = %u\n", lockres
->l_name
, level
,
1105 spin_lock_irqsave(&lockres
->l_lock
, flags
);
1106 if ((lockres
->l_flags
& OCFS2_LOCK_ATTACHED
) ||
1107 (lockres
->l_flags
& OCFS2_LOCK_BUSY
)) {
1108 spin_unlock_irqrestore(&lockres
->l_lock
, flags
);
1112 lockres
->l_action
= OCFS2_AST_ATTACH
;
1113 lockres
->l_requested
= level
;
1114 lockres_or_flags(lockres
, OCFS2_LOCK_BUSY
);
1115 gen
= lockres_set_pending(lockres
);
1116 spin_unlock_irqrestore(&lockres
->l_lock
, flags
);
1118 ret
= ocfs2_dlm_lock(osb
->cconn
,
1123 OCFS2_LOCK_ID_MAX_LEN
- 1,
1125 lockres_clear_pending(lockres
, gen
, osb
);
1127 ocfs2_log_dlm_error("ocfs2_dlm_lock", ret
, lockres
);
1128 ocfs2_recover_from_dlm_error(lockres
, 1);
1131 mlog(0, "lock %s, return from ocfs2_dlm_lock\n", lockres
->l_name
);
1138 static inline int ocfs2_check_wait_flag(struct ocfs2_lock_res
*lockres
,
1141 unsigned long flags
;
1144 spin_lock_irqsave(&lockres
->l_lock
, flags
);
1145 ret
= lockres
->l_flags
& flag
;
1146 spin_unlock_irqrestore(&lockres
->l_lock
, flags
);
1151 static inline void ocfs2_wait_on_busy_lock(struct ocfs2_lock_res
*lockres
)
1154 wait_event(lockres
->l_event
,
1155 !ocfs2_check_wait_flag(lockres
, OCFS2_LOCK_BUSY
));
1158 static inline void ocfs2_wait_on_refreshing_lock(struct ocfs2_lock_res
*lockres
)
1161 wait_event(lockres
->l_event
,
1162 !ocfs2_check_wait_flag(lockres
, OCFS2_LOCK_REFRESHING
));
1165 /* predict what lock level we'll be dropping down to on behalf
1166 * of another node, and return true if the currently wanted
1167 * level will be compatible with it. */
1168 static inline int ocfs2_may_continue_on_blocked_lock(struct ocfs2_lock_res
*lockres
,
1171 BUG_ON(!(lockres
->l_flags
& OCFS2_LOCK_BLOCKED
));
1173 return wanted
<= ocfs2_highest_compat_lock_level(lockres
->l_blocking
);
1176 static void ocfs2_init_mask_waiter(struct ocfs2_mask_waiter
*mw
)
1178 INIT_LIST_HEAD(&mw
->mw_item
);
1179 init_completion(&mw
->mw_complete
);
1180 ocfs2_init_start_time(mw
);
1183 static int ocfs2_wait_for_mask(struct ocfs2_mask_waiter
*mw
)
1185 wait_for_completion(&mw
->mw_complete
);
1186 /* Re-arm the completion in case we want to wait on it again */
1187 INIT_COMPLETION(mw
->mw_complete
);
1188 return mw
->mw_status
;
1191 static void lockres_add_mask_waiter(struct ocfs2_lock_res
*lockres
,
1192 struct ocfs2_mask_waiter
*mw
,
1196 BUG_ON(!list_empty(&mw
->mw_item
));
1198 assert_spin_locked(&lockres
->l_lock
);
1200 list_add_tail(&mw
->mw_item
, &lockres
->l_mask_waiters
);
1205 /* returns 0 if the mw that was removed was already satisfied, -EBUSY
1206 * if the mask still hadn't reached its goal */
1207 static int lockres_remove_mask_waiter(struct ocfs2_lock_res
*lockres
,
1208 struct ocfs2_mask_waiter
*mw
)
1210 unsigned long flags
;
1213 spin_lock_irqsave(&lockres
->l_lock
, flags
);
1214 if (!list_empty(&mw
->mw_item
)) {
1215 if ((lockres
->l_flags
& mw
->mw_mask
) != mw
->mw_goal
)
1218 list_del_init(&mw
->mw_item
);
1219 init_completion(&mw
->mw_complete
);
1221 spin_unlock_irqrestore(&lockres
->l_lock
, flags
);
1227 static int ocfs2_wait_for_mask_interruptible(struct ocfs2_mask_waiter
*mw
,
1228 struct ocfs2_lock_res
*lockres
)
1232 ret
= wait_for_completion_interruptible(&mw
->mw_complete
);
1234 lockres_remove_mask_waiter(lockres
, mw
);
1236 ret
= mw
->mw_status
;
1237 /* Re-arm the completion in case we want to wait on it again */
1238 INIT_COMPLETION(mw
->mw_complete
);
1242 static int ocfs2_cluster_lock(struct ocfs2_super
*osb
,
1243 struct ocfs2_lock_res
*lockres
,
1248 struct ocfs2_mask_waiter mw
;
1249 int wait
, catch_signals
= !(osb
->s_mount_opt
& OCFS2_MOUNT_NOINTR
);
1250 int ret
= 0; /* gcc doesn't realize wait = 1 guarantees ret is set */
1251 unsigned long flags
;
1253 int noqueue_attempted
= 0;
1257 ocfs2_init_mask_waiter(&mw
);
1259 if (lockres
->l_ops
->flags
& LOCK_TYPE_USES_LVB
)
1260 lkm_flags
|= DLM_LKF_VALBLK
;
1265 if (catch_signals
&& signal_pending(current
)) {
1270 spin_lock_irqsave(&lockres
->l_lock
, flags
);
1272 mlog_bug_on_msg(lockres
->l_flags
& OCFS2_LOCK_FREEING
,
1273 "Cluster lock called on freeing lockres %s! flags "
1274 "0x%lx\n", lockres
->l_name
, lockres
->l_flags
);
1276 /* We only compare against the currently granted level
1277 * here. If the lock is blocked waiting on a downconvert,
1278 * we'll get caught below. */
1279 if (lockres
->l_flags
& OCFS2_LOCK_BUSY
&&
1280 level
> lockres
->l_level
) {
1281 /* is someone sitting in dlm_lock? If so, wait on
1283 lockres_add_mask_waiter(lockres
, &mw
, OCFS2_LOCK_BUSY
, 0);
1288 if (lockres
->l_flags
& OCFS2_LOCK_BLOCKED
&&
1289 !ocfs2_may_continue_on_blocked_lock(lockres
, level
)) {
1290 /* is the lock is currently blocked on behalf of
1292 lockres_add_mask_waiter(lockres
, &mw
, OCFS2_LOCK_BLOCKED
, 0);
1297 if (level
> lockres
->l_level
) {
1298 if (noqueue_attempted
> 0) {
1302 if (lkm_flags
& DLM_LKF_NOQUEUE
)
1303 noqueue_attempted
= 1;
1305 if (lockres
->l_action
!= OCFS2_AST_INVALID
)
1306 mlog(ML_ERROR
, "lockres %s has action %u pending\n",
1307 lockres
->l_name
, lockres
->l_action
);
1309 if (!(lockres
->l_flags
& OCFS2_LOCK_ATTACHED
)) {
1310 lockres
->l_action
= OCFS2_AST_ATTACH
;
1311 lkm_flags
&= ~DLM_LKF_CONVERT
;
1313 lockres
->l_action
= OCFS2_AST_CONVERT
;
1314 lkm_flags
|= DLM_LKF_CONVERT
;
1317 lockres
->l_requested
= level
;
1318 lockres_or_flags(lockres
, OCFS2_LOCK_BUSY
);
1319 gen
= lockres_set_pending(lockres
);
1320 spin_unlock_irqrestore(&lockres
->l_lock
, flags
);
1322 BUG_ON(level
== DLM_LOCK_IV
);
1323 BUG_ON(level
== DLM_LOCK_NL
);
1325 mlog(0, "lock %s, convert from %d to level = %d\n",
1326 lockres
->l_name
, lockres
->l_level
, level
);
1328 /* call dlm_lock to upgrade lock now */
1329 ret
= ocfs2_dlm_lock(osb
->cconn
,
1334 OCFS2_LOCK_ID_MAX_LEN
- 1,
1336 lockres_clear_pending(lockres
, gen
, osb
);
1338 if (!(lkm_flags
& DLM_LKF_NOQUEUE
) ||
1340 ocfs2_log_dlm_error("ocfs2_dlm_lock",
1343 ocfs2_recover_from_dlm_error(lockres
, 1);
1347 mlog(0, "lock %s, successful return from ocfs2_dlm_lock\n",
1350 /* At this point we've gone inside the dlm and need to
1351 * complete our work regardless. */
1354 /* wait for busy to clear and carry on */
1358 /* Ok, if we get here then we're good to go. */
1359 ocfs2_inc_holders(lockres
, level
);
1363 spin_unlock_irqrestore(&lockres
->l_lock
, flags
);
1366 * This is helping work around a lock inversion between the page lock
1367 * and dlm locks. One path holds the page lock while calling aops
1368 * which block acquiring dlm locks. The voting thread holds dlm
1369 * locks while acquiring page locks while down converting data locks.
1370 * This block is helping an aop path notice the inversion and back
1371 * off to unlock its page lock before trying the dlm lock again.
1373 if (wait
&& arg_flags
& OCFS2_LOCK_NONBLOCK
&&
1374 mw
.mw_mask
& (OCFS2_LOCK_BUSY
|OCFS2_LOCK_BLOCKED
)) {
1376 if (lockres_remove_mask_waiter(lockres
, &mw
))
1382 ret
= ocfs2_wait_for_mask(&mw
);
1387 ocfs2_update_lock_stats(lockres
, level
, &mw
, ret
);
1393 static void ocfs2_cluster_unlock(struct ocfs2_super
*osb
,
1394 struct ocfs2_lock_res
*lockres
,
1397 unsigned long flags
;
1400 spin_lock_irqsave(&lockres
->l_lock
, flags
);
1401 ocfs2_dec_holders(lockres
, level
);
1402 ocfs2_downconvert_on_unlock(osb
, lockres
);
1403 spin_unlock_irqrestore(&lockres
->l_lock
, flags
);
1407 static int ocfs2_create_new_lock(struct ocfs2_super
*osb
,
1408 struct ocfs2_lock_res
*lockres
,
1412 int level
= ex
? DLM_LOCK_EX
: DLM_LOCK_PR
;
1413 unsigned long flags
;
1414 u32 lkm_flags
= local
? DLM_LKF_LOCAL
: 0;
1416 spin_lock_irqsave(&lockres
->l_lock
, flags
);
1417 BUG_ON(lockres
->l_flags
& OCFS2_LOCK_ATTACHED
);
1418 lockres_or_flags(lockres
, OCFS2_LOCK_LOCAL
);
1419 spin_unlock_irqrestore(&lockres
->l_lock
, flags
);
1421 return ocfs2_lock_create(osb
, lockres
, level
, lkm_flags
);
1424 /* Grants us an EX lock on the data and metadata resources, skipping
1425 * the normal cluster directory lookup. Use this ONLY on newly created
1426 * inodes which other nodes can't possibly see, and which haven't been
1427 * hashed in the inode hash yet. This can give us a good performance
1428 * increase as it'll skip the network broadcast normally associated
1429 * with creating a new lock resource. */
1430 int ocfs2_create_new_inode_locks(struct inode
*inode
)
1433 struct ocfs2_super
*osb
= OCFS2_SB(inode
->i_sb
);
1436 BUG_ON(!ocfs2_inode_is_new(inode
));
1440 mlog(0, "Inode %llu\n", (unsigned long long)OCFS2_I(inode
)->ip_blkno
);
1442 /* NOTE: That we don't increment any of the holder counts, nor
1443 * do we add anything to a journal handle. Since this is
1444 * supposed to be a new inode which the cluster doesn't know
1445 * about yet, there is no need to. As far as the LVB handling
1446 * is concerned, this is basically like acquiring an EX lock
1447 * on a resource which has an invalid one -- we'll set it
1448 * valid when we release the EX. */
1450 ret
= ocfs2_create_new_lock(osb
, &OCFS2_I(inode
)->ip_rw_lockres
, 1, 1);
1457 * We don't want to use DLM_LKF_LOCAL on a meta data lock as they
1458 * don't use a generation in their lock names.
1460 ret
= ocfs2_create_new_lock(osb
, &OCFS2_I(inode
)->ip_inode_lockres
, 1, 0);
1466 ret
= ocfs2_create_new_lock(osb
, &OCFS2_I(inode
)->ip_open_lockres
, 0, 0);
1477 int ocfs2_rw_lock(struct inode
*inode
, int write
)
1480 struct ocfs2_lock_res
*lockres
;
1481 struct ocfs2_super
*osb
= OCFS2_SB(inode
->i_sb
);
1487 mlog(0, "inode %llu take %s RW lock\n",
1488 (unsigned long long)OCFS2_I(inode
)->ip_blkno
,
1489 write
? "EXMODE" : "PRMODE");
1491 if (ocfs2_mount_local(osb
))
1494 lockres
= &OCFS2_I(inode
)->ip_rw_lockres
;
1496 level
= write
? DLM_LOCK_EX
: DLM_LOCK_PR
;
1498 status
= ocfs2_cluster_lock(OCFS2_SB(inode
->i_sb
), lockres
, level
, 0,
1507 void ocfs2_rw_unlock(struct inode
*inode
, int write
)
1509 int level
= write
? DLM_LOCK_EX
: DLM_LOCK_PR
;
1510 struct ocfs2_lock_res
*lockres
= &OCFS2_I(inode
)->ip_rw_lockres
;
1511 struct ocfs2_super
*osb
= OCFS2_SB(inode
->i_sb
);
1515 mlog(0, "inode %llu drop %s RW lock\n",
1516 (unsigned long long)OCFS2_I(inode
)->ip_blkno
,
1517 write
? "EXMODE" : "PRMODE");
1519 if (!ocfs2_mount_local(osb
))
1520 ocfs2_cluster_unlock(OCFS2_SB(inode
->i_sb
), lockres
, level
);
1526 * ocfs2_open_lock always get PR mode lock.
1528 int ocfs2_open_lock(struct inode
*inode
)
1531 struct ocfs2_lock_res
*lockres
;
1532 struct ocfs2_super
*osb
= OCFS2_SB(inode
->i_sb
);
1538 mlog(0, "inode %llu take PRMODE open lock\n",
1539 (unsigned long long)OCFS2_I(inode
)->ip_blkno
);
1541 if (ocfs2_mount_local(osb
))
1544 lockres
= &OCFS2_I(inode
)->ip_open_lockres
;
1546 status
= ocfs2_cluster_lock(OCFS2_SB(inode
->i_sb
), lockres
,
1556 int ocfs2_try_open_lock(struct inode
*inode
, int write
)
1558 int status
= 0, level
;
1559 struct ocfs2_lock_res
*lockres
;
1560 struct ocfs2_super
*osb
= OCFS2_SB(inode
->i_sb
);
1566 mlog(0, "inode %llu try to take %s open lock\n",
1567 (unsigned long long)OCFS2_I(inode
)->ip_blkno
,
1568 write
? "EXMODE" : "PRMODE");
1570 if (ocfs2_mount_local(osb
))
1573 lockres
= &OCFS2_I(inode
)->ip_open_lockres
;
1575 level
= write
? DLM_LOCK_EX
: DLM_LOCK_PR
;
1578 * The file system may already holding a PRMODE/EXMODE open lock.
1579 * Since we pass DLM_LKF_NOQUEUE, the request won't block waiting on
1580 * other nodes and the -EAGAIN will indicate to the caller that
1581 * this inode is still in use.
1583 status
= ocfs2_cluster_lock(OCFS2_SB(inode
->i_sb
), lockres
,
1584 level
, DLM_LKF_NOQUEUE
, 0);
1592 * ocfs2_open_unlock unlock PR and EX mode open locks.
1594 void ocfs2_open_unlock(struct inode
*inode
)
1596 struct ocfs2_lock_res
*lockres
= &OCFS2_I(inode
)->ip_open_lockres
;
1597 struct ocfs2_super
*osb
= OCFS2_SB(inode
->i_sb
);
1601 mlog(0, "inode %llu drop open lock\n",
1602 (unsigned long long)OCFS2_I(inode
)->ip_blkno
);
1604 if (ocfs2_mount_local(osb
))
1607 if(lockres
->l_ro_holders
)
1608 ocfs2_cluster_unlock(OCFS2_SB(inode
->i_sb
), lockres
,
1610 if(lockres
->l_ex_holders
)
1611 ocfs2_cluster_unlock(OCFS2_SB(inode
->i_sb
), lockres
,
1618 static int ocfs2_flock_handle_signal(struct ocfs2_lock_res
*lockres
,
1622 struct ocfs2_super
*osb
= ocfs2_get_lockres_osb(lockres
);
1623 unsigned long flags
;
1624 struct ocfs2_mask_waiter mw
;
1626 ocfs2_init_mask_waiter(&mw
);
1629 spin_lock_irqsave(&lockres
->l_lock
, flags
);
1630 if (lockres
->l_flags
& OCFS2_LOCK_BUSY
) {
1631 ret
= ocfs2_prepare_cancel_convert(osb
, lockres
);
1633 spin_unlock_irqrestore(&lockres
->l_lock
, flags
);
1634 ret
= ocfs2_cancel_convert(osb
, lockres
);
1641 lockres_add_mask_waiter(lockres
, &mw
, OCFS2_LOCK_BUSY
, 0);
1642 spin_unlock_irqrestore(&lockres
->l_lock
, flags
);
1644 ocfs2_wait_for_mask(&mw
);
1650 * We may still have gotten the lock, in which case there's no
1651 * point to restarting the syscall.
1653 if (lockres
->l_level
== level
)
1656 mlog(0, "Cancel returning %d. flags: 0x%lx, level: %d, act: %d\n", ret
,
1657 lockres
->l_flags
, lockres
->l_level
, lockres
->l_action
);
1659 spin_unlock_irqrestore(&lockres
->l_lock
, flags
);
1666 * ocfs2_file_lock() and ocfs2_file_unlock() map to a single pair of
1667 * flock() calls. The locking approach this requires is sufficiently
1668 * different from all other cluster lock types that we implement a
1669 * seperate path to the "low-level" dlm calls. In particular:
1671 * - No optimization of lock levels is done - we take at exactly
1672 * what's been requested.
1674 * - No lock caching is employed. We immediately downconvert to
1675 * no-lock at unlock time. This also means flock locks never go on
1676 * the blocking list).
1678 * - Since userspace can trivially deadlock itself with flock, we make
1679 * sure to allow cancellation of a misbehaving applications flock()
1682 * - Access to any flock lockres doesn't require concurrency, so we
1683 * can simplify the code by requiring the caller to guarantee
1684 * serialization of dlmglue flock calls.
1686 int ocfs2_file_lock(struct file
*file
, int ex
, int trylock
)
1688 int ret
, level
= ex
? DLM_LOCK_EX
: DLM_LOCK_PR
;
1689 unsigned int lkm_flags
= trylock
? DLM_LKF_NOQUEUE
: 0;
1690 unsigned long flags
;
1691 struct ocfs2_file_private
*fp
= file
->private_data
;
1692 struct ocfs2_lock_res
*lockres
= &fp
->fp_flock
;
1693 struct ocfs2_super
*osb
= OCFS2_SB(file
->f_mapping
->host
->i_sb
);
1694 struct ocfs2_mask_waiter mw
;
1696 ocfs2_init_mask_waiter(&mw
);
1698 if ((lockres
->l_flags
& OCFS2_LOCK_BUSY
) ||
1699 (lockres
->l_level
> DLM_LOCK_NL
)) {
1701 "File lock \"%s\" has busy or locked state: flags: 0x%lx, "
1702 "level: %u\n", lockres
->l_name
, lockres
->l_flags
,
1707 spin_lock_irqsave(&lockres
->l_lock
, flags
);
1708 if (!(lockres
->l_flags
& OCFS2_LOCK_ATTACHED
)) {
1709 lockres_add_mask_waiter(lockres
, &mw
, OCFS2_LOCK_BUSY
, 0);
1710 spin_unlock_irqrestore(&lockres
->l_lock
, flags
);
1713 * Get the lock at NLMODE to start - that way we
1714 * can cancel the upconvert request if need be.
1716 ret
= ocfs2_lock_create(osb
, lockres
, DLM_LOCK_NL
, 0);
1722 ret
= ocfs2_wait_for_mask(&mw
);
1727 spin_lock_irqsave(&lockres
->l_lock
, flags
);
1730 lockres
->l_action
= OCFS2_AST_CONVERT
;
1731 lkm_flags
|= DLM_LKF_CONVERT
;
1732 lockres
->l_requested
= level
;
1733 lockres_or_flags(lockres
, OCFS2_LOCK_BUSY
);
1735 lockres_add_mask_waiter(lockres
, &mw
, OCFS2_LOCK_BUSY
, 0);
1736 spin_unlock_irqrestore(&lockres
->l_lock
, flags
);
1738 ret
= ocfs2_dlm_lock(osb
->cconn
, level
, &lockres
->l_lksb
, lkm_flags
,
1739 lockres
->l_name
, OCFS2_LOCK_ID_MAX_LEN
- 1,
1742 if (!trylock
|| (ret
!= -EAGAIN
)) {
1743 ocfs2_log_dlm_error("ocfs2_dlm_lock", ret
, lockres
);
1747 ocfs2_recover_from_dlm_error(lockres
, 1);
1748 lockres_remove_mask_waiter(lockres
, &mw
);
1752 ret
= ocfs2_wait_for_mask_interruptible(&mw
, lockres
);
1753 if (ret
== -ERESTARTSYS
) {
1755 * Userspace can cause deadlock itself with
1756 * flock(). Current behavior locally is to allow the
1757 * deadlock, but abort the system call if a signal is
1758 * received. We follow this example, otherwise a
1759 * poorly written program could sit in kernel until
1762 * Handling this is a bit more complicated for Ocfs2
1763 * though. We can't exit this function with an
1764 * outstanding lock request, so a cancel convert is
1765 * required. We intentionally overwrite 'ret' - if the
1766 * cancel fails and the lock was granted, it's easier
1767 * to just bubble sucess back up to the user.
1769 ret
= ocfs2_flock_handle_signal(lockres
, level
);
1770 } else if (!ret
&& (level
> lockres
->l_level
)) {
1771 /* Trylock failed asynchronously */
1778 mlog(0, "Lock: \"%s\" ex: %d, trylock: %d, returns: %d\n",
1779 lockres
->l_name
, ex
, trylock
, ret
);
1783 void ocfs2_file_unlock(struct file
*file
)
1787 unsigned long flags
;
1788 struct ocfs2_file_private
*fp
= file
->private_data
;
1789 struct ocfs2_lock_res
*lockres
= &fp
->fp_flock
;
1790 struct ocfs2_super
*osb
= OCFS2_SB(file
->f_mapping
->host
->i_sb
);
1791 struct ocfs2_mask_waiter mw
;
1793 ocfs2_init_mask_waiter(&mw
);
1795 if (!(lockres
->l_flags
& OCFS2_LOCK_ATTACHED
))
1798 if (lockres
->l_level
== DLM_LOCK_NL
)
1801 mlog(0, "Unlock: \"%s\" flags: 0x%lx, level: %d, act: %d\n",
1802 lockres
->l_name
, lockres
->l_flags
, lockres
->l_level
,
1805 spin_lock_irqsave(&lockres
->l_lock
, flags
);
1807 * Fake a blocking ast for the downconvert code.
1809 lockres_or_flags(lockres
, OCFS2_LOCK_BLOCKED
);
1810 lockres
->l_blocking
= DLM_LOCK_EX
;
1812 gen
= ocfs2_prepare_downconvert(lockres
, DLM_LOCK_NL
);
1813 lockres_add_mask_waiter(lockres
, &mw
, OCFS2_LOCK_BUSY
, 0);
1814 spin_unlock_irqrestore(&lockres
->l_lock
, flags
);
1816 ret
= ocfs2_downconvert_lock(osb
, lockres
, DLM_LOCK_NL
, 0, gen
);
1822 ret
= ocfs2_wait_for_mask(&mw
);
1827 static void ocfs2_downconvert_on_unlock(struct ocfs2_super
*osb
,
1828 struct ocfs2_lock_res
*lockres
)
1834 /* If we know that another node is waiting on our lock, kick
1835 * the downconvert thread * pre-emptively when we reach a release
1837 if (lockres
->l_flags
& OCFS2_LOCK_BLOCKED
) {
1838 switch(lockres
->l_blocking
) {
1840 if (!lockres
->l_ex_holders
&& !lockres
->l_ro_holders
)
1844 if (!lockres
->l_ex_holders
)
1853 ocfs2_wake_downconvert_thread(osb
);
1858 #define OCFS2_SEC_BITS 34
1859 #define OCFS2_SEC_SHIFT (64 - 34)
1860 #define OCFS2_NSEC_MASK ((1ULL << OCFS2_SEC_SHIFT) - 1)
1862 /* LVB only has room for 64 bits of time here so we pack it for
1864 static u64
ocfs2_pack_timespec(struct timespec
*spec
)
1867 u64 sec
= spec
->tv_sec
;
1868 u32 nsec
= spec
->tv_nsec
;
1870 res
= (sec
<< OCFS2_SEC_SHIFT
) | (nsec
& OCFS2_NSEC_MASK
);
1875 /* Call this with the lockres locked. I am reasonably sure we don't
1876 * need ip_lock in this function as anyone who would be changing those
1877 * values is supposed to be blocked in ocfs2_inode_lock right now. */
1878 static void __ocfs2_stuff_meta_lvb(struct inode
*inode
)
1880 struct ocfs2_inode_info
*oi
= OCFS2_I(inode
);
1881 struct ocfs2_lock_res
*lockres
= &oi
->ip_inode_lockres
;
1882 struct ocfs2_meta_lvb
*lvb
;
1886 lvb
= ocfs2_dlm_lvb(&lockres
->l_lksb
);
1889 * Invalidate the LVB of a deleted inode - this way other
1890 * nodes are forced to go to disk and discover the new inode
1893 if (oi
->ip_flags
& OCFS2_INODE_DELETED
) {
1894 lvb
->lvb_version
= 0;
1898 lvb
->lvb_version
= OCFS2_LVB_VERSION
;
1899 lvb
->lvb_isize
= cpu_to_be64(i_size_read(inode
));
1900 lvb
->lvb_iclusters
= cpu_to_be32(oi
->ip_clusters
);
1901 lvb
->lvb_iuid
= cpu_to_be32(inode
->i_uid
);
1902 lvb
->lvb_igid
= cpu_to_be32(inode
->i_gid
);
1903 lvb
->lvb_imode
= cpu_to_be16(inode
->i_mode
);
1904 lvb
->lvb_inlink
= cpu_to_be16(inode
->i_nlink
);
1905 lvb
->lvb_iatime_packed
=
1906 cpu_to_be64(ocfs2_pack_timespec(&inode
->i_atime
));
1907 lvb
->lvb_ictime_packed
=
1908 cpu_to_be64(ocfs2_pack_timespec(&inode
->i_ctime
));
1909 lvb
->lvb_imtime_packed
=
1910 cpu_to_be64(ocfs2_pack_timespec(&inode
->i_mtime
));
1911 lvb
->lvb_iattr
= cpu_to_be32(oi
->ip_attr
);
1912 lvb
->lvb_idynfeatures
= cpu_to_be16(oi
->ip_dyn_features
);
1913 lvb
->lvb_igeneration
= cpu_to_be32(inode
->i_generation
);
1916 mlog_meta_lvb(0, lockres
);
1921 static void ocfs2_unpack_timespec(struct timespec
*spec
,
1924 spec
->tv_sec
= packed_time
>> OCFS2_SEC_SHIFT
;
1925 spec
->tv_nsec
= packed_time
& OCFS2_NSEC_MASK
;
1928 static void ocfs2_refresh_inode_from_lvb(struct inode
*inode
)
1930 struct ocfs2_inode_info
*oi
= OCFS2_I(inode
);
1931 struct ocfs2_lock_res
*lockres
= &oi
->ip_inode_lockres
;
1932 struct ocfs2_meta_lvb
*lvb
;
1936 mlog_meta_lvb(0, lockres
);
1938 lvb
= ocfs2_dlm_lvb(&lockres
->l_lksb
);
1940 /* We're safe here without the lockres lock... */
1941 spin_lock(&oi
->ip_lock
);
1942 oi
->ip_clusters
= be32_to_cpu(lvb
->lvb_iclusters
);
1943 i_size_write(inode
, be64_to_cpu(lvb
->lvb_isize
));
1945 oi
->ip_attr
= be32_to_cpu(lvb
->lvb_iattr
);
1946 oi
->ip_dyn_features
= be16_to_cpu(lvb
->lvb_idynfeatures
);
1947 ocfs2_set_inode_flags(inode
);
1949 /* fast-symlinks are a special case */
1950 if (S_ISLNK(inode
->i_mode
) && !oi
->ip_clusters
)
1951 inode
->i_blocks
= 0;
1953 inode
->i_blocks
= ocfs2_inode_sector_count(inode
);
1955 inode
->i_uid
= be32_to_cpu(lvb
->lvb_iuid
);
1956 inode
->i_gid
= be32_to_cpu(lvb
->lvb_igid
);
1957 inode
->i_mode
= be16_to_cpu(lvb
->lvb_imode
);
1958 inode
->i_nlink
= be16_to_cpu(lvb
->lvb_inlink
);
1959 ocfs2_unpack_timespec(&inode
->i_atime
,
1960 be64_to_cpu(lvb
->lvb_iatime_packed
));
1961 ocfs2_unpack_timespec(&inode
->i_mtime
,
1962 be64_to_cpu(lvb
->lvb_imtime_packed
));
1963 ocfs2_unpack_timespec(&inode
->i_ctime
,
1964 be64_to_cpu(lvb
->lvb_ictime_packed
));
1965 spin_unlock(&oi
->ip_lock
);
1970 static inline int ocfs2_meta_lvb_is_trustable(struct inode
*inode
,
1971 struct ocfs2_lock_res
*lockres
)
1973 struct ocfs2_meta_lvb
*lvb
= ocfs2_dlm_lvb(&lockres
->l_lksb
);
1975 if (lvb
->lvb_version
== OCFS2_LVB_VERSION
1976 && be32_to_cpu(lvb
->lvb_igeneration
) == inode
->i_generation
)
1981 /* Determine whether a lock resource needs to be refreshed, and
1982 * arbitrate who gets to refresh it.
1984 * 0 means no refresh needed.
1986 * > 0 means you need to refresh this and you MUST call
1987 * ocfs2_complete_lock_res_refresh afterwards. */
1988 static int ocfs2_should_refresh_lock_res(struct ocfs2_lock_res
*lockres
)
1990 unsigned long flags
;
1996 spin_lock_irqsave(&lockres
->l_lock
, flags
);
1997 if (!(lockres
->l_flags
& OCFS2_LOCK_NEEDS_REFRESH
)) {
1998 spin_unlock_irqrestore(&lockres
->l_lock
, flags
);
2002 if (lockres
->l_flags
& OCFS2_LOCK_REFRESHING
) {
2003 spin_unlock_irqrestore(&lockres
->l_lock
, flags
);
2005 ocfs2_wait_on_refreshing_lock(lockres
);
2009 /* Ok, I'll be the one to refresh this lock. */
2010 lockres_or_flags(lockres
, OCFS2_LOCK_REFRESHING
);
2011 spin_unlock_irqrestore(&lockres
->l_lock
, flags
);
2019 /* If status is non zero, I'll mark it as not being in refresh
2020 * anymroe, but i won't clear the needs refresh flag. */
2021 static inline void ocfs2_complete_lock_res_refresh(struct ocfs2_lock_res
*lockres
,
2024 unsigned long flags
;
2027 spin_lock_irqsave(&lockres
->l_lock
, flags
);
2028 lockres_clear_flags(lockres
, OCFS2_LOCK_REFRESHING
);
2030 lockres_clear_flags(lockres
, OCFS2_LOCK_NEEDS_REFRESH
);
2031 spin_unlock_irqrestore(&lockres
->l_lock
, flags
);
2033 wake_up(&lockres
->l_event
);
2038 /* may or may not return a bh if it went to disk. */
2039 static int ocfs2_inode_lock_update(struct inode
*inode
,
2040 struct buffer_head
**bh
)
2043 struct ocfs2_inode_info
*oi
= OCFS2_I(inode
);
2044 struct ocfs2_lock_res
*lockres
= &oi
->ip_inode_lockres
;
2045 struct ocfs2_dinode
*fe
;
2046 struct ocfs2_super
*osb
= OCFS2_SB(inode
->i_sb
);
2050 if (ocfs2_mount_local(osb
))
2053 spin_lock(&oi
->ip_lock
);
2054 if (oi
->ip_flags
& OCFS2_INODE_DELETED
) {
2055 mlog(0, "Orphaned inode %llu was deleted while we "
2056 "were waiting on a lock. ip_flags = 0x%x\n",
2057 (unsigned long long)oi
->ip_blkno
, oi
->ip_flags
);
2058 spin_unlock(&oi
->ip_lock
);
2062 spin_unlock(&oi
->ip_lock
);
2064 if (!ocfs2_should_refresh_lock_res(lockres
))
2067 /* This will discard any caching information we might have had
2068 * for the inode metadata. */
2069 ocfs2_metadata_cache_purge(inode
);
2071 ocfs2_extent_map_trunc(inode
, 0);
2073 if (ocfs2_meta_lvb_is_trustable(inode
, lockres
)) {
2074 mlog(0, "Trusting LVB on inode %llu\n",
2075 (unsigned long long)oi
->ip_blkno
);
2076 ocfs2_refresh_inode_from_lvb(inode
);
2078 /* Boo, we have to go to disk. */
2079 /* read bh, cast, ocfs2_refresh_inode */
2080 status
= ocfs2_read_inode_block(inode
, bh
);
2085 fe
= (struct ocfs2_dinode
*) (*bh
)->b_data
;
2087 /* This is a good chance to make sure we're not
2088 * locking an invalid object. ocfs2_read_inode_block()
2089 * already checked that the inode block is sane.
2091 * We bug on a stale inode here because we checked
2092 * above whether it was wiped from disk. The wiping
2093 * node provides a guarantee that we receive that
2094 * message and can mark the inode before dropping any
2095 * locks associated with it. */
2096 mlog_bug_on_msg(inode
->i_generation
!=
2097 le32_to_cpu(fe
->i_generation
),
2098 "Invalid dinode %llu disk generation: %u "
2099 "inode->i_generation: %u\n",
2100 (unsigned long long)oi
->ip_blkno
,
2101 le32_to_cpu(fe
->i_generation
),
2102 inode
->i_generation
);
2103 mlog_bug_on_msg(le64_to_cpu(fe
->i_dtime
) ||
2104 !(fe
->i_flags
& cpu_to_le32(OCFS2_VALID_FL
)),
2105 "Stale dinode %llu dtime: %llu flags: 0x%x\n",
2106 (unsigned long long)oi
->ip_blkno
,
2107 (unsigned long long)le64_to_cpu(fe
->i_dtime
),
2108 le32_to_cpu(fe
->i_flags
));
2110 ocfs2_refresh_inode(inode
, fe
);
2111 ocfs2_track_lock_refresh(lockres
);
2116 ocfs2_complete_lock_res_refresh(lockres
, status
);
2122 static int ocfs2_assign_bh(struct inode
*inode
,
2123 struct buffer_head
**ret_bh
,
2124 struct buffer_head
*passed_bh
)
2129 /* Ok, the update went to disk for us, use the
2131 *ret_bh
= passed_bh
;
2137 status
= ocfs2_read_inode_block(inode
, ret_bh
);
2145 * returns < 0 error if the callback will never be called, otherwise
2146 * the result of the lock will be communicated via the callback.
2148 int ocfs2_inode_lock_full(struct inode
*inode
,
2149 struct buffer_head
**ret_bh
,
2153 int status
, level
, acquired
;
2155 struct ocfs2_lock_res
*lockres
= NULL
;
2156 struct ocfs2_super
*osb
= OCFS2_SB(inode
->i_sb
);
2157 struct buffer_head
*local_bh
= NULL
;
2163 mlog(0, "inode %llu, take %s META lock\n",
2164 (unsigned long long)OCFS2_I(inode
)->ip_blkno
,
2165 ex
? "EXMODE" : "PRMODE");
2169 /* We'll allow faking a readonly metadata lock for
2171 if (ocfs2_is_hard_readonly(osb
)) {
2177 if (ocfs2_mount_local(osb
))
2180 if (!(arg_flags
& OCFS2_META_LOCK_RECOVERY
))
2181 ocfs2_wait_for_recovery(osb
);
2183 lockres
= &OCFS2_I(inode
)->ip_inode_lockres
;
2184 level
= ex
? DLM_LOCK_EX
: DLM_LOCK_PR
;
2186 if (arg_flags
& OCFS2_META_LOCK_NOQUEUE
)
2187 dlm_flags
|= DLM_LKF_NOQUEUE
;
2189 status
= ocfs2_cluster_lock(osb
, lockres
, level
, dlm_flags
, arg_flags
);
2191 if (status
!= -EAGAIN
&& status
!= -EIOCBRETRY
)
2196 /* Notify the error cleanup path to drop the cluster lock. */
2199 /* We wait twice because a node may have died while we were in
2200 * the lower dlm layers. The second time though, we've
2201 * committed to owning this lock so we don't allow signals to
2202 * abort the operation. */
2203 if (!(arg_flags
& OCFS2_META_LOCK_RECOVERY
))
2204 ocfs2_wait_for_recovery(osb
);
2208 * We only see this flag if we're being called from
2209 * ocfs2_read_locked_inode(). It means we're locking an inode
2210 * which hasn't been populated yet, so clear the refresh flag
2211 * and let the caller handle it.
2213 if (inode
->i_state
& I_NEW
) {
2216 ocfs2_complete_lock_res_refresh(lockres
, 0);
2220 /* This is fun. The caller may want a bh back, or it may
2221 * not. ocfs2_inode_lock_update definitely wants one in, but
2222 * may or may not read one, depending on what's in the
2223 * LVB. The result of all of this is that we've *only* gone to
2224 * disk if we have to, so the complexity is worthwhile. */
2225 status
= ocfs2_inode_lock_update(inode
, &local_bh
);
2227 if (status
!= -ENOENT
)
2233 status
= ocfs2_assign_bh(inode
, ret_bh
, local_bh
);
2242 if (ret_bh
&& (*ret_bh
)) {
2247 ocfs2_inode_unlock(inode
, ex
);
2258 * This is working around a lock inversion between tasks acquiring DLM
2259 * locks while holding a page lock and the downconvert thread which
2260 * blocks dlm lock acquiry while acquiring page locks.
2262 * ** These _with_page variantes are only intended to be called from aop
2263 * methods that hold page locks and return a very specific *positive* error
2264 * code that aop methods pass up to the VFS -- test for errors with != 0. **
2266 * The DLM is called such that it returns -EAGAIN if it would have
2267 * blocked waiting for the downconvert thread. In that case we unlock
2268 * our page so the downconvert thread can make progress. Once we've
2269 * done this we have to return AOP_TRUNCATED_PAGE so the aop method
2270 * that called us can bubble that back up into the VFS who will then
2271 * immediately retry the aop call.
2273 * We do a blocking lock and immediate unlock before returning, though, so that
2274 * the lock has a great chance of being cached on this node by the time the VFS
2275 * calls back to retry the aop. This has a potential to livelock as nodes
2276 * ping locks back and forth, but that's a risk we're willing to take to avoid
2277 * the lock inversion simply.
2279 int ocfs2_inode_lock_with_page(struct inode
*inode
,
2280 struct buffer_head
**ret_bh
,
2286 ret
= ocfs2_inode_lock_full(inode
, ret_bh
, ex
, OCFS2_LOCK_NONBLOCK
);
2287 if (ret
== -EAGAIN
) {
2289 if (ocfs2_inode_lock(inode
, ret_bh
, ex
) == 0)
2290 ocfs2_inode_unlock(inode
, ex
);
2291 ret
= AOP_TRUNCATED_PAGE
;
2297 int ocfs2_inode_lock_atime(struct inode
*inode
,
2298 struct vfsmount
*vfsmnt
,
2304 ret
= ocfs2_inode_lock(inode
, NULL
, 0);
2311 * If we should update atime, we will get EX lock,
2312 * otherwise we just get PR lock.
2314 if (ocfs2_should_update_atime(inode
, vfsmnt
)) {
2315 struct buffer_head
*bh
= NULL
;
2317 ocfs2_inode_unlock(inode
, 0);
2318 ret
= ocfs2_inode_lock(inode
, &bh
, 1);
2324 if (ocfs2_should_update_atime(inode
, vfsmnt
))
2325 ocfs2_update_inode_atime(inode
, bh
);
2335 void ocfs2_inode_unlock(struct inode
*inode
,
2338 int level
= ex
? DLM_LOCK_EX
: DLM_LOCK_PR
;
2339 struct ocfs2_lock_res
*lockres
= &OCFS2_I(inode
)->ip_inode_lockres
;
2340 struct ocfs2_super
*osb
= OCFS2_SB(inode
->i_sb
);
2344 mlog(0, "inode %llu drop %s META lock\n",
2345 (unsigned long long)OCFS2_I(inode
)->ip_blkno
,
2346 ex
? "EXMODE" : "PRMODE");
2348 if (!ocfs2_is_hard_readonly(OCFS2_SB(inode
->i_sb
)) &&
2349 !ocfs2_mount_local(osb
))
2350 ocfs2_cluster_unlock(OCFS2_SB(inode
->i_sb
), lockres
, level
);
2355 int ocfs2_super_lock(struct ocfs2_super
*osb
,
2359 int level
= ex
? DLM_LOCK_EX
: DLM_LOCK_PR
;
2360 struct ocfs2_lock_res
*lockres
= &osb
->osb_super_lockres
;
2364 if (ocfs2_is_hard_readonly(osb
))
2367 if (ocfs2_mount_local(osb
))
2370 status
= ocfs2_cluster_lock(osb
, lockres
, level
, 0, 0);
2376 /* The super block lock path is really in the best position to
2377 * know when resources covered by the lock need to be
2378 * refreshed, so we do it here. Of course, making sense of
2379 * everything is up to the caller :) */
2380 status
= ocfs2_should_refresh_lock_res(lockres
);
2386 status
= ocfs2_refresh_slot_info(osb
);
2388 ocfs2_complete_lock_res_refresh(lockres
, status
);
2392 ocfs2_track_lock_refresh(lockres
);
2399 void ocfs2_super_unlock(struct ocfs2_super
*osb
,
2402 int level
= ex
? DLM_LOCK_EX
: DLM_LOCK_PR
;
2403 struct ocfs2_lock_res
*lockres
= &osb
->osb_super_lockres
;
2405 if (!ocfs2_mount_local(osb
))
2406 ocfs2_cluster_unlock(osb
, lockres
, level
);
2409 int ocfs2_rename_lock(struct ocfs2_super
*osb
)
2412 struct ocfs2_lock_res
*lockres
= &osb
->osb_rename_lockres
;
2414 if (ocfs2_is_hard_readonly(osb
))
2417 if (ocfs2_mount_local(osb
))
2420 status
= ocfs2_cluster_lock(osb
, lockres
, DLM_LOCK_EX
, 0, 0);
2427 void ocfs2_rename_unlock(struct ocfs2_super
*osb
)
2429 struct ocfs2_lock_res
*lockres
= &osb
->osb_rename_lockres
;
2431 if (!ocfs2_mount_local(osb
))
2432 ocfs2_cluster_unlock(osb
, lockres
, DLM_LOCK_EX
);
2435 int ocfs2_nfs_sync_lock(struct ocfs2_super
*osb
, int ex
)
2438 struct ocfs2_lock_res
*lockres
= &osb
->osb_nfs_sync_lockres
;
2440 if (ocfs2_is_hard_readonly(osb
))
2443 if (ocfs2_mount_local(osb
))
2446 status
= ocfs2_cluster_lock(osb
, lockres
, ex
? LKM_EXMODE
: LKM_PRMODE
,
2449 mlog(ML_ERROR
, "lock on nfs sync lock failed %d\n", status
);
2454 void ocfs2_nfs_sync_unlock(struct ocfs2_super
*osb
, int ex
)
2456 struct ocfs2_lock_res
*lockres
= &osb
->osb_nfs_sync_lockres
;
2458 if (!ocfs2_mount_local(osb
))
2459 ocfs2_cluster_unlock(osb
, lockres
,
2460 ex
? LKM_EXMODE
: LKM_PRMODE
);
2463 int ocfs2_dentry_lock(struct dentry
*dentry
, int ex
)
2466 int level
= ex
? DLM_LOCK_EX
: DLM_LOCK_PR
;
2467 struct ocfs2_dentry_lock
*dl
= dentry
->d_fsdata
;
2468 struct ocfs2_super
*osb
= OCFS2_SB(dentry
->d_sb
);
2472 if (ocfs2_is_hard_readonly(osb
))
2475 if (ocfs2_mount_local(osb
))
2478 ret
= ocfs2_cluster_lock(osb
, &dl
->dl_lockres
, level
, 0, 0);
2485 void ocfs2_dentry_unlock(struct dentry
*dentry
, int ex
)
2487 int level
= ex
? DLM_LOCK_EX
: DLM_LOCK_PR
;
2488 struct ocfs2_dentry_lock
*dl
= dentry
->d_fsdata
;
2489 struct ocfs2_super
*osb
= OCFS2_SB(dentry
->d_sb
);
2491 if (!ocfs2_mount_local(osb
))
2492 ocfs2_cluster_unlock(osb
, &dl
->dl_lockres
, level
);
2495 /* Reference counting of the dlm debug structure. We want this because
2496 * open references on the debug inodes can live on after a mount, so
2497 * we can't rely on the ocfs2_super to always exist. */
2498 static void ocfs2_dlm_debug_free(struct kref
*kref
)
2500 struct ocfs2_dlm_debug
*dlm_debug
;
2502 dlm_debug
= container_of(kref
, struct ocfs2_dlm_debug
, d_refcnt
);
2507 void ocfs2_put_dlm_debug(struct ocfs2_dlm_debug
*dlm_debug
)
2510 kref_put(&dlm_debug
->d_refcnt
, ocfs2_dlm_debug_free
);
2513 static void ocfs2_get_dlm_debug(struct ocfs2_dlm_debug
*debug
)
2515 kref_get(&debug
->d_refcnt
);
2518 struct ocfs2_dlm_debug
*ocfs2_new_dlm_debug(void)
2520 struct ocfs2_dlm_debug
*dlm_debug
;
2522 dlm_debug
= kmalloc(sizeof(struct ocfs2_dlm_debug
), GFP_KERNEL
);
2524 mlog_errno(-ENOMEM
);
2528 kref_init(&dlm_debug
->d_refcnt
);
2529 INIT_LIST_HEAD(&dlm_debug
->d_lockres_tracking
);
2530 dlm_debug
->d_locking_state
= NULL
;
2535 /* Access to this is arbitrated for us via seq_file->sem. */
2536 struct ocfs2_dlm_seq_priv
{
2537 struct ocfs2_dlm_debug
*p_dlm_debug
;
2538 struct ocfs2_lock_res p_iter_res
;
2539 struct ocfs2_lock_res p_tmp_res
;
2542 static struct ocfs2_lock_res
*ocfs2_dlm_next_res(struct ocfs2_lock_res
*start
,
2543 struct ocfs2_dlm_seq_priv
*priv
)
2545 struct ocfs2_lock_res
*iter
, *ret
= NULL
;
2546 struct ocfs2_dlm_debug
*dlm_debug
= priv
->p_dlm_debug
;
2548 assert_spin_locked(&ocfs2_dlm_tracking_lock
);
2550 list_for_each_entry(iter
, &start
->l_debug_list
, l_debug_list
) {
2551 /* discover the head of the list */
2552 if (&iter
->l_debug_list
== &dlm_debug
->d_lockres_tracking
) {
2553 mlog(0, "End of list found, %p\n", ret
);
2557 /* We track our "dummy" iteration lockres' by a NULL
2559 if (iter
->l_ops
!= NULL
) {
2568 static void *ocfs2_dlm_seq_start(struct seq_file
*m
, loff_t
*pos
)
2570 struct ocfs2_dlm_seq_priv
*priv
= m
->private;
2571 struct ocfs2_lock_res
*iter
;
2573 spin_lock(&ocfs2_dlm_tracking_lock
);
2574 iter
= ocfs2_dlm_next_res(&priv
->p_iter_res
, priv
);
2576 /* Since lockres' have the lifetime of their container
2577 * (which can be inodes, ocfs2_supers, etc) we want to
2578 * copy this out to a temporary lockres while still
2579 * under the spinlock. Obviously after this we can't
2580 * trust any pointers on the copy returned, but that's
2581 * ok as the information we want isn't typically held
2583 priv
->p_tmp_res
= *iter
;
2584 iter
= &priv
->p_tmp_res
;
2586 spin_unlock(&ocfs2_dlm_tracking_lock
);
2591 static void ocfs2_dlm_seq_stop(struct seq_file
*m
, void *v
)
2595 static void *ocfs2_dlm_seq_next(struct seq_file
*m
, void *v
, loff_t
*pos
)
2597 struct ocfs2_dlm_seq_priv
*priv
= m
->private;
2598 struct ocfs2_lock_res
*iter
= v
;
2599 struct ocfs2_lock_res
*dummy
= &priv
->p_iter_res
;
2601 spin_lock(&ocfs2_dlm_tracking_lock
);
2602 iter
= ocfs2_dlm_next_res(iter
, priv
);
2603 list_del_init(&dummy
->l_debug_list
);
2605 list_add(&dummy
->l_debug_list
, &iter
->l_debug_list
);
2606 priv
->p_tmp_res
= *iter
;
2607 iter
= &priv
->p_tmp_res
;
2609 spin_unlock(&ocfs2_dlm_tracking_lock
);
2614 /* So that debugfs.ocfs2 can determine which format is being used */
2615 #define OCFS2_DLM_DEBUG_STR_VERSION 2
2616 static int ocfs2_dlm_seq_show(struct seq_file
*m
, void *v
)
2620 struct ocfs2_lock_res
*lockres
= v
;
2625 seq_printf(m
, "0x%x\t", OCFS2_DLM_DEBUG_STR_VERSION
);
2627 if (lockres
->l_type
== OCFS2_LOCK_TYPE_DENTRY
)
2628 seq_printf(m
, "%.*s%08x\t", OCFS2_DENTRY_LOCK_INO_START
- 1,
2630 (unsigned int)ocfs2_get_dentry_lock_ino(lockres
));
2632 seq_printf(m
, "%.*s\t", OCFS2_LOCK_ID_MAX_LEN
, lockres
->l_name
);
2634 seq_printf(m
, "%d\t"
2645 lockres
->l_unlock_action
,
2646 lockres
->l_ro_holders
,
2647 lockres
->l_ex_holders
,
2648 lockres
->l_requested
,
2649 lockres
->l_blocking
);
2651 /* Dump the raw LVB */
2652 lvb
= ocfs2_dlm_lvb(&lockres
->l_lksb
);
2653 for(i
= 0; i
< DLM_LVB_LEN
; i
++)
2654 seq_printf(m
, "0x%x\t", lvb
[i
]);
2656 #ifdef CONFIG_OCFS2_FS_STATS
2657 # define lock_num_prmode(_l) (_l)->l_lock_num_prmode
2658 # define lock_num_exmode(_l) (_l)->l_lock_num_exmode
2659 # define lock_num_prmode_failed(_l) (_l)->l_lock_num_prmode_failed
2660 # define lock_num_exmode_failed(_l) (_l)->l_lock_num_exmode_failed
2661 # define lock_total_prmode(_l) (_l)->l_lock_total_prmode
2662 # define lock_total_exmode(_l) (_l)->l_lock_total_exmode
2663 # define lock_max_prmode(_l) (_l)->l_lock_max_prmode
2664 # define lock_max_exmode(_l) (_l)->l_lock_max_exmode
2665 # define lock_refresh(_l) (_l)->l_lock_refresh
2667 # define lock_num_prmode(_l) (0ULL)
2668 # define lock_num_exmode(_l) (0ULL)
2669 # define lock_num_prmode_failed(_l) (0)
2670 # define lock_num_exmode_failed(_l) (0)
2671 # define lock_total_prmode(_l) (0ULL)
2672 # define lock_total_exmode(_l) (0ULL)
2673 # define lock_max_prmode(_l) (0)
2674 # define lock_max_exmode(_l) (0)
2675 # define lock_refresh(_l) (0)
2677 /* The following seq_print was added in version 2 of this output */
2678 seq_printf(m
, "%llu\t"
2687 lock_num_prmode(lockres
),
2688 lock_num_exmode(lockres
),
2689 lock_num_prmode_failed(lockres
),
2690 lock_num_exmode_failed(lockres
),
2691 lock_total_prmode(lockres
),
2692 lock_total_exmode(lockres
),
2693 lock_max_prmode(lockres
),
2694 lock_max_exmode(lockres
),
2695 lock_refresh(lockres
));
2698 seq_printf(m
, "\n");
2702 static const struct seq_operations ocfs2_dlm_seq_ops
= {
2703 .start
= ocfs2_dlm_seq_start
,
2704 .stop
= ocfs2_dlm_seq_stop
,
2705 .next
= ocfs2_dlm_seq_next
,
2706 .show
= ocfs2_dlm_seq_show
,
2709 static int ocfs2_dlm_debug_release(struct inode
*inode
, struct file
*file
)
2711 struct seq_file
*seq
= (struct seq_file
*) file
->private_data
;
2712 struct ocfs2_dlm_seq_priv
*priv
= seq
->private;
2713 struct ocfs2_lock_res
*res
= &priv
->p_iter_res
;
2715 ocfs2_remove_lockres_tracking(res
);
2716 ocfs2_put_dlm_debug(priv
->p_dlm_debug
);
2717 return seq_release_private(inode
, file
);
2720 static int ocfs2_dlm_debug_open(struct inode
*inode
, struct file
*file
)
2723 struct ocfs2_dlm_seq_priv
*priv
;
2724 struct seq_file
*seq
;
2725 struct ocfs2_super
*osb
;
2727 priv
= kzalloc(sizeof(struct ocfs2_dlm_seq_priv
), GFP_KERNEL
);
2733 osb
= inode
->i_private
;
2734 ocfs2_get_dlm_debug(osb
->osb_dlm_debug
);
2735 priv
->p_dlm_debug
= osb
->osb_dlm_debug
;
2736 INIT_LIST_HEAD(&priv
->p_iter_res
.l_debug_list
);
2738 ret
= seq_open(file
, &ocfs2_dlm_seq_ops
);
2745 seq
= (struct seq_file
*) file
->private_data
;
2746 seq
->private = priv
;
2748 ocfs2_add_lockres_tracking(&priv
->p_iter_res
,
2755 static const struct file_operations ocfs2_dlm_debug_fops
= {
2756 .open
= ocfs2_dlm_debug_open
,
2757 .release
= ocfs2_dlm_debug_release
,
2759 .llseek
= seq_lseek
,
2762 static int ocfs2_dlm_init_debug(struct ocfs2_super
*osb
)
2765 struct ocfs2_dlm_debug
*dlm_debug
= osb
->osb_dlm_debug
;
2767 dlm_debug
->d_locking_state
= debugfs_create_file("locking_state",
2769 osb
->osb_debug_root
,
2771 &ocfs2_dlm_debug_fops
);
2772 if (!dlm_debug
->d_locking_state
) {
2775 "Unable to create locking state debugfs file.\n");
2779 ocfs2_get_dlm_debug(dlm_debug
);
2784 static void ocfs2_dlm_shutdown_debug(struct ocfs2_super
*osb
)
2786 struct ocfs2_dlm_debug
*dlm_debug
= osb
->osb_dlm_debug
;
2789 debugfs_remove(dlm_debug
->d_locking_state
);
2790 ocfs2_put_dlm_debug(dlm_debug
);
2794 int ocfs2_dlm_init(struct ocfs2_super
*osb
)
2797 struct ocfs2_cluster_connection
*conn
= NULL
;
2801 if (ocfs2_mount_local(osb
)) {
2806 status
= ocfs2_dlm_init_debug(osb
);
2812 /* launch downconvert thread */
2813 osb
->dc_task
= kthread_run(ocfs2_downconvert_thread
, osb
, "ocfs2dc");
2814 if (IS_ERR(osb
->dc_task
)) {
2815 status
= PTR_ERR(osb
->dc_task
);
2816 osb
->dc_task
= NULL
;
2821 /* for now, uuid == domain */
2822 status
= ocfs2_cluster_connect(osb
->osb_cluster_stack
,
2824 strlen(osb
->uuid_str
),
2825 ocfs2_do_node_down
, osb
,
2832 status
= ocfs2_cluster_this_node(&osb
->node_num
);
2836 "could not find this host's node number\n");
2837 ocfs2_cluster_disconnect(conn
, 0);
2842 ocfs2_super_lock_res_init(&osb
->osb_super_lockres
, osb
);
2843 ocfs2_rename_lock_res_init(&osb
->osb_rename_lockres
, osb
);
2844 ocfs2_nfs_sync_lock_res_init(&osb
->osb_nfs_sync_lockres
, osb
);
2851 ocfs2_dlm_shutdown_debug(osb
);
2853 kthread_stop(osb
->dc_task
);
2860 void ocfs2_dlm_shutdown(struct ocfs2_super
*osb
,
2865 ocfs2_drop_osb_locks(osb
);
2868 * Now that we have dropped all locks and ocfs2_dismount_volume()
2869 * has disabled recovery, the DLM won't be talking to us. It's
2870 * safe to tear things down before disconnecting the cluster.
2874 kthread_stop(osb
->dc_task
);
2875 osb
->dc_task
= NULL
;
2878 ocfs2_lock_res_free(&osb
->osb_super_lockres
);
2879 ocfs2_lock_res_free(&osb
->osb_rename_lockres
);
2880 ocfs2_lock_res_free(&osb
->osb_nfs_sync_lockres
);
2882 ocfs2_cluster_disconnect(osb
->cconn
, hangup_pending
);
2885 ocfs2_dlm_shutdown_debug(osb
);
2890 static void ocfs2_unlock_ast(void *opaque
, int error
)
2892 struct ocfs2_lock_res
*lockres
= opaque
;
2893 unsigned long flags
;
2897 mlog(0, "UNLOCK AST called on lock %s, action = %d\n", lockres
->l_name
,
2898 lockres
->l_unlock_action
);
2900 spin_lock_irqsave(&lockres
->l_lock
, flags
);
2902 mlog(ML_ERROR
, "Dlm passes error %d for lock %s, "
2903 "unlock_action %d\n", error
, lockres
->l_name
,
2904 lockres
->l_unlock_action
);
2905 spin_unlock_irqrestore(&lockres
->l_lock
, flags
);
2909 switch(lockres
->l_unlock_action
) {
2910 case OCFS2_UNLOCK_CANCEL_CONVERT
:
2911 mlog(0, "Cancel convert success for %s\n", lockres
->l_name
);
2912 lockres
->l_action
= OCFS2_AST_INVALID
;
2913 /* Downconvert thread may have requeued this lock, we
2914 * need to wake it. */
2915 if (lockres
->l_flags
& OCFS2_LOCK_BLOCKED
)
2916 ocfs2_wake_downconvert_thread(ocfs2_get_lockres_osb(lockres
));
2918 case OCFS2_UNLOCK_DROP_LOCK
:
2919 lockres
->l_level
= DLM_LOCK_IV
;
2925 lockres_clear_flags(lockres
, OCFS2_LOCK_BUSY
);
2926 lockres
->l_unlock_action
= OCFS2_UNLOCK_INVALID
;
2927 wake_up(&lockres
->l_event
);
2928 spin_unlock_irqrestore(&lockres
->l_lock
, flags
);
2933 static int ocfs2_drop_lock(struct ocfs2_super
*osb
,
2934 struct ocfs2_lock_res
*lockres
)
2937 unsigned long flags
;
2940 /* We didn't get anywhere near actually using this lockres. */
2941 if (!(lockres
->l_flags
& OCFS2_LOCK_INITIALIZED
))
2944 if (lockres
->l_ops
->flags
& LOCK_TYPE_USES_LVB
)
2945 lkm_flags
|= DLM_LKF_VALBLK
;
2947 spin_lock_irqsave(&lockres
->l_lock
, flags
);
2949 mlog_bug_on_msg(!(lockres
->l_flags
& OCFS2_LOCK_FREEING
),
2950 "lockres %s, flags 0x%lx\n",
2951 lockres
->l_name
, lockres
->l_flags
);
2953 while (lockres
->l_flags
& OCFS2_LOCK_BUSY
) {
2954 mlog(0, "waiting on busy lock \"%s\": flags = %lx, action = "
2955 "%u, unlock_action = %u\n",
2956 lockres
->l_name
, lockres
->l_flags
, lockres
->l_action
,
2957 lockres
->l_unlock_action
);
2959 spin_unlock_irqrestore(&lockres
->l_lock
, flags
);
2961 /* XXX: Today we just wait on any busy
2962 * locks... Perhaps we need to cancel converts in the
2964 ocfs2_wait_on_busy_lock(lockres
);
2966 spin_lock_irqsave(&lockres
->l_lock
, flags
);
2969 if (lockres
->l_ops
->flags
& LOCK_TYPE_USES_LVB
) {
2970 if (lockres
->l_flags
& OCFS2_LOCK_ATTACHED
&&
2971 lockres
->l_level
== DLM_LOCK_EX
&&
2972 !(lockres
->l_flags
& OCFS2_LOCK_NEEDS_REFRESH
))
2973 lockres
->l_ops
->set_lvb(lockres
);
2976 if (lockres
->l_flags
& OCFS2_LOCK_BUSY
)
2977 mlog(ML_ERROR
, "destroying busy lock: \"%s\"\n",
2979 if (lockres
->l_flags
& OCFS2_LOCK_BLOCKED
)
2980 mlog(0, "destroying blocked lock: \"%s\"\n", lockres
->l_name
);
2982 if (!(lockres
->l_flags
& OCFS2_LOCK_ATTACHED
)) {
2983 spin_unlock_irqrestore(&lockres
->l_lock
, flags
);
2987 lockres_clear_flags(lockres
, OCFS2_LOCK_ATTACHED
);
2989 /* make sure we never get here while waiting for an ast to
2991 BUG_ON(lockres
->l_action
!= OCFS2_AST_INVALID
);
2993 /* is this necessary? */
2994 lockres_or_flags(lockres
, OCFS2_LOCK_BUSY
);
2995 lockres
->l_unlock_action
= OCFS2_UNLOCK_DROP_LOCK
;
2996 spin_unlock_irqrestore(&lockres
->l_lock
, flags
);
2998 mlog(0, "lock %s\n", lockres
->l_name
);
3000 ret
= ocfs2_dlm_unlock(osb
->cconn
, &lockres
->l_lksb
, lkm_flags
,
3003 ocfs2_log_dlm_error("ocfs2_dlm_unlock", ret
, lockres
);
3004 mlog(ML_ERROR
, "lockres flags: %lu\n", lockres
->l_flags
);
3005 ocfs2_dlm_dump_lksb(&lockres
->l_lksb
);
3008 mlog(0, "lock %s, successful return from ocfs2_dlm_unlock\n",
3011 ocfs2_wait_on_busy_lock(lockres
);
3017 /* Mark the lockres as being dropped. It will no longer be
3018 * queued if blocking, but we still may have to wait on it
3019 * being dequeued from the downconvert thread before we can consider
3022 * You can *not* attempt to call cluster_lock on this lockres anymore. */
3023 void ocfs2_mark_lockres_freeing(struct ocfs2_lock_res
*lockres
)
3026 struct ocfs2_mask_waiter mw
;
3027 unsigned long flags
;
3029 ocfs2_init_mask_waiter(&mw
);
3031 spin_lock_irqsave(&lockres
->l_lock
, flags
);
3032 lockres
->l_flags
|= OCFS2_LOCK_FREEING
;
3033 while (lockres
->l_flags
& OCFS2_LOCK_QUEUED
) {
3034 lockres_add_mask_waiter(lockres
, &mw
, OCFS2_LOCK_QUEUED
, 0);
3035 spin_unlock_irqrestore(&lockres
->l_lock
, flags
);
3037 mlog(0, "Waiting on lockres %s\n", lockres
->l_name
);
3039 status
= ocfs2_wait_for_mask(&mw
);
3043 spin_lock_irqsave(&lockres
->l_lock
, flags
);
3045 spin_unlock_irqrestore(&lockres
->l_lock
, flags
);
3048 void ocfs2_simple_drop_lockres(struct ocfs2_super
*osb
,
3049 struct ocfs2_lock_res
*lockres
)
3053 ocfs2_mark_lockres_freeing(lockres
);
3054 ret
= ocfs2_drop_lock(osb
, lockres
);
3059 static void ocfs2_drop_osb_locks(struct ocfs2_super
*osb
)
3061 ocfs2_simple_drop_lockres(osb
, &osb
->osb_super_lockres
);
3062 ocfs2_simple_drop_lockres(osb
, &osb
->osb_rename_lockres
);
3063 ocfs2_simple_drop_lockres(osb
, &osb
->osb_nfs_sync_lockres
);
3066 int ocfs2_drop_inode_locks(struct inode
*inode
)
3072 /* No need to call ocfs2_mark_lockres_freeing here -
3073 * ocfs2_clear_inode has done it for us. */
3075 err
= ocfs2_drop_lock(OCFS2_SB(inode
->i_sb
),
3076 &OCFS2_I(inode
)->ip_open_lockres
);
3082 err
= ocfs2_drop_lock(OCFS2_SB(inode
->i_sb
),
3083 &OCFS2_I(inode
)->ip_inode_lockres
);
3086 if (err
< 0 && !status
)
3089 err
= ocfs2_drop_lock(OCFS2_SB(inode
->i_sb
),
3090 &OCFS2_I(inode
)->ip_rw_lockres
);
3093 if (err
< 0 && !status
)
3100 static unsigned int ocfs2_prepare_downconvert(struct ocfs2_lock_res
*lockres
,
3103 assert_spin_locked(&lockres
->l_lock
);
3105 BUG_ON(lockres
->l_blocking
<= DLM_LOCK_NL
);
3107 if (lockres
->l_level
<= new_level
) {
3108 mlog(ML_ERROR
, "lockres->l_level (%d) <= new_level (%d)\n",
3109 lockres
->l_level
, new_level
);
3113 mlog(0, "lock %s, new_level = %d, l_blocking = %d\n",
3114 lockres
->l_name
, new_level
, lockres
->l_blocking
);
3116 lockres
->l_action
= OCFS2_AST_DOWNCONVERT
;
3117 lockres
->l_requested
= new_level
;
3118 lockres_or_flags(lockres
, OCFS2_LOCK_BUSY
);
3119 return lockres_set_pending(lockres
);
3122 static int ocfs2_downconvert_lock(struct ocfs2_super
*osb
,
3123 struct ocfs2_lock_res
*lockres
,
3126 unsigned int generation
)
3129 u32 dlm_flags
= DLM_LKF_CONVERT
;
3134 dlm_flags
|= DLM_LKF_VALBLK
;
3136 ret
= ocfs2_dlm_lock(osb
->cconn
,
3141 OCFS2_LOCK_ID_MAX_LEN
- 1,
3143 lockres_clear_pending(lockres
, generation
, osb
);
3145 ocfs2_log_dlm_error("ocfs2_dlm_lock", ret
, lockres
);
3146 ocfs2_recover_from_dlm_error(lockres
, 1);
3156 /* returns 1 when the caller should unlock and call ocfs2_dlm_unlock */
3157 static int ocfs2_prepare_cancel_convert(struct ocfs2_super
*osb
,
3158 struct ocfs2_lock_res
*lockres
)
3160 assert_spin_locked(&lockres
->l_lock
);
3163 mlog(0, "lock %s\n", lockres
->l_name
);
3165 if (lockres
->l_unlock_action
== OCFS2_UNLOCK_CANCEL_CONVERT
) {
3166 /* If we're already trying to cancel a lock conversion
3167 * then just drop the spinlock and allow the caller to
3168 * requeue this lock. */
3170 mlog(0, "Lockres %s, skip convert\n", lockres
->l_name
);
3174 /* were we in a convert when we got the bast fire? */
3175 BUG_ON(lockres
->l_action
!= OCFS2_AST_CONVERT
&&
3176 lockres
->l_action
!= OCFS2_AST_DOWNCONVERT
);
3177 /* set things up for the unlockast to know to just
3178 * clear out the ast_action and unset busy, etc. */
3179 lockres
->l_unlock_action
= OCFS2_UNLOCK_CANCEL_CONVERT
;
3181 mlog_bug_on_msg(!(lockres
->l_flags
& OCFS2_LOCK_BUSY
),
3182 "lock %s, invalid flags: 0x%lx\n",
3183 lockres
->l_name
, lockres
->l_flags
);
3188 static int ocfs2_cancel_convert(struct ocfs2_super
*osb
,
3189 struct ocfs2_lock_res
*lockres
)
3194 mlog(0, "lock %s\n", lockres
->l_name
);
3196 ret
= ocfs2_dlm_unlock(osb
->cconn
, &lockres
->l_lksb
,
3197 DLM_LKF_CANCEL
, lockres
);
3199 ocfs2_log_dlm_error("ocfs2_dlm_unlock", ret
, lockres
);
3200 ocfs2_recover_from_dlm_error(lockres
, 0);
3203 mlog(0, "lock %s return from ocfs2_dlm_unlock\n", lockres
->l_name
);
3209 static int ocfs2_unblock_lock(struct ocfs2_super
*osb
,
3210 struct ocfs2_lock_res
*lockres
,
3211 struct ocfs2_unblock_ctl
*ctl
)
3213 unsigned long flags
;
3222 spin_lock_irqsave(&lockres
->l_lock
, flags
);
3224 BUG_ON(!(lockres
->l_flags
& OCFS2_LOCK_BLOCKED
));
3227 if (lockres
->l_flags
& OCFS2_LOCK_BUSY
) {
3229 * This is a *big* race. The OCFS2_LOCK_PENDING flag
3230 * exists entirely for one reason - another thread has set
3231 * OCFS2_LOCK_BUSY, but has *NOT* yet called dlm_lock().
3233 * If we do ocfs2_cancel_convert() before the other thread
3234 * calls dlm_lock(), our cancel will do nothing. We will
3235 * get no ast, and we will have no way of knowing the
3236 * cancel failed. Meanwhile, the other thread will call
3237 * into dlm_lock() and wait...forever.
3239 * Why forever? Because another node has asked for the
3240 * lock first; that's why we're here in unblock_lock().
3242 * The solution is OCFS2_LOCK_PENDING. When PENDING is
3243 * set, we just requeue the unblock. Only when the other
3244 * thread has called dlm_lock() and cleared PENDING will
3245 * we then cancel their request.
3247 * All callers of dlm_lock() must set OCFS2_DLM_PENDING
3248 * at the same time they set OCFS2_DLM_BUSY. They must
3249 * clear OCFS2_DLM_PENDING after dlm_lock() returns.
3251 if (lockres
->l_flags
& OCFS2_LOCK_PENDING
)
3255 ret
= ocfs2_prepare_cancel_convert(osb
, lockres
);
3256 spin_unlock_irqrestore(&lockres
->l_lock
, flags
);
3258 ret
= ocfs2_cancel_convert(osb
, lockres
);
3265 /* if we're blocking an exclusive and we have *any* holders,
3267 if ((lockres
->l_blocking
== DLM_LOCK_EX
)
3268 && (lockres
->l_ex_holders
|| lockres
->l_ro_holders
))
3271 /* If it's a PR we're blocking, then only
3272 * requeue if we've got any EX holders */
3273 if (lockres
->l_blocking
== DLM_LOCK_PR
&&
3274 lockres
->l_ex_holders
)
3278 * Can we get a lock in this state if the holder counts are
3279 * zero? The meta data unblock code used to check this.
3281 if ((lockres
->l_ops
->flags
& LOCK_TYPE_REQUIRES_REFRESH
)
3282 && (lockres
->l_flags
& OCFS2_LOCK_REFRESHING
))
3285 new_level
= ocfs2_highest_compat_lock_level(lockres
->l_blocking
);
3287 if (lockres
->l_ops
->check_downconvert
3288 && !lockres
->l_ops
->check_downconvert(lockres
, new_level
))
3291 /* If we get here, then we know that there are no more
3292 * incompatible holders (and anyone asking for an incompatible
3293 * lock is blocked). We can now downconvert the lock */
3294 if (!lockres
->l_ops
->downconvert_worker
)
3297 /* Some lockres types want to do a bit of work before
3298 * downconverting a lock. Allow that here. The worker function
3299 * may sleep, so we save off a copy of what we're blocking as
3300 * it may change while we're not holding the spin lock. */
3301 blocking
= lockres
->l_blocking
;
3302 spin_unlock_irqrestore(&lockres
->l_lock
, flags
);
3304 ctl
->unblock_action
= lockres
->l_ops
->downconvert_worker(lockres
, blocking
);
3306 if (ctl
->unblock_action
== UNBLOCK_STOP_POST
)
3309 spin_lock_irqsave(&lockres
->l_lock
, flags
);
3310 if (blocking
!= lockres
->l_blocking
) {
3311 /* If this changed underneath us, then we can't drop
3319 if (lockres
->l_ops
->flags
& LOCK_TYPE_USES_LVB
) {
3320 if (lockres
->l_level
== DLM_LOCK_EX
)
3324 * We only set the lvb if the lock has been fully
3325 * refreshed - otherwise we risk setting stale
3326 * data. Otherwise, there's no need to actually clear
3327 * out the lvb here as it's value is still valid.
3329 if (set_lvb
&& !(lockres
->l_flags
& OCFS2_LOCK_NEEDS_REFRESH
))
3330 lockres
->l_ops
->set_lvb(lockres
);
3333 gen
= ocfs2_prepare_downconvert(lockres
, new_level
);
3334 spin_unlock_irqrestore(&lockres
->l_lock
, flags
);
3335 ret
= ocfs2_downconvert_lock(osb
, lockres
, new_level
, set_lvb
,
3343 spin_unlock_irqrestore(&lockres
->l_lock
, flags
);
3350 static int ocfs2_data_convert_worker(struct ocfs2_lock_res
*lockres
,
3353 struct inode
*inode
;
3354 struct address_space
*mapping
;
3356 inode
= ocfs2_lock_res_inode(lockres
);
3357 mapping
= inode
->i_mapping
;
3359 if (!S_ISREG(inode
->i_mode
))
3363 * We need this before the filemap_fdatawrite() so that it can
3364 * transfer the dirty bit from the PTE to the
3365 * page. Unfortunately this means that even for EX->PR
3366 * downconverts, we'll lose our mappings and have to build
3369 unmap_mapping_range(mapping
, 0, 0, 0);
3371 if (filemap_fdatawrite(mapping
)) {
3372 mlog(ML_ERROR
, "Could not sync inode %llu for downconvert!",
3373 (unsigned long long)OCFS2_I(inode
)->ip_blkno
);
3375 sync_mapping_buffers(mapping
);
3376 if (blocking
== DLM_LOCK_EX
) {
3377 truncate_inode_pages(mapping
, 0);
3379 /* We only need to wait on the I/O if we're not also
3380 * truncating pages because truncate_inode_pages waits
3381 * for us above. We don't truncate pages if we're
3382 * blocking anything < EXMODE because we want to keep
3383 * them around in that case. */
3384 filemap_fdatawait(mapping
);
3388 return UNBLOCK_CONTINUE
;
3391 static int ocfs2_check_meta_downconvert(struct ocfs2_lock_res
*lockres
,
3394 struct inode
*inode
= ocfs2_lock_res_inode(lockres
);
3395 int checkpointed
= ocfs2_inode_fully_checkpointed(inode
);
3397 BUG_ON(new_level
!= DLM_LOCK_NL
&& new_level
!= DLM_LOCK_PR
);
3398 BUG_ON(lockres
->l_level
!= DLM_LOCK_EX
&& !checkpointed
);
3403 ocfs2_start_checkpoint(OCFS2_SB(inode
->i_sb
));
3407 static void ocfs2_set_meta_lvb(struct ocfs2_lock_res
*lockres
)
3409 struct inode
*inode
= ocfs2_lock_res_inode(lockres
);
3411 __ocfs2_stuff_meta_lvb(inode
);
3415 * Does the final reference drop on our dentry lock. Right now this
3416 * happens in the downconvert thread, but we could choose to simplify the
3417 * dlmglue API and push these off to the ocfs2_wq in the future.
3419 static void ocfs2_dentry_post_unlock(struct ocfs2_super
*osb
,
3420 struct ocfs2_lock_res
*lockres
)
3422 struct ocfs2_dentry_lock
*dl
= ocfs2_lock_res_dl(lockres
);
3423 ocfs2_dentry_lock_put(osb
, dl
);
3427 * d_delete() matching dentries before the lock downconvert.
3429 * At this point, any process waiting to destroy the
3430 * dentry_lock due to last ref count is stopped by the
3431 * OCFS2_LOCK_QUEUED flag.
3433 * We have two potential problems
3435 * 1) If we do the last reference drop on our dentry_lock (via dput)
3436 * we'll wind up in ocfs2_release_dentry_lock(), waiting on
3437 * the downconvert to finish. Instead we take an elevated
3438 * reference and push the drop until after we've completed our
3439 * unblock processing.
3441 * 2) There might be another process with a final reference,
3442 * waiting on us to finish processing. If this is the case, we
3443 * detect it and exit out - there's no more dentries anyway.
3445 static int ocfs2_dentry_convert_worker(struct ocfs2_lock_res
*lockres
,
3448 struct ocfs2_dentry_lock
*dl
= ocfs2_lock_res_dl(lockres
);
3449 struct ocfs2_inode_info
*oi
= OCFS2_I(dl
->dl_inode
);
3450 struct dentry
*dentry
;
3451 unsigned long flags
;
3455 * This node is blocking another node from getting a read
3456 * lock. This happens when we've renamed within a
3457 * directory. We've forced the other nodes to d_delete(), but
3458 * we never actually dropped our lock because it's still
3459 * valid. The downconvert code will retain a PR for this node,
3460 * so there's no further work to do.
3462 if (blocking
== DLM_LOCK_PR
)
3463 return UNBLOCK_CONTINUE
;
3466 * Mark this inode as potentially orphaned. The code in
3467 * ocfs2_delete_inode() will figure out whether it actually
3468 * needs to be freed or not.
3470 spin_lock(&oi
->ip_lock
);
3471 oi
->ip_flags
|= OCFS2_INODE_MAYBE_ORPHANED
;
3472 spin_unlock(&oi
->ip_lock
);
3475 * Yuck. We need to make sure however that the check of
3476 * OCFS2_LOCK_FREEING and the extra reference are atomic with
3477 * respect to a reference decrement or the setting of that
3480 spin_lock_irqsave(&lockres
->l_lock
, flags
);
3481 spin_lock(&dentry_attach_lock
);
3482 if (!(lockres
->l_flags
& OCFS2_LOCK_FREEING
)
3487 spin_unlock(&dentry_attach_lock
);
3488 spin_unlock_irqrestore(&lockres
->l_lock
, flags
);
3490 mlog(0, "extra_ref = %d\n", extra_ref
);
3493 * We have a process waiting on us in ocfs2_dentry_iput(),
3494 * which means we can't have any more outstanding
3495 * aliases. There's no need to do any more work.
3498 return UNBLOCK_CONTINUE
;
3500 spin_lock(&dentry_attach_lock
);
3502 dentry
= ocfs2_find_local_alias(dl
->dl_inode
,
3503 dl
->dl_parent_blkno
, 1);
3506 spin_unlock(&dentry_attach_lock
);
3508 mlog(0, "d_delete(%.*s);\n", dentry
->d_name
.len
,
3509 dentry
->d_name
.name
);
3512 * The following dcache calls may do an
3513 * iput(). Normally we don't want that from the
3514 * downconverting thread, but in this case it's ok
3515 * because the requesting node already has an
3516 * exclusive lock on the inode, so it can't be queued
3517 * for a downconvert.
3522 spin_lock(&dentry_attach_lock
);
3524 spin_unlock(&dentry_attach_lock
);
3527 * If we are the last holder of this dentry lock, there is no
3528 * reason to downconvert so skip straight to the unlock.
3530 if (dl
->dl_count
== 1)
3531 return UNBLOCK_STOP_POST
;
3533 return UNBLOCK_CONTINUE_POST
;
3536 static void ocfs2_set_qinfo_lvb(struct ocfs2_lock_res
*lockres
)
3538 struct ocfs2_qinfo_lvb
*lvb
;
3539 struct ocfs2_mem_dqinfo
*oinfo
= ocfs2_lock_res_qinfo(lockres
);
3540 struct mem_dqinfo
*info
= sb_dqinfo(oinfo
->dqi_gi
.dqi_sb
,
3541 oinfo
->dqi_gi
.dqi_type
);
3545 lvb
= ocfs2_dlm_lvb(&lockres
->l_lksb
);
3546 lvb
->lvb_version
= OCFS2_QINFO_LVB_VERSION
;
3547 lvb
->lvb_bgrace
= cpu_to_be32(info
->dqi_bgrace
);
3548 lvb
->lvb_igrace
= cpu_to_be32(info
->dqi_igrace
);
3549 lvb
->lvb_syncms
= cpu_to_be32(oinfo
->dqi_syncms
);
3550 lvb
->lvb_blocks
= cpu_to_be32(oinfo
->dqi_gi
.dqi_blocks
);
3551 lvb
->lvb_free_blk
= cpu_to_be32(oinfo
->dqi_gi
.dqi_free_blk
);
3552 lvb
->lvb_free_entry
= cpu_to_be32(oinfo
->dqi_gi
.dqi_free_entry
);
3557 void ocfs2_qinfo_unlock(struct ocfs2_mem_dqinfo
*oinfo
, int ex
)
3559 struct ocfs2_lock_res
*lockres
= &oinfo
->dqi_gqlock
;
3560 struct ocfs2_super
*osb
= OCFS2_SB(oinfo
->dqi_gi
.dqi_sb
);
3561 int level
= ex
? DLM_LOCK_EX
: DLM_LOCK_PR
;
3564 if (!ocfs2_is_hard_readonly(osb
) && !ocfs2_mount_local(osb
))
3565 ocfs2_cluster_unlock(osb
, lockres
, level
);
3569 static int ocfs2_refresh_qinfo(struct ocfs2_mem_dqinfo
*oinfo
)
3571 struct mem_dqinfo
*info
= sb_dqinfo(oinfo
->dqi_gi
.dqi_sb
,
3572 oinfo
->dqi_gi
.dqi_type
);
3573 struct ocfs2_lock_res
*lockres
= &oinfo
->dqi_gqlock
;
3574 struct ocfs2_qinfo_lvb
*lvb
= ocfs2_dlm_lvb(&lockres
->l_lksb
);
3575 struct buffer_head
*bh
= NULL
;
3576 struct ocfs2_global_disk_dqinfo
*gdinfo
;
3579 if (lvb
->lvb_version
== OCFS2_QINFO_LVB_VERSION
) {
3580 info
->dqi_bgrace
= be32_to_cpu(lvb
->lvb_bgrace
);
3581 info
->dqi_igrace
= be32_to_cpu(lvb
->lvb_igrace
);
3582 oinfo
->dqi_syncms
= be32_to_cpu(lvb
->lvb_syncms
);
3583 oinfo
->dqi_gi
.dqi_blocks
= be32_to_cpu(lvb
->lvb_blocks
);
3584 oinfo
->dqi_gi
.dqi_free_blk
= be32_to_cpu(lvb
->lvb_free_blk
);
3585 oinfo
->dqi_gi
.dqi_free_entry
=
3586 be32_to_cpu(lvb
->lvb_free_entry
);
3588 status
= ocfs2_read_quota_block(oinfo
->dqi_gqinode
, 0, &bh
);
3593 gdinfo
= (struct ocfs2_global_disk_dqinfo
*)
3594 (bh
->b_data
+ OCFS2_GLOBAL_INFO_OFF
);
3595 info
->dqi_bgrace
= le32_to_cpu(gdinfo
->dqi_bgrace
);
3596 info
->dqi_igrace
= le32_to_cpu(gdinfo
->dqi_igrace
);
3597 oinfo
->dqi_syncms
= le32_to_cpu(gdinfo
->dqi_syncms
);
3598 oinfo
->dqi_gi
.dqi_blocks
= le32_to_cpu(gdinfo
->dqi_blocks
);
3599 oinfo
->dqi_gi
.dqi_free_blk
= le32_to_cpu(gdinfo
->dqi_free_blk
);
3600 oinfo
->dqi_gi
.dqi_free_entry
=
3601 le32_to_cpu(gdinfo
->dqi_free_entry
);
3603 ocfs2_track_lock_refresh(lockres
);
3610 /* Lock quota info, this function expects at least shared lock on the quota file
3611 * so that we can safely refresh quota info from disk. */
3612 int ocfs2_qinfo_lock(struct ocfs2_mem_dqinfo
*oinfo
, int ex
)
3614 struct ocfs2_lock_res
*lockres
= &oinfo
->dqi_gqlock
;
3615 struct ocfs2_super
*osb
= OCFS2_SB(oinfo
->dqi_gi
.dqi_sb
);
3616 int level
= ex
? DLM_LOCK_EX
: DLM_LOCK_PR
;
3621 /* On RO devices, locking really isn't needed... */
3622 if (ocfs2_is_hard_readonly(osb
)) {
3627 if (ocfs2_mount_local(osb
))
3630 status
= ocfs2_cluster_lock(osb
, lockres
, level
, 0, 0);
3635 if (!ocfs2_should_refresh_lock_res(lockres
))
3637 /* OK, we have the lock but we need to refresh the quota info */
3638 status
= ocfs2_refresh_qinfo(oinfo
);
3640 ocfs2_qinfo_unlock(oinfo
, ex
);
3641 ocfs2_complete_lock_res_refresh(lockres
, status
);
3648 * This is the filesystem locking protocol. It provides the lock handling
3649 * hooks for the underlying DLM. It has a maximum version number.
3650 * The version number allows interoperability with systems running at
3651 * the same major number and an equal or smaller minor number.
3653 * Whenever the filesystem does new things with locks (adds or removes a
3654 * lock, orders them differently, does different things underneath a lock),
3655 * the version must be changed. The protocol is negotiated when joining
3656 * the dlm domain. A node may join the domain if its major version is
3657 * identical to all other nodes and its minor version is greater than
3658 * or equal to all other nodes. When its minor version is greater than
3659 * the other nodes, it will run at the minor version specified by the
3662 * If a locking change is made that will not be compatible with older
3663 * versions, the major number must be increased and the minor version set
3664 * to zero. If a change merely adds a behavior that can be disabled when
3665 * speaking to older versions, the minor version must be increased. If a
3666 * change adds a fully backwards compatible change (eg, LVB changes that
3667 * are just ignored by older versions), the version does not need to be
3670 static struct ocfs2_locking_protocol lproto
= {
3672 .pv_major
= OCFS2_LOCKING_PROTOCOL_MAJOR
,
3673 .pv_minor
= OCFS2_LOCKING_PROTOCOL_MINOR
,
3675 .lp_lock_ast
= ocfs2_locking_ast
,
3676 .lp_blocking_ast
= ocfs2_blocking_ast
,
3677 .lp_unlock_ast
= ocfs2_unlock_ast
,
3680 void ocfs2_set_locking_protocol(void)
3682 ocfs2_stack_glue_set_locking_protocol(&lproto
);
3686 static void ocfs2_process_blocked_lock(struct ocfs2_super
*osb
,
3687 struct ocfs2_lock_res
*lockres
)
3690 struct ocfs2_unblock_ctl ctl
= {0, 0,};
3691 unsigned long flags
;
3693 /* Our reference to the lockres in this function can be
3694 * considered valid until we remove the OCFS2_LOCK_QUEUED
3700 BUG_ON(!lockres
->l_ops
);
3702 mlog(0, "lockres %s blocked.\n", lockres
->l_name
);
3704 /* Detect whether a lock has been marked as going away while
3705 * the downconvert thread was processing other things. A lock can
3706 * still be marked with OCFS2_LOCK_FREEING after this check,
3707 * but short circuiting here will still save us some
3709 spin_lock_irqsave(&lockres
->l_lock
, flags
);
3710 if (lockres
->l_flags
& OCFS2_LOCK_FREEING
)
3712 spin_unlock_irqrestore(&lockres
->l_lock
, flags
);
3714 status
= ocfs2_unblock_lock(osb
, lockres
, &ctl
);
3718 spin_lock_irqsave(&lockres
->l_lock
, flags
);
3720 if (lockres
->l_flags
& OCFS2_LOCK_FREEING
|| !ctl
.requeue
) {
3721 lockres_clear_flags(lockres
, OCFS2_LOCK_QUEUED
);
3723 ocfs2_schedule_blocked_lock(osb
, lockres
);
3725 mlog(0, "lockres %s, requeue = %s.\n", lockres
->l_name
,
3726 ctl
.requeue
? "yes" : "no");
3727 spin_unlock_irqrestore(&lockres
->l_lock
, flags
);
3729 if (ctl
.unblock_action
!= UNBLOCK_CONTINUE
3730 && lockres
->l_ops
->post_unlock
)
3731 lockres
->l_ops
->post_unlock(osb
, lockres
);
3736 static void ocfs2_schedule_blocked_lock(struct ocfs2_super
*osb
,
3737 struct ocfs2_lock_res
*lockres
)
3741 assert_spin_locked(&lockres
->l_lock
);
3743 if (lockres
->l_flags
& OCFS2_LOCK_FREEING
) {
3744 /* Do not schedule a lock for downconvert when it's on
3745 * the way to destruction - any nodes wanting access
3746 * to the resource will get it soon. */
3747 mlog(0, "Lockres %s won't be scheduled: flags 0x%lx\n",
3748 lockres
->l_name
, lockres
->l_flags
);
3752 lockres_or_flags(lockres
, OCFS2_LOCK_QUEUED
);
3754 spin_lock(&osb
->dc_task_lock
);
3755 if (list_empty(&lockres
->l_blocked_list
)) {
3756 list_add_tail(&lockres
->l_blocked_list
,
3757 &osb
->blocked_lock_list
);
3758 osb
->blocked_lock_count
++;
3760 spin_unlock(&osb
->dc_task_lock
);
3765 static void ocfs2_downconvert_thread_do_work(struct ocfs2_super
*osb
)
3767 unsigned long processed
;
3768 struct ocfs2_lock_res
*lockres
;
3772 spin_lock(&osb
->dc_task_lock
);
3773 /* grab this early so we know to try again if a state change and
3774 * wake happens part-way through our work */
3775 osb
->dc_work_sequence
= osb
->dc_wake_sequence
;
3777 processed
= osb
->blocked_lock_count
;
3779 BUG_ON(list_empty(&osb
->blocked_lock_list
));
3781 lockres
= list_entry(osb
->blocked_lock_list
.next
,
3782 struct ocfs2_lock_res
, l_blocked_list
);
3783 list_del_init(&lockres
->l_blocked_list
);
3784 osb
->blocked_lock_count
--;
3785 spin_unlock(&osb
->dc_task_lock
);
3790 ocfs2_process_blocked_lock(osb
, lockres
);
3792 spin_lock(&osb
->dc_task_lock
);
3794 spin_unlock(&osb
->dc_task_lock
);
3799 static int ocfs2_downconvert_thread_lists_empty(struct ocfs2_super
*osb
)
3803 spin_lock(&osb
->dc_task_lock
);
3804 if (list_empty(&osb
->blocked_lock_list
))
3807 spin_unlock(&osb
->dc_task_lock
);
3811 static int ocfs2_downconvert_thread_should_wake(struct ocfs2_super
*osb
)
3813 int should_wake
= 0;
3815 spin_lock(&osb
->dc_task_lock
);
3816 if (osb
->dc_work_sequence
!= osb
->dc_wake_sequence
)
3818 spin_unlock(&osb
->dc_task_lock
);
3823 static int ocfs2_downconvert_thread(void *arg
)
3826 struct ocfs2_super
*osb
= arg
;
3828 /* only quit once we've been asked to stop and there is no more
3830 while (!(kthread_should_stop() &&
3831 ocfs2_downconvert_thread_lists_empty(osb
))) {
3833 wait_event_interruptible(osb
->dc_event
,
3834 ocfs2_downconvert_thread_should_wake(osb
) ||
3835 kthread_should_stop());
3837 mlog(0, "downconvert_thread: awoken\n");
3839 ocfs2_downconvert_thread_do_work(osb
);
3842 osb
->dc_task
= NULL
;
3846 void ocfs2_wake_downconvert_thread(struct ocfs2_super
*osb
)
3848 spin_lock(&osb
->dc_task_lock
);
3849 /* make sure the voting thread gets a swipe at whatever changes
3850 * the caller may have made to the voting state */
3851 osb
->dc_wake_sequence
++;
3852 spin_unlock(&osb
->dc_task_lock
);
3853 wake_up(&osb
->dc_event
);