2 * Copyright (C) Sistina Software, Inc. 1997-2003 All rights reserved.
3 * Copyright (C) 2004-2008 Red Hat, Inc. All rights reserved.
5 * This copyrighted material is made available to anyone wishing to use,
6 * modify, copy, or redistribute it subject to the terms and conditions
7 * of the GNU General Public License version 2.
10 #include <linux/spinlock.h>
11 #include <linux/completion.h>
12 #include <linux/buffer_head.h>
13 #include <linux/gfs2_ondisk.h>
14 #include <linux/bio.h>
15 #include <linux/posix_acl.h>
31 struct workqueue_struct
*gfs2_freeze_wq
;
33 static void gfs2_ail_error(struct gfs2_glock
*gl
, const struct buffer_head
*bh
)
35 fs_err(gl
->gl_sbd
, "AIL buffer %p: blocknr %llu state 0x%08lx mapping %p page state 0x%lx\n",
36 bh
, (unsigned long long)bh
->b_blocknr
, bh
->b_state
,
37 bh
->b_page
->mapping
, bh
->b_page
->flags
);
38 fs_err(gl
->gl_sbd
, "AIL glock %u:%llu mapping %p\n",
39 gl
->gl_name
.ln_type
, gl
->gl_name
.ln_number
,
40 gfs2_glock2aspace(gl
));
41 gfs2_lm_withdraw(gl
->gl_sbd
, "AIL error\n");
45 * __gfs2_ail_flush - remove all buffers for a given lock from the AIL
47 * @fsync: set when called from fsync (not all buffers will be clean)
49 * None of the buffers should be dirty, locked, or pinned.
52 static void __gfs2_ail_flush(struct gfs2_glock
*gl
, bool fsync
,
53 unsigned int nr_revokes
)
55 struct gfs2_sbd
*sdp
= gl
->gl_sbd
;
56 struct list_head
*head
= &gl
->gl_ail_list
;
57 struct gfs2_bufdata
*bd
, *tmp
;
58 struct buffer_head
*bh
;
59 const unsigned long b_state
= (1UL << BH_Dirty
)|(1UL << BH_Pinned
)|(1UL << BH_Lock
);
62 spin_lock(&sdp
->sd_ail_lock
);
63 list_for_each_entry_safe_reverse(bd
, tmp
, head
, bd_ail_gl_list
) {
67 if (bh
->b_state
& b_state
) {
70 gfs2_ail_error(gl
, bh
);
72 gfs2_trans_add_revoke(sdp
, bd
);
75 GLOCK_BUG_ON(gl
, !fsync
&& atomic_read(&gl
->gl_ail_count
));
76 spin_unlock(&sdp
->sd_ail_lock
);
81 static void gfs2_ail_empty_gl(struct gfs2_glock
*gl
)
83 struct gfs2_sbd
*sdp
= gl
->gl_sbd
;
86 memset(&tr
, 0, sizeof(tr
));
87 INIT_LIST_HEAD(&tr
.tr_buf
);
88 INIT_LIST_HEAD(&tr
.tr_databuf
);
89 tr
.tr_revokes
= atomic_read(&gl
->gl_ail_count
);
94 /* A shortened, inline version of gfs2_trans_begin()
95 * tr->alloced is not set since the transaction structure is
97 tr
.tr_reserved
= 1 + gfs2_struct2blk(sdp
, tr
.tr_revokes
, sizeof(u64
));
99 if (gfs2_log_reserve(sdp
, tr
.tr_reserved
) < 0)
101 WARN_ON_ONCE(current
->journal_info
);
102 current
->journal_info
= &tr
;
104 __gfs2_ail_flush(gl
, 0, tr
.tr_revokes
);
107 gfs2_log_flush(sdp
, NULL
, NORMAL_FLUSH
);
110 void gfs2_ail_flush(struct gfs2_glock
*gl
, bool fsync
)
112 struct gfs2_sbd
*sdp
= gl
->gl_sbd
;
113 unsigned int revokes
= atomic_read(&gl
->gl_ail_count
);
114 unsigned int max_revokes
= (sdp
->sd_sb
.sb_bsize
- sizeof(struct gfs2_log_descriptor
)) / sizeof(u64
);
120 while (revokes
> max_revokes
)
121 max_revokes
+= (sdp
->sd_sb
.sb_bsize
- sizeof(struct gfs2_meta_header
)) / sizeof(u64
);
123 ret
= gfs2_trans_begin(sdp
, 0, max_revokes
);
126 __gfs2_ail_flush(gl
, fsync
, max_revokes
);
128 gfs2_log_flush(sdp
, NULL
, NORMAL_FLUSH
);
132 * rgrp_go_sync - sync out the metadata for this glock
135 * Called when demoting or unlocking an EX glock. We must flush
136 * to disk all dirty buffers/pages relating to this glock, and must not
137 * not return to caller to demote/unlock the glock until I/O is complete.
140 static void rgrp_go_sync(struct gfs2_glock
*gl
)
142 struct gfs2_sbd
*sdp
= gl
->gl_sbd
;
143 struct address_space
*mapping
= &sdp
->sd_aspace
;
144 struct gfs2_rgrpd
*rgd
;
147 if (!test_and_clear_bit(GLF_DIRTY
, &gl
->gl_flags
))
149 GLOCK_BUG_ON(gl
, gl
->gl_state
!= LM_ST_EXCLUSIVE
);
151 gfs2_log_flush(sdp
, gl
, NORMAL_FLUSH
);
152 filemap_fdatawrite_range(mapping
, gl
->gl_vm
.start
, gl
->gl_vm
.end
);
153 error
= filemap_fdatawait_range(mapping
, gl
->gl_vm
.start
, gl
->gl_vm
.end
);
154 mapping_set_error(mapping
, error
);
155 gfs2_ail_empty_gl(gl
);
157 spin_lock(&gl
->gl_spin
);
160 gfs2_free_clones(rgd
);
161 spin_unlock(&gl
->gl_spin
);
165 * rgrp_go_inval - invalidate the metadata for this glock
169 * We never used LM_ST_DEFERRED with resource groups, so that we
170 * should always see the metadata flag set here.
174 static void rgrp_go_inval(struct gfs2_glock
*gl
, int flags
)
176 struct gfs2_sbd
*sdp
= gl
->gl_sbd
;
177 struct address_space
*mapping
= &sdp
->sd_aspace
;
179 WARN_ON_ONCE(!(flags
& DIO_METADATA
));
180 gfs2_assert_withdraw(sdp
, !atomic_read(&gl
->gl_ail_count
));
181 truncate_inode_pages_range(mapping
, gl
->gl_vm
.start
, gl
->gl_vm
.end
);
184 struct gfs2_rgrpd
*rgd
= (struct gfs2_rgrpd
*)gl
->gl_object
;
185 rgd
->rd_flags
&= ~GFS2_RDF_UPTODATE
;
190 * inode_go_sync - Sync the dirty data and/or metadata for an inode glock
191 * @gl: the glock protecting the inode
195 static void inode_go_sync(struct gfs2_glock
*gl
)
197 struct gfs2_inode
*ip
= gl
->gl_object
;
198 struct address_space
*metamapping
= gfs2_glock2aspace(gl
);
201 if (ip
&& !S_ISREG(ip
->i_inode
.i_mode
))
204 if (test_and_clear_bit(GIF_SW_PAGED
, &ip
->i_flags
))
205 unmap_shared_mapping_range(ip
->i_inode
.i_mapping
, 0, 0);
206 inode_dio_wait(&ip
->i_inode
);
208 if (!test_and_clear_bit(GLF_DIRTY
, &gl
->gl_flags
))
211 GLOCK_BUG_ON(gl
, gl
->gl_state
!= LM_ST_EXCLUSIVE
);
213 gfs2_log_flush(gl
->gl_sbd
, gl
, NORMAL_FLUSH
);
214 filemap_fdatawrite(metamapping
);
216 struct address_space
*mapping
= ip
->i_inode
.i_mapping
;
217 filemap_fdatawrite(mapping
);
218 error
= filemap_fdatawait(mapping
);
219 mapping_set_error(mapping
, error
);
221 error
= filemap_fdatawait(metamapping
);
222 mapping_set_error(metamapping
, error
);
223 gfs2_ail_empty_gl(gl
);
225 * Writeback of the data mapping may cause the dirty flag to be set
226 * so we have to clear it again here.
228 smp_mb__before_atomic();
229 clear_bit(GLF_DIRTY
, &gl
->gl_flags
);
233 * inode_go_inval - prepare a inode glock to be released
237 * Normally we invalidate everything, but if we are moving into
238 * LM_ST_DEFERRED from LM_ST_SHARED or LM_ST_EXCLUSIVE then we
239 * can keep hold of the metadata, since it won't have changed.
243 static void inode_go_inval(struct gfs2_glock
*gl
, int flags
)
245 struct gfs2_inode
*ip
= gl
->gl_object
;
247 gfs2_assert_withdraw(gl
->gl_sbd
, !atomic_read(&gl
->gl_ail_count
));
249 if (flags
& DIO_METADATA
) {
250 struct address_space
*mapping
= gfs2_glock2aspace(gl
);
251 truncate_inode_pages(mapping
, 0);
253 set_bit(GIF_INVALID
, &ip
->i_flags
);
254 forget_all_cached_acls(&ip
->i_inode
);
255 gfs2_dir_hash_inval(ip
);
259 if (ip
== GFS2_I(gl
->gl_sbd
->sd_rindex
)) {
260 gfs2_log_flush(gl
->gl_sbd
, NULL
, NORMAL_FLUSH
);
261 gl
->gl_sbd
->sd_rindex_uptodate
= 0;
263 if (ip
&& S_ISREG(ip
->i_inode
.i_mode
))
264 truncate_inode_pages(ip
->i_inode
.i_mapping
, 0);
268 * inode_go_demote_ok - Check to see if it's ok to unlock an inode glock
271 * Returns: 1 if it's ok
274 static int inode_go_demote_ok(const struct gfs2_glock
*gl
)
276 struct gfs2_sbd
*sdp
= gl
->gl_sbd
;
277 struct gfs2_holder
*gh
;
279 if (sdp
->sd_jindex
== gl
->gl_object
|| sdp
->sd_rindex
== gl
->gl_object
)
282 if (!list_empty(&gl
->gl_holders
)) {
283 gh
= list_entry(gl
->gl_holders
.next
, struct gfs2_holder
, gh_list
);
284 if (gh
->gh_list
.next
!= &gl
->gl_holders
)
292 * gfs2_set_nlink - Set the inode's link count based on on-disk info
293 * @inode: The inode in question
294 * @nlink: The link count
296 * If the link count has hit zero, it must never be raised, whatever the
297 * on-disk inode might say. When new struct inodes are created the link
298 * count is set to 1, so that we can safely use this test even when reading
299 * in on disk information for the first time.
302 static void gfs2_set_nlink(struct inode
*inode
, u32 nlink
)
305 * We will need to review setting the nlink count here in the
306 * light of the forthcoming ro bind mount work. This is a reminder
309 if ((inode
->i_nlink
!= nlink
) && (inode
->i_nlink
!= 0)) {
313 set_nlink(inode
, nlink
);
317 static int gfs2_dinode_in(struct gfs2_inode
*ip
, const void *buf
)
319 const struct gfs2_dinode
*str
= buf
;
320 struct timespec atime
;
323 if (unlikely(ip
->i_no_addr
!= be64_to_cpu(str
->di_num
.no_addr
)))
325 ip
->i_no_formal_ino
= be64_to_cpu(str
->di_num
.no_formal_ino
);
326 ip
->i_inode
.i_mode
= be32_to_cpu(str
->di_mode
);
327 ip
->i_inode
.i_rdev
= 0;
328 switch (ip
->i_inode
.i_mode
& S_IFMT
) {
331 ip
->i_inode
.i_rdev
= MKDEV(be32_to_cpu(str
->di_major
),
332 be32_to_cpu(str
->di_minor
));
336 i_uid_write(&ip
->i_inode
, be32_to_cpu(str
->di_uid
));
337 i_gid_write(&ip
->i_inode
, be32_to_cpu(str
->di_gid
));
338 gfs2_set_nlink(&ip
->i_inode
, be32_to_cpu(str
->di_nlink
));
339 i_size_write(&ip
->i_inode
, be64_to_cpu(str
->di_size
));
340 gfs2_set_inode_blocks(&ip
->i_inode
, be64_to_cpu(str
->di_blocks
));
341 atime
.tv_sec
= be64_to_cpu(str
->di_atime
);
342 atime
.tv_nsec
= be32_to_cpu(str
->di_atime_nsec
);
343 if (timespec_compare(&ip
->i_inode
.i_atime
, &atime
) < 0)
344 ip
->i_inode
.i_atime
= atime
;
345 ip
->i_inode
.i_mtime
.tv_sec
= be64_to_cpu(str
->di_mtime
);
346 ip
->i_inode
.i_mtime
.tv_nsec
= be32_to_cpu(str
->di_mtime_nsec
);
347 ip
->i_inode
.i_ctime
.tv_sec
= be64_to_cpu(str
->di_ctime
);
348 ip
->i_inode
.i_ctime
.tv_nsec
= be32_to_cpu(str
->di_ctime_nsec
);
350 ip
->i_goal
= be64_to_cpu(str
->di_goal_meta
);
351 ip
->i_generation
= be64_to_cpu(str
->di_generation
);
353 ip
->i_diskflags
= be32_to_cpu(str
->di_flags
);
354 ip
->i_eattr
= be64_to_cpu(str
->di_eattr
);
355 /* i_diskflags and i_eattr must be set before gfs2_set_inode_flags() */
356 gfs2_set_inode_flags(&ip
->i_inode
);
357 height
= be16_to_cpu(str
->di_height
);
358 if (unlikely(height
> GFS2_MAX_META_HEIGHT
))
360 ip
->i_height
= (u8
)height
;
362 depth
= be16_to_cpu(str
->di_depth
);
363 if (unlikely(depth
> GFS2_DIR_MAX_DEPTH
))
365 ip
->i_depth
= (u8
)depth
;
366 ip
->i_entries
= be32_to_cpu(str
->di_entries
);
368 if (S_ISREG(ip
->i_inode
.i_mode
))
369 gfs2_set_aops(&ip
->i_inode
);
373 gfs2_consist_inode(ip
);
378 * gfs2_inode_refresh - Refresh the incore copy of the dinode
379 * @ip: The GFS2 inode
384 int gfs2_inode_refresh(struct gfs2_inode
*ip
)
386 struct buffer_head
*dibh
;
389 error
= gfs2_meta_inode_buffer(ip
, &dibh
);
393 error
= gfs2_dinode_in(ip
, dibh
->b_data
);
395 clear_bit(GIF_INVALID
, &ip
->i_flags
);
401 * inode_go_lock - operation done after an inode lock is locked by a process
408 static int inode_go_lock(struct gfs2_holder
*gh
)
410 struct gfs2_glock
*gl
= gh
->gh_gl
;
411 struct gfs2_sbd
*sdp
= gl
->gl_sbd
;
412 struct gfs2_inode
*ip
= gl
->gl_object
;
415 if (!ip
|| (gh
->gh_flags
& GL_SKIP
))
418 if (test_bit(GIF_INVALID
, &ip
->i_flags
)) {
419 error
= gfs2_inode_refresh(ip
);
424 if (gh
->gh_state
!= LM_ST_DEFERRED
)
425 inode_dio_wait(&ip
->i_inode
);
427 if ((ip
->i_diskflags
& GFS2_DIF_TRUNC_IN_PROG
) &&
428 (gl
->gl_state
== LM_ST_EXCLUSIVE
) &&
429 (gh
->gh_state
== LM_ST_EXCLUSIVE
)) {
430 spin_lock(&sdp
->sd_trunc_lock
);
431 if (list_empty(&ip
->i_trunc_list
))
432 list_add(&sdp
->sd_trunc_list
, &ip
->i_trunc_list
);
433 spin_unlock(&sdp
->sd_trunc_lock
);
434 wake_up(&sdp
->sd_quota_wait
);
442 * inode_go_dump - print information about an inode
448 static void inode_go_dump(struct seq_file
*seq
, const struct gfs2_glock
*gl
)
450 const struct gfs2_inode
*ip
= gl
->gl_object
;
453 gfs2_print_dbg(seq
, " I: n:%llu/%llu t:%u f:0x%02lx d:0x%08x s:%llu\n",
454 (unsigned long long)ip
->i_no_formal_ino
,
455 (unsigned long long)ip
->i_no_addr
,
456 IF2DT(ip
->i_inode
.i_mode
), ip
->i_flags
,
457 (unsigned int)ip
->i_diskflags
,
458 (unsigned long long)i_size_read(&ip
->i_inode
));
462 * freeze_go_sync - promote/demote the freeze glock
464 * @state: the requested state
469 static void freeze_go_sync(struct gfs2_glock
*gl
)
472 struct gfs2_sbd
*sdp
= gl
->gl_sbd
;
474 if (gl
->gl_state
== LM_ST_SHARED
&&
475 test_bit(SDF_JOURNAL_LIVE
, &sdp
->sd_flags
)) {
476 atomic_set(&sdp
->sd_freeze_state
, SFS_STARTING_FREEZE
);
477 error
= freeze_super(sdp
->sd_vfs
);
479 printk(KERN_INFO
"GFS2: couldn't freeze filesystem: %d\n", error
);
480 gfs2_assert_withdraw(sdp
, 0);
482 queue_work(gfs2_freeze_wq
, &sdp
->sd_freeze_work
);
483 gfs2_log_flush(sdp
, NULL
, FREEZE_FLUSH
);
488 * freeze_go_xmote_bh - After promoting/demoting the freeze glock
493 static int freeze_go_xmote_bh(struct gfs2_glock
*gl
, struct gfs2_holder
*gh
)
495 struct gfs2_sbd
*sdp
= gl
->gl_sbd
;
496 struct gfs2_inode
*ip
= GFS2_I(sdp
->sd_jdesc
->jd_inode
);
497 struct gfs2_glock
*j_gl
= ip
->i_gl
;
498 struct gfs2_log_header_host head
;
501 if (test_bit(SDF_JOURNAL_LIVE
, &sdp
->sd_flags
)) {
502 j_gl
->gl_ops
->go_inval(j_gl
, DIO_METADATA
);
504 error
= gfs2_find_jhead(sdp
->sd_jdesc
, &head
);
507 if (!(head
.lh_flags
& GFS2_LOG_HEAD_UNMOUNT
))
510 /* Initialize some head of the log stuff */
511 if (!test_bit(SDF_SHUTDOWN
, &sdp
->sd_flags
)) {
512 sdp
->sd_log_sequence
= head
.lh_sequence
+ 1;
513 gfs2_log_pointers_init(sdp
, head
.lh_blkno
);
526 static int freeze_go_demote_ok(const struct gfs2_glock
*gl
)
532 * iopen_go_callback - schedule the dcache entry for the inode to be deleted
535 * gl_spin lock is held while calling this
537 static void iopen_go_callback(struct gfs2_glock
*gl
, bool remote
)
539 struct gfs2_inode
*ip
= (struct gfs2_inode
*)gl
->gl_object
;
540 struct gfs2_sbd
*sdp
= gl
->gl_sbd
;
542 if (!remote
|| (sdp
->sd_vfs
->s_flags
& MS_RDONLY
))
545 if (gl
->gl_demote_state
== LM_ST_UNLOCKED
&&
546 gl
->gl_state
== LM_ST_SHARED
&& ip
) {
547 gl
->gl_lockref
.count
++;
548 if (queue_work(gfs2_delete_workqueue
, &gl
->gl_delete
) == 0)
549 gl
->gl_lockref
.count
--;
553 const struct gfs2_glock_operations gfs2_meta_glops
= {
554 .go_type
= LM_TYPE_META
,
557 const struct gfs2_glock_operations gfs2_inode_glops
= {
558 .go_sync
= inode_go_sync
,
559 .go_inval
= inode_go_inval
,
560 .go_demote_ok
= inode_go_demote_ok
,
561 .go_lock
= inode_go_lock
,
562 .go_dump
= inode_go_dump
,
563 .go_type
= LM_TYPE_INODE
,
564 .go_flags
= GLOF_ASPACE
,
567 const struct gfs2_glock_operations gfs2_rgrp_glops
= {
568 .go_sync
= rgrp_go_sync
,
569 .go_inval
= rgrp_go_inval
,
570 .go_lock
= gfs2_rgrp_go_lock
,
571 .go_unlock
= gfs2_rgrp_go_unlock
,
572 .go_dump
= gfs2_rgrp_dump
,
573 .go_type
= LM_TYPE_RGRP
,
574 .go_flags
= GLOF_LVB
,
577 const struct gfs2_glock_operations gfs2_freeze_glops
= {
578 .go_sync
= freeze_go_sync
,
579 .go_xmote_bh
= freeze_go_xmote_bh
,
580 .go_demote_ok
= freeze_go_demote_ok
,
581 .go_type
= LM_TYPE_NONDISK
,
584 const struct gfs2_glock_operations gfs2_iopen_glops
= {
585 .go_type
= LM_TYPE_IOPEN
,
586 .go_callback
= iopen_go_callback
,
589 const struct gfs2_glock_operations gfs2_flock_glops
= {
590 .go_type
= LM_TYPE_FLOCK
,
593 const struct gfs2_glock_operations gfs2_nondisk_glops
= {
594 .go_type
= LM_TYPE_NONDISK
,
597 const struct gfs2_glock_operations gfs2_quota_glops
= {
598 .go_type
= LM_TYPE_QUOTA
,
599 .go_flags
= GLOF_LVB
,
602 const struct gfs2_glock_operations gfs2_journal_glops
= {
603 .go_type
= LM_TYPE_JOURNAL
,
606 const struct gfs2_glock_operations
*gfs2_glops_list
[] = {
607 [LM_TYPE_META
] = &gfs2_meta_glops
,
608 [LM_TYPE_INODE
] = &gfs2_inode_glops
,
609 [LM_TYPE_RGRP
] = &gfs2_rgrp_glops
,
610 [LM_TYPE_IOPEN
] = &gfs2_iopen_glops
,
611 [LM_TYPE_FLOCK
] = &gfs2_flock_glops
,
612 [LM_TYPE_NONDISK
] = &gfs2_nondisk_glops
,
613 [LM_TYPE_QUOTA
] = &gfs2_quota_glops
,
614 [LM_TYPE_JOURNAL
] = &gfs2_journal_glops
,