blob: ae35f097aa6a303bf0ebbd40078bb968be940b3c [file] [log] [blame]
David Teiglandb3b94fa2006-01-16 16:50:04 +00001/*
2 * Copyright (C) Sistina Software, Inc. 1997-2003 All rights reserved.
Bob Petersoncf45b752008-01-31 10:31:39 -06003 * Copyright (C) 2004-2008 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"
David Teiglandb3b94fa2006-01-16 16:50:04 +000029#include "mount.h"
David Teiglandb3b94fa2006-01-16 16:50:04 +000030#include "ops_fstype.h"
Denis Chengca5a9392007-07-31 18:31:12 +080031#include "ops_dentry.h"
David Teiglandb3b94fa2006-01-16 16:50:04 +000032#include "ops_super.h"
33#include "recovery.h"
34#include "rgrp.h"
35#include "super.h"
David Teiglandb3b94fa2006-01-16 16:50:04 +000036#include "sys.h"
Steven Whitehouse5c676f62006-02-27 17:23:27 -050037#include "util.h"
Steven Whitehousebb3b0e32007-08-16 16:03:57 +010038#include "log.h"
David Teiglandb3b94fa2006-01-16 16:50:04 +000039
40#define DO 0
41#define UNDO 1
42
Steven Whitehouse9b8df982008-08-08 13:45:13 +010043static const u32 gfs2_old_fs_formats[] = {
44 0
45};
46
47static const u32 gfs2_old_multihost_formats[] = {
48 0
49};
50
51/**
52 * gfs2_tune_init - Fill a gfs2_tune structure with default values
53 * @gt: tune
54 *
55 */
56
57static void gfs2_tune_init(struct gfs2_tune *gt)
58{
59 spin_lock_init(&gt->gt_spin);
60
61 gt->gt_demote_secs = 300;
62 gt->gt_incore_log_blocks = 1024;
63 gt->gt_log_flush_secs = 60;
64 gt->gt_recoverd_secs = 60;
65 gt->gt_logd_secs = 1;
66 gt->gt_quotad_secs = 5;
67 gt->gt_quota_simul_sync = 64;
68 gt->gt_quota_warn_period = 10;
69 gt->gt_quota_scale_num = 1;
70 gt->gt_quota_scale_den = 1;
71 gt->gt_quota_cache_secs = 300;
72 gt->gt_quota_quantum = 60;
73 gt->gt_atime_quantum = 3600;
74 gt->gt_new_files_jdata = 0;
75 gt->gt_max_readahead = 1 << 18;
76 gt->gt_stall_secs = 600;
77 gt->gt_complain_secs = 10;
78 gt->gt_statfs_quantum = 30;
79 gt->gt_statfs_slow = 0;
80}
81
David Teiglandb3b94fa2006-01-16 16:50:04 +000082static struct gfs2_sbd *init_sbd(struct super_block *sb)
83{
84 struct gfs2_sbd *sdp;
David Teiglandb3b94fa2006-01-16 16:50:04 +000085
Steven Whitehouse85d1da62006-09-07 14:40:21 -040086 sdp = kzalloc(sizeof(struct gfs2_sbd), GFP_KERNEL);
David Teiglandb3b94fa2006-01-16 16:50:04 +000087 if (!sdp)
88 return NULL;
89
Steven Whitehouse5c676f62006-02-27 17:23:27 -050090 sb->s_fs_info = sdp;
David Teiglandb3b94fa2006-01-16 16:50:04 +000091 sdp->sd_vfs = sb;
92
93 gfs2_tune_init(&sdp->sd_tune);
94
David Teiglandb3b94fa2006-01-16 16:50:04 +000095 INIT_LIST_HEAD(&sdp->sd_reclaim_list);
96 spin_lock_init(&sdp->sd_reclaim_lock);
97 init_waitqueue_head(&sdp->sd_reclaim_wq);
David Teiglandb3b94fa2006-01-16 16:50:04 +000098
Steven Whitehousef55ab262006-02-21 12:51:39 +000099 mutex_init(&sdp->sd_inum_mutex);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000100 spin_lock_init(&sdp->sd_statfs_spin);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000101
102 spin_lock_init(&sdp->sd_rindex_spin);
Steven Whitehousef55ab262006-02-21 12:51:39 +0000103 mutex_init(&sdp->sd_rindex_mutex);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000104 INIT_LIST_HEAD(&sdp->sd_rindex_list);
105 INIT_LIST_HEAD(&sdp->sd_rindex_mru_list);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000106
107 INIT_LIST_HEAD(&sdp->sd_jindex_list);
108 spin_lock_init(&sdp->sd_jindex_spin);
Steven Whitehousef55ab262006-02-21 12:51:39 +0000109 mutex_init(&sdp->sd_jindex_mutex);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000110
David Teiglandb3b94fa2006-01-16 16:50:04 +0000111 INIT_LIST_HEAD(&sdp->sd_quota_list);
112 spin_lock_init(&sdp->sd_quota_spin);
Steven Whitehousef55ab262006-02-21 12:51:39 +0000113 mutex_init(&sdp->sd_quota_mutex);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000114
115 spin_lock_init(&sdp->sd_log_lock);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000116
David Teiglandb3b94fa2006-01-16 16:50:04 +0000117 INIT_LIST_HEAD(&sdp->sd_log_le_buf);
118 INIT_LIST_HEAD(&sdp->sd_log_le_revoke);
119 INIT_LIST_HEAD(&sdp->sd_log_le_rg);
120 INIT_LIST_HEAD(&sdp->sd_log_le_databuf);
Steven Whitehoused7b616e2007-09-02 10:48:13 +0100121 INIT_LIST_HEAD(&sdp->sd_log_le_ordered);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000122
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500123 mutex_init(&sdp->sd_log_reserve_mutex);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000124 INIT_LIST_HEAD(&sdp->sd_ail1_list);
125 INIT_LIST_HEAD(&sdp->sd_ail2_list);
126
Steven Whitehouse484adff2006-03-29 09:12:12 -0500127 init_rwsem(&sdp->sd_log_flush_lock);
Steven Whitehouse16615be2007-09-17 10:59:52 +0100128 atomic_set(&sdp->sd_log_in_flight, 0);
129 init_waitqueue_head(&sdp->sd_log_flush_wait);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000130
131 INIT_LIST_HEAD(&sdp->sd_revoke_list);
132
Steven Whitehousef55ab262006-02-21 12:51:39 +0000133 mutex_init(&sdp->sd_freeze_lock);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000134
135 return sdp;
136}
137
Steven Whitehouse419c93e2006-03-02 16:33:41 -0500138static void init_vfs(struct super_block *sb, unsigned noatime)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000139{
Steven Whitehouse419c93e2006-03-02 16:33:41 -0500140 struct gfs2_sbd *sdp = sb->s_fs_info;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000141
142 sb->s_magic = GFS2_MAGIC;
143 sb->s_op = &gfs2_super_ops;
144 sb->s_export_op = &gfs2_export_ops;
Steven Whitehouse4bd91ba2007-06-05 09:39:18 +0100145 sb->s_time_gran = 1;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000146 sb->s_maxbytes = MAX_LFS_FILESIZE;
147
148 if (sb->s_flags & (MS_NOATIME | MS_NODIRATIME))
Steven Whitehouse419c93e2006-03-02 16:33:41 -0500149 set_bit(noatime, &sdp->sd_flags);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000150
151 /* Don't let the VFS update atimes. GFS2 handles this itself. */
152 sb->s_flags |= MS_NOATIME | MS_NODIRATIME;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000153}
154
Steven Whitehouse9b8df982008-08-08 13:45:13 +0100155/**
156 * gfs2_check_sb - Check superblock
157 * @sdp: the filesystem
158 * @sb: The superblock
159 * @silent: Don't print a message if the check fails
160 *
161 * Checks the version code of the FS is one that we understand how to
162 * read and that the sizes of the various on-disk structures have not
163 * changed.
164 */
165
166static int gfs2_check_sb(struct gfs2_sbd *sdp, struct gfs2_sb_host *sb, int silent)
167{
168 unsigned int x;
169
170 if (sb->sb_magic != GFS2_MAGIC ||
171 sb->sb_type != GFS2_METATYPE_SB) {
172 if (!silent)
173 printk(KERN_WARNING "GFS2: not a GFS2 filesystem\n");
174 return -EINVAL;
175 }
176
177 /* If format numbers match exactly, we're done. */
178
179 if (sb->sb_fs_format == GFS2_FORMAT_FS &&
180 sb->sb_multihost_format == GFS2_FORMAT_MULTI)
181 return 0;
182
183 if (sb->sb_fs_format != GFS2_FORMAT_FS) {
184 for (x = 0; gfs2_old_fs_formats[x]; x++)
185 if (gfs2_old_fs_formats[x] == sb->sb_fs_format)
186 break;
187
188 if (!gfs2_old_fs_formats[x]) {
189 printk(KERN_WARNING
190 "GFS2: code version (%u, %u) is incompatible "
191 "with ondisk format (%u, %u)\n",
192 GFS2_FORMAT_FS, GFS2_FORMAT_MULTI,
193 sb->sb_fs_format, sb->sb_multihost_format);
194 printk(KERN_WARNING
195 "GFS2: I don't know how to upgrade this FS\n");
196 return -EINVAL;
197 }
198 }
199
200 if (sb->sb_multihost_format != GFS2_FORMAT_MULTI) {
201 for (x = 0; gfs2_old_multihost_formats[x]; x++)
202 if (gfs2_old_multihost_formats[x] ==
203 sb->sb_multihost_format)
204 break;
205
206 if (!gfs2_old_multihost_formats[x]) {
207 printk(KERN_WARNING
208 "GFS2: code version (%u, %u) is incompatible "
209 "with ondisk format (%u, %u)\n",
210 GFS2_FORMAT_FS, GFS2_FORMAT_MULTI,
211 sb->sb_fs_format, sb->sb_multihost_format);
212 printk(KERN_WARNING
213 "GFS2: I don't know how to upgrade this FS\n");
214 return -EINVAL;
215 }
216 }
217
218 if (!sdp->sd_args.ar_upgrade) {
219 printk(KERN_WARNING
220 "GFS2: code version (%u, %u) is incompatible "
221 "with ondisk format (%u, %u)\n",
222 GFS2_FORMAT_FS, GFS2_FORMAT_MULTI,
223 sb->sb_fs_format, sb->sb_multihost_format);
224 printk(KERN_INFO
225 "GFS2: Use the \"upgrade\" mount option to upgrade "
226 "the FS\n");
227 printk(KERN_INFO "GFS2: See the manual for more details\n");
228 return -EINVAL;
229 }
230
231 return 0;
232}
233
234static void end_bio_io_page(struct bio *bio, int error)
235{
236 struct page *page = bio->bi_private;
237
238 if (!error)
239 SetPageUptodate(page);
240 else
241 printk(KERN_WARNING "gfs2: error %d reading superblock\n", error);
242 unlock_page(page);
243}
244
245static void gfs2_sb_in(struct gfs2_sb_host *sb, const void *buf)
246{
247 const struct gfs2_sb *str = buf;
248
249 sb->sb_magic = be32_to_cpu(str->sb_header.mh_magic);
250 sb->sb_type = be32_to_cpu(str->sb_header.mh_type);
251 sb->sb_format = be32_to_cpu(str->sb_header.mh_format);
252 sb->sb_fs_format = be32_to_cpu(str->sb_fs_format);
253 sb->sb_multihost_format = be32_to_cpu(str->sb_multihost_format);
254 sb->sb_bsize = be32_to_cpu(str->sb_bsize);
255 sb->sb_bsize_shift = be32_to_cpu(str->sb_bsize_shift);
256 sb->sb_master_dir.no_addr = be64_to_cpu(str->sb_master_dir.no_addr);
257 sb->sb_master_dir.no_formal_ino = be64_to_cpu(str->sb_master_dir.no_formal_ino);
258 sb->sb_root_dir.no_addr = be64_to_cpu(str->sb_root_dir.no_addr);
259 sb->sb_root_dir.no_formal_ino = be64_to_cpu(str->sb_root_dir.no_formal_ino);
260
261 memcpy(sb->sb_lockproto, str->sb_lockproto, GFS2_LOCKNAME_LEN);
262 memcpy(sb->sb_locktable, str->sb_locktable, GFS2_LOCKNAME_LEN);
263}
264
265/**
266 * gfs2_read_super - Read the gfs2 super block from disk
267 * @sdp: The GFS2 super block
268 * @sector: The location of the super block
269 * @error: The error code to return
270 *
271 * This uses the bio functions to read the super block from disk
272 * because we want to be 100% sure that we never read cached data.
273 * A super block is read twice only during each GFS2 mount and is
274 * never written to by the filesystem. The first time its read no
275 * locks are held, and the only details which are looked at are those
276 * relating to the locking protocol. Once locking is up and working,
277 * the sb is read again under the lock to establish the location of
278 * the master directory (contains pointers to journals etc) and the
279 * root directory.
280 *
281 * Returns: 0 on success or error
282 */
283
284static int gfs2_read_super(struct gfs2_sbd *sdp, sector_t sector)
285{
286 struct super_block *sb = sdp->sd_vfs;
287 struct gfs2_sb *p;
288 struct page *page;
289 struct bio *bio;
290
291 page = alloc_page(GFP_NOFS);
292 if (unlikely(!page))
293 return -ENOBUFS;
294
295 ClearPageUptodate(page);
296 ClearPageDirty(page);
297 lock_page(page);
298
299 bio = bio_alloc(GFP_NOFS, 1);
300 if (unlikely(!bio)) {
301 __free_page(page);
302 return -ENOBUFS;
303 }
304
305 bio->bi_sector = sector * (sb->s_blocksize >> 9);
306 bio->bi_bdev = sb->s_bdev;
307 bio_add_page(bio, page, PAGE_SIZE, 0);
308
309 bio->bi_end_io = end_bio_io_page;
310 bio->bi_private = page;
311 submit_bio(READ_SYNC | (1 << BIO_RW_META), bio);
312 wait_on_page_locked(page);
313 bio_put(bio);
314 if (!PageUptodate(page)) {
315 __free_page(page);
316 return -EIO;
317 }
318 p = kmap(page);
319 gfs2_sb_in(&sdp->sd_sb, p);
320 kunmap(page);
321 __free_page(page);
322 return 0;
323}
324/**
325 * gfs2_read_sb - Read super block
326 * @sdp: The GFS2 superblock
327 * @gl: the glock for the superblock (assumed to be held)
328 * @silent: Don't print message if mount fails
329 *
330 */
331
332static int gfs2_read_sb(struct gfs2_sbd *sdp, struct gfs2_glock *gl, int silent)
333{
334 u32 hash_blocks, ind_blocks, leaf_blocks;
335 u32 tmp_blocks;
336 unsigned int x;
337 int error;
338
339 error = gfs2_read_super(sdp, GFS2_SB_ADDR >> sdp->sd_fsb2bb_shift);
340 if (error) {
341 if (!silent)
342 fs_err(sdp, "can't read superblock\n");
343 return error;
344 }
345
346 error = gfs2_check_sb(sdp, &sdp->sd_sb, silent);
347 if (error)
348 return error;
349
350 sdp->sd_fsb2bb_shift = sdp->sd_sb.sb_bsize_shift -
351 GFS2_BASIC_BLOCK_SHIFT;
352 sdp->sd_fsb2bb = 1 << sdp->sd_fsb2bb_shift;
353 sdp->sd_diptrs = (sdp->sd_sb.sb_bsize -
354 sizeof(struct gfs2_dinode)) / sizeof(u64);
355 sdp->sd_inptrs = (sdp->sd_sb.sb_bsize -
356 sizeof(struct gfs2_meta_header)) / sizeof(u64);
357 sdp->sd_jbsize = sdp->sd_sb.sb_bsize - sizeof(struct gfs2_meta_header);
358 sdp->sd_hash_bsize = sdp->sd_sb.sb_bsize / 2;
359 sdp->sd_hash_bsize_shift = sdp->sd_sb.sb_bsize_shift - 1;
360 sdp->sd_hash_ptrs = sdp->sd_hash_bsize / sizeof(u64);
361 sdp->sd_qc_per_block = (sdp->sd_sb.sb_bsize -
362 sizeof(struct gfs2_meta_header)) /
363 sizeof(struct gfs2_quota_change);
364
365 /* Compute maximum reservation required to add a entry to a directory */
366
367 hash_blocks = DIV_ROUND_UP(sizeof(u64) * (1 << GFS2_DIR_MAX_DEPTH),
368 sdp->sd_jbsize);
369
370 ind_blocks = 0;
371 for (tmp_blocks = hash_blocks; tmp_blocks > sdp->sd_diptrs;) {
372 tmp_blocks = DIV_ROUND_UP(tmp_blocks, sdp->sd_inptrs);
373 ind_blocks += tmp_blocks;
374 }
375
376 leaf_blocks = 2 + GFS2_DIR_MAX_DEPTH;
377
378 sdp->sd_max_dirres = hash_blocks + ind_blocks + leaf_blocks;
379
380 sdp->sd_heightsize[0] = sdp->sd_sb.sb_bsize -
381 sizeof(struct gfs2_dinode);
382 sdp->sd_heightsize[1] = sdp->sd_sb.sb_bsize * sdp->sd_diptrs;
383 for (x = 2;; x++) {
384 u64 space, d;
385 u32 m;
386
387 space = sdp->sd_heightsize[x - 1] * sdp->sd_inptrs;
388 d = space;
389 m = do_div(d, sdp->sd_inptrs);
390
391 if (d != sdp->sd_heightsize[x - 1] || m)
392 break;
393 sdp->sd_heightsize[x] = space;
394 }
395 sdp->sd_max_height = x;
396 sdp->sd_heightsize[x] = ~0;
397 gfs2_assert(sdp, sdp->sd_max_height <= GFS2_MAX_META_HEIGHT);
398
399 sdp->sd_jheightsize[0] = sdp->sd_sb.sb_bsize -
400 sizeof(struct gfs2_dinode);
401 sdp->sd_jheightsize[1] = sdp->sd_jbsize * sdp->sd_diptrs;
402 for (x = 2;; x++) {
403 u64 space, d;
404 u32 m;
405
406 space = sdp->sd_jheightsize[x - 1] * sdp->sd_inptrs;
407 d = space;
408 m = do_div(d, sdp->sd_inptrs);
409
410 if (d != sdp->sd_jheightsize[x - 1] || m)
411 break;
412 sdp->sd_jheightsize[x] = space;
413 }
414 sdp->sd_max_jheight = x;
415 sdp->sd_jheightsize[x] = ~0;
416 gfs2_assert(sdp, sdp->sd_max_jheight <= GFS2_MAX_META_HEIGHT);
417
418 return 0;
419}
420
David Teiglandb3b94fa2006-01-16 16:50:04 +0000421static int init_names(struct gfs2_sbd *sdp, int silent)
422{
David Teiglandb3b94fa2006-01-16 16:50:04 +0000423 char *proto, *table;
424 int error = 0;
425
426 proto = sdp->sd_args.ar_lockproto;
427 table = sdp->sd_args.ar_locktable;
428
429 /* Try to autodetect */
430
431 if (!proto[0] || !table[0]) {
Steven Whitehousebb8d8a62007-06-01 14:11:58 +0100432 error = gfs2_read_super(sdp, GFS2_SB_ADDR >> sdp->sd_fsb2bb_shift);
433 if (error)
434 return error;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000435
Steven Whitehouse3cf1e7b2006-10-02 11:49:41 -0400436 error = gfs2_check_sb(sdp, &sdp->sd_sb, silent);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000437 if (error)
438 goto out;
439
440 if (!proto[0])
Steven Whitehouse3cf1e7b2006-10-02 11:49:41 -0400441 proto = sdp->sd_sb.sb_lockproto;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000442 if (!table[0])
Steven Whitehouse3cf1e7b2006-10-02 11:49:41 -0400443 table = sdp->sd_sb.sb_locktable;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000444 }
445
446 if (!table[0])
447 table = sdp->sd_vfs->s_id;
448
Jean Delvare00377d82008-05-09 17:59:51 +0200449 strlcpy(sdp->sd_proto_name, proto, GFS2_FSNAME_LEN);
450 strlcpy(sdp->sd_table_name, table, GFS2_FSNAME_LEN);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000451
Denis Cheng5d35e312007-08-13 11:01:58 +0800452 table = sdp->sd_table_name;
453 while ((table = strchr(table, '/')))
Robert Petersonb35997d2007-06-07 09:10:01 -0500454 *table = '_';
455
Steven Whitehousea91ea692006-09-04 12:04:26 -0400456out:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000457 return error;
458}
459
460static int init_locking(struct gfs2_sbd *sdp, struct gfs2_holder *mount_gh,
461 int undo)
462{
463 struct task_struct *p;
464 int error = 0;
465
466 if (undo)
467 goto fail_trans;
468
David Teiglandb3b94fa2006-01-16 16:50:04 +0000469 for (sdp->sd_glockd_num = 0;
470 sdp->sd_glockd_num < sdp->sd_args.ar_num_glockd;
471 sdp->sd_glockd_num++) {
472 p = kthread_run(gfs2_glockd, sdp, "gfs2_glockd");
473 error = IS_ERR(p);
474 if (error) {
475 fs_err(sdp, "can't start glockd thread: %d\n", error);
476 goto fail;
477 }
478 sdp->sd_glockd_process[sdp->sd_glockd_num] = p;
479 }
480
481 error = gfs2_glock_nq_num(sdp,
482 GFS2_MOUNT_LOCK, &gfs2_nondisk_glops,
483 LM_ST_EXCLUSIVE, LM_FLAG_NOEXP | GL_NOCACHE,
484 mount_gh);
485 if (error) {
486 fs_err(sdp, "can't acquire mount glock: %d\n", error);
487 goto fail;
488 }
489
490 error = gfs2_glock_nq_num(sdp,
491 GFS2_LIVE_LOCK, &gfs2_nondisk_glops,
492 LM_ST_SHARED,
Steven Whitehouse579b78a2006-04-26 14:58:26 -0400493 LM_FLAG_NOEXP | GL_EXACT,
David Teiglandb3b94fa2006-01-16 16:50:04 +0000494 &sdp->sd_live_gh);
495 if (error) {
496 fs_err(sdp, "can't acquire live glock: %d\n", error);
497 goto fail_mount;
498 }
499
500 error = gfs2_glock_get(sdp, GFS2_RENAME_LOCK, &gfs2_nondisk_glops,
501 CREATE, &sdp->sd_rename_gl);
502 if (error) {
503 fs_err(sdp, "can't create rename glock: %d\n", error);
504 goto fail_live;
505 }
506
507 error = gfs2_glock_get(sdp, GFS2_TRANS_LOCK, &gfs2_trans_glops,
508 CREATE, &sdp->sd_trans_gl);
509 if (error) {
510 fs_err(sdp, "can't create transaction glock: %d\n", error);
511 goto fail_rename;
512 }
513 set_bit(GLF_STICKY, &sdp->sd_trans_gl->gl_flags);
514
515 return 0;
516
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400517fail_trans:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000518 gfs2_glock_put(sdp->sd_trans_gl);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400519fail_rename:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000520 gfs2_glock_put(sdp->sd_rename_gl);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400521fail_live:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000522 gfs2_glock_dq_uninit(&sdp->sd_live_gh);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400523fail_mount:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000524 gfs2_glock_dq_uninit(mount_gh);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400525fail:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000526 while (sdp->sd_glockd_num--)
527 kthread_stop(sdp->sd_glockd_process[sdp->sd_glockd_num]);
528
David Teiglandb3b94fa2006-01-16 16:50:04 +0000529 return error;
530}
531
Steven Whitehouse9b8df982008-08-08 13:45:13 +0100532static int gfs2_lookup_root(struct super_block *sb, struct dentry **dptr,
533 u64 no_addr, const char *name)
Steven Whitehousef42faf42006-01-30 18:34:10 +0000534{
Steven Whitehouse9b8df982008-08-08 13:45:13 +0100535 struct gfs2_sbd *sdp = sb->s_fs_info;
536 struct dentry *dentry;
537 struct inode *inode;
538
539 inode = gfs2_inode_lookup(sb, DT_DIR, no_addr, 0, 0);
540 if (IS_ERR(inode)) {
541 fs_err(sdp, "can't read in %s inode: %ld\n", name, PTR_ERR(inode));
542 return PTR_ERR(inode);
543 }
544 dentry = d_alloc_root(inode);
545 if (!dentry) {
546 fs_err(sdp, "can't alloc %s dentry\n", name);
547 iput(inode);
548 return -ENOMEM;
549 }
550 dentry->d_op = &gfs2_dops;
551 *dptr = dentry;
552 return 0;
Steven Whitehousef42faf42006-01-30 18:34:10 +0000553}
554
Steven Whitehouse9b8df982008-08-08 13:45:13 +0100555static int init_sb(struct gfs2_sbd *sdp, int silent)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000556{
557 struct super_block *sb = sdp->sd_vfs;
558 struct gfs2_holder sb_gh;
Steven Whitehousedbb7cae2007-05-15 15:37:50 +0100559 u64 no_addr;
Steven Whitehouse9b8df982008-08-08 13:45:13 +0100560 int ret;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000561
Steven Whitehouse9b8df982008-08-08 13:45:13 +0100562 ret = gfs2_glock_nq_num(sdp, GFS2_SB_LOCK, &gfs2_meta_glops,
563 LM_ST_SHARED, 0, &sb_gh);
564 if (ret) {
565 fs_err(sdp, "can't acquire superblock glock: %d\n", ret);
566 return ret;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000567 }
Steven Whitehouse907b9bc2006-09-25 09:26:04 -0400568
Steven Whitehouse9b8df982008-08-08 13:45:13 +0100569 ret = gfs2_read_sb(sdp, sb_gh.gh_gl, silent);
570 if (ret) {
571 fs_err(sdp, "can't read superblock: %d\n", ret);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000572 goto out;
573 }
574
575 /* Set up the buffer cache and SB for real */
David Teiglandb3b94fa2006-01-16 16:50:04 +0000576 if (sdp->sd_sb.sb_bsize < bdev_hardsect_size(sb->s_bdev)) {
Steven Whitehouse9b8df982008-08-08 13:45:13 +0100577 ret = -EINVAL;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000578 fs_err(sdp, "FS block size (%u) is too small for device "
579 "block size (%u)\n",
580 sdp->sd_sb.sb_bsize, bdev_hardsect_size(sb->s_bdev));
581 goto out;
582 }
583 if (sdp->sd_sb.sb_bsize > PAGE_SIZE) {
Steven Whitehouse9b8df982008-08-08 13:45:13 +0100584 ret = -EINVAL;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000585 fs_err(sdp, "FS block size (%u) is too big for machine "
586 "page size (%u)\n",
587 sdp->sd_sb.sb_bsize, (unsigned int)PAGE_SIZE);
588 goto out;
589 }
David Teiglandb3b94fa2006-01-16 16:50:04 +0000590 sb_set_blocksize(sb, sdp->sd_sb.sb_bsize);
591
Steven Whitehousef42faf42006-01-30 18:34:10 +0000592 /* Get the root inode */
Steven Whitehousedbb7cae2007-05-15 15:37:50 +0100593 no_addr = sdp->sd_sb.sb_root_dir.no_addr;
Steven Whitehouse9b8df982008-08-08 13:45:13 +0100594 ret = gfs2_lookup_root(sb, &sdp->sd_root_dir, no_addr, "root");
595 if (ret)
596 goto out;
597
598 /* Get the master inode */
599 no_addr = sdp->sd_sb.sb_master_dir.no_addr;
600 ret = gfs2_lookup_root(sb, &sdp->sd_master_dir, no_addr, "master");
601 if (ret) {
602 dput(sdp->sd_root_dir);
Steven Whitehousef42faf42006-01-30 18:34:10 +0000603 goto out;
604 }
Steven Whitehouse9b8df982008-08-08 13:45:13 +0100605 sb->s_root = dget(sdp->sd_args.ar_meta ? sdp->sd_master_dir : sdp->sd_root_dir);
Steven Whitehousef42faf42006-01-30 18:34:10 +0000606out:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000607 gfs2_glock_dq_uninit(&sb_gh);
Steven Whitehouse9b8df982008-08-08 13:45:13 +0100608 return ret;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000609}
610
Bob Petersonda6dd402007-12-11 18:49:21 -0600611/**
612 * map_journal_extents - create a reusable "extent" mapping from all logical
613 * blocks to all physical blocks for the given journal. This will save
614 * us time when writing journal blocks. Most journals will have only one
615 * extent that maps all their logical blocks. That's because gfs2.mkfs
616 * arranges the journal blocks sequentially to maximize performance.
617 * So the extent would map the first block for the entire file length.
618 * However, gfs2_jadd can happen while file activity is happening, so
619 * those journals may not be sequential. Less likely is the case where
620 * the users created their own journals by mounting the metafs and
621 * laying it out. But it's still possible. These journals might have
622 * several extents.
623 *
624 * TODO: This should be done in bigger chunks rather than one block at a time,
625 * but since it's only done at mount time, I'm not worried about the
626 * time it takes.
627 */
628static int map_journal_extents(struct gfs2_sbd *sdp)
629{
630 struct gfs2_jdesc *jd = sdp->sd_jdesc;
631 unsigned int lb;
632 u64 db, prev_db; /* logical block, disk block, prev disk block */
633 struct gfs2_inode *ip = GFS2_I(jd->jd_inode);
634 struct gfs2_journal_extent *jext = NULL;
635 struct buffer_head bh;
636 int rc = 0;
637
Bob Petersonda6dd402007-12-11 18:49:21 -0600638 prev_db = 0;
639
Bob Petersonfa3742f2007-12-12 17:52:13 -0600640 for (lb = 0; lb < ip->i_di.di_size >> sdp->sd_sb.sb_bsize_shift; lb++) {
Bob Petersonda6dd402007-12-11 18:49:21 -0600641 bh.b_state = 0;
642 bh.b_blocknr = 0;
643 bh.b_size = 1 << ip->i_inode.i_blkbits;
644 rc = gfs2_block_map(jd->jd_inode, lb, &bh, 0);
645 db = bh.b_blocknr;
646 if (rc || !db) {
647 printk(KERN_INFO "GFS2 journal mapping error %d: lb="
648 "%u db=%llu\n", rc, lb, (unsigned long long)db);
649 break;
650 }
651 if (!prev_db || db != prev_db + 1) {
652 jext = kzalloc(sizeof(struct gfs2_journal_extent),
653 GFP_KERNEL);
654 if (!jext) {
655 printk(KERN_INFO "GFS2 error: out of memory "
656 "mapping journal extents.\n");
657 rc = -ENOMEM;
658 break;
659 }
660 jext->dblock = db;
661 jext->lblock = lb;
662 jext->blocks = 1;
663 list_add_tail(&jext->extent_list, &jd->extent_list);
664 } else {
665 jext->blocks++;
666 }
667 prev_db = db;
668 }
669 return rc;
670}
671
Steven Whitehouseda755fd2008-01-30 15:34:04 +0000672static void gfs2_lm_others_may_mount(struct gfs2_sbd *sdp)
673{
Steven Whitehouse048bca22008-05-23 14:46:04 +0100674 if (!sdp->sd_lockstruct.ls_ops->lm_others_may_mount)
675 return;
Steven Whitehouseda755fd2008-01-30 15:34:04 +0000676 if (likely(!test_bit(SDF_SHUTDOWN, &sdp->sd_flags)))
677 sdp->sd_lockstruct.ls_ops->lm_others_may_mount(
678 sdp->sd_lockstruct.ls_lockspace);
679}
680
David Teiglandb3b94fa2006-01-16 16:50:04 +0000681static int init_journal(struct gfs2_sbd *sdp, int undo)
682{
Steven Whitehouse9b8df982008-08-08 13:45:13 +0100683 struct inode *master = sdp->sd_master_dir->d_inode;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000684 struct gfs2_holder ji_gh;
685 struct task_struct *p;
Steven Whitehouse5c676f62006-02-27 17:23:27 -0500686 struct gfs2_inode *ip;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000687 int jindex = 1;
688 int error = 0;
689
690 if (undo) {
691 jindex = 0;
692 goto fail_recoverd;
693 }
694
Steven Whitehouse9b8df982008-08-08 13:45:13 +0100695 sdp->sd_jindex = gfs2_lookup_simple(master, "jindex");
Steven Whitehousec7526662006-03-20 12:30:04 -0500696 if (IS_ERR(sdp->sd_jindex)) {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000697 fs_err(sdp, "can't lookup journal index: %d\n", error);
Steven Whitehousec7526662006-03-20 12:30:04 -0500698 return PTR_ERR(sdp->sd_jindex);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000699 }
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400700 ip = GFS2_I(sdp->sd_jindex);
Steven Whitehouse5c676f62006-02-27 17:23:27 -0500701 set_bit(GLF_STICKY, &ip->i_gl->gl_flags);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000702
703 /* Load in the journal index special file */
704
705 error = gfs2_jindex_hold(sdp, &ji_gh);
706 if (error) {
707 fs_err(sdp, "can't read journal index: %d\n", error);
708 goto fail;
709 }
710
711 error = -EINVAL;
712 if (!gfs2_jindex_size(sdp)) {
713 fs_err(sdp, "no journals!\n");
Steven Whitehouse907b9bc2006-09-25 09:26:04 -0400714 goto fail_jindex;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000715 }
716
717 if (sdp->sd_args.ar_spectator) {
718 sdp->sd_jdesc = gfs2_jdesc_find(sdp, 0);
Steven Whitehousefd041f02007-11-08 14:55:03 +0000719 atomic_set(&sdp->sd_log_blks_free, sdp->sd_jdesc->jd_blocks);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000720 } else {
721 if (sdp->sd_lockstruct.ls_jid >= gfs2_jindex_size(sdp)) {
722 fs_err(sdp, "can't mount journal #%u\n",
723 sdp->sd_lockstruct.ls_jid);
724 fs_err(sdp, "there are only %u journals (0 - %u)\n",
725 gfs2_jindex_size(sdp),
726 gfs2_jindex_size(sdp) - 1);
727 goto fail_jindex;
728 }
729 sdp->sd_jdesc = gfs2_jdesc_find(sdp, sdp->sd_lockstruct.ls_jid);
730
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400731 error = gfs2_glock_nq_num(sdp, sdp->sd_lockstruct.ls_jid,
David Teiglandb3b94fa2006-01-16 16:50:04 +0000732 &gfs2_journal_glops,
733 LM_ST_EXCLUSIVE, LM_FLAG_NOEXP,
734 &sdp->sd_journal_gh);
735 if (error) {
736 fs_err(sdp, "can't acquire journal glock: %d\n", error);
737 goto fail_jindex;
738 }
739
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400740 ip = GFS2_I(sdp->sd_jdesc->jd_inode);
741 error = gfs2_glock_nq_init(ip->i_gl, LM_ST_SHARED,
Bob Peterson75be73a2007-08-08 17:08:14 -0500742 LM_FLAG_NOEXP | GL_EXACT | GL_NOCACHE,
David Teiglandb3b94fa2006-01-16 16:50:04 +0000743 &sdp->sd_jinode_gh);
744 if (error) {
745 fs_err(sdp, "can't acquire journal inode glock: %d\n",
746 error);
747 goto fail_journal_gh;
748 }
749
750 error = gfs2_jdesc_check(sdp->sd_jdesc);
751 if (error) {
752 fs_err(sdp, "my journal (%u) is bad: %d\n",
753 sdp->sd_jdesc->jd_jid, error);
754 goto fail_jinode_gh;
755 }
Steven Whitehousefd041f02007-11-08 14:55:03 +0000756 atomic_set(&sdp->sd_log_blks_free, sdp->sd_jdesc->jd_blocks);
Bob Petersonda6dd402007-12-11 18:49:21 -0600757
758 /* Map the extents for this journal's blocks */
759 map_journal_extents(sdp);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000760 }
761
762 if (sdp->sd_lockstruct.ls_first) {
763 unsigned int x;
764 for (x = 0; x < sdp->sd_journals; x++) {
David Teiglandc63e31c2006-04-20 17:03:48 -0400765 error = gfs2_recover_journal(gfs2_jdesc_find(sdp, x));
David Teiglandb3b94fa2006-01-16 16:50:04 +0000766 if (error) {
767 fs_err(sdp, "error recovering journal %u: %d\n",
768 x, error);
769 goto fail_jinode_gh;
770 }
771 }
772
773 gfs2_lm_others_may_mount(sdp);
774 } else if (!sdp->sd_args.ar_spectator) {
David Teiglandc63e31c2006-04-20 17:03:48 -0400775 error = gfs2_recover_journal(sdp->sd_jdesc);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000776 if (error) {
777 fs_err(sdp, "error recovering my journal: %d\n", error);
778 goto fail_jinode_gh;
779 }
780 }
781
782 set_bit(SDF_JOURNAL_CHECKED, &sdp->sd_flags);
783 gfs2_glock_dq_uninit(&ji_gh);
784 jindex = 0;
785
David Teiglandb3b94fa2006-01-16 16:50:04 +0000786 p = kthread_run(gfs2_recoverd, sdp, "gfs2_recoverd");
787 error = IS_ERR(p);
788 if (error) {
789 fs_err(sdp, "can't start recoverd thread: %d\n", error);
790 goto fail_jinode_gh;
791 }
792 sdp->sd_recoverd_process = p;
793
794 return 0;
795
Steven Whitehousea91ea692006-09-04 12:04:26 -0400796fail_recoverd:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000797 kthread_stop(sdp->sd_recoverd_process);
Steven Whitehousea91ea692006-09-04 12:04:26 -0400798fail_jinode_gh:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000799 if (!sdp->sd_args.ar_spectator)
800 gfs2_glock_dq_uninit(&sdp->sd_jinode_gh);
Steven Whitehousea91ea692006-09-04 12:04:26 -0400801fail_journal_gh:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000802 if (!sdp->sd_args.ar_spectator)
803 gfs2_glock_dq_uninit(&sdp->sd_journal_gh);
Steven Whitehousea91ea692006-09-04 12:04:26 -0400804fail_jindex:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000805 gfs2_jindex_free(sdp);
806 if (jindex)
807 gfs2_glock_dq_uninit(&ji_gh);
Steven Whitehousea91ea692006-09-04 12:04:26 -0400808fail:
Steven Whitehousef42faf42006-01-30 18:34:10 +0000809 iput(sdp->sd_jindex);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000810 return error;
811}
812
David Teiglandb3b94fa2006-01-16 16:50:04 +0000813
814static int init_inodes(struct gfs2_sbd *sdp, int undo)
815{
David Teiglandb3b94fa2006-01-16 16:50:04 +0000816 int error = 0;
Steven Whitehouse5c676f62006-02-27 17:23:27 -0500817 struct gfs2_inode *ip;
Steven Whitehouse9b8df982008-08-08 13:45:13 +0100818 struct inode *master = sdp->sd_master_dir->d_inode;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000819
820 if (undo)
Steven Whitehousef42faf42006-01-30 18:34:10 +0000821 goto fail_qinode;
822
Steven Whitehousef42faf42006-01-30 18:34:10 +0000823 error = init_journal(sdp, undo);
824 if (error)
Steven Whitehouse9b8df982008-08-08 13:45:13 +0100825 goto fail;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000826
827 /* Read in the master inode number inode */
Steven Whitehouse9b8df982008-08-08 13:45:13 +0100828 sdp->sd_inum_inode = gfs2_lookup_simple(master, "inum");
Steven Whitehousec7526662006-03-20 12:30:04 -0500829 if (IS_ERR(sdp->sd_inum_inode)) {
830 error = PTR_ERR(sdp->sd_inum_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000831 fs_err(sdp, "can't read in inum inode: %d\n", error);
Steven Whitehousef42faf42006-01-30 18:34:10 +0000832 goto fail_journal;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000833 }
834
Steven Whitehousef42faf42006-01-30 18:34:10 +0000835
David Teiglandb3b94fa2006-01-16 16:50:04 +0000836 /* Read in the master statfs inode */
Steven Whitehouse9b8df982008-08-08 13:45:13 +0100837 sdp->sd_statfs_inode = gfs2_lookup_simple(master, "statfs");
Steven Whitehousec7526662006-03-20 12:30:04 -0500838 if (IS_ERR(sdp->sd_statfs_inode)) {
839 error = PTR_ERR(sdp->sd_statfs_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000840 fs_err(sdp, "can't read in statfs inode: %d\n", error);
Steven Whitehousef42faf42006-01-30 18:34:10 +0000841 goto fail_inum;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000842 }
843
844 /* Read in the resource index inode */
Steven Whitehouse9b8df982008-08-08 13:45:13 +0100845 sdp->sd_rindex = gfs2_lookup_simple(master, "rindex");
Steven Whitehousec7526662006-03-20 12:30:04 -0500846 if (IS_ERR(sdp->sd_rindex)) {
847 error = PTR_ERR(sdp->sd_rindex);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000848 fs_err(sdp, "can't get resource index inode: %d\n", error);
849 goto fail_statfs;
850 }
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400851 ip = GFS2_I(sdp->sd_rindex);
Steven Whitehouse5c676f62006-02-27 17:23:27 -0500852 set_bit(GLF_STICKY, &ip->i_gl->gl_flags);
Bob Petersoncf45b752008-01-31 10:31:39 -0600853 sdp->sd_rindex_uptodate = 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000854
855 /* Read in the quota inode */
Steven Whitehouse9b8df982008-08-08 13:45:13 +0100856 sdp->sd_quota_inode = gfs2_lookup_simple(master, "quota");
Steven Whitehousec7526662006-03-20 12:30:04 -0500857 if (IS_ERR(sdp->sd_quota_inode)) {
858 error = PTR_ERR(sdp->sd_quota_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000859 fs_err(sdp, "can't get quota file inode: %d\n", error);
860 goto fail_rindex;
861 }
David Teiglandb3b94fa2006-01-16 16:50:04 +0000862 return 0;
863
Steven Whitehousef42faf42006-01-30 18:34:10 +0000864fail_qinode:
865 iput(sdp->sd_quota_inode);
Steven Whitehousef42faf42006-01-30 18:34:10 +0000866fail_rindex:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000867 gfs2_clear_rgrpd(sdp);
Steven Whitehousef42faf42006-01-30 18:34:10 +0000868 iput(sdp->sd_rindex);
Steven Whitehousef42faf42006-01-30 18:34:10 +0000869fail_statfs:
870 iput(sdp->sd_statfs_inode);
Steven Whitehousef42faf42006-01-30 18:34:10 +0000871fail_inum:
872 iput(sdp->sd_inum_inode);
873fail_journal:
874 init_journal(sdp, UNDO);
Steven Whitehousef42faf42006-01-30 18:34:10 +0000875fail:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000876 return error;
877}
878
879static int init_per_node(struct gfs2_sbd *sdp, int undo)
880{
Steven Whitehousef42faf42006-01-30 18:34:10 +0000881 struct inode *pn = NULL;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000882 char buf[30];
883 int error = 0;
Steven Whitehouse5c676f62006-02-27 17:23:27 -0500884 struct gfs2_inode *ip;
Steven Whitehouse9b8df982008-08-08 13:45:13 +0100885 struct inode *master = sdp->sd_master_dir->d_inode;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000886
887 if (sdp->sd_args.ar_spectator)
888 return 0;
889
890 if (undo)
891 goto fail_qc_gh;
892
Steven Whitehouse9b8df982008-08-08 13:45:13 +0100893 pn = gfs2_lookup_simple(master, "per_node");
Steven Whitehousec7526662006-03-20 12:30:04 -0500894 if (IS_ERR(pn)) {
895 error = PTR_ERR(pn);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000896 fs_err(sdp, "can't find per_node directory: %d\n", error);
897 return error;
898 }
899
900 sprintf(buf, "inum_range%u", sdp->sd_jdesc->jd_jid);
Steven Whitehousec7526662006-03-20 12:30:04 -0500901 sdp->sd_ir_inode = gfs2_lookup_simple(pn, buf);
902 if (IS_ERR(sdp->sd_ir_inode)) {
903 error = PTR_ERR(sdp->sd_ir_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000904 fs_err(sdp, "can't find local \"ir\" file: %d\n", error);
905 goto fail;
906 }
907
908 sprintf(buf, "statfs_change%u", sdp->sd_jdesc->jd_jid);
Steven Whitehousec7526662006-03-20 12:30:04 -0500909 sdp->sd_sc_inode = gfs2_lookup_simple(pn, buf);
910 if (IS_ERR(sdp->sd_sc_inode)) {
911 error = PTR_ERR(sdp->sd_sc_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000912 fs_err(sdp, "can't find local \"sc\" file: %d\n", error);
913 goto fail_ir_i;
914 }
915
David Teiglandb3b94fa2006-01-16 16:50:04 +0000916 sprintf(buf, "quota_change%u", sdp->sd_jdesc->jd_jid);
Steven Whitehousec7526662006-03-20 12:30:04 -0500917 sdp->sd_qc_inode = gfs2_lookup_simple(pn, buf);
918 if (IS_ERR(sdp->sd_qc_inode)) {
919 error = PTR_ERR(sdp->sd_qc_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000920 fs_err(sdp, "can't find local \"qc\" file: %d\n", error);
921 goto fail_ut_i;
922 }
923
Steven Whitehousef42faf42006-01-30 18:34:10 +0000924 iput(pn);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000925 pn = NULL;
926
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400927 ip = GFS2_I(sdp->sd_ir_inode);
Steven Whitehouse5c676f62006-02-27 17:23:27 -0500928 error = gfs2_glock_nq_init(ip->i_gl,
Steven Whitehouse579b78a2006-04-26 14:58:26 -0400929 LM_ST_EXCLUSIVE, 0,
David Teiglandb3b94fa2006-01-16 16:50:04 +0000930 &sdp->sd_ir_gh);
931 if (error) {
932 fs_err(sdp, "can't lock local \"ir\" file: %d\n", error);
933 goto fail_qc_i;
934 }
935
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400936 ip = GFS2_I(sdp->sd_sc_inode);
Steven Whitehouse5c676f62006-02-27 17:23:27 -0500937 error = gfs2_glock_nq_init(ip->i_gl,
Steven Whitehouse579b78a2006-04-26 14:58:26 -0400938 LM_ST_EXCLUSIVE, 0,
David Teiglandb3b94fa2006-01-16 16:50:04 +0000939 &sdp->sd_sc_gh);
940 if (error) {
941 fs_err(sdp, "can't lock local \"sc\" file: %d\n", error);
942 goto fail_ir_gh;
943 }
944
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400945 ip = GFS2_I(sdp->sd_qc_inode);
Steven Whitehouse5c676f62006-02-27 17:23:27 -0500946 error = gfs2_glock_nq_init(ip->i_gl,
Steven Whitehouse579b78a2006-04-26 14:58:26 -0400947 LM_ST_EXCLUSIVE, 0,
David Teiglandb3b94fa2006-01-16 16:50:04 +0000948 &sdp->sd_qc_gh);
949 if (error) {
950 fs_err(sdp, "can't lock local \"qc\" file: %d\n", error);
951 goto fail_ut_gh;
952 }
953
954 return 0;
955
Steven Whitehousea91ea692006-09-04 12:04:26 -0400956fail_qc_gh:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000957 gfs2_glock_dq_uninit(&sdp->sd_qc_gh);
Steven Whitehousea91ea692006-09-04 12:04:26 -0400958fail_ut_gh:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000959 gfs2_glock_dq_uninit(&sdp->sd_sc_gh);
Steven Whitehousea91ea692006-09-04 12:04:26 -0400960fail_ir_gh:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000961 gfs2_glock_dq_uninit(&sdp->sd_ir_gh);
Steven Whitehousea91ea692006-09-04 12:04:26 -0400962fail_qc_i:
Steven Whitehousef42faf42006-01-30 18:34:10 +0000963 iput(sdp->sd_qc_inode);
Steven Whitehousea91ea692006-09-04 12:04:26 -0400964fail_ut_i:
Steven Whitehousef42faf42006-01-30 18:34:10 +0000965 iput(sdp->sd_sc_inode);
Steven Whitehousea91ea692006-09-04 12:04:26 -0400966fail_ir_i:
Steven Whitehousef42faf42006-01-30 18:34:10 +0000967 iput(sdp->sd_ir_inode);
Steven Whitehousea91ea692006-09-04 12:04:26 -0400968fail:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000969 if (pn)
Steven Whitehousef42faf42006-01-30 18:34:10 +0000970 iput(pn);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000971 return error;
972}
973
974static int init_threads(struct gfs2_sbd *sdp, int undo)
975{
976 struct task_struct *p;
977 int error = 0;
978
979 if (undo)
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400980 goto fail_quotad;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000981
982 sdp->sd_log_flush_time = jiffies;
983 sdp->sd_jindex_refresh_time = jiffies;
984
985 p = kthread_run(gfs2_logd, sdp, "gfs2_logd");
986 error = IS_ERR(p);
987 if (error) {
988 fs_err(sdp, "can't start logd thread: %d\n", error);
989 return error;
990 }
991 sdp->sd_logd_process = p;
992
993 sdp->sd_statfs_sync_time = jiffies;
994 sdp->sd_quota_sync_time = jiffies;
995
996 p = kthread_run(gfs2_quotad, sdp, "gfs2_quotad");
997 error = IS_ERR(p);
998 if (error) {
999 fs_err(sdp, "can't start quotad thread: %d\n", error);
1000 goto fail;
1001 }
1002 sdp->sd_quotad_process = p;
1003
David Teiglandb3b94fa2006-01-16 16:50:04 +00001004 return 0;
1005
David Teiglandb3b94fa2006-01-16 16:50:04 +00001006
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001007fail_quotad:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001008 kthread_stop(sdp->sd_quotad_process);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001009fail:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001010 kthread_stop(sdp->sd_logd_process);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001011 return error;
1012}
1013
1014/**
Steven Whitehouseda755fd2008-01-30 15:34:04 +00001015 * gfs2_lm_mount - mount a locking protocol
1016 * @sdp: the filesystem
1017 * @args: mount arguements
1018 * @silent: if 1, don't complain if the FS isn't a GFS2 fs
1019 *
1020 * Returns: errno
1021 */
1022
1023static int gfs2_lm_mount(struct gfs2_sbd *sdp, int silent)
1024{
1025 char *proto = sdp->sd_proto_name;
1026 char *table = sdp->sd_table_name;
Benjamin Marzinski58e9fee2008-03-14 13:52:52 -05001027 int flags = LM_MFLAG_CONV_NODROP;
Steven Whitehouseda755fd2008-01-30 15:34:04 +00001028 int error;
1029
1030 if (sdp->sd_args.ar_spectator)
1031 flags |= LM_MFLAG_SPECTATOR;
1032
1033 fs_info(sdp, "Trying to join cluster \"%s\", \"%s\"\n", proto, table);
1034
1035 error = gfs2_mount_lockproto(proto, table, sdp->sd_args.ar_hostdata,
1036 gfs2_glock_cb, sdp,
1037 GFS2_MIN_LVB_SIZE, flags,
1038 &sdp->sd_lockstruct, &sdp->sd_kobj);
1039 if (error) {
1040 fs_info(sdp, "can't mount proto=%s, table=%s, hostdata=%s\n",
1041 proto, table, sdp->sd_args.ar_hostdata);
1042 goto out;
1043 }
1044
Steven Whitehouse048bca22008-05-23 14:46:04 +01001045 if (gfs2_assert_warn(sdp, sdp->sd_lockstruct.ls_ops) ||
Steven Whitehouseda755fd2008-01-30 15:34:04 +00001046 gfs2_assert_warn(sdp, sdp->sd_lockstruct.ls_lvb_size >=
1047 GFS2_MIN_LVB_SIZE)) {
1048 gfs2_unmount_lockproto(&sdp->sd_lockstruct);
1049 goto out;
1050 }
1051
1052 if (sdp->sd_args.ar_spectator)
1053 snprintf(sdp->sd_fsname, GFS2_FSNAME_LEN, "%s.s", table);
1054 else
1055 snprintf(sdp->sd_fsname, GFS2_FSNAME_LEN, "%s.%u", table,
1056 sdp->sd_lockstruct.ls_jid);
1057
1058 fs_info(sdp, "Joined cluster. Now mounting FS...\n");
1059
1060 if ((sdp->sd_lockstruct.ls_flags & LM_LSFLAG_LOCAL) &&
1061 !sdp->sd_args.ar_ignore_local_fs) {
1062 sdp->sd_args.ar_localflocks = 1;
1063 sdp->sd_args.ar_localcaching = 1;
1064 }
1065
1066out:
1067 return error;
1068}
1069
1070void gfs2_lm_unmount(struct gfs2_sbd *sdp)
1071{
1072 if (likely(!test_bit(SDF_SHUTDOWN, &sdp->sd_flags)))
1073 gfs2_unmount_lockproto(&sdp->sd_lockstruct);
1074}
1075
1076/**
David Teiglandb3b94fa2006-01-16 16:50:04 +00001077 * fill_super - Read in superblock
1078 * @sb: The VFS superblock
1079 * @data: Mount options
1080 * @silent: Don't complain if it's not a GFS2 filesystem
1081 *
1082 * Returns: errno
1083 */
1084
1085static int fill_super(struct super_block *sb, void *data, int silent)
1086{
1087 struct gfs2_sbd *sdp;
1088 struct gfs2_holder mount_gh;
1089 int error;
1090
1091 sdp = init_sbd(sb);
1092 if (!sdp) {
Steven Whitehoused92a8d42006-02-27 10:57:14 -05001093 printk(KERN_WARNING "GFS2: can't alloc struct gfs2_sbd\n");
David Teiglandb3b94fa2006-01-16 16:50:04 +00001094 return -ENOMEM;
1095 }
1096
1097 error = gfs2_mount_args(sdp, (char *)data, 0);
1098 if (error) {
Steven Whitehoused92a8d42006-02-27 10:57:14 -05001099 printk(KERN_WARNING "GFS2: can't parse mount arguments\n");
David Teiglandb3b94fa2006-01-16 16:50:04 +00001100 goto fail;
1101 }
1102
Steven Whitehouse419c93e2006-03-02 16:33:41 -05001103 init_vfs(sb, SDF_NOATIME);
1104
1105 /* Set up the buffer cache and fill in some fake block size values
1106 to allow us to read-in the on-disk superblock. */
1107 sdp->sd_sb.sb_bsize = sb_min_blocksize(sb, GFS2_BASIC_BLOCK);
1108 sdp->sd_sb.sb_bsize_shift = sb->s_blocksize_bits;
1109 sdp->sd_fsb2bb_shift = sdp->sd_sb.sb_bsize_shift -
1110 GFS2_BASIC_BLOCK_SHIFT;
1111 sdp->sd_fsb2bb = 1 << sdp->sd_fsb2bb_shift;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001112
1113 error = init_names(sdp, silent);
1114 if (error)
1115 goto fail;
1116
Robert Peterson7c52b162007-03-16 10:26:37 +00001117 gfs2_create_debugfs_file(sdp);
1118
David Teiglandb3b94fa2006-01-16 16:50:04 +00001119 error = gfs2_sys_fs_add(sdp);
1120 if (error)
1121 goto fail;
1122
1123 error = gfs2_lm_mount(sdp, silent);
1124 if (error)
1125 goto fail_sys;
1126
1127 error = init_locking(sdp, &mount_gh, DO);
1128 if (error)
1129 goto fail_lm;
1130
Steven Whitehouse9b8df982008-08-08 13:45:13 +01001131 error = init_sb(sdp, silent);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001132 if (error)
1133 goto fail_locking;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001134
1135 error = init_inodes(sdp, DO);
1136 if (error)
Steven Whitehousef42faf42006-01-30 18:34:10 +00001137 goto fail_sb;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001138
1139 error = init_per_node(sdp, DO);
1140 if (error)
1141 goto fail_inodes;
1142
1143 error = gfs2_statfs_init(sdp);
1144 if (error) {
1145 fs_err(sdp, "can't initialize statfs subsystem: %d\n", error);
1146 goto fail_per_node;
1147 }
1148
1149 error = init_threads(sdp, DO);
1150 if (error)
1151 goto fail_per_node;
1152
1153 if (!(sb->s_flags & MS_RDONLY)) {
1154 error = gfs2_make_fs_rw(sdp);
1155 if (error) {
1156 fs_err(sdp, "can't make FS RW: %d\n", error);
1157 goto fail_threads;
1158 }
1159 }
1160
1161 gfs2_glock_dq_uninit(&mount_gh);
1162
1163 return 0;
1164
Steven Whitehousea91ea692006-09-04 12:04:26 -04001165fail_threads:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001166 init_threads(sdp, UNDO);
Steven Whitehousea91ea692006-09-04 12:04:26 -04001167fail_per_node:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001168 init_per_node(sdp, UNDO);
Steven Whitehousea91ea692006-09-04 12:04:26 -04001169fail_inodes:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001170 init_inodes(sdp, UNDO);
Steven Whitehousea91ea692006-09-04 12:04:26 -04001171fail_sb:
Steven Whitehouse9b8df982008-08-08 13:45:13 +01001172 if (sdp->sd_root_dir)
1173 dput(sdp->sd_root_dir);
1174 if (sdp->sd_master_dir)
1175 dput(sdp->sd_master_dir);
1176 sb->s_root = NULL;
Steven Whitehousea91ea692006-09-04 12:04:26 -04001177fail_locking:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001178 init_locking(sdp, &mount_gh, UNDO);
Steven Whitehousea91ea692006-09-04 12:04:26 -04001179fail_lm:
Steven Whitehouse1bdad602008-06-03 14:09:53 +01001180 gfs2_gl_hash_clear(sdp);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001181 gfs2_lm_unmount(sdp);
1182 while (invalidate_inodes(sb))
1183 yield();
Steven Whitehousea91ea692006-09-04 12:04:26 -04001184fail_sys:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001185 gfs2_sys_fs_del(sdp);
Steven Whitehousea91ea692006-09-04 12:04:26 -04001186fail:
Robert Peterson5f882092007-04-18 11:41:11 -05001187 gfs2_delete_debugfs_file(sdp);
Steven Whitehousea2c45802006-09-08 10:13:03 -04001188 kfree(sdp);
Steven Whitehouse5c676f62006-02-27 17:23:27 -05001189 sb->s_fs_info = NULL;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001190 return error;
1191}
1192
Andrew Mortonccd6efd2006-06-30 02:16:34 -07001193static int gfs2_get_sb(struct file_system_type *fs_type, int flags,
Steven Whitehouse9b8df982008-08-08 13:45:13 +01001194 const char *dev_name, void *data, struct vfsmount *mnt)
1195{
1196 return get_sb_bdev(fs_type, flags, dev_name, data, fill_super, mnt);
1197}
1198
1199static struct super_block *get_gfs2_sb(const char *dev_name)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001200{
Abhijith Das86384602006-08-25 11:13:37 -05001201 struct super_block *sb;
Abhijith Das86384602006-08-25 11:13:37 -05001202 struct nameidata nd;
Abhijith Das86384602006-08-25 11:13:37 -05001203 int error;
Steven Whitehouse907b9bc2006-09-25 09:26:04 -04001204
Abhijith Das86384602006-08-25 11:13:37 -05001205 error = path_lookup(dev_name, LOOKUP_FOLLOW, &nd);
1206 if (error) {
Steven Whitehouse9b8df982008-08-08 13:45:13 +01001207 printk(KERN_WARNING "GFS2: path_lookup on %s returned error %d\n",
1208 dev_name, error);
1209 return NULL;
Abhijith Das86384602006-08-25 11:13:37 -05001210 }
Steven Whitehouse9b8df982008-08-08 13:45:13 +01001211 sb = nd.path.dentry->d_inode->i_sb;
1212 if (sb && (sb->s_type == &gfs2_fs_type))
1213 atomic_inc(&sb->s_active);
1214 else
1215 sb = NULL;
Jan Blunck1d957f92008-02-14 19:34:35 -08001216 path_put(&nd.path);
Abhijith Das86384602006-08-25 11:13:37 -05001217 return sb;
1218}
1219
1220static int gfs2_get_sb_meta(struct file_system_type *fs_type, int flags,
1221 const char *dev_name, void *data, struct vfsmount *mnt)
1222{
Steven Whitehouse9b8df982008-08-08 13:45:13 +01001223 struct super_block *sb = NULL;
Abhijith Das86384602006-08-25 11:13:37 -05001224 struct gfs2_sbd *sdp;
Abhijith Das86384602006-08-25 11:13:37 -05001225
1226 sb = get_gfs2_sb(dev_name);
1227 if (!sb) {
1228 printk(KERN_WARNING "GFS2: gfs2 mount does not exist\n");
Steven Whitehouse9b8df982008-08-08 13:45:13 +01001229 return -ENOENT;
Abhijith Das86384602006-08-25 11:13:37 -05001230 }
Denis Cheng2d3ba1e2007-08-11 10:27:08 +08001231 sdp = sb->s_fs_info;
Steven Whitehouse9b8df982008-08-08 13:45:13 +01001232 mnt->mnt_sb = sb;
1233 mnt->mnt_root = dget(sdp->sd_master_dir);
1234 return 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001235}
1236
Steven Whitehouse419c93e2006-03-02 16:33:41 -05001237static void gfs2_kill_sb(struct super_block *sb)
1238{
Abhijith Das86384602006-08-25 11:13:37 -05001239 struct gfs2_sbd *sdp = sb->s_fs_info;
Abhijith Dasacd2c8a2008-09-15 08:54:06 -05001240 if (sdp) {
1241 gfs2_meta_syncfs(sdp);
1242 dput(sdp->sd_root_dir);
1243 dput(sdp->sd_master_dir);
1244 sdp->sd_root_dir = NULL;
1245 sdp->sd_master_dir = NULL;
1246 }
Steven Whitehouse9b8df982008-08-08 13:45:13 +01001247 shrink_dcache_sb(sb);
1248 kill_block_super(sb);
Abhijith Dasacd2c8a2008-09-15 08:54:06 -05001249 if (sdp)
1250 gfs2_delete_debugfs_file(sdp);
Abhijith Das86384602006-08-25 11:13:37 -05001251}
1252
David Teiglandb3b94fa2006-01-16 16:50:04 +00001253struct file_system_type gfs2_fs_type = {
1254 .name = "gfs2",
1255 .fs_flags = FS_REQUIRES_DEV,
1256 .get_sb = gfs2_get_sb,
Steven Whitehouse419c93e2006-03-02 16:33:41 -05001257 .kill_sb = gfs2_kill_sb,
1258 .owner = THIS_MODULE,
1259};
1260
1261struct file_system_type gfs2meta_fs_type = {
1262 .name = "gfs2meta",
1263 .fs_flags = FS_REQUIRES_DEV,
Abhijith Das86384602006-08-25 11:13:37 -05001264 .get_sb = gfs2_get_sb_meta,
David Teiglandb3b94fa2006-01-16 16:50:04 +00001265 .owner = THIS_MODULE,
1266};
1267