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/sched.h>
11 #include <linux/slab.h>
12 #include <linux/spinlock.h>
13 #include <linux/completion.h>
14 #include <linux/buffer_head.h>
15 #include <linux/blkdev.h>
16 #include <linux/kthread.h>
17 #include <linux/namei.h>
18 #include <linux/mount.h>
19 #include <linux/gfs2_ondisk.h>
20 #include <linux/lm_interface.h>
41 static const u32 gfs2_old_fs_formats[] = {
45 static const u32 gfs2_old_multihost_formats[] = {
50 * gfs2_tune_init - Fill a gfs2_tune structure with default values
55 static void gfs2_tune_init(struct gfs2_tune *gt)
57 spin_lock_init(>->gt_spin);
59 gt->gt_incore_log_blocks = 1024;
60 gt->gt_log_flush_secs = 60;
61 gt->gt_recoverd_secs = 60;
63 gt->gt_quota_simul_sync = 64;
64 gt->gt_quota_warn_period = 10;
65 gt->gt_quota_scale_num = 1;
66 gt->gt_quota_scale_den = 1;
67 gt->gt_quota_cache_secs = 300;
68 gt->gt_quota_quantum = 60;
69 gt->gt_new_files_jdata = 0;
70 gt->gt_max_readahead = 1 << 18;
71 gt->gt_stall_secs = 600;
72 gt->gt_complain_secs = 10;
73 gt->gt_statfs_quantum = 30;
74 gt->gt_statfs_slow = 0;
77 static struct gfs2_sbd *init_sbd(struct super_block *sb)
81 sdp = kzalloc(sizeof(struct gfs2_sbd), GFP_KERNEL);
88 gfs2_tune_init(&sdp->sd_tune);
90 mutex_init(&sdp->sd_inum_mutex);
91 spin_lock_init(&sdp->sd_statfs_spin);
93 spin_lock_init(&sdp->sd_rindex_spin);
94 mutex_init(&sdp->sd_rindex_mutex);
95 INIT_LIST_HEAD(&sdp->sd_rindex_list);
96 INIT_LIST_HEAD(&sdp->sd_rindex_mru_list);
98 INIT_LIST_HEAD(&sdp->sd_jindex_list);
99 spin_lock_init(&sdp->sd_jindex_spin);
100 mutex_init(&sdp->sd_jindex_mutex);
102 INIT_LIST_HEAD(&sdp->sd_quota_list);
103 spin_lock_init(&sdp->sd_quota_spin);
104 mutex_init(&sdp->sd_quota_mutex);
105 init_waitqueue_head(&sdp->sd_quota_wait);
106 INIT_LIST_HEAD(&sdp->sd_trunc_list);
107 spin_lock_init(&sdp->sd_trunc_lock);
109 spin_lock_init(&sdp->sd_log_lock);
111 INIT_LIST_HEAD(&sdp->sd_log_le_buf);
112 INIT_LIST_HEAD(&sdp->sd_log_le_revoke);
113 INIT_LIST_HEAD(&sdp->sd_log_le_rg);
114 INIT_LIST_HEAD(&sdp->sd_log_le_databuf);
115 INIT_LIST_HEAD(&sdp->sd_log_le_ordered);
117 mutex_init(&sdp->sd_log_reserve_mutex);
118 INIT_LIST_HEAD(&sdp->sd_ail1_list);
119 INIT_LIST_HEAD(&sdp->sd_ail2_list);
121 init_rwsem(&sdp->sd_log_flush_lock);
122 atomic_set(&sdp->sd_log_in_flight, 0);
123 init_waitqueue_head(&sdp->sd_log_flush_wait);
125 INIT_LIST_HEAD(&sdp->sd_revoke_list);
127 mutex_init(&sdp->sd_freeze_lock);
134 * gfs2_check_sb - Check superblock
135 * @sdp: the filesystem
136 * @sb: The superblock
137 * @silent: Don't print a message if the check fails
139 * Checks the version code of the FS is one that we understand how to
140 * read and that the sizes of the various on-disk structures have not
144 static int gfs2_check_sb(struct gfs2_sbd *sdp, struct gfs2_sb_host *sb, int silent)
148 if (sb->sb_magic != GFS2_MAGIC ||
149 sb->sb_type != GFS2_METATYPE_SB) {
151 printk(KERN_WARNING "GFS2: not a GFS2 filesystem\n");
155 /* If format numbers match exactly, we're done. */
157 if (sb->sb_fs_format == GFS2_FORMAT_FS &&
158 sb->sb_multihost_format == GFS2_FORMAT_MULTI)
161 if (sb->sb_fs_format != GFS2_FORMAT_FS) {
162 for (x = 0; gfs2_old_fs_formats[x]; x++)
163 if (gfs2_old_fs_formats[x] == sb->sb_fs_format)
166 if (!gfs2_old_fs_formats[x]) {
168 "GFS2: code version (%u, %u) is incompatible "
169 "with ondisk format (%u, %u)\n",
170 GFS2_FORMAT_FS, GFS2_FORMAT_MULTI,
171 sb->sb_fs_format, sb->sb_multihost_format);
173 "GFS2: I don't know how to upgrade this FS\n");
178 if (sb->sb_multihost_format != GFS2_FORMAT_MULTI) {
179 for (x = 0; gfs2_old_multihost_formats[x]; x++)
180 if (gfs2_old_multihost_formats[x] ==
181 sb->sb_multihost_format)
184 if (!gfs2_old_multihost_formats[x]) {
186 "GFS2: code version (%u, %u) is incompatible "
187 "with ondisk format (%u, %u)\n",
188 GFS2_FORMAT_FS, GFS2_FORMAT_MULTI,
189 sb->sb_fs_format, sb->sb_multihost_format);
191 "GFS2: I don't know how to upgrade this FS\n");
196 if (!sdp->sd_args.ar_upgrade) {
198 "GFS2: code version (%u, %u) is incompatible "
199 "with ondisk format (%u, %u)\n",
200 GFS2_FORMAT_FS, GFS2_FORMAT_MULTI,
201 sb->sb_fs_format, sb->sb_multihost_format);
203 "GFS2: Use the \"upgrade\" mount option to upgrade "
205 printk(KERN_INFO "GFS2: See the manual for more details\n");
212 static void end_bio_io_page(struct bio *bio, int error)
214 struct page *page = bio->bi_private;
217 SetPageUptodate(page);
219 printk(KERN_WARNING "gfs2: error %d reading superblock\n", error);
223 static void gfs2_sb_in(struct gfs2_sb_host *sb, const void *buf)
225 const struct gfs2_sb *str = buf;
227 sb->sb_magic = be32_to_cpu(str->sb_header.mh_magic);
228 sb->sb_type = be32_to_cpu(str->sb_header.mh_type);
229 sb->sb_format = be32_to_cpu(str->sb_header.mh_format);
230 sb->sb_fs_format = be32_to_cpu(str->sb_fs_format);
231 sb->sb_multihost_format = be32_to_cpu(str->sb_multihost_format);
232 sb->sb_bsize = be32_to_cpu(str->sb_bsize);
233 sb->sb_bsize_shift = be32_to_cpu(str->sb_bsize_shift);
234 sb->sb_master_dir.no_addr = be64_to_cpu(str->sb_master_dir.no_addr);
235 sb->sb_master_dir.no_formal_ino = be64_to_cpu(str->sb_master_dir.no_formal_ino);
236 sb->sb_root_dir.no_addr = be64_to_cpu(str->sb_root_dir.no_addr);
237 sb->sb_root_dir.no_formal_ino = be64_to_cpu(str->sb_root_dir.no_formal_ino);
239 memcpy(sb->sb_lockproto, str->sb_lockproto, GFS2_LOCKNAME_LEN);
240 memcpy(sb->sb_locktable, str->sb_locktable, GFS2_LOCKNAME_LEN);
244 * gfs2_read_super - Read the gfs2 super block from disk
245 * @sdp: The GFS2 super block
246 * @sector: The location of the super block
247 * @error: The error code to return
249 * This uses the bio functions to read the super block from disk
250 * because we want to be 100% sure that we never read cached data.
251 * A super block is read twice only during each GFS2 mount and is
252 * never written to by the filesystem. The first time its read no
253 * locks are held, and the only details which are looked at are those
254 * relating to the locking protocol. Once locking is up and working,
255 * the sb is read again under the lock to establish the location of
256 * the master directory (contains pointers to journals etc) and the
259 * Returns: 0 on success or error
262 static int gfs2_read_super(struct gfs2_sbd *sdp, sector_t sector)
264 struct super_block *sb = sdp->sd_vfs;
269 page = alloc_page(GFP_NOFS);
273 ClearPageUptodate(page);
274 ClearPageDirty(page);
277 bio = bio_alloc(GFP_NOFS, 1);
278 if (unlikely(!bio)) {
283 bio->bi_sector = sector * (sb->s_blocksize >> 9);
284 bio->bi_bdev = sb->s_bdev;
285 bio_add_page(bio, page, PAGE_SIZE, 0);
287 bio->bi_end_io = end_bio_io_page;
288 bio->bi_private = page;
289 submit_bio(READ_SYNC | (1 << BIO_RW_META), bio);
290 wait_on_page_locked(page);
292 if (!PageUptodate(page)) {
297 gfs2_sb_in(&sdp->sd_sb, p);
303 * gfs2_read_sb - Read super block
304 * @sdp: The GFS2 superblock
305 * @gl: the glock for the superblock (assumed to be held)
306 * @silent: Don't print message if mount fails
310 static int gfs2_read_sb(struct gfs2_sbd *sdp, struct gfs2_glock *gl, int silent)
312 u32 hash_blocks, ind_blocks, leaf_blocks;
317 error = gfs2_read_super(sdp, GFS2_SB_ADDR >> sdp->sd_fsb2bb_shift);
320 fs_err(sdp, "can't read superblock\n");
324 error = gfs2_check_sb(sdp, &sdp->sd_sb, silent);
328 sdp->sd_fsb2bb_shift = sdp->sd_sb.sb_bsize_shift -
329 GFS2_BASIC_BLOCK_SHIFT;
330 sdp->sd_fsb2bb = 1 << sdp->sd_fsb2bb_shift;
331 sdp->sd_diptrs = (sdp->sd_sb.sb_bsize -
332 sizeof(struct gfs2_dinode)) / sizeof(u64);
333 sdp->sd_inptrs = (sdp->sd_sb.sb_bsize -
334 sizeof(struct gfs2_meta_header)) / sizeof(u64);
335 sdp->sd_jbsize = sdp->sd_sb.sb_bsize - sizeof(struct gfs2_meta_header);
336 sdp->sd_hash_bsize = sdp->sd_sb.sb_bsize / 2;
337 sdp->sd_hash_bsize_shift = sdp->sd_sb.sb_bsize_shift - 1;
338 sdp->sd_hash_ptrs = sdp->sd_hash_bsize / sizeof(u64);
339 sdp->sd_qc_per_block = (sdp->sd_sb.sb_bsize -
340 sizeof(struct gfs2_meta_header)) /
341 sizeof(struct gfs2_quota_change);
343 /* Compute maximum reservation required to add a entry to a directory */
345 hash_blocks = DIV_ROUND_UP(sizeof(u64) * (1 << GFS2_DIR_MAX_DEPTH),
349 for (tmp_blocks = hash_blocks; tmp_blocks > sdp->sd_diptrs;) {
350 tmp_blocks = DIV_ROUND_UP(tmp_blocks, sdp->sd_inptrs);
351 ind_blocks += tmp_blocks;
354 leaf_blocks = 2 + GFS2_DIR_MAX_DEPTH;
356 sdp->sd_max_dirres = hash_blocks + ind_blocks + leaf_blocks;
358 sdp->sd_heightsize[0] = sdp->sd_sb.sb_bsize -
359 sizeof(struct gfs2_dinode);
360 sdp->sd_heightsize[1] = sdp->sd_sb.sb_bsize * sdp->sd_diptrs;
365 space = sdp->sd_heightsize[x - 1] * sdp->sd_inptrs;
367 m = do_div(d, sdp->sd_inptrs);
369 if (d != sdp->sd_heightsize[x - 1] || m)
371 sdp->sd_heightsize[x] = space;
373 sdp->sd_max_height = x;
374 sdp->sd_heightsize[x] = ~0;
375 gfs2_assert(sdp, sdp->sd_max_height <= GFS2_MAX_META_HEIGHT);
377 sdp->sd_jheightsize[0] = sdp->sd_sb.sb_bsize -
378 sizeof(struct gfs2_dinode);
379 sdp->sd_jheightsize[1] = sdp->sd_jbsize * sdp->sd_diptrs;
384 space = sdp->sd_jheightsize[x - 1] * sdp->sd_inptrs;
386 m = do_div(d, sdp->sd_inptrs);
388 if (d != sdp->sd_jheightsize[x - 1] || m)
390 sdp->sd_jheightsize[x] = space;
392 sdp->sd_max_jheight = x;
393 sdp->sd_jheightsize[x] = ~0;
394 gfs2_assert(sdp, sdp->sd_max_jheight <= GFS2_MAX_META_HEIGHT);
399 static int init_names(struct gfs2_sbd *sdp, int silent)
404 proto = sdp->sd_args.ar_lockproto;
405 table = sdp->sd_args.ar_locktable;
407 /* Try to autodetect */
409 if (!proto[0] || !table[0]) {
410 error = gfs2_read_super(sdp, GFS2_SB_ADDR >> sdp->sd_fsb2bb_shift);
414 error = gfs2_check_sb(sdp, &sdp->sd_sb, silent);
419 proto = sdp->sd_sb.sb_lockproto;
421 table = sdp->sd_sb.sb_locktable;
425 table = sdp->sd_vfs->s_id;
427 strlcpy(sdp->sd_proto_name, proto, GFS2_FSNAME_LEN);
428 strlcpy(sdp->sd_table_name, table, GFS2_FSNAME_LEN);
430 table = sdp->sd_table_name;
431 while ((table = strchr(table, '/')))
438 static int init_locking(struct gfs2_sbd *sdp, struct gfs2_holder *mount_gh,
446 error = gfs2_glock_nq_num(sdp,
447 GFS2_MOUNT_LOCK, &gfs2_nondisk_glops,
448 LM_ST_EXCLUSIVE, LM_FLAG_NOEXP | GL_NOCACHE,
451 fs_err(sdp, "can't acquire mount glock: %d\n", error);
455 error = gfs2_glock_nq_num(sdp,
456 GFS2_LIVE_LOCK, &gfs2_nondisk_glops,
458 LM_FLAG_NOEXP | GL_EXACT,
461 fs_err(sdp, "can't acquire live glock: %d\n", error);
465 error = gfs2_glock_get(sdp, GFS2_RENAME_LOCK, &gfs2_nondisk_glops,
466 CREATE, &sdp->sd_rename_gl);
468 fs_err(sdp, "can't create rename glock: %d\n", error);
472 error = gfs2_glock_get(sdp, GFS2_TRANS_LOCK, &gfs2_trans_glops,
473 CREATE, &sdp->sd_trans_gl);
475 fs_err(sdp, "can't create transaction glock: %d\n", error);
482 gfs2_glock_put(sdp->sd_trans_gl);
484 gfs2_glock_put(sdp->sd_rename_gl);
486 gfs2_glock_dq_uninit(&sdp->sd_live_gh);
488 gfs2_glock_dq_uninit(mount_gh);
493 static int gfs2_lookup_root(struct super_block *sb, struct dentry **dptr,
494 u64 no_addr, const char *name)
496 struct gfs2_sbd *sdp = sb->s_fs_info;
497 struct dentry *dentry;
500 inode = gfs2_inode_lookup(sb, DT_DIR, no_addr, 0, 0);
502 fs_err(sdp, "can't read in %s inode: %ld\n", name, PTR_ERR(inode));
503 return PTR_ERR(inode);
505 dentry = d_alloc_root(inode);
507 fs_err(sdp, "can't alloc %s dentry\n", name);
511 dentry->d_op = &gfs2_dops;
516 static int init_sb(struct gfs2_sbd *sdp, int silent)
518 struct super_block *sb = sdp->sd_vfs;
519 struct gfs2_holder sb_gh;
523 ret = gfs2_glock_nq_num(sdp, GFS2_SB_LOCK, &gfs2_meta_glops,
524 LM_ST_SHARED, 0, &sb_gh);
526 fs_err(sdp, "can't acquire superblock glock: %d\n", ret);
530 ret = gfs2_read_sb(sdp, sb_gh.gh_gl, silent);
532 fs_err(sdp, "can't read superblock: %d\n", ret);
536 /* Set up the buffer cache and SB for real */
537 if (sdp->sd_sb.sb_bsize < bdev_hardsect_size(sb->s_bdev)) {
539 fs_err(sdp, "FS block size (%u) is too small for device "
541 sdp->sd_sb.sb_bsize, bdev_hardsect_size(sb->s_bdev));
544 if (sdp->sd_sb.sb_bsize > PAGE_SIZE) {
546 fs_err(sdp, "FS block size (%u) is too big for machine "
548 sdp->sd_sb.sb_bsize, (unsigned int)PAGE_SIZE);
551 sb_set_blocksize(sb, sdp->sd_sb.sb_bsize);
553 /* Get the root inode */
554 no_addr = sdp->sd_sb.sb_root_dir.no_addr;
555 ret = gfs2_lookup_root(sb, &sdp->sd_root_dir, no_addr, "root");
559 /* Get the master inode */
560 no_addr = sdp->sd_sb.sb_master_dir.no_addr;
561 ret = gfs2_lookup_root(sb, &sdp->sd_master_dir, no_addr, "master");
563 dput(sdp->sd_root_dir);
566 sb->s_root = dget(sdp->sd_args.ar_meta ? sdp->sd_master_dir : sdp->sd_root_dir);
568 gfs2_glock_dq_uninit(&sb_gh);
573 * map_journal_extents - create a reusable "extent" mapping from all logical
574 * blocks to all physical blocks for the given journal. This will save
575 * us time when writing journal blocks. Most journals will have only one
576 * extent that maps all their logical blocks. That's because gfs2.mkfs
577 * arranges the journal blocks sequentially to maximize performance.
578 * So the extent would map the first block for the entire file length.
579 * However, gfs2_jadd can happen while file activity is happening, so
580 * those journals may not be sequential. Less likely is the case where
581 * the users created their own journals by mounting the metafs and
582 * laying it out. But it's still possible. These journals might have
585 * TODO: This should be done in bigger chunks rather than one block at a time,
586 * but since it's only done at mount time, I'm not worried about the
589 static int map_journal_extents(struct gfs2_sbd *sdp)
591 struct gfs2_jdesc *jd = sdp->sd_jdesc;
593 u64 db, prev_db; /* logical block, disk block, prev disk block */
594 struct gfs2_inode *ip = GFS2_I(jd->jd_inode);
595 struct gfs2_journal_extent *jext = NULL;
596 struct buffer_head bh;
601 for (lb = 0; lb < ip->i_disksize >> sdp->sd_sb.sb_bsize_shift; lb++) {
604 bh.b_size = 1 << ip->i_inode.i_blkbits;
605 rc = gfs2_block_map(jd->jd_inode, lb, &bh, 0);
608 printk(KERN_INFO "GFS2 journal mapping error %d: lb="
609 "%u db=%llu\n", rc, lb, (unsigned long long)db);
612 if (!prev_db || db != prev_db + 1) {
613 jext = kzalloc(sizeof(struct gfs2_journal_extent),
616 printk(KERN_INFO "GFS2 error: out of memory "
617 "mapping journal extents.\n");
624 list_add_tail(&jext->extent_list, &jd->extent_list);
633 static void gfs2_lm_others_may_mount(struct gfs2_sbd *sdp)
635 if (!sdp->sd_lockstruct.ls_ops->lm_others_may_mount)
637 if (likely(!test_bit(SDF_SHUTDOWN, &sdp->sd_flags)))
638 sdp->sd_lockstruct.ls_ops->lm_others_may_mount(
639 sdp->sd_lockstruct.ls_lockspace);
643 * gfs2_jindex_hold - Grab a lock on the jindex
644 * @sdp: The GFS2 superblock
645 * @ji_gh: the holder for the jindex glock
650 static int gfs2_jindex_hold(struct gfs2_sbd *sdp, struct gfs2_holder *ji_gh)
652 struct gfs2_inode *dip = GFS2_I(sdp->sd_jindex);
655 struct gfs2_jdesc *jd;
660 mutex_lock(&sdp->sd_jindex_mutex);
663 error = gfs2_glock_nq_init(dip->i_gl, LM_ST_SHARED, 0, ji_gh);
667 name.len = sprintf(buf, "journal%u", sdp->sd_journals);
668 name.hash = gfs2_disk_hash(name.name, name.len);
670 error = gfs2_dir_check(sdp->sd_jindex, &name, NULL);
671 if (error == -ENOENT) {
676 gfs2_glock_dq_uninit(ji_gh);
682 jd = kzalloc(sizeof(struct gfs2_jdesc), GFP_KERNEL);
686 INIT_LIST_HEAD(&jd->extent_list);
687 jd->jd_inode = gfs2_lookupi(sdp->sd_jindex, &name, 1);
688 if (!jd->jd_inode || IS_ERR(jd->jd_inode)) {
692 error = PTR_ERR(jd->jd_inode);
697 spin_lock(&sdp->sd_jindex_spin);
698 jd->jd_jid = sdp->sd_journals++;
699 list_add_tail(&jd->jd_list, &sdp->sd_jindex_list);
700 spin_unlock(&sdp->sd_jindex_spin);
703 mutex_unlock(&sdp->sd_jindex_mutex);
708 static int init_journal(struct gfs2_sbd *sdp, int undo)
710 struct inode *master = sdp->sd_master_dir->d_inode;
711 struct gfs2_holder ji_gh;
712 struct task_struct *p;
713 struct gfs2_inode *ip;
722 sdp->sd_jindex = gfs2_lookup_simple(master, "jindex");
723 if (IS_ERR(sdp->sd_jindex)) {
724 fs_err(sdp, "can't lookup journal index: %d\n", error);
725 return PTR_ERR(sdp->sd_jindex);
727 ip = GFS2_I(sdp->sd_jindex);
729 /* Load in the journal index special file */
731 error = gfs2_jindex_hold(sdp, &ji_gh);
733 fs_err(sdp, "can't read journal index: %d\n", error);
738 if (!gfs2_jindex_size(sdp)) {
739 fs_err(sdp, "no journals!\n");
743 if (sdp->sd_args.ar_spectator) {
744 sdp->sd_jdesc = gfs2_jdesc_find(sdp, 0);
745 atomic_set(&sdp->sd_log_blks_free, sdp->sd_jdesc->jd_blocks);
747 if (sdp->sd_lockstruct.ls_jid >= gfs2_jindex_size(sdp)) {
748 fs_err(sdp, "can't mount journal #%u\n",
749 sdp->sd_lockstruct.ls_jid);
750 fs_err(sdp, "there are only %u journals (0 - %u)\n",
751 gfs2_jindex_size(sdp),
752 gfs2_jindex_size(sdp) - 1);
755 sdp->sd_jdesc = gfs2_jdesc_find(sdp, sdp->sd_lockstruct.ls_jid);
757 error = gfs2_glock_nq_num(sdp, sdp->sd_lockstruct.ls_jid,
759 LM_ST_EXCLUSIVE, LM_FLAG_NOEXP,
760 &sdp->sd_journal_gh);
762 fs_err(sdp, "can't acquire journal glock: %d\n", error);
766 ip = GFS2_I(sdp->sd_jdesc->jd_inode);
767 error = gfs2_glock_nq_init(ip->i_gl, LM_ST_SHARED,
768 LM_FLAG_NOEXP | GL_EXACT | GL_NOCACHE,
771 fs_err(sdp, "can't acquire journal inode glock: %d\n",
773 goto fail_journal_gh;
776 error = gfs2_jdesc_check(sdp->sd_jdesc);
778 fs_err(sdp, "my journal (%u) is bad: %d\n",
779 sdp->sd_jdesc->jd_jid, error);
782 atomic_set(&sdp->sd_log_blks_free, sdp->sd_jdesc->jd_blocks);
784 /* Map the extents for this journal's blocks */
785 map_journal_extents(sdp);
788 if (sdp->sd_lockstruct.ls_first) {
790 for (x = 0; x < sdp->sd_journals; x++) {
791 error = gfs2_recover_journal(gfs2_jdesc_find(sdp, x));
793 fs_err(sdp, "error recovering journal %u: %d\n",
799 gfs2_lm_others_may_mount(sdp);
800 } else if (!sdp->sd_args.ar_spectator) {
801 error = gfs2_recover_journal(sdp->sd_jdesc);
803 fs_err(sdp, "error recovering my journal: %d\n", error);
808 set_bit(SDF_JOURNAL_CHECKED, &sdp->sd_flags);
809 gfs2_glock_dq_uninit(&ji_gh);
812 p = kthread_run(gfs2_recoverd, sdp, "gfs2_recoverd");
815 fs_err(sdp, "can't start recoverd thread: %d\n", error);
818 sdp->sd_recoverd_process = p;
823 kthread_stop(sdp->sd_recoverd_process);
825 if (!sdp->sd_args.ar_spectator)
826 gfs2_glock_dq_uninit(&sdp->sd_jinode_gh);
828 if (!sdp->sd_args.ar_spectator)
829 gfs2_glock_dq_uninit(&sdp->sd_journal_gh);
831 gfs2_jindex_free(sdp);
833 gfs2_glock_dq_uninit(&ji_gh);
835 iput(sdp->sd_jindex);
840 static int init_inodes(struct gfs2_sbd *sdp, int undo)
843 struct gfs2_inode *ip;
844 struct inode *master = sdp->sd_master_dir->d_inode;
849 error = init_journal(sdp, undo);
853 /* Read in the master inode number inode */
854 sdp->sd_inum_inode = gfs2_lookup_simple(master, "inum");
855 if (IS_ERR(sdp->sd_inum_inode)) {
856 error = PTR_ERR(sdp->sd_inum_inode);
857 fs_err(sdp, "can't read in inum inode: %d\n", error);
862 /* Read in the master statfs inode */
863 sdp->sd_statfs_inode = gfs2_lookup_simple(master, "statfs");
864 if (IS_ERR(sdp->sd_statfs_inode)) {
865 error = PTR_ERR(sdp->sd_statfs_inode);
866 fs_err(sdp, "can't read in statfs inode: %d\n", error);
870 /* Read in the resource index inode */
871 sdp->sd_rindex = gfs2_lookup_simple(master, "rindex");
872 if (IS_ERR(sdp->sd_rindex)) {
873 error = PTR_ERR(sdp->sd_rindex);
874 fs_err(sdp, "can't get resource index inode: %d\n", error);
877 ip = GFS2_I(sdp->sd_rindex);
878 sdp->sd_rindex_uptodate = 0;
880 /* Read in the quota inode */
881 sdp->sd_quota_inode = gfs2_lookup_simple(master, "quota");
882 if (IS_ERR(sdp->sd_quota_inode)) {
883 error = PTR_ERR(sdp->sd_quota_inode);
884 fs_err(sdp, "can't get quota file inode: %d\n", error);
890 iput(sdp->sd_quota_inode);
892 gfs2_clear_rgrpd(sdp);
893 iput(sdp->sd_rindex);
895 iput(sdp->sd_statfs_inode);
897 iput(sdp->sd_inum_inode);
899 init_journal(sdp, UNDO);
904 static int init_per_node(struct gfs2_sbd *sdp, int undo)
906 struct inode *pn = NULL;
909 struct gfs2_inode *ip;
910 struct inode *master = sdp->sd_master_dir->d_inode;
912 if (sdp->sd_args.ar_spectator)
918 pn = gfs2_lookup_simple(master, "per_node");
921 fs_err(sdp, "can't find per_node directory: %d\n", error);
925 sprintf(buf, "inum_range%u", sdp->sd_jdesc->jd_jid);
926 sdp->sd_ir_inode = gfs2_lookup_simple(pn, buf);
927 if (IS_ERR(sdp->sd_ir_inode)) {
928 error = PTR_ERR(sdp->sd_ir_inode);
929 fs_err(sdp, "can't find local \"ir\" file: %d\n", error);
933 sprintf(buf, "statfs_change%u", sdp->sd_jdesc->jd_jid);
934 sdp->sd_sc_inode = gfs2_lookup_simple(pn, buf);
935 if (IS_ERR(sdp->sd_sc_inode)) {
936 error = PTR_ERR(sdp->sd_sc_inode);
937 fs_err(sdp, "can't find local \"sc\" file: %d\n", error);
941 sprintf(buf, "quota_change%u", sdp->sd_jdesc->jd_jid);
942 sdp->sd_qc_inode = gfs2_lookup_simple(pn, buf);
943 if (IS_ERR(sdp->sd_qc_inode)) {
944 error = PTR_ERR(sdp->sd_qc_inode);
945 fs_err(sdp, "can't find local \"qc\" file: %d\n", error);
952 ip = GFS2_I(sdp->sd_ir_inode);
953 error = gfs2_glock_nq_init(ip->i_gl,
957 fs_err(sdp, "can't lock local \"ir\" file: %d\n", error);
961 ip = GFS2_I(sdp->sd_sc_inode);
962 error = gfs2_glock_nq_init(ip->i_gl,
966 fs_err(sdp, "can't lock local \"sc\" file: %d\n", error);
970 ip = GFS2_I(sdp->sd_qc_inode);
971 error = gfs2_glock_nq_init(ip->i_gl,
975 fs_err(sdp, "can't lock local \"qc\" file: %d\n", error);
982 gfs2_glock_dq_uninit(&sdp->sd_qc_gh);
984 gfs2_glock_dq_uninit(&sdp->sd_sc_gh);
986 gfs2_glock_dq_uninit(&sdp->sd_ir_gh);
988 iput(sdp->sd_qc_inode);
990 iput(sdp->sd_sc_inode);
992 iput(sdp->sd_ir_inode);
999 static int init_threads(struct gfs2_sbd *sdp, int undo)
1001 struct task_struct *p;
1007 sdp->sd_log_flush_time = jiffies;
1008 sdp->sd_jindex_refresh_time = jiffies;
1010 p = kthread_run(gfs2_logd, sdp, "gfs2_logd");
1013 fs_err(sdp, "can't start logd thread: %d\n", error);
1016 sdp->sd_logd_process = p;
1018 p = kthread_run(gfs2_quotad, sdp, "gfs2_quotad");
1021 fs_err(sdp, "can't start quotad thread: %d\n", error);
1024 sdp->sd_quotad_process = p;
1030 kthread_stop(sdp->sd_quotad_process);
1032 kthread_stop(sdp->sd_logd_process);
1037 * gfs2_lm_mount - mount a locking protocol
1038 * @sdp: the filesystem
1039 * @args: mount arguements
1040 * @silent: if 1, don't complain if the FS isn't a GFS2 fs
1045 static int gfs2_lm_mount(struct gfs2_sbd *sdp, int silent)
1047 char *proto = sdp->sd_proto_name;
1048 char *table = sdp->sd_table_name;
1049 int flags = LM_MFLAG_CONV_NODROP;
1052 if (sdp->sd_args.ar_spectator)
1053 flags |= LM_MFLAG_SPECTATOR;
1055 fs_info(sdp, "Trying to join cluster \"%s\", \"%s\"\n", proto, table);
1057 error = gfs2_mount_lockproto(proto, table, sdp->sd_args.ar_hostdata,
1059 GFS2_MIN_LVB_SIZE, flags,
1060 &sdp->sd_lockstruct, &sdp->sd_kobj);
1062 fs_info(sdp, "can't mount proto=%s, table=%s, hostdata=%s\n",
1063 proto, table, sdp->sd_args.ar_hostdata);
1067 if (gfs2_assert_warn(sdp, sdp->sd_lockstruct.ls_ops) ||
1068 gfs2_assert_warn(sdp, sdp->sd_lockstruct.ls_lvb_size >=
1069 GFS2_MIN_LVB_SIZE)) {
1070 gfs2_unmount_lockproto(&sdp->sd_lockstruct);
1074 if (sdp->sd_args.ar_spectator)
1075 snprintf(sdp->sd_fsname, GFS2_FSNAME_LEN, "%s.s", table);
1077 snprintf(sdp->sd_fsname, GFS2_FSNAME_LEN, "%s.%u", table,
1078 sdp->sd_lockstruct.ls_jid);
1080 fs_info(sdp, "Joined cluster. Now mounting FS...\n");
1082 if ((sdp->sd_lockstruct.ls_flags & LM_LSFLAG_LOCAL) &&
1083 !sdp->sd_args.ar_ignore_local_fs) {
1084 sdp->sd_args.ar_localflocks = 1;
1085 sdp->sd_args.ar_localcaching = 1;
1092 void gfs2_lm_unmount(struct gfs2_sbd *sdp)
1094 if (likely(!test_bit(SDF_SHUTDOWN, &sdp->sd_flags)))
1095 gfs2_unmount_lockproto(&sdp->sd_lockstruct);
1099 * fill_super - Read in superblock
1100 * @sb: The VFS superblock
1101 * @data: Mount options
1102 * @silent: Don't complain if it's not a GFS2 filesystem
1107 static int fill_super(struct super_block *sb, void *data, int silent)
1109 struct gfs2_sbd *sdp;
1110 struct gfs2_holder mount_gh;
1115 printk(KERN_WARNING "GFS2: can't alloc struct gfs2_sbd\n");
1119 error = gfs2_mount_args(sdp, (char *)data, 0);
1121 printk(KERN_WARNING "GFS2: can't parse mount arguments\n");
1125 sb->s_magic = GFS2_MAGIC;
1126 sb->s_op = &gfs2_super_ops;
1127 sb->s_export_op = &gfs2_export_ops;
1128 sb->s_time_gran = 1;
1129 sb->s_maxbytes = MAX_LFS_FILESIZE;
1131 /* Set up the buffer cache and fill in some fake block size values
1132 to allow us to read-in the on-disk superblock. */
1133 sdp->sd_sb.sb_bsize = sb_min_blocksize(sb, GFS2_BASIC_BLOCK);
1134 sdp->sd_sb.sb_bsize_shift = sb->s_blocksize_bits;
1135 sdp->sd_fsb2bb_shift = sdp->sd_sb.sb_bsize_shift -
1136 GFS2_BASIC_BLOCK_SHIFT;
1137 sdp->sd_fsb2bb = 1 << sdp->sd_fsb2bb_shift;
1139 error = init_names(sdp, silent);
1143 gfs2_create_debugfs_file(sdp);
1145 error = gfs2_sys_fs_add(sdp);
1149 error = gfs2_lm_mount(sdp, silent);
1153 error = init_locking(sdp, &mount_gh, DO);
1157 error = init_sb(sdp, silent);
1161 error = init_inodes(sdp, DO);
1165 error = init_per_node(sdp, DO);
1169 error = gfs2_statfs_init(sdp);
1171 fs_err(sdp, "can't initialize statfs subsystem: %d\n", error);
1175 error = init_threads(sdp, DO);
1179 if (!(sb->s_flags & MS_RDONLY)) {
1180 error = gfs2_make_fs_rw(sdp);
1182 fs_err(sdp, "can't make FS RW: %d\n", error);
1187 gfs2_glock_dq_uninit(&mount_gh);
1192 init_threads(sdp, UNDO);
1194 init_per_node(sdp, UNDO);
1196 init_inodes(sdp, UNDO);
1198 if (sdp->sd_root_dir)
1199 dput(sdp->sd_root_dir);
1200 if (sdp->sd_master_dir)
1201 dput(sdp->sd_master_dir);
1204 init_locking(sdp, &mount_gh, UNDO);
1206 gfs2_gl_hash_clear(sdp);
1207 gfs2_lm_unmount(sdp);
1208 while (invalidate_inodes(sb))
1211 gfs2_sys_fs_del(sdp);
1213 gfs2_delete_debugfs_file(sdp);
1215 sb->s_fs_info = NULL;
1219 static int gfs2_get_sb(struct file_system_type *fs_type, int flags,
1220 const char *dev_name, void *data, struct vfsmount *mnt)
1222 return get_sb_bdev(fs_type, flags, dev_name, data, fill_super, mnt);
1225 static struct super_block *get_gfs2_sb(const char *dev_name)
1227 struct super_block *sb;
1228 struct nameidata nd;
1231 error = path_lookup(dev_name, LOOKUP_FOLLOW, &nd);
1233 printk(KERN_WARNING "GFS2: path_lookup on %s returned error %d\n",
1237 sb = nd.path.dentry->d_inode->i_sb;
1238 if (sb && (sb->s_type == &gfs2_fs_type))
1239 atomic_inc(&sb->s_active);
1246 static int gfs2_get_sb_meta(struct file_system_type *fs_type, int flags,
1247 const char *dev_name, void *data, struct vfsmount *mnt)
1249 struct super_block *sb = NULL;
1250 struct gfs2_sbd *sdp;
1252 sb = get_gfs2_sb(dev_name);
1254 printk(KERN_WARNING "GFS2: gfs2 mount does not exist\n");
1257 sdp = sb->s_fs_info;
1259 mnt->mnt_root = dget(sdp->sd_master_dir);
1263 static void gfs2_kill_sb(struct super_block *sb)
1265 struct gfs2_sbd *sdp = sb->s_fs_info;
1268 kill_block_super(sb);
1272 gfs2_meta_syncfs(sdp);
1273 dput(sdp->sd_root_dir);
1274 dput(sdp->sd_master_dir);
1275 sdp->sd_root_dir = NULL;
1276 sdp->sd_master_dir = NULL;
1277 shrink_dcache_sb(sb);
1278 kill_block_super(sb);
1279 gfs2_delete_debugfs_file(sdp);
1283 struct file_system_type gfs2_fs_type = {
1285 .fs_flags = FS_REQUIRES_DEV,
1286 .get_sb = gfs2_get_sb,
1287 .kill_sb = gfs2_kill_sb,
1288 .owner = THIS_MODULE,
1291 struct file_system_type gfs2meta_fs_type = {
1293 .fs_flags = FS_REQUIRES_DEV,
1294 .get_sb = gfs2_get_sb_meta,
1295 .owner = THIS_MODULE,