blob: 5899ac33451c46d01c193bf59641cea2fcb26e9a [file] [log] [blame]
David Teiglandb3b94fa2006-01-16 16:50:04 +00001/*
2 * Copyright (C) Sistina Software, Inc. 1997-2003 All rights reserved.
3 * Copyright (C) 2004-2005 Red Hat, Inc. All rights reserved.
4 *
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 v.2.
8 */
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>
15#include <linux/vmalloc.h>
16#include <linux/blkdev.h>
17#include <linux/kthread.h>
Steven Whitehouse5c676f62006-02-27 17:23:27 -050018#include <linux/gfs2_ondisk.h>
David Teiglandb3b94fa2006-01-16 16:50:04 +000019
20#include "gfs2.h"
Steven Whitehouse5c676f62006-02-27 17:23:27 -050021#include "lm_interface.h"
22#include "incore.h"
David Teiglandb3b94fa2006-01-16 16:50:04 +000023#include "daemon.h"
24#include "glock.h"
25#include "glops.h"
26#include "inode.h"
27#include "lm.h"
28#include "mount.h"
29#include "ops_export.h"
30#include "ops_fstype.h"
31#include "ops_super.h"
32#include "recovery.h"
33#include "rgrp.h"
34#include "super.h"
35#include "unlinked.h"
36#include "sys.h"
Steven Whitehouse5c676f62006-02-27 17:23:27 -050037#include "util.h"
David Teiglandb3b94fa2006-01-16 16:50:04 +000038
39#define DO 0
40#define UNDO 1
41
Robert S Peterson5bb76af2006-05-05 16:29:50 -040042extern struct dentry_operations gfs2_dops;
43
David Teiglandb3b94fa2006-01-16 16:50:04 +000044static struct gfs2_sbd *init_sbd(struct super_block *sb)
45{
46 struct gfs2_sbd *sdp;
47 unsigned int x;
48
49 sdp = vmalloc(sizeof(struct gfs2_sbd));
50 if (!sdp)
51 return NULL;
52
53 memset(sdp, 0, sizeof(struct gfs2_sbd));
54
Steven Whitehouse5c676f62006-02-27 17:23:27 -050055 sb->s_fs_info = sdp;
David Teiglandb3b94fa2006-01-16 16:50:04 +000056 sdp->sd_vfs = sb;
57
58 gfs2_tune_init(&sdp->sd_tune);
59
60 for (x = 0; x < GFS2_GL_HASH_SIZE; x++) {
61 sdp->sd_gl_hash[x].hb_lock = RW_LOCK_UNLOCKED;
62 INIT_LIST_HEAD(&sdp->sd_gl_hash[x].hb_list);
63 }
64 INIT_LIST_HEAD(&sdp->sd_reclaim_list);
65 spin_lock_init(&sdp->sd_reclaim_lock);
66 init_waitqueue_head(&sdp->sd_reclaim_wq);
Steven Whitehousef55ab262006-02-21 12:51:39 +000067 mutex_init(&sdp->sd_invalidate_inodes_mutex);
David Teiglandb3b94fa2006-01-16 16:50:04 +000068
Steven Whitehousef55ab262006-02-21 12:51:39 +000069 mutex_init(&sdp->sd_inum_mutex);
David Teiglandb3b94fa2006-01-16 16:50:04 +000070 spin_lock_init(&sdp->sd_statfs_spin);
Steven Whitehousef55ab262006-02-21 12:51:39 +000071 mutex_init(&sdp->sd_statfs_mutex);
David Teiglandb3b94fa2006-01-16 16:50:04 +000072
73 spin_lock_init(&sdp->sd_rindex_spin);
Steven Whitehousef55ab262006-02-21 12:51:39 +000074 mutex_init(&sdp->sd_rindex_mutex);
David Teiglandb3b94fa2006-01-16 16:50:04 +000075 INIT_LIST_HEAD(&sdp->sd_rindex_list);
76 INIT_LIST_HEAD(&sdp->sd_rindex_mru_list);
77 INIT_LIST_HEAD(&sdp->sd_rindex_recent_list);
78
79 INIT_LIST_HEAD(&sdp->sd_jindex_list);
80 spin_lock_init(&sdp->sd_jindex_spin);
Steven Whitehousef55ab262006-02-21 12:51:39 +000081 mutex_init(&sdp->sd_jindex_mutex);
David Teiglandb3b94fa2006-01-16 16:50:04 +000082
83 INIT_LIST_HEAD(&sdp->sd_unlinked_list);
84 spin_lock_init(&sdp->sd_unlinked_spin);
Steven Whitehousef55ab262006-02-21 12:51:39 +000085 mutex_init(&sdp->sd_unlinked_mutex);
David Teiglandb3b94fa2006-01-16 16:50:04 +000086
87 INIT_LIST_HEAD(&sdp->sd_quota_list);
88 spin_lock_init(&sdp->sd_quota_spin);
Steven Whitehousef55ab262006-02-21 12:51:39 +000089 mutex_init(&sdp->sd_quota_mutex);
David Teiglandb3b94fa2006-01-16 16:50:04 +000090
91 spin_lock_init(&sdp->sd_log_lock);
David Teiglandb3b94fa2006-01-16 16:50:04 +000092
93 INIT_LIST_HEAD(&sdp->sd_log_le_gl);
94 INIT_LIST_HEAD(&sdp->sd_log_le_buf);
95 INIT_LIST_HEAD(&sdp->sd_log_le_revoke);
96 INIT_LIST_HEAD(&sdp->sd_log_le_rg);
97 INIT_LIST_HEAD(&sdp->sd_log_le_databuf);
98
Steven Whitehouse71b86f52006-03-28 14:14:04 -050099 mutex_init(&sdp->sd_log_reserve_mutex);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000100 INIT_LIST_HEAD(&sdp->sd_ail1_list);
101 INIT_LIST_HEAD(&sdp->sd_ail2_list);
102
Steven Whitehouse484adff2006-03-29 09:12:12 -0500103 init_rwsem(&sdp->sd_log_flush_lock);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000104 INIT_LIST_HEAD(&sdp->sd_log_flush_list);
105
106 INIT_LIST_HEAD(&sdp->sd_revoke_list);
107
Steven Whitehousef55ab262006-02-21 12:51:39 +0000108 mutex_init(&sdp->sd_freeze_lock);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000109
110 return sdp;
111}
112
Steven Whitehouse419c93e2006-03-02 16:33:41 -0500113static void init_vfs(struct super_block *sb, unsigned noatime)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000114{
Steven Whitehouse419c93e2006-03-02 16:33:41 -0500115 struct gfs2_sbd *sdp = sb->s_fs_info;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000116
117 sb->s_magic = GFS2_MAGIC;
118 sb->s_op = &gfs2_super_ops;
119 sb->s_export_op = &gfs2_export_ops;
120 sb->s_maxbytes = MAX_LFS_FILESIZE;
121
122 if (sb->s_flags & (MS_NOATIME | MS_NODIRATIME))
Steven Whitehouse419c93e2006-03-02 16:33:41 -0500123 set_bit(noatime, &sdp->sd_flags);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000124
125 /* Don't let the VFS update atimes. GFS2 handles this itself. */
126 sb->s_flags |= MS_NOATIME | MS_NODIRATIME;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000127}
128
129static int init_names(struct gfs2_sbd *sdp, int silent)
130{
131 struct gfs2_sb *sb = NULL;
132 char *proto, *table;
133 int error = 0;
134
135 proto = sdp->sd_args.ar_lockproto;
136 table = sdp->sd_args.ar_locktable;
137
138 /* Try to autodetect */
139
140 if (!proto[0] || !table[0]) {
141 struct buffer_head *bh;
142 bh = sb_getblk(sdp->sd_vfs,
143 GFS2_SB_ADDR >> sdp->sd_fsb2bb_shift);
144 lock_buffer(bh);
145 clear_buffer_uptodate(bh);
146 clear_buffer_dirty(bh);
147 unlock_buffer(bh);
148 ll_rw_block(READ, 1, &bh);
149 wait_on_buffer(bh);
150
151 if (!buffer_uptodate(bh)) {
152 brelse(bh);
153 return -EIO;
154 }
155
156 sb = kmalloc(sizeof(struct gfs2_sb), GFP_KERNEL);
157 if (!sb) {
158 brelse(bh);
159 return -ENOMEM;
160 }
161 gfs2_sb_in(sb, bh->b_data);
162 brelse(bh);
163
164 error = gfs2_check_sb(sdp, sb, silent);
165 if (error)
166 goto out;
167
168 if (!proto[0])
169 proto = sb->sb_lockproto;
170 if (!table[0])
171 table = sb->sb_locktable;
172 }
173
174 if (!table[0])
175 table = sdp->sd_vfs->s_id;
176
177 snprintf(sdp->sd_proto_name, GFS2_FSNAME_LEN, "%s", proto);
178 snprintf(sdp->sd_table_name, GFS2_FSNAME_LEN, "%s", table);
179
180 out:
181 kfree(sb);
182
183 return error;
184}
185
186static int init_locking(struct gfs2_sbd *sdp, struct gfs2_holder *mount_gh,
187 int undo)
188{
189 struct task_struct *p;
190 int error = 0;
191
192 if (undo)
193 goto fail_trans;
194
195 p = kthread_run(gfs2_scand, sdp, "gfs2_scand");
196 error = IS_ERR(p);
197 if (error) {
198 fs_err(sdp, "can't start scand thread: %d\n", error);
199 return error;
200 }
201 sdp->sd_scand_process = p;
202
203 for (sdp->sd_glockd_num = 0;
204 sdp->sd_glockd_num < sdp->sd_args.ar_num_glockd;
205 sdp->sd_glockd_num++) {
206 p = kthread_run(gfs2_glockd, sdp, "gfs2_glockd");
207 error = IS_ERR(p);
208 if (error) {
209 fs_err(sdp, "can't start glockd thread: %d\n", error);
210 goto fail;
211 }
212 sdp->sd_glockd_process[sdp->sd_glockd_num] = p;
213 }
214
215 error = gfs2_glock_nq_num(sdp,
216 GFS2_MOUNT_LOCK, &gfs2_nondisk_glops,
217 LM_ST_EXCLUSIVE, LM_FLAG_NOEXP | GL_NOCACHE,
218 mount_gh);
219 if (error) {
220 fs_err(sdp, "can't acquire mount glock: %d\n", error);
221 goto fail;
222 }
223
224 error = gfs2_glock_nq_num(sdp,
225 GFS2_LIVE_LOCK, &gfs2_nondisk_glops,
226 LM_ST_SHARED,
Steven Whitehouse579b78a2006-04-26 14:58:26 -0400227 LM_FLAG_NOEXP | GL_EXACT,
David Teiglandb3b94fa2006-01-16 16:50:04 +0000228 &sdp->sd_live_gh);
229 if (error) {
230 fs_err(sdp, "can't acquire live glock: %d\n", error);
231 goto fail_mount;
232 }
233
234 error = gfs2_glock_get(sdp, GFS2_RENAME_LOCK, &gfs2_nondisk_glops,
235 CREATE, &sdp->sd_rename_gl);
236 if (error) {
237 fs_err(sdp, "can't create rename glock: %d\n", error);
238 goto fail_live;
239 }
240
241 error = gfs2_glock_get(sdp, GFS2_TRANS_LOCK, &gfs2_trans_glops,
242 CREATE, &sdp->sd_trans_gl);
243 if (error) {
244 fs_err(sdp, "can't create transaction glock: %d\n", error);
245 goto fail_rename;
246 }
247 set_bit(GLF_STICKY, &sdp->sd_trans_gl->gl_flags);
248
249 return 0;
250
251 fail_trans:
252 gfs2_glock_put(sdp->sd_trans_gl);
253
254 fail_rename:
255 gfs2_glock_put(sdp->sd_rename_gl);
256
257 fail_live:
258 gfs2_glock_dq_uninit(&sdp->sd_live_gh);
259
260 fail_mount:
261 gfs2_glock_dq_uninit(mount_gh);
262
263 fail:
264 while (sdp->sd_glockd_num--)
265 kthread_stop(sdp->sd_glockd_process[sdp->sd_glockd_num]);
266
267 kthread_stop(sdp->sd_scand_process);
268
269 return error;
270}
271
Steven Whitehousec9fd4302006-03-01 15:31:02 -0500272static struct inode *gfs2_lookup_root(struct gfs2_sbd *sdp,
273 const struct gfs2_inum *inum)
Steven Whitehousef42faf42006-01-30 18:34:10 +0000274{
275 int error;
276 struct gfs2_glock *gl;
277 struct gfs2_inode *ip;
Steven Whitehousec9fd4302006-03-01 15:31:02 -0500278 struct inode *inode;
Steven Whitehousef42faf42006-01-30 18:34:10 +0000279
Steven Whitehouseb09e5932006-04-07 11:17:32 -0400280 error = gfs2_glock_get(sdp, inum->no_addr, &gfs2_inode_glops,
281 CREATE, &gl);
Steven Whitehousef42faf42006-01-30 18:34:10 +0000282 if (!error) {
Steven Whitehouse419c93e2006-03-02 16:33:41 -0500283 error = gfs2_inode_get(gl, inum, CREATE, &ip);
Steven Whitehousef42faf42006-01-30 18:34:10 +0000284 if (!error) {
Steven Whitehouse419c93e2006-03-02 16:33:41 -0500285 gfs2_inode_min_init(ip, DT_DIR);
Steven Whitehousec9fd4302006-03-01 15:31:02 -0500286 inode = gfs2_ip2v(ip);
Steven Whitehousef42faf42006-01-30 18:34:10 +0000287 gfs2_inode_put(ip);
Steven Whitehouse419c93e2006-03-02 16:33:41 -0500288 gfs2_glock_put(gl);
Steven Whitehousec9fd4302006-03-01 15:31:02 -0500289 return inode;
Steven Whitehousef42faf42006-01-30 18:34:10 +0000290 }
291 gfs2_glock_put(gl);
292 }
Steven Whitehousec9fd4302006-03-01 15:31:02 -0500293 return ERR_PTR(error);
Steven Whitehousef42faf42006-01-30 18:34:10 +0000294}
295
David Teiglandb3b94fa2006-01-16 16:50:04 +0000296static int init_sb(struct gfs2_sbd *sdp, int silent, int undo)
297{
298 struct super_block *sb = sdp->sd_vfs;
299 struct gfs2_holder sb_gh;
Steven Whitehouse419c93e2006-03-02 16:33:41 -0500300 struct gfs2_inum *inum;
Steven Whitehousef42faf42006-01-30 18:34:10 +0000301 struct inode *inode;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000302 int error = 0;
303
304 if (undo) {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000305 return 0;
306 }
307
308 error = gfs2_glock_nq_num(sdp,
309 GFS2_SB_LOCK, &gfs2_meta_glops,
310 LM_ST_SHARED, 0, &sb_gh);
311 if (error) {
312 fs_err(sdp, "can't acquire superblock glock: %d\n", error);
313 return error;
314 }
315
316 error = gfs2_read_sb(sdp, sb_gh.gh_gl, silent);
317 if (error) {
318 fs_err(sdp, "can't read superblock: %d\n", error);
319 goto out;
320 }
321
322 /* Set up the buffer cache and SB for real */
David Teiglandb3b94fa2006-01-16 16:50:04 +0000323 if (sdp->sd_sb.sb_bsize < bdev_hardsect_size(sb->s_bdev)) {
Steven Whitehouse419c93e2006-03-02 16:33:41 -0500324 error = -EINVAL;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000325 fs_err(sdp, "FS block size (%u) is too small for device "
326 "block size (%u)\n",
327 sdp->sd_sb.sb_bsize, bdev_hardsect_size(sb->s_bdev));
328 goto out;
329 }
330 if (sdp->sd_sb.sb_bsize > PAGE_SIZE) {
Steven Whitehouse419c93e2006-03-02 16:33:41 -0500331 error = -EINVAL;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000332 fs_err(sdp, "FS block size (%u) is too big for machine "
333 "page size (%u)\n",
334 sdp->sd_sb.sb_bsize, (unsigned int)PAGE_SIZE);
335 goto out;
336 }
337
338 /* Get rid of buffers from the original block size */
339 sb_gh.gh_gl->gl_ops->go_inval(sb_gh.gh_gl, DIO_METADATA | DIO_DATA);
340 sb_gh.gh_gl->gl_aspace->i_blkbits = sdp->sd_sb.sb_bsize_shift;
341
342 sb_set_blocksize(sb, sdp->sd_sb.sb_bsize);
343
Steven Whitehousef42faf42006-01-30 18:34:10 +0000344 /* Get the root inode */
Steven Whitehouse419c93e2006-03-02 16:33:41 -0500345 inum = &sdp->sd_sb.sb_root_dir;
346 if (sb->s_type == &gfs2meta_fs_type)
347 inum = &sdp->sd_sb.sb_master_dir;
348 inode = gfs2_lookup_root(sdp, inum);
Steven Whitehousec9fd4302006-03-01 15:31:02 -0500349 if (IS_ERR(inode)) {
350 error = PTR_ERR(inode);
Steven Whitehousef42faf42006-01-30 18:34:10 +0000351 fs_err(sdp, "can't read in root inode: %d\n", error);
352 goto out;
353 }
David Teiglandb3b94fa2006-01-16 16:50:04 +0000354
Steven Whitehousef42faf42006-01-30 18:34:10 +0000355 sb->s_root = d_alloc_root(inode);
356 if (!sb->s_root) {
357 fs_err(sdp, "can't get root dentry\n");
358 error = -ENOMEM;
Steven Whitehousec9fd4302006-03-01 15:31:02 -0500359 iput(inode);
Steven Whitehousef42faf42006-01-30 18:34:10 +0000360 }
Robert S Peterson5bb76af2006-05-05 16:29:50 -0400361 sb->s_root->d_op = &gfs2_dops;
Steven Whitehousef42faf42006-01-30 18:34:10 +0000362out:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000363 gfs2_glock_dq_uninit(&sb_gh);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000364 return error;
365}
366
367static int init_journal(struct gfs2_sbd *sdp, int undo)
368{
369 struct gfs2_holder ji_gh;
370 struct task_struct *p;
Steven Whitehouse5c676f62006-02-27 17:23:27 -0500371 struct gfs2_inode *ip;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000372 int jindex = 1;
373 int error = 0;
374
375 if (undo) {
376 jindex = 0;
377 goto fail_recoverd;
378 }
379
Steven Whitehousec7526662006-03-20 12:30:04 -0500380 sdp->sd_jindex = gfs2_lookup_simple(sdp->sd_master_dir, "jindex");
381 if (IS_ERR(sdp->sd_jindex)) {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000382 fs_err(sdp, "can't lookup journal index: %d\n", error);
Steven Whitehousec7526662006-03-20 12:30:04 -0500383 return PTR_ERR(sdp->sd_jindex);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000384 }
Steven Whitehouse5c676f62006-02-27 17:23:27 -0500385 ip = sdp->sd_jindex->u.generic_ip;
386 set_bit(GLF_STICKY, &ip->i_gl->gl_flags);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000387
388 /* Load in the journal index special file */
389
390 error = gfs2_jindex_hold(sdp, &ji_gh);
391 if (error) {
392 fs_err(sdp, "can't read journal index: %d\n", error);
393 goto fail;
394 }
395
396 error = -EINVAL;
397 if (!gfs2_jindex_size(sdp)) {
398 fs_err(sdp, "no journals!\n");
399 goto fail_jindex;
400 }
401
402 if (sdp->sd_args.ar_spectator) {
403 sdp->sd_jdesc = gfs2_jdesc_find(sdp, 0);
404 sdp->sd_log_blks_free = sdp->sd_jdesc->jd_blocks;
405 } else {
406 if (sdp->sd_lockstruct.ls_jid >= gfs2_jindex_size(sdp)) {
407 fs_err(sdp, "can't mount journal #%u\n",
408 sdp->sd_lockstruct.ls_jid);
409 fs_err(sdp, "there are only %u journals (0 - %u)\n",
410 gfs2_jindex_size(sdp),
411 gfs2_jindex_size(sdp) - 1);
412 goto fail_jindex;
413 }
414 sdp->sd_jdesc = gfs2_jdesc_find(sdp, sdp->sd_lockstruct.ls_jid);
415
416 error = gfs2_glock_nq_num(sdp,
417 sdp->sd_lockstruct.ls_jid,
418 &gfs2_journal_glops,
419 LM_ST_EXCLUSIVE, LM_FLAG_NOEXP,
420 &sdp->sd_journal_gh);
421 if (error) {
422 fs_err(sdp, "can't acquire journal glock: %d\n", error);
423 goto fail_jindex;
424 }
425
Steven Whitehouse5c676f62006-02-27 17:23:27 -0500426 ip = sdp->sd_jdesc->jd_inode->u.generic_ip;
427 error = gfs2_glock_nq_init(ip->i_gl,
David Teiglandb3b94fa2006-01-16 16:50:04 +0000428 LM_ST_SHARED,
429 LM_FLAG_NOEXP | GL_EXACT,
430 &sdp->sd_jinode_gh);
431 if (error) {
432 fs_err(sdp, "can't acquire journal inode glock: %d\n",
433 error);
434 goto fail_journal_gh;
435 }
436
437 error = gfs2_jdesc_check(sdp->sd_jdesc);
438 if (error) {
439 fs_err(sdp, "my journal (%u) is bad: %d\n",
440 sdp->sd_jdesc->jd_jid, error);
441 goto fail_jinode_gh;
442 }
443 sdp->sd_log_blks_free = sdp->sd_jdesc->jd_blocks;
444 }
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
480 fail_recoverd:
481 kthread_stop(sdp->sd_recoverd_process);
482
483 fail_jinode_gh:
484 if (!sdp->sd_args.ar_spectator)
485 gfs2_glock_dq_uninit(&sdp->sd_jinode_gh);
486
487 fail_journal_gh:
488 if (!sdp->sd_args.ar_spectator)
489 gfs2_glock_dq_uninit(&sdp->sd_journal_gh);
490
491 fail_jindex:
492 gfs2_jindex_free(sdp);
493 if (jindex)
494 gfs2_glock_dq_uninit(&ji_gh);
495
496 fail:
Steven Whitehousef42faf42006-01-30 18:34:10 +0000497 iput(sdp->sd_jindex);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000498
499 return error;
500}
501
David Teiglandb3b94fa2006-01-16 16:50:04 +0000502
503static int init_inodes(struct gfs2_sbd *sdp, int undo)
504{
David Teiglandb3b94fa2006-01-16 16:50:04 +0000505 int error = 0;
Steven Whitehouse5c676f62006-02-27 17:23:27 -0500506 struct gfs2_inode *ip;
Steven Whitehousec9fd4302006-03-01 15:31:02 -0500507 struct inode *inode;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000508
509 if (undo)
Steven Whitehousef42faf42006-01-30 18:34:10 +0000510 goto fail_qinode;
511
Steven Whitehousec9fd4302006-03-01 15:31:02 -0500512 inode = gfs2_lookup_root(sdp, &sdp->sd_sb.sb_master_dir);
513 if (IS_ERR(inode)) {
514 error = PTR_ERR(inode);
Steven Whitehousef42faf42006-01-30 18:34:10 +0000515 fs_err(sdp, "can't read in master directory: %d\n", error);
516 goto fail;
517 }
Steven Whitehousec9fd4302006-03-01 15:31:02 -0500518 sdp->sd_master_dir = inode;
Steven Whitehousef42faf42006-01-30 18:34:10 +0000519
520 error = init_journal(sdp, undo);
521 if (error)
522 goto fail_master;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000523
524 /* Read in the master inode number inode */
Steven Whitehousec7526662006-03-20 12:30:04 -0500525 sdp->sd_inum_inode = gfs2_lookup_simple(sdp->sd_master_dir, "inum");
526 if (IS_ERR(sdp->sd_inum_inode)) {
527 error = PTR_ERR(sdp->sd_inum_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000528 fs_err(sdp, "can't read in inum inode: %d\n", error);
Steven Whitehousef42faf42006-01-30 18:34:10 +0000529 goto fail_journal;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000530 }
531
Steven Whitehousef42faf42006-01-30 18:34:10 +0000532
David Teiglandb3b94fa2006-01-16 16:50:04 +0000533 /* Read in the master statfs inode */
Steven Whitehousec7526662006-03-20 12:30:04 -0500534 sdp->sd_statfs_inode = gfs2_lookup_simple(sdp->sd_master_dir, "statfs");
535 if (IS_ERR(sdp->sd_statfs_inode)) {
536 error = PTR_ERR(sdp->sd_statfs_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000537 fs_err(sdp, "can't read in statfs inode: %d\n", error);
Steven Whitehousef42faf42006-01-30 18:34:10 +0000538 goto fail_inum;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000539 }
540
541 /* Read in the resource index inode */
Steven Whitehousec7526662006-03-20 12:30:04 -0500542 sdp->sd_rindex = gfs2_lookup_simple(sdp->sd_master_dir, "rindex");
543 if (IS_ERR(sdp->sd_rindex)) {
544 error = PTR_ERR(sdp->sd_rindex);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000545 fs_err(sdp, "can't get resource index inode: %d\n", error);
546 goto fail_statfs;
547 }
Steven Whitehouse5c676f62006-02-27 17:23:27 -0500548 ip = sdp->sd_rindex->u.generic_ip;
549 set_bit(GLF_STICKY, &ip->i_gl->gl_flags);
550 sdp->sd_rindex_vn = ip->i_gl->gl_vn - 1;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000551
552 /* Read in the quota inode */
Steven Whitehousec7526662006-03-20 12:30:04 -0500553 sdp->sd_quota_inode = gfs2_lookup_simple(sdp->sd_master_dir, "quota");
554 if (IS_ERR(sdp->sd_quota_inode)) {
555 error = PTR_ERR(sdp->sd_quota_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000556 fs_err(sdp, "can't get quota file inode: %d\n", error);
557 goto fail_rindex;
558 }
David Teiglandb3b94fa2006-01-16 16:50:04 +0000559 return 0;
560
Steven Whitehousef42faf42006-01-30 18:34:10 +0000561fail_qinode:
562 iput(sdp->sd_quota_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000563
Steven Whitehousef42faf42006-01-30 18:34:10 +0000564fail_rindex:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000565 gfs2_clear_rgrpd(sdp);
Steven Whitehousef42faf42006-01-30 18:34:10 +0000566 iput(sdp->sd_rindex);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000567
Steven Whitehousef42faf42006-01-30 18:34:10 +0000568fail_statfs:
569 iput(sdp->sd_statfs_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000570
Steven Whitehousef42faf42006-01-30 18:34:10 +0000571fail_inum:
572 iput(sdp->sd_inum_inode);
573fail_journal:
574 init_journal(sdp, UNDO);
575fail_master:
576 iput(sdp->sd_master_dir);
577fail:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000578 return error;
579}
580
581static int init_per_node(struct gfs2_sbd *sdp, int undo)
582{
Steven Whitehousef42faf42006-01-30 18:34:10 +0000583 struct inode *pn = NULL;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000584 char buf[30];
585 int error = 0;
Steven Whitehouse5c676f62006-02-27 17:23:27 -0500586 struct gfs2_inode *ip;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000587
588 if (sdp->sd_args.ar_spectator)
589 return 0;
590
591 if (undo)
592 goto fail_qc_gh;
593
Steven Whitehousec7526662006-03-20 12:30:04 -0500594 pn = gfs2_lookup_simple(sdp->sd_master_dir, "per_node");
595 if (IS_ERR(pn)) {
596 error = PTR_ERR(pn);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000597 fs_err(sdp, "can't find per_node directory: %d\n", error);
598 return error;
599 }
600
601 sprintf(buf, "inum_range%u", sdp->sd_jdesc->jd_jid);
Steven Whitehousec7526662006-03-20 12:30:04 -0500602 sdp->sd_ir_inode = gfs2_lookup_simple(pn, buf);
603 if (IS_ERR(sdp->sd_ir_inode)) {
604 error = PTR_ERR(sdp->sd_ir_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000605 fs_err(sdp, "can't find local \"ir\" file: %d\n", error);
606 goto fail;
607 }
608
609 sprintf(buf, "statfs_change%u", sdp->sd_jdesc->jd_jid);
Steven Whitehousec7526662006-03-20 12:30:04 -0500610 sdp->sd_sc_inode = gfs2_lookup_simple(pn, buf);
611 if (IS_ERR(sdp->sd_sc_inode)) {
612 error = PTR_ERR(sdp->sd_sc_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000613 fs_err(sdp, "can't find local \"sc\" file: %d\n", error);
614 goto fail_ir_i;
615 }
616
617 sprintf(buf, "unlinked_tag%u", sdp->sd_jdesc->jd_jid);
Steven Whitehousec7526662006-03-20 12:30:04 -0500618 sdp->sd_ut_inode = gfs2_lookup_simple(pn, buf);
619 if (IS_ERR(sdp->sd_ut_inode)) {
620 error = PTR_ERR(sdp->sd_ut_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000621 fs_err(sdp, "can't find local \"ut\" file: %d\n", error);
622 goto fail_sc_i;
623 }
624
625 sprintf(buf, "quota_change%u", sdp->sd_jdesc->jd_jid);
Steven Whitehousec7526662006-03-20 12:30:04 -0500626 sdp->sd_qc_inode = gfs2_lookup_simple(pn, buf);
627 if (IS_ERR(sdp->sd_qc_inode)) {
628 error = PTR_ERR(sdp->sd_qc_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000629 fs_err(sdp, "can't find local \"qc\" file: %d\n", error);
630 goto fail_ut_i;
631 }
632
Steven Whitehousef42faf42006-01-30 18:34:10 +0000633 iput(pn);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000634 pn = NULL;
635
Steven Whitehouse5c676f62006-02-27 17:23:27 -0500636 ip = sdp->sd_ir_inode->u.generic_ip;
637 error = gfs2_glock_nq_init(ip->i_gl,
Steven Whitehouse579b78a2006-04-26 14:58:26 -0400638 LM_ST_EXCLUSIVE, 0,
David Teiglandb3b94fa2006-01-16 16:50:04 +0000639 &sdp->sd_ir_gh);
640 if (error) {
641 fs_err(sdp, "can't lock local \"ir\" file: %d\n", error);
642 goto fail_qc_i;
643 }
644
Steven Whitehouse5c676f62006-02-27 17:23:27 -0500645 ip = sdp->sd_sc_inode->u.generic_ip;
646 error = gfs2_glock_nq_init(ip->i_gl,
Steven Whitehouse579b78a2006-04-26 14:58:26 -0400647 LM_ST_EXCLUSIVE, 0,
David Teiglandb3b94fa2006-01-16 16:50:04 +0000648 &sdp->sd_sc_gh);
649 if (error) {
650 fs_err(sdp, "can't lock local \"sc\" file: %d\n", error);
651 goto fail_ir_gh;
652 }
653
Steven Whitehouse5c676f62006-02-27 17:23:27 -0500654 ip = sdp->sd_ut_inode->u.generic_ip;
655 error = gfs2_glock_nq_init(ip->i_gl,
Steven Whitehouse579b78a2006-04-26 14:58:26 -0400656 LM_ST_EXCLUSIVE, 0,
David Teiglandb3b94fa2006-01-16 16:50:04 +0000657 &sdp->sd_ut_gh);
658 if (error) {
659 fs_err(sdp, "can't lock local \"ut\" file: %d\n", error);
660 goto fail_sc_gh;
661 }
662
Steven Whitehouse5c676f62006-02-27 17:23:27 -0500663 ip = sdp->sd_qc_inode->u.generic_ip;
664 error = gfs2_glock_nq_init(ip->i_gl,
Steven Whitehouse579b78a2006-04-26 14:58:26 -0400665 LM_ST_EXCLUSIVE, 0,
David Teiglandb3b94fa2006-01-16 16:50:04 +0000666 &sdp->sd_qc_gh);
667 if (error) {
668 fs_err(sdp, "can't lock local \"qc\" file: %d\n", error);
669 goto fail_ut_gh;
670 }
671
672 return 0;
673
674 fail_qc_gh:
675 gfs2_glock_dq_uninit(&sdp->sd_qc_gh);
676
677 fail_ut_gh:
678 gfs2_glock_dq_uninit(&sdp->sd_ut_gh);
679
680 fail_sc_gh:
681 gfs2_glock_dq_uninit(&sdp->sd_sc_gh);
682
683 fail_ir_gh:
684 gfs2_glock_dq_uninit(&sdp->sd_ir_gh);
685
686 fail_qc_i:
Steven Whitehousef42faf42006-01-30 18:34:10 +0000687 iput(sdp->sd_qc_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000688
689 fail_ut_i:
Steven Whitehousef42faf42006-01-30 18:34:10 +0000690 iput(sdp->sd_ut_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000691
692 fail_sc_i:
Steven Whitehousef42faf42006-01-30 18:34:10 +0000693 iput(sdp->sd_sc_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000694
695 fail_ir_i:
Steven Whitehousef42faf42006-01-30 18:34:10 +0000696 iput(sdp->sd_ir_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000697
698 fail:
699 if (pn)
Steven Whitehousef42faf42006-01-30 18:34:10 +0000700 iput(pn);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000701 return error;
702}
703
704static int init_threads(struct gfs2_sbd *sdp, int undo)
705{
706 struct task_struct *p;
707 int error = 0;
708
709 if (undo)
710 goto fail_inoded;
711
712 sdp->sd_log_flush_time = jiffies;
713 sdp->sd_jindex_refresh_time = jiffies;
714
715 p = kthread_run(gfs2_logd, sdp, "gfs2_logd");
716 error = IS_ERR(p);
717 if (error) {
718 fs_err(sdp, "can't start logd thread: %d\n", error);
719 return error;
720 }
721 sdp->sd_logd_process = p;
722
723 sdp->sd_statfs_sync_time = jiffies;
724 sdp->sd_quota_sync_time = jiffies;
725
726 p = kthread_run(gfs2_quotad, sdp, "gfs2_quotad");
727 error = IS_ERR(p);
728 if (error) {
729 fs_err(sdp, "can't start quotad thread: %d\n", error);
730 goto fail;
731 }
732 sdp->sd_quotad_process = p;
733
734 p = kthread_run(gfs2_inoded, sdp, "gfs2_inoded");
735 error = IS_ERR(p);
736 if (error) {
737 fs_err(sdp, "can't start inoded thread: %d\n", error);
738 goto fail_quotad;
739 }
740 sdp->sd_inoded_process = p;
741
742 return 0;
743
744 fail_inoded:
745 kthread_stop(sdp->sd_inoded_process);
746
747 fail_quotad:
748 kthread_stop(sdp->sd_quotad_process);
749
750 fail:
751 kthread_stop(sdp->sd_logd_process);
752
753 return error;
754}
755
756/**
757 * fill_super - Read in superblock
758 * @sb: The VFS superblock
759 * @data: Mount options
760 * @silent: Don't complain if it's not a GFS2 filesystem
761 *
762 * Returns: errno
763 */
764
765static int fill_super(struct super_block *sb, void *data, int silent)
766{
767 struct gfs2_sbd *sdp;
768 struct gfs2_holder mount_gh;
769 int error;
770
771 sdp = init_sbd(sb);
772 if (!sdp) {
Steven Whitehoused92a8d42006-02-27 10:57:14 -0500773 printk(KERN_WARNING "GFS2: can't alloc struct gfs2_sbd\n");
David Teiglandb3b94fa2006-01-16 16:50:04 +0000774 return -ENOMEM;
775 }
776
777 error = gfs2_mount_args(sdp, (char *)data, 0);
778 if (error) {
Steven Whitehoused92a8d42006-02-27 10:57:14 -0500779 printk(KERN_WARNING "GFS2: can't parse mount arguments\n");
David Teiglandb3b94fa2006-01-16 16:50:04 +0000780 goto fail;
781 }
782
Steven Whitehouse419c93e2006-03-02 16:33:41 -0500783 init_vfs(sb, SDF_NOATIME);
784
785 /* Set up the buffer cache and fill in some fake block size values
786 to allow us to read-in the on-disk superblock. */
787 sdp->sd_sb.sb_bsize = sb_min_blocksize(sb, GFS2_BASIC_BLOCK);
788 sdp->sd_sb.sb_bsize_shift = sb->s_blocksize_bits;
789 sdp->sd_fsb2bb_shift = sdp->sd_sb.sb_bsize_shift -
790 GFS2_BASIC_BLOCK_SHIFT;
791 sdp->sd_fsb2bb = 1 << sdp->sd_fsb2bb_shift;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000792
793 error = init_names(sdp, silent);
794 if (error)
795 goto fail;
796
797 error = gfs2_sys_fs_add(sdp);
798 if (error)
799 goto fail;
800
801 error = gfs2_lm_mount(sdp, silent);
802 if (error)
803 goto fail_sys;
804
805 error = init_locking(sdp, &mount_gh, DO);
806 if (error)
807 goto fail_lm;
808
809 error = init_sb(sdp, silent, DO);
810 if (error)
811 goto fail_locking;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000812
813 error = init_inodes(sdp, DO);
814 if (error)
Steven Whitehousef42faf42006-01-30 18:34:10 +0000815 goto fail_sb;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000816
817 error = init_per_node(sdp, DO);
818 if (error)
819 goto fail_inodes;
820
821 error = gfs2_statfs_init(sdp);
822 if (error) {
823 fs_err(sdp, "can't initialize statfs subsystem: %d\n", error);
824 goto fail_per_node;
825 }
826
827 error = init_threads(sdp, DO);
828 if (error)
829 goto fail_per_node;
830
831 if (!(sb->s_flags & MS_RDONLY)) {
832 error = gfs2_make_fs_rw(sdp);
833 if (error) {
834 fs_err(sdp, "can't make FS RW: %d\n", error);
835 goto fail_threads;
836 }
837 }
838
839 gfs2_glock_dq_uninit(&mount_gh);
840
841 return 0;
842
843 fail_threads:
844 init_threads(sdp, UNDO);
845
846 fail_per_node:
847 init_per_node(sdp, UNDO);
848
849 fail_inodes:
850 init_inodes(sdp, UNDO);
851
David Teiglandb3b94fa2006-01-16 16:50:04 +0000852 fail_sb:
853 init_sb(sdp, 0, UNDO);
854
855 fail_locking:
856 init_locking(sdp, &mount_gh, UNDO);
857
858 fail_lm:
859 gfs2_gl_hash_clear(sdp, WAIT);
860 gfs2_lm_unmount(sdp);
861 while (invalidate_inodes(sb))
862 yield();
863
864 fail_sys:
865 gfs2_sys_fs_del(sdp);
866
867 fail:
868 vfree(sdp);
Steven Whitehouse5c676f62006-02-27 17:23:27 -0500869 sb->s_fs_info = NULL;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000870
871 return error;
872}
873
874static struct super_block *gfs2_get_sb(struct file_system_type *fs_type,
875 int flags, const char *dev_name,
876 void *data)
877{
878 return get_sb_bdev(fs_type, flags, dev_name, data, fill_super);
879}
880
Steven Whitehouse419c93e2006-03-02 16:33:41 -0500881static void gfs2_kill_sb(struct super_block *sb)
882{
883 kill_block_super(sb);
884}
885
David Teiglandb3b94fa2006-01-16 16:50:04 +0000886struct file_system_type gfs2_fs_type = {
887 .name = "gfs2",
888 .fs_flags = FS_REQUIRES_DEV,
889 .get_sb = gfs2_get_sb,
Steven Whitehouse419c93e2006-03-02 16:33:41 -0500890 .kill_sb = gfs2_kill_sb,
891 .owner = THIS_MODULE,
892};
893
894struct file_system_type gfs2meta_fs_type = {
895 .name = "gfs2meta",
896 .fs_flags = FS_REQUIRES_DEV,
897 .get_sb = gfs2_get_sb,
898 .kill_sb = gfs2_kill_sb,
David Teiglandb3b94fa2006-01-16 16:50:04 +0000899 .owner = THIS_MODULE,
900};
901