blob: 43d511bba52d3a11a388e011c12b8de9a34890d1 [file] [log] [blame]
David Teiglandb3b94fa2006-01-16 16:50:04 +00001/*
2 * Copyright (C) Sistina Software, Inc. 1997-2003 All rights reserved.
Bob Petersonda6dd402007-12-11 18:49:21 -06003 * Copyright (C) 2004-2007 Red Hat, Inc. All rights reserved.
David Teiglandb3b94fa2006-01-16 16:50:04 +00004 *
5 * This copyrighted material is made available to anyone wishing to use,
6 * modify, copy, or redistribute it subject to the terms and conditions
Steven Whitehousee9fc2aa2006-09-01 11:05:15 -04007 * of the GNU General Public License version 2.
David Teiglandb3b94fa2006-01-16 16:50:04 +00008 */
9
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>
David Teiglandb3b94fa2006-01-16 16:50:04 +000015#include <linux/blkdev.h>
16#include <linux/kthread.h>
Abhijith Das86384602006-08-25 11:13:37 -050017#include <linux/namei.h>
18#include <linux/mount.h>
Steven Whitehouse5c676f62006-02-27 17:23:27 -050019#include <linux/gfs2_ondisk.h>
Fabio Massimo Di Nitto7d308592006-09-19 07:56:29 +020020#include <linux/lm_interface.h>
David Teiglandb3b94fa2006-01-16 16:50:04 +000021
22#include "gfs2.h"
Steven Whitehouse5c676f62006-02-27 17:23:27 -050023#include "incore.h"
Bob Petersonda6dd402007-12-11 18:49:21 -060024#include "bmap.h"
David Teiglandb3b94fa2006-01-16 16:50:04 +000025#include "daemon.h"
26#include "glock.h"
27#include "glops.h"
28#include "inode.h"
29#include "lm.h"
30#include "mount.h"
David Teiglandb3b94fa2006-01-16 16:50:04 +000031#include "ops_fstype.h"
Denis Chengca5a9392007-07-31 18:31:12 +080032#include "ops_dentry.h"
David Teiglandb3b94fa2006-01-16 16:50:04 +000033#include "ops_super.h"
34#include "recovery.h"
35#include "rgrp.h"
36#include "super.h"
David Teiglandb3b94fa2006-01-16 16:50:04 +000037#include "sys.h"
Steven Whitehouse5c676f62006-02-27 17:23:27 -050038#include "util.h"
Steven Whitehousebb3b0e32007-08-16 16:03:57 +010039#include "log.h"
David Teiglandb3b94fa2006-01-16 16:50:04 +000040
41#define DO 0
42#define UNDO 1
43
44static struct gfs2_sbd *init_sbd(struct super_block *sb)
45{
46 struct gfs2_sbd *sdp;
David Teiglandb3b94fa2006-01-16 16:50:04 +000047
Steven Whitehouse85d1da62006-09-07 14:40:21 -040048 sdp = kzalloc(sizeof(struct gfs2_sbd), GFP_KERNEL);
David Teiglandb3b94fa2006-01-16 16:50:04 +000049 if (!sdp)
50 return NULL;
51
Steven Whitehouse5c676f62006-02-27 17:23:27 -050052 sb->s_fs_info = sdp;
David Teiglandb3b94fa2006-01-16 16:50:04 +000053 sdp->sd_vfs = sb;
54
55 gfs2_tune_init(&sdp->sd_tune);
56
David Teiglandb3b94fa2006-01-16 16:50:04 +000057 INIT_LIST_HEAD(&sdp->sd_reclaim_list);
58 spin_lock_init(&sdp->sd_reclaim_lock);
59 init_waitqueue_head(&sdp->sd_reclaim_wq);
David Teiglandb3b94fa2006-01-16 16:50:04 +000060
Steven Whitehousef55ab262006-02-21 12:51:39 +000061 mutex_init(&sdp->sd_inum_mutex);
David Teiglandb3b94fa2006-01-16 16:50:04 +000062 spin_lock_init(&sdp->sd_statfs_spin);
David Teiglandb3b94fa2006-01-16 16:50:04 +000063
64 spin_lock_init(&sdp->sd_rindex_spin);
Steven Whitehousef55ab262006-02-21 12:51:39 +000065 mutex_init(&sdp->sd_rindex_mutex);
David Teiglandb3b94fa2006-01-16 16:50:04 +000066 INIT_LIST_HEAD(&sdp->sd_rindex_list);
67 INIT_LIST_HEAD(&sdp->sd_rindex_mru_list);
68 INIT_LIST_HEAD(&sdp->sd_rindex_recent_list);
69
70 INIT_LIST_HEAD(&sdp->sd_jindex_list);
71 spin_lock_init(&sdp->sd_jindex_spin);
Steven Whitehousef55ab262006-02-21 12:51:39 +000072 mutex_init(&sdp->sd_jindex_mutex);
David Teiglandb3b94fa2006-01-16 16:50:04 +000073
David Teiglandb3b94fa2006-01-16 16:50:04 +000074 INIT_LIST_HEAD(&sdp->sd_quota_list);
75 spin_lock_init(&sdp->sd_quota_spin);
Steven Whitehousef55ab262006-02-21 12:51:39 +000076 mutex_init(&sdp->sd_quota_mutex);
David Teiglandb3b94fa2006-01-16 16:50:04 +000077
78 spin_lock_init(&sdp->sd_log_lock);
David Teiglandb3b94fa2006-01-16 16:50:04 +000079
David Teiglandb3b94fa2006-01-16 16:50:04 +000080 INIT_LIST_HEAD(&sdp->sd_log_le_buf);
81 INIT_LIST_HEAD(&sdp->sd_log_le_revoke);
82 INIT_LIST_HEAD(&sdp->sd_log_le_rg);
83 INIT_LIST_HEAD(&sdp->sd_log_le_databuf);
Steven Whitehoused7b616e2007-09-02 10:48:13 +010084 INIT_LIST_HEAD(&sdp->sd_log_le_ordered);
David Teiglandb3b94fa2006-01-16 16:50:04 +000085
Steven Whitehouse71b86f52006-03-28 14:14:04 -050086 mutex_init(&sdp->sd_log_reserve_mutex);
David Teiglandb3b94fa2006-01-16 16:50:04 +000087 INIT_LIST_HEAD(&sdp->sd_ail1_list);
88 INIT_LIST_HEAD(&sdp->sd_ail2_list);
89
Steven Whitehouse484adff2006-03-29 09:12:12 -050090 init_rwsem(&sdp->sd_log_flush_lock);
Steven Whitehouse16615be2007-09-17 10:59:52 +010091 atomic_set(&sdp->sd_log_in_flight, 0);
92 init_waitqueue_head(&sdp->sd_log_flush_wait);
David Teiglandb3b94fa2006-01-16 16:50:04 +000093
94 INIT_LIST_HEAD(&sdp->sd_revoke_list);
95
Steven Whitehousef55ab262006-02-21 12:51:39 +000096 mutex_init(&sdp->sd_freeze_lock);
David Teiglandb3b94fa2006-01-16 16:50:04 +000097
98 return sdp;
99}
100
Steven Whitehouse419c93e2006-03-02 16:33:41 -0500101static void init_vfs(struct super_block *sb, unsigned noatime)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000102{
Steven Whitehouse419c93e2006-03-02 16:33:41 -0500103 struct gfs2_sbd *sdp = sb->s_fs_info;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000104
105 sb->s_magic = GFS2_MAGIC;
106 sb->s_op = &gfs2_super_ops;
107 sb->s_export_op = &gfs2_export_ops;
Steven Whitehouse4bd91ba2007-06-05 09:39:18 +0100108 sb->s_time_gran = 1;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000109 sb->s_maxbytes = MAX_LFS_FILESIZE;
110
111 if (sb->s_flags & (MS_NOATIME | MS_NODIRATIME))
Steven Whitehouse419c93e2006-03-02 16:33:41 -0500112 set_bit(noatime, &sdp->sd_flags);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000113
114 /* Don't let the VFS update atimes. GFS2 handles this itself. */
115 sb->s_flags |= MS_NOATIME | MS_NODIRATIME;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000116}
117
118static int init_names(struct gfs2_sbd *sdp, int silent)
119{
David Teiglandb3b94fa2006-01-16 16:50:04 +0000120 char *proto, *table;
121 int error = 0;
122
123 proto = sdp->sd_args.ar_lockproto;
124 table = sdp->sd_args.ar_locktable;
125
126 /* Try to autodetect */
127
128 if (!proto[0] || !table[0]) {
Steven Whitehousebb8d8a62007-06-01 14:11:58 +0100129 error = gfs2_read_super(sdp, GFS2_SB_ADDR >> sdp->sd_fsb2bb_shift);
130 if (error)
131 return error;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000132
Steven Whitehouse3cf1e7b2006-10-02 11:49:41 -0400133 error = gfs2_check_sb(sdp, &sdp->sd_sb, silent);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000134 if (error)
135 goto out;
136
137 if (!proto[0])
Steven Whitehouse3cf1e7b2006-10-02 11:49:41 -0400138 proto = sdp->sd_sb.sb_lockproto;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000139 if (!table[0])
Steven Whitehouse3cf1e7b2006-10-02 11:49:41 -0400140 table = sdp->sd_sb.sb_locktable;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000141 }
142
143 if (!table[0])
144 table = sdp->sd_vfs->s_id;
145
146 snprintf(sdp->sd_proto_name, GFS2_FSNAME_LEN, "%s", proto);
147 snprintf(sdp->sd_table_name, GFS2_FSNAME_LEN, "%s", table);
148
Denis Cheng5d35e312007-08-13 11:01:58 +0800149 table = sdp->sd_table_name;
150 while ((table = strchr(table, '/')))
Robert Petersonb35997d2007-06-07 09:10:01 -0500151 *table = '_';
152
Steven Whitehousea91ea692006-09-04 12:04:26 -0400153out:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000154 return error;
155}
156
157static int init_locking(struct gfs2_sbd *sdp, struct gfs2_holder *mount_gh,
158 int undo)
159{
160 struct task_struct *p;
161 int error = 0;
162
163 if (undo)
164 goto fail_trans;
165
David Teiglandb3b94fa2006-01-16 16:50:04 +0000166 for (sdp->sd_glockd_num = 0;
167 sdp->sd_glockd_num < sdp->sd_args.ar_num_glockd;
168 sdp->sd_glockd_num++) {
169 p = kthread_run(gfs2_glockd, sdp, "gfs2_glockd");
170 error = IS_ERR(p);
171 if (error) {
172 fs_err(sdp, "can't start glockd thread: %d\n", error);
173 goto fail;
174 }
175 sdp->sd_glockd_process[sdp->sd_glockd_num] = p;
176 }
177
178 error = gfs2_glock_nq_num(sdp,
179 GFS2_MOUNT_LOCK, &gfs2_nondisk_glops,
180 LM_ST_EXCLUSIVE, LM_FLAG_NOEXP | GL_NOCACHE,
181 mount_gh);
182 if (error) {
183 fs_err(sdp, "can't acquire mount glock: %d\n", error);
184 goto fail;
185 }
186
187 error = gfs2_glock_nq_num(sdp,
188 GFS2_LIVE_LOCK, &gfs2_nondisk_glops,
189 LM_ST_SHARED,
Steven Whitehouse579b78a2006-04-26 14:58:26 -0400190 LM_FLAG_NOEXP | GL_EXACT,
David Teiglandb3b94fa2006-01-16 16:50:04 +0000191 &sdp->sd_live_gh);
192 if (error) {
193 fs_err(sdp, "can't acquire live glock: %d\n", error);
194 goto fail_mount;
195 }
196
197 error = gfs2_glock_get(sdp, GFS2_RENAME_LOCK, &gfs2_nondisk_glops,
198 CREATE, &sdp->sd_rename_gl);
199 if (error) {
200 fs_err(sdp, "can't create rename glock: %d\n", error);
201 goto fail_live;
202 }
203
204 error = gfs2_glock_get(sdp, GFS2_TRANS_LOCK, &gfs2_trans_glops,
205 CREATE, &sdp->sd_trans_gl);
206 if (error) {
207 fs_err(sdp, "can't create transaction glock: %d\n", error);
208 goto fail_rename;
209 }
210 set_bit(GLF_STICKY, &sdp->sd_trans_gl->gl_flags);
211
212 return 0;
213
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400214fail_trans:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000215 gfs2_glock_put(sdp->sd_trans_gl);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400216fail_rename:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000217 gfs2_glock_put(sdp->sd_rename_gl);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400218fail_live:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000219 gfs2_glock_dq_uninit(&sdp->sd_live_gh);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400220fail_mount:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000221 gfs2_glock_dq_uninit(mount_gh);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400222fail:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000223 while (sdp->sd_glockd_num--)
224 kthread_stop(sdp->sd_glockd_process[sdp->sd_glockd_num]);
225
David Teiglandb3b94fa2006-01-16 16:50:04 +0000226 return error;
227}
228
Steven Whitehousedbb7cae2007-05-15 15:37:50 +0100229static inline struct inode *gfs2_lookup_root(struct super_block *sb,
230 u64 no_addr)
Steven Whitehousef42faf42006-01-30 18:34:10 +0000231{
Benjamin Marzinski7a9f53b2007-09-18 13:33:18 -0500232 return gfs2_inode_lookup(sb, DT_DIR, no_addr, 0, 0);
Steven Whitehousef42faf42006-01-30 18:34:10 +0000233}
234
David Teiglandb3b94fa2006-01-16 16:50:04 +0000235static int init_sb(struct gfs2_sbd *sdp, int silent, int undo)
236{
237 struct super_block *sb = sdp->sd_vfs;
238 struct gfs2_holder sb_gh;
Steven Whitehousedbb7cae2007-05-15 15:37:50 +0100239 u64 no_addr;
Steven Whitehousef42faf42006-01-30 18:34:10 +0000240 struct inode *inode;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000241 int error = 0;
242
243 if (undo) {
Russell Cattelan88721872006-08-10 11:08:40 -0500244 if (sb->s_root) {
245 dput(sb->s_root);
246 sb->s_root = NULL;
247 }
David Teiglandb3b94fa2006-01-16 16:50:04 +0000248 return 0;
249 }
Steven Whitehouse907b9bc2006-09-25 09:26:04 -0400250
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400251 error = gfs2_glock_nq_num(sdp, GFS2_SB_LOCK, &gfs2_meta_glops,
David Teiglandb3b94fa2006-01-16 16:50:04 +0000252 LM_ST_SHARED, 0, &sb_gh);
253 if (error) {
254 fs_err(sdp, "can't acquire superblock glock: %d\n", error);
255 return error;
256 }
257
258 error = gfs2_read_sb(sdp, sb_gh.gh_gl, silent);
259 if (error) {
260 fs_err(sdp, "can't read superblock: %d\n", error);
261 goto out;
262 }
263
264 /* Set up the buffer cache and SB for real */
David Teiglandb3b94fa2006-01-16 16:50:04 +0000265 if (sdp->sd_sb.sb_bsize < bdev_hardsect_size(sb->s_bdev)) {
Steven Whitehouse419c93e2006-03-02 16:33:41 -0500266 error = -EINVAL;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000267 fs_err(sdp, "FS block size (%u) is too small for device "
268 "block size (%u)\n",
269 sdp->sd_sb.sb_bsize, bdev_hardsect_size(sb->s_bdev));
270 goto out;
271 }
272 if (sdp->sd_sb.sb_bsize > PAGE_SIZE) {
Steven Whitehouse419c93e2006-03-02 16:33:41 -0500273 error = -EINVAL;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000274 fs_err(sdp, "FS block size (%u) is too big for machine "
275 "page size (%u)\n",
276 sdp->sd_sb.sb_bsize, (unsigned int)PAGE_SIZE);
277 goto out;
278 }
David Teiglandb3b94fa2006-01-16 16:50:04 +0000279 sb_set_blocksize(sb, sdp->sd_sb.sb_bsize);
280
Steven Whitehousef42faf42006-01-30 18:34:10 +0000281 /* Get the root inode */
Steven Whitehousedbb7cae2007-05-15 15:37:50 +0100282 no_addr = sdp->sd_sb.sb_root_dir.no_addr;
Steven Whitehouse419c93e2006-03-02 16:33:41 -0500283 if (sb->s_type == &gfs2meta_fs_type)
Steven Whitehousedbb7cae2007-05-15 15:37:50 +0100284 no_addr = sdp->sd_sb.sb_master_dir.no_addr;
285 inode = gfs2_lookup_root(sb, no_addr);
Steven Whitehousec9fd4302006-03-01 15:31:02 -0500286 if (IS_ERR(inode)) {
287 error = PTR_ERR(inode);
Steven Whitehousef42faf42006-01-30 18:34:10 +0000288 fs_err(sdp, "can't read in root inode: %d\n", error);
289 goto out;
290 }
David Teiglandb3b94fa2006-01-16 16:50:04 +0000291
Steven Whitehousef42faf42006-01-30 18:34:10 +0000292 sb->s_root = d_alloc_root(inode);
293 if (!sb->s_root) {
294 fs_err(sdp, "can't get root dentry\n");
295 error = -ENOMEM;
Steven Whitehousec9fd4302006-03-01 15:31:02 -0500296 iput(inode);
Denis Cheng34eaae32007-08-15 23:54:44 +0800297 } else
298 sb->s_root->d_op = &gfs2_dops;
299
Steven Whitehousef42faf42006-01-30 18:34:10 +0000300out:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000301 gfs2_glock_dq_uninit(&sb_gh);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000302 return error;
303}
304
Bob Petersonda6dd402007-12-11 18:49:21 -0600305/**
306 * map_journal_extents - create a reusable "extent" mapping from all logical
307 * blocks to all physical blocks for the given journal. This will save
308 * us time when writing journal blocks. Most journals will have only one
309 * extent that maps all their logical blocks. That's because gfs2.mkfs
310 * arranges the journal blocks sequentially to maximize performance.
311 * So the extent would map the first block for the entire file length.
312 * However, gfs2_jadd can happen while file activity is happening, so
313 * those journals may not be sequential. Less likely is the case where
314 * the users created their own journals by mounting the metafs and
315 * laying it out. But it's still possible. These journals might have
316 * several extents.
317 *
318 * TODO: This should be done in bigger chunks rather than one block at a time,
319 * but since it's only done at mount time, I'm not worried about the
320 * time it takes.
321 */
322static int map_journal_extents(struct gfs2_sbd *sdp)
323{
324 struct gfs2_jdesc *jd = sdp->sd_jdesc;
325 unsigned int lb;
326 u64 db, prev_db; /* logical block, disk block, prev disk block */
327 struct gfs2_inode *ip = GFS2_I(jd->jd_inode);
328 struct gfs2_journal_extent *jext = NULL;
329 struct buffer_head bh;
330 int rc = 0;
331
Bob Petersonda6dd402007-12-11 18:49:21 -0600332 prev_db = 0;
333
Bob Petersonfa3742f2007-12-12 17:52:13 -0600334 for (lb = 0; lb < ip->i_di.di_size >> sdp->sd_sb.sb_bsize_shift; lb++) {
Bob Petersonda6dd402007-12-11 18:49:21 -0600335 bh.b_state = 0;
336 bh.b_blocknr = 0;
337 bh.b_size = 1 << ip->i_inode.i_blkbits;
338 rc = gfs2_block_map(jd->jd_inode, lb, &bh, 0);
339 db = bh.b_blocknr;
340 if (rc || !db) {
341 printk(KERN_INFO "GFS2 journal mapping error %d: lb="
342 "%u db=%llu\n", rc, lb, (unsigned long long)db);
343 break;
344 }
345 if (!prev_db || db != prev_db + 1) {
346 jext = kzalloc(sizeof(struct gfs2_journal_extent),
347 GFP_KERNEL);
348 if (!jext) {
349 printk(KERN_INFO "GFS2 error: out of memory "
350 "mapping journal extents.\n");
351 rc = -ENOMEM;
352 break;
353 }
354 jext->dblock = db;
355 jext->lblock = lb;
356 jext->blocks = 1;
357 list_add_tail(&jext->extent_list, &jd->extent_list);
358 } else {
359 jext->blocks++;
360 }
361 prev_db = db;
362 }
363 return rc;
364}
365
David Teiglandb3b94fa2006-01-16 16:50:04 +0000366static int init_journal(struct gfs2_sbd *sdp, int undo)
367{
368 struct gfs2_holder ji_gh;
369 struct task_struct *p;
Steven Whitehouse5c676f62006-02-27 17:23:27 -0500370 struct gfs2_inode *ip;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000371 int jindex = 1;
372 int error = 0;
373
374 if (undo) {
375 jindex = 0;
376 goto fail_recoverd;
377 }
378
Steven Whitehousec7526662006-03-20 12:30:04 -0500379 sdp->sd_jindex = gfs2_lookup_simple(sdp->sd_master_dir, "jindex");
380 if (IS_ERR(sdp->sd_jindex)) {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000381 fs_err(sdp, "can't lookup journal index: %d\n", error);
Steven Whitehousec7526662006-03-20 12:30:04 -0500382 return PTR_ERR(sdp->sd_jindex);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000383 }
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400384 ip = GFS2_I(sdp->sd_jindex);
Steven Whitehouse5c676f62006-02-27 17:23:27 -0500385 set_bit(GLF_STICKY, &ip->i_gl->gl_flags);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000386
387 /* Load in the journal index special file */
388
389 error = gfs2_jindex_hold(sdp, &ji_gh);
390 if (error) {
391 fs_err(sdp, "can't read journal index: %d\n", error);
392 goto fail;
393 }
394
395 error = -EINVAL;
396 if (!gfs2_jindex_size(sdp)) {
397 fs_err(sdp, "no journals!\n");
Steven Whitehouse907b9bc2006-09-25 09:26:04 -0400398 goto fail_jindex;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000399 }
400
401 if (sdp->sd_args.ar_spectator) {
402 sdp->sd_jdesc = gfs2_jdesc_find(sdp, 0);
Steven Whitehousefd041f02007-11-08 14:55:03 +0000403 atomic_set(&sdp->sd_log_blks_free, sdp->sd_jdesc->jd_blocks);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000404 } else {
405 if (sdp->sd_lockstruct.ls_jid >= gfs2_jindex_size(sdp)) {
406 fs_err(sdp, "can't mount journal #%u\n",
407 sdp->sd_lockstruct.ls_jid);
408 fs_err(sdp, "there are only %u journals (0 - %u)\n",
409 gfs2_jindex_size(sdp),
410 gfs2_jindex_size(sdp) - 1);
411 goto fail_jindex;
412 }
413 sdp->sd_jdesc = gfs2_jdesc_find(sdp, sdp->sd_lockstruct.ls_jid);
414
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400415 error = gfs2_glock_nq_num(sdp, sdp->sd_lockstruct.ls_jid,
David Teiglandb3b94fa2006-01-16 16:50:04 +0000416 &gfs2_journal_glops,
417 LM_ST_EXCLUSIVE, LM_FLAG_NOEXP,
418 &sdp->sd_journal_gh);
419 if (error) {
420 fs_err(sdp, "can't acquire journal glock: %d\n", error);
421 goto fail_jindex;
422 }
423
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400424 ip = GFS2_I(sdp->sd_jdesc->jd_inode);
425 error = gfs2_glock_nq_init(ip->i_gl, LM_ST_SHARED,
Bob Peterson75be73a2007-08-08 17:08:14 -0500426 LM_FLAG_NOEXP | GL_EXACT | GL_NOCACHE,
David Teiglandb3b94fa2006-01-16 16:50:04 +0000427 &sdp->sd_jinode_gh);
428 if (error) {
429 fs_err(sdp, "can't acquire journal inode glock: %d\n",
430 error);
431 goto fail_journal_gh;
432 }
433
434 error = gfs2_jdesc_check(sdp->sd_jdesc);
435 if (error) {
436 fs_err(sdp, "my journal (%u) is bad: %d\n",
437 sdp->sd_jdesc->jd_jid, error);
438 goto fail_jinode_gh;
439 }
Steven Whitehousefd041f02007-11-08 14:55:03 +0000440 atomic_set(&sdp->sd_log_blks_free, sdp->sd_jdesc->jd_blocks);
Bob Petersonda6dd402007-12-11 18:49:21 -0600441
442 /* Map the extents for this journal's blocks */
443 map_journal_extents(sdp);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000444 }
445
446 if (sdp->sd_lockstruct.ls_first) {
447 unsigned int x;
448 for (x = 0; x < sdp->sd_journals; x++) {
David Teiglandc63e31c2006-04-20 17:03:48 -0400449 error = gfs2_recover_journal(gfs2_jdesc_find(sdp, x));
David Teiglandb3b94fa2006-01-16 16:50:04 +0000450 if (error) {
451 fs_err(sdp, "error recovering journal %u: %d\n",
452 x, error);
453 goto fail_jinode_gh;
454 }
455 }
456
457 gfs2_lm_others_may_mount(sdp);
458 } else if (!sdp->sd_args.ar_spectator) {
David Teiglandc63e31c2006-04-20 17:03:48 -0400459 error = gfs2_recover_journal(sdp->sd_jdesc);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000460 if (error) {
461 fs_err(sdp, "error recovering my journal: %d\n", error);
462 goto fail_jinode_gh;
463 }
464 }
465
466 set_bit(SDF_JOURNAL_CHECKED, &sdp->sd_flags);
467 gfs2_glock_dq_uninit(&ji_gh);
468 jindex = 0;
469
David Teiglandb3b94fa2006-01-16 16:50:04 +0000470 p = kthread_run(gfs2_recoverd, sdp, "gfs2_recoverd");
471 error = IS_ERR(p);
472 if (error) {
473 fs_err(sdp, "can't start recoverd thread: %d\n", error);
474 goto fail_jinode_gh;
475 }
476 sdp->sd_recoverd_process = p;
477
478 return 0;
479
Steven Whitehousea91ea692006-09-04 12:04:26 -0400480fail_recoverd:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000481 kthread_stop(sdp->sd_recoverd_process);
Steven Whitehousea91ea692006-09-04 12:04:26 -0400482fail_jinode_gh:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000483 if (!sdp->sd_args.ar_spectator)
484 gfs2_glock_dq_uninit(&sdp->sd_jinode_gh);
Steven Whitehousea91ea692006-09-04 12:04:26 -0400485fail_journal_gh:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000486 if (!sdp->sd_args.ar_spectator)
487 gfs2_glock_dq_uninit(&sdp->sd_journal_gh);
Steven Whitehousea91ea692006-09-04 12:04:26 -0400488fail_jindex:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000489 gfs2_jindex_free(sdp);
490 if (jindex)
491 gfs2_glock_dq_uninit(&ji_gh);
Steven Whitehousea91ea692006-09-04 12:04:26 -0400492fail:
Steven Whitehousef42faf42006-01-30 18:34:10 +0000493 iput(sdp->sd_jindex);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000494 return error;
495}
496
David Teiglandb3b94fa2006-01-16 16:50:04 +0000497
498static int init_inodes(struct gfs2_sbd *sdp, int undo)
499{
David Teiglandb3b94fa2006-01-16 16:50:04 +0000500 int error = 0;
Steven Whitehouse5c676f62006-02-27 17:23:27 -0500501 struct gfs2_inode *ip;
Steven Whitehousec9fd4302006-03-01 15:31:02 -0500502 struct inode *inode;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000503
504 if (undo)
Steven Whitehousef42faf42006-01-30 18:34:10 +0000505 goto fail_qinode;
506
Steven Whitehousedbb7cae2007-05-15 15:37:50 +0100507 inode = gfs2_lookup_root(sdp->sd_vfs, sdp->sd_sb.sb_master_dir.no_addr);
Steven Whitehousec9fd4302006-03-01 15:31:02 -0500508 if (IS_ERR(inode)) {
509 error = PTR_ERR(inode);
Steven Whitehousef42faf42006-01-30 18:34:10 +0000510 fs_err(sdp, "can't read in master directory: %d\n", error);
511 goto fail;
512 }
Steven Whitehousec9fd4302006-03-01 15:31:02 -0500513 sdp->sd_master_dir = inode;
Steven Whitehousef42faf42006-01-30 18:34:10 +0000514
515 error = init_journal(sdp, undo);
516 if (error)
517 goto fail_master;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000518
519 /* Read in the master inode number inode */
Steven Whitehousec7526662006-03-20 12:30:04 -0500520 sdp->sd_inum_inode = gfs2_lookup_simple(sdp->sd_master_dir, "inum");
521 if (IS_ERR(sdp->sd_inum_inode)) {
522 error = PTR_ERR(sdp->sd_inum_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000523 fs_err(sdp, "can't read in inum inode: %d\n", error);
Steven Whitehousef42faf42006-01-30 18:34:10 +0000524 goto fail_journal;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000525 }
526
Steven Whitehousef42faf42006-01-30 18:34:10 +0000527
David Teiglandb3b94fa2006-01-16 16:50:04 +0000528 /* Read in the master statfs inode */
Steven Whitehousec7526662006-03-20 12:30:04 -0500529 sdp->sd_statfs_inode = gfs2_lookup_simple(sdp->sd_master_dir, "statfs");
530 if (IS_ERR(sdp->sd_statfs_inode)) {
531 error = PTR_ERR(sdp->sd_statfs_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000532 fs_err(sdp, "can't read in statfs inode: %d\n", error);
Steven Whitehousef42faf42006-01-30 18:34:10 +0000533 goto fail_inum;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000534 }
535
536 /* Read in the resource index inode */
Steven Whitehousec7526662006-03-20 12:30:04 -0500537 sdp->sd_rindex = gfs2_lookup_simple(sdp->sd_master_dir, "rindex");
538 if (IS_ERR(sdp->sd_rindex)) {
539 error = PTR_ERR(sdp->sd_rindex);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000540 fs_err(sdp, "can't get resource index inode: %d\n", error);
541 goto fail_statfs;
542 }
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400543 ip = GFS2_I(sdp->sd_rindex);
Steven Whitehouse5c676f62006-02-27 17:23:27 -0500544 set_bit(GLF_STICKY, &ip->i_gl->gl_flags);
545 sdp->sd_rindex_vn = ip->i_gl->gl_vn - 1;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000546
547 /* Read in the quota inode */
Steven Whitehousec7526662006-03-20 12:30:04 -0500548 sdp->sd_quota_inode = gfs2_lookup_simple(sdp->sd_master_dir, "quota");
549 if (IS_ERR(sdp->sd_quota_inode)) {
550 error = PTR_ERR(sdp->sd_quota_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000551 fs_err(sdp, "can't get quota file inode: %d\n", error);
552 goto fail_rindex;
553 }
David Teiglandb3b94fa2006-01-16 16:50:04 +0000554 return 0;
555
Steven Whitehousef42faf42006-01-30 18:34:10 +0000556fail_qinode:
557 iput(sdp->sd_quota_inode);
Steven Whitehousef42faf42006-01-30 18:34:10 +0000558fail_rindex:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000559 gfs2_clear_rgrpd(sdp);
Steven Whitehousef42faf42006-01-30 18:34:10 +0000560 iput(sdp->sd_rindex);
Steven Whitehousef42faf42006-01-30 18:34:10 +0000561fail_statfs:
562 iput(sdp->sd_statfs_inode);
Steven Whitehousef42faf42006-01-30 18:34:10 +0000563fail_inum:
564 iput(sdp->sd_inum_inode);
565fail_journal:
566 init_journal(sdp, UNDO);
567fail_master:
568 iput(sdp->sd_master_dir);
569fail:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000570 return error;
571}
572
573static int init_per_node(struct gfs2_sbd *sdp, int undo)
574{
Steven Whitehousef42faf42006-01-30 18:34:10 +0000575 struct inode *pn = NULL;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000576 char buf[30];
577 int error = 0;
Steven Whitehouse5c676f62006-02-27 17:23:27 -0500578 struct gfs2_inode *ip;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000579
580 if (sdp->sd_args.ar_spectator)
581 return 0;
582
583 if (undo)
584 goto fail_qc_gh;
585
Steven Whitehousec7526662006-03-20 12:30:04 -0500586 pn = gfs2_lookup_simple(sdp->sd_master_dir, "per_node");
587 if (IS_ERR(pn)) {
588 error = PTR_ERR(pn);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000589 fs_err(sdp, "can't find per_node directory: %d\n", error);
590 return error;
591 }
592
593 sprintf(buf, "inum_range%u", sdp->sd_jdesc->jd_jid);
Steven Whitehousec7526662006-03-20 12:30:04 -0500594 sdp->sd_ir_inode = gfs2_lookup_simple(pn, buf);
595 if (IS_ERR(sdp->sd_ir_inode)) {
596 error = PTR_ERR(sdp->sd_ir_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000597 fs_err(sdp, "can't find local \"ir\" file: %d\n", error);
598 goto fail;
599 }
600
601 sprintf(buf, "statfs_change%u", sdp->sd_jdesc->jd_jid);
Steven Whitehousec7526662006-03-20 12:30:04 -0500602 sdp->sd_sc_inode = gfs2_lookup_simple(pn, buf);
603 if (IS_ERR(sdp->sd_sc_inode)) {
604 error = PTR_ERR(sdp->sd_sc_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000605 fs_err(sdp, "can't find local \"sc\" file: %d\n", error);
606 goto fail_ir_i;
607 }
608
David Teiglandb3b94fa2006-01-16 16:50:04 +0000609 sprintf(buf, "quota_change%u", sdp->sd_jdesc->jd_jid);
Steven Whitehousec7526662006-03-20 12:30:04 -0500610 sdp->sd_qc_inode = gfs2_lookup_simple(pn, buf);
611 if (IS_ERR(sdp->sd_qc_inode)) {
612 error = PTR_ERR(sdp->sd_qc_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000613 fs_err(sdp, "can't find local \"qc\" file: %d\n", error);
614 goto fail_ut_i;
615 }
616
Steven Whitehousef42faf42006-01-30 18:34:10 +0000617 iput(pn);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000618 pn = NULL;
619
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400620 ip = GFS2_I(sdp->sd_ir_inode);
Steven Whitehouse5c676f62006-02-27 17:23:27 -0500621 error = gfs2_glock_nq_init(ip->i_gl,
Steven Whitehouse579b78a2006-04-26 14:58:26 -0400622 LM_ST_EXCLUSIVE, 0,
David Teiglandb3b94fa2006-01-16 16:50:04 +0000623 &sdp->sd_ir_gh);
624 if (error) {
625 fs_err(sdp, "can't lock local \"ir\" file: %d\n", error);
626 goto fail_qc_i;
627 }
628
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400629 ip = GFS2_I(sdp->sd_sc_inode);
Steven Whitehouse5c676f62006-02-27 17:23:27 -0500630 error = gfs2_glock_nq_init(ip->i_gl,
Steven Whitehouse579b78a2006-04-26 14:58:26 -0400631 LM_ST_EXCLUSIVE, 0,
David Teiglandb3b94fa2006-01-16 16:50:04 +0000632 &sdp->sd_sc_gh);
633 if (error) {
634 fs_err(sdp, "can't lock local \"sc\" file: %d\n", error);
635 goto fail_ir_gh;
636 }
637
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400638 ip = GFS2_I(sdp->sd_qc_inode);
Steven Whitehouse5c676f62006-02-27 17:23:27 -0500639 error = gfs2_glock_nq_init(ip->i_gl,
Steven Whitehouse579b78a2006-04-26 14:58:26 -0400640 LM_ST_EXCLUSIVE, 0,
David Teiglandb3b94fa2006-01-16 16:50:04 +0000641 &sdp->sd_qc_gh);
642 if (error) {
643 fs_err(sdp, "can't lock local \"qc\" file: %d\n", error);
644 goto fail_ut_gh;
645 }
646
647 return 0;
648
Steven Whitehousea91ea692006-09-04 12:04:26 -0400649fail_qc_gh:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000650 gfs2_glock_dq_uninit(&sdp->sd_qc_gh);
Steven Whitehousea91ea692006-09-04 12:04:26 -0400651fail_ut_gh:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000652 gfs2_glock_dq_uninit(&sdp->sd_sc_gh);
Steven Whitehousea91ea692006-09-04 12:04:26 -0400653fail_ir_gh:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000654 gfs2_glock_dq_uninit(&sdp->sd_ir_gh);
Steven Whitehousea91ea692006-09-04 12:04:26 -0400655fail_qc_i:
Steven Whitehousef42faf42006-01-30 18:34:10 +0000656 iput(sdp->sd_qc_inode);
Steven Whitehousea91ea692006-09-04 12:04:26 -0400657fail_ut_i:
Steven Whitehousef42faf42006-01-30 18:34:10 +0000658 iput(sdp->sd_sc_inode);
Steven Whitehousea91ea692006-09-04 12:04:26 -0400659fail_ir_i:
Steven Whitehousef42faf42006-01-30 18:34:10 +0000660 iput(sdp->sd_ir_inode);
Steven Whitehousea91ea692006-09-04 12:04:26 -0400661fail:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000662 if (pn)
Steven Whitehousef42faf42006-01-30 18:34:10 +0000663 iput(pn);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000664 return error;
665}
666
667static int init_threads(struct gfs2_sbd *sdp, int undo)
668{
669 struct task_struct *p;
670 int error = 0;
671
672 if (undo)
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400673 goto fail_quotad;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000674
675 sdp->sd_log_flush_time = jiffies;
676 sdp->sd_jindex_refresh_time = jiffies;
677
678 p = kthread_run(gfs2_logd, sdp, "gfs2_logd");
679 error = IS_ERR(p);
680 if (error) {
681 fs_err(sdp, "can't start logd thread: %d\n", error);
682 return error;
683 }
684 sdp->sd_logd_process = p;
685
686 sdp->sd_statfs_sync_time = jiffies;
687 sdp->sd_quota_sync_time = jiffies;
688
689 p = kthread_run(gfs2_quotad, sdp, "gfs2_quotad");
690 error = IS_ERR(p);
691 if (error) {
692 fs_err(sdp, "can't start quotad thread: %d\n", error);
693 goto fail;
694 }
695 sdp->sd_quotad_process = p;
696
David Teiglandb3b94fa2006-01-16 16:50:04 +0000697 return 0;
698
David Teiglandb3b94fa2006-01-16 16:50:04 +0000699
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400700fail_quotad:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000701 kthread_stop(sdp->sd_quotad_process);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400702fail:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000703 kthread_stop(sdp->sd_logd_process);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000704 return error;
705}
706
707/**
708 * fill_super - Read in superblock
709 * @sb: The VFS superblock
710 * @data: Mount options
711 * @silent: Don't complain if it's not a GFS2 filesystem
712 *
713 * Returns: errno
714 */
715
716static int fill_super(struct super_block *sb, void *data, int silent)
717{
718 struct gfs2_sbd *sdp;
719 struct gfs2_holder mount_gh;
720 int error;
721
722 sdp = init_sbd(sb);
723 if (!sdp) {
Steven Whitehoused92a8d42006-02-27 10:57:14 -0500724 printk(KERN_WARNING "GFS2: can't alloc struct gfs2_sbd\n");
David Teiglandb3b94fa2006-01-16 16:50:04 +0000725 return -ENOMEM;
726 }
727
728 error = gfs2_mount_args(sdp, (char *)data, 0);
729 if (error) {
Steven Whitehoused92a8d42006-02-27 10:57:14 -0500730 printk(KERN_WARNING "GFS2: can't parse mount arguments\n");
David Teiglandb3b94fa2006-01-16 16:50:04 +0000731 goto fail;
732 }
733
Steven Whitehouse419c93e2006-03-02 16:33:41 -0500734 init_vfs(sb, SDF_NOATIME);
735
736 /* Set up the buffer cache and fill in some fake block size values
737 to allow us to read-in the on-disk superblock. */
738 sdp->sd_sb.sb_bsize = sb_min_blocksize(sb, GFS2_BASIC_BLOCK);
739 sdp->sd_sb.sb_bsize_shift = sb->s_blocksize_bits;
740 sdp->sd_fsb2bb_shift = sdp->sd_sb.sb_bsize_shift -
741 GFS2_BASIC_BLOCK_SHIFT;
742 sdp->sd_fsb2bb = 1 << sdp->sd_fsb2bb_shift;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000743
744 error = init_names(sdp, silent);
745 if (error)
746 goto fail;
747
Robert Peterson7c52b162007-03-16 10:26:37 +0000748 gfs2_create_debugfs_file(sdp);
749
David Teiglandb3b94fa2006-01-16 16:50:04 +0000750 error = gfs2_sys_fs_add(sdp);
751 if (error)
752 goto fail;
753
754 error = gfs2_lm_mount(sdp, silent);
755 if (error)
756 goto fail_sys;
757
758 error = init_locking(sdp, &mount_gh, DO);
759 if (error)
760 goto fail_lm;
761
762 error = init_sb(sdp, silent, DO);
763 if (error)
764 goto fail_locking;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000765
766 error = init_inodes(sdp, DO);
767 if (error)
Steven Whitehousef42faf42006-01-30 18:34:10 +0000768 goto fail_sb;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000769
770 error = init_per_node(sdp, DO);
771 if (error)
772 goto fail_inodes;
773
774 error = gfs2_statfs_init(sdp);
775 if (error) {
776 fs_err(sdp, "can't initialize statfs subsystem: %d\n", error);
777 goto fail_per_node;
778 }
779
780 error = init_threads(sdp, DO);
781 if (error)
782 goto fail_per_node;
783
784 if (!(sb->s_flags & MS_RDONLY)) {
785 error = gfs2_make_fs_rw(sdp);
786 if (error) {
787 fs_err(sdp, "can't make FS RW: %d\n", error);
788 goto fail_threads;
789 }
790 }
791
792 gfs2_glock_dq_uninit(&mount_gh);
793
794 return 0;
795
Steven Whitehousea91ea692006-09-04 12:04:26 -0400796fail_threads:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000797 init_threads(sdp, UNDO);
Steven Whitehousea91ea692006-09-04 12:04:26 -0400798fail_per_node:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000799 init_per_node(sdp, UNDO);
Steven Whitehousea91ea692006-09-04 12:04:26 -0400800fail_inodes:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000801 init_inodes(sdp, UNDO);
Steven Whitehousea91ea692006-09-04 12:04:26 -0400802fail_sb:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000803 init_sb(sdp, 0, UNDO);
Steven Whitehousea91ea692006-09-04 12:04:26 -0400804fail_locking:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000805 init_locking(sdp, &mount_gh, UNDO);
Steven Whitehousea91ea692006-09-04 12:04:26 -0400806fail_lm:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000807 gfs2_gl_hash_clear(sdp, WAIT);
808 gfs2_lm_unmount(sdp);
809 while (invalidate_inodes(sb))
810 yield();
Steven Whitehousea91ea692006-09-04 12:04:26 -0400811fail_sys:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000812 gfs2_sys_fs_del(sdp);
Steven Whitehousea91ea692006-09-04 12:04:26 -0400813fail:
Robert Peterson5f882092007-04-18 11:41:11 -0500814 gfs2_delete_debugfs_file(sdp);
Steven Whitehousea2c45802006-09-08 10:13:03 -0400815 kfree(sdp);
Steven Whitehouse5c676f62006-02-27 17:23:27 -0500816 sb->s_fs_info = NULL;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000817 return error;
818}
819
Andrew Mortonccd6efd2006-06-30 02:16:34 -0700820static int gfs2_get_sb(struct file_system_type *fs_type, int flags,
821 const char *dev_name, void *data, struct vfsmount *mnt)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000822{
Abhijith Das86384602006-08-25 11:13:37 -0500823 struct super_block *sb;
824 struct gfs2_sbd *sdp;
825 int error = get_sb_bdev(fs_type, flags, dev_name, data, fill_super, mnt);
826 if (error)
827 goto out;
828 sb = mnt->mnt_sb;
Steven Whitehouse26c1a572006-09-04 15:32:10 -0400829 sdp = sb->s_fs_info;
Abhijith Das86384602006-08-25 11:13:37 -0500830 sdp->sd_gfs2mnt = mnt;
831out:
832 return error;
833}
834
Steven Whitehouse907b9bc2006-09-25 09:26:04 -0400835static int fill_super_meta(struct super_block *sb, struct super_block *new,
Abhijith Das86384602006-08-25 11:13:37 -0500836 void *data, int silent)
837{
838 struct gfs2_sbd *sdp = sb->s_fs_info;
839 struct inode *inode;
840 int error = 0;
841
842 new->s_fs_info = sdp;
843 sdp->sd_vfs_meta = sb;
844
845 init_vfs(new, SDF_NOATIME);
846
847 /* Get the master inode */
848 inode = igrab(sdp->sd_master_dir);
849
850 new->s_root = d_alloc_root(inode);
851 if (!new->s_root) {
852 fs_err(sdp, "can't get root dentry\n");
853 error = -ENOMEM;
854 iput(inode);
Adrian Bunkbbbe4512006-10-19 15:27:00 +0200855 } else
856 new->s_root->d_op = &gfs2_dops;
Abhijith Das86384602006-08-25 11:13:37 -0500857
858 return error;
859}
Steven Whitehousea91ea692006-09-04 12:04:26 -0400860
Abhijith Das86384602006-08-25 11:13:37 -0500861static int set_bdev_super(struct super_block *s, void *data)
862{
863 s->s_bdev = data;
864 s->s_dev = s->s_bdev->bd_dev;
865 return 0;
866}
Steven Whitehouse907b9bc2006-09-25 09:26:04 -0400867
Abhijith Das86384602006-08-25 11:13:37 -0500868static int test_bdev_super(struct super_block *s, void *data)
869{
Steven Whitehouse26c1a572006-09-04 15:32:10 -0400870 return s->s_bdev == data;
Abhijith Das86384602006-08-25 11:13:37 -0500871}
872
873static struct super_block* get_gfs2_sb(const char *dev_name)
874{
875 struct kstat stat;
876 struct nameidata nd;
877 struct file_system_type *fstype;
878 struct super_block *sb = NULL, *s;
Abhijith Das86384602006-08-25 11:13:37 -0500879 int error;
Steven Whitehouse907b9bc2006-09-25 09:26:04 -0400880
Abhijith Das86384602006-08-25 11:13:37 -0500881 error = path_lookup(dev_name, LOOKUP_FOLLOW, &nd);
882 if (error) {
Steven Whitehouse907b9bc2006-09-25 09:26:04 -0400883 printk(KERN_WARNING "GFS2: path_lookup on %s returned error\n",
Abhijith Das86384602006-08-25 11:13:37 -0500884 dev_name);
885 goto out;
886 }
887 error = vfs_getattr(nd.mnt, nd.dentry, &stat);
888
889 fstype = get_fs_type("gfs2");
Denis Chengadb4ec12007-08-11 10:27:07 +0800890 list_for_each_entry(s, &fstype->fs_supers, s_instances) {
Abhijith Das86384602006-08-25 11:13:37 -0500891 if ((S_ISBLK(stat.mode) && s->s_dev == stat.rdev) ||
892 (S_ISDIR(stat.mode) && s == nd.dentry->d_inode->i_sb)) {
893 sb = s;
894 goto free_nd;
895 }
896 }
897
898 printk(KERN_WARNING "GFS2: Unrecognized block device or "
Richard Fearnd5a67512007-02-17 17:29:15 +0000899 "mount point %s\n", dev_name);
Abhijith Das86384602006-08-25 11:13:37 -0500900
901free_nd:
902 path_release(&nd);
903out:
904 return sb;
905}
906
907static int gfs2_get_sb_meta(struct file_system_type *fs_type, int flags,
908 const char *dev_name, void *data, struct vfsmount *mnt)
909{
910 int error = 0;
911 struct super_block *sb = NULL, *new;
912 struct gfs2_sbd *sdp;
Abhijith Das86384602006-08-25 11:13:37 -0500913
914 sb = get_gfs2_sb(dev_name);
915 if (!sb) {
916 printk(KERN_WARNING "GFS2: gfs2 mount does not exist\n");
917 error = -ENOENT;
918 goto error;
919 }
Denis Cheng2d3ba1e2007-08-11 10:27:08 +0800920 sdp = sb->s_fs_info;
Abhijith Das86384602006-08-25 11:13:37 -0500921 if (sdp->sd_vfs_meta) {
922 printk(KERN_WARNING "GFS2: gfs2meta mount already exists\n");
923 error = -EBUSY;
924 goto error;
925 }
David Chinnerf73ca1b2007-01-10 23:15:41 -0800926 down(&sb->s_bdev->bd_mount_sem);
Abhijith Das86384602006-08-25 11:13:37 -0500927 new = sget(fs_type, test_bdev_super, set_bdev_super, sb->s_bdev);
David Chinnerf73ca1b2007-01-10 23:15:41 -0800928 up(&sb->s_bdev->bd_mount_sem);
Abhijith Das86384602006-08-25 11:13:37 -0500929 if (IS_ERR(new)) {
930 error = PTR_ERR(new);
931 goto error;
932 }
933 module_put(fs_type->owner);
934 new->s_flags = flags;
935 strlcpy(new->s_id, sb->s_id, sizeof(new->s_id));
936 sb_set_blocksize(new, sb->s_blocksize);
937 error = fill_super_meta(sb, new, data, flags & MS_SILENT ? 1 : 0);
938 if (error) {
939 up_write(&new->s_umount);
940 deactivate_super(new);
941 goto error;
942 }
Steven Whitehouse907b9bc2006-09-25 09:26:04 -0400943
Abhijith Das86384602006-08-25 11:13:37 -0500944 new->s_flags |= MS_ACTIVE;
Steven Whitehouse907b9bc2006-09-25 09:26:04 -0400945
Abhijith Das86384602006-08-25 11:13:37 -0500946 /* Grab a reference to the gfs2 mount point */
947 atomic_inc(&sdp->sd_gfs2mnt->mnt_count);
948 return simple_set_mnt(mnt, new);
949error:
Abhijith Das86384602006-08-25 11:13:37 -0500950 return error;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000951}
952
Steven Whitehouse419c93e2006-03-02 16:33:41 -0500953static void gfs2_kill_sb(struct super_block *sb)
954{
Abhijith Dasd1e27772007-08-23 13:33:01 -0500955 if (sb->s_fs_info) {
956 gfs2_delete_debugfs_file(sb->s_fs_info);
957 gfs2_meta_syncfs(sb->s_fs_info);
958 }
Steven Whitehouse419c93e2006-03-02 16:33:41 -0500959 kill_block_super(sb);
960}
961
Abhijith Das86384602006-08-25 11:13:37 -0500962static void gfs2_kill_sb_meta(struct super_block *sb)
963{
964 struct gfs2_sbd *sdp = sb->s_fs_info;
965 generic_shutdown_super(sb);
966 sdp->sd_vfs_meta = NULL;
967 atomic_dec(&sdp->sd_gfs2mnt->mnt_count);
968}
969
David Teiglandb3b94fa2006-01-16 16:50:04 +0000970struct file_system_type gfs2_fs_type = {
971 .name = "gfs2",
972 .fs_flags = FS_REQUIRES_DEV,
973 .get_sb = gfs2_get_sb,
Steven Whitehouse419c93e2006-03-02 16:33:41 -0500974 .kill_sb = gfs2_kill_sb,
975 .owner = THIS_MODULE,
976};
977
978struct file_system_type gfs2meta_fs_type = {
979 .name = "gfs2meta",
980 .fs_flags = FS_REQUIRES_DEV,
Abhijith Das86384602006-08-25 11:13:37 -0500981 .get_sb = gfs2_get_sb_meta,
982 .kill_sb = gfs2_kill_sb_meta,
David Teiglandb3b94fa2006-01-16 16:50:04 +0000983 .owner = THIS_MODULE,
984};
985