blob: a9a83804eea70a92f5962d29a526353baa818503 [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 "recovery.h"
31#include "rgrp.h"
32#include "super.h"
David Teiglandb3b94fa2006-01-16 16:50:04 +000033#include "sys.h"
Steven Whitehouse5c676f62006-02-27 17:23:27 -050034#include "util.h"
Steven Whitehousebb3b0e32007-08-16 16:03:57 +010035#include "log.h"
David Teiglandb3b94fa2006-01-16 16:50:04 +000036
37#define DO 0
38#define UNDO 1
39
Steven Whitehouse9b8df982008-08-08 13:45:13 +010040static const u32 gfs2_old_fs_formats[] = {
41 0
42};
43
44static const u32 gfs2_old_multihost_formats[] = {
45 0
46};
47
48/**
49 * gfs2_tune_init - Fill a gfs2_tune structure with default values
50 * @gt: tune
51 *
52 */
53
54static void gfs2_tune_init(struct gfs2_tune *gt)
55{
56 spin_lock_init(&gt->gt_spin);
57
58 gt->gt_demote_secs = 300;
59 gt->gt_incore_log_blocks = 1024;
60 gt->gt_log_flush_secs = 60;
61 gt->gt_recoverd_secs = 60;
62 gt->gt_logd_secs = 1;
Steven Whitehouse9b8df982008-08-08 13:45:13 +010063 gt->gt_quota_simul_sync = 64;
64 gt->gt_quota_warn_period = 10;
65 gt->gt_quota_scale_num = 1;
66 gt->gt_quota_scale_den = 1;
67 gt->gt_quota_cache_secs = 300;
68 gt->gt_quota_quantum = 60;
Steven Whitehouse9b8df982008-08-08 13:45:13 +010069 gt->gt_new_files_jdata = 0;
70 gt->gt_max_readahead = 1 << 18;
71 gt->gt_stall_secs = 600;
72 gt->gt_complain_secs = 10;
73 gt->gt_statfs_quantum = 30;
74 gt->gt_statfs_slow = 0;
75}
76
David Teiglandb3b94fa2006-01-16 16:50:04 +000077static struct gfs2_sbd *init_sbd(struct super_block *sb)
78{
79 struct gfs2_sbd *sdp;
David Teiglandb3b94fa2006-01-16 16:50:04 +000080
Steven Whitehouse85d1da62006-09-07 14:40:21 -040081 sdp = kzalloc(sizeof(struct gfs2_sbd), GFP_KERNEL);
David Teiglandb3b94fa2006-01-16 16:50:04 +000082 if (!sdp)
83 return NULL;
84
Steven Whitehouse5c676f62006-02-27 17:23:27 -050085 sb->s_fs_info = sdp;
David Teiglandb3b94fa2006-01-16 16:50:04 +000086 sdp->sd_vfs = sb;
87
88 gfs2_tune_init(&sdp->sd_tune);
89
David Teiglandb3b94fa2006-01-16 16:50:04 +000090 INIT_LIST_HEAD(&sdp->sd_reclaim_list);
91 spin_lock_init(&sdp->sd_reclaim_lock);
92 init_waitqueue_head(&sdp->sd_reclaim_wq);
David Teiglandb3b94fa2006-01-16 16:50:04 +000093
Steven Whitehousef55ab262006-02-21 12:51:39 +000094 mutex_init(&sdp->sd_inum_mutex);
David Teiglandb3b94fa2006-01-16 16:50:04 +000095 spin_lock_init(&sdp->sd_statfs_spin);
David Teiglandb3b94fa2006-01-16 16:50:04 +000096
97 spin_lock_init(&sdp->sd_rindex_spin);
Steven Whitehousef55ab262006-02-21 12:51:39 +000098 mutex_init(&sdp->sd_rindex_mutex);
David Teiglandb3b94fa2006-01-16 16:50:04 +000099 INIT_LIST_HEAD(&sdp->sd_rindex_list);
100 INIT_LIST_HEAD(&sdp->sd_rindex_mru_list);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000101
102 INIT_LIST_HEAD(&sdp->sd_jindex_list);
103 spin_lock_init(&sdp->sd_jindex_spin);
Steven Whitehousef55ab262006-02-21 12:51:39 +0000104 mutex_init(&sdp->sd_jindex_mutex);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000105
David Teiglandb3b94fa2006-01-16 16:50:04 +0000106 INIT_LIST_HEAD(&sdp->sd_quota_list);
107 spin_lock_init(&sdp->sd_quota_spin);
Steven Whitehousef55ab262006-02-21 12:51:39 +0000108 mutex_init(&sdp->sd_quota_mutex);
Steven Whitehouse37b2c832008-11-17 14:25:37 +0000109 init_waitqueue_head(&sdp->sd_quota_wait);
Steven Whitehouse813e0c42008-11-18 13:38:48 +0000110 INIT_LIST_HEAD(&sdp->sd_trunc_list);
111 spin_lock_init(&sdp->sd_trunc_lock);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000112
113 spin_lock_init(&sdp->sd_log_lock);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000114
David Teiglandb3b94fa2006-01-16 16:50:04 +0000115 INIT_LIST_HEAD(&sdp->sd_log_le_buf);
116 INIT_LIST_HEAD(&sdp->sd_log_le_revoke);
117 INIT_LIST_HEAD(&sdp->sd_log_le_rg);
118 INIT_LIST_HEAD(&sdp->sd_log_le_databuf);
Steven Whitehoused7b616e2007-09-02 10:48:13 +0100119 INIT_LIST_HEAD(&sdp->sd_log_le_ordered);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000120
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500121 mutex_init(&sdp->sd_log_reserve_mutex);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000122 INIT_LIST_HEAD(&sdp->sd_ail1_list);
123 INIT_LIST_HEAD(&sdp->sd_ail2_list);
124
Steven Whitehouse484adff2006-03-29 09:12:12 -0500125 init_rwsem(&sdp->sd_log_flush_lock);
Steven Whitehouse16615be2007-09-17 10:59:52 +0100126 atomic_set(&sdp->sd_log_in_flight, 0);
127 init_waitqueue_head(&sdp->sd_log_flush_wait);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000128
129 INIT_LIST_HEAD(&sdp->sd_revoke_list);
130
Steven Whitehousef55ab262006-02-21 12:51:39 +0000131 mutex_init(&sdp->sd_freeze_lock);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000132
133 return sdp;
134}
135
David Teiglandb3b94fa2006-01-16 16:50:04 +0000136
Steven Whitehouse9b8df982008-08-08 13:45:13 +0100137/**
138 * gfs2_check_sb - Check superblock
139 * @sdp: the filesystem
140 * @sb: The superblock
141 * @silent: Don't print a message if the check fails
142 *
143 * Checks the version code of the FS is one that we understand how to
144 * read and that the sizes of the various on-disk structures have not
145 * changed.
146 */
147
148static int gfs2_check_sb(struct gfs2_sbd *sdp, struct gfs2_sb_host *sb, int silent)
149{
150 unsigned int x;
151
152 if (sb->sb_magic != GFS2_MAGIC ||
153 sb->sb_type != GFS2_METATYPE_SB) {
154 if (!silent)
155 printk(KERN_WARNING "GFS2: not a GFS2 filesystem\n");
156 return -EINVAL;
157 }
158
159 /* If format numbers match exactly, we're done. */
160
161 if (sb->sb_fs_format == GFS2_FORMAT_FS &&
162 sb->sb_multihost_format == GFS2_FORMAT_MULTI)
163 return 0;
164
165 if (sb->sb_fs_format != GFS2_FORMAT_FS) {
166 for (x = 0; gfs2_old_fs_formats[x]; x++)
167 if (gfs2_old_fs_formats[x] == sb->sb_fs_format)
168 break;
169
170 if (!gfs2_old_fs_formats[x]) {
171 printk(KERN_WARNING
172 "GFS2: code version (%u, %u) is incompatible "
173 "with ondisk format (%u, %u)\n",
174 GFS2_FORMAT_FS, GFS2_FORMAT_MULTI,
175 sb->sb_fs_format, sb->sb_multihost_format);
176 printk(KERN_WARNING
177 "GFS2: I don't know how to upgrade this FS\n");
178 return -EINVAL;
179 }
180 }
181
182 if (sb->sb_multihost_format != GFS2_FORMAT_MULTI) {
183 for (x = 0; gfs2_old_multihost_formats[x]; x++)
184 if (gfs2_old_multihost_formats[x] ==
185 sb->sb_multihost_format)
186 break;
187
188 if (!gfs2_old_multihost_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 (!sdp->sd_args.ar_upgrade) {
201 printk(KERN_WARNING
202 "GFS2: code version (%u, %u) is incompatible "
203 "with ondisk format (%u, %u)\n",
204 GFS2_FORMAT_FS, GFS2_FORMAT_MULTI,
205 sb->sb_fs_format, sb->sb_multihost_format);
206 printk(KERN_INFO
207 "GFS2: Use the \"upgrade\" mount option to upgrade "
208 "the FS\n");
209 printk(KERN_INFO "GFS2: See the manual for more details\n");
210 return -EINVAL;
211 }
212
213 return 0;
214}
215
216static void end_bio_io_page(struct bio *bio, int error)
217{
218 struct page *page = bio->bi_private;
219
220 if (!error)
221 SetPageUptodate(page);
222 else
223 printk(KERN_WARNING "gfs2: error %d reading superblock\n", error);
224 unlock_page(page);
225}
226
227static void gfs2_sb_in(struct gfs2_sb_host *sb, const void *buf)
228{
229 const struct gfs2_sb *str = buf;
230
231 sb->sb_magic = be32_to_cpu(str->sb_header.mh_magic);
232 sb->sb_type = be32_to_cpu(str->sb_header.mh_type);
233 sb->sb_format = be32_to_cpu(str->sb_header.mh_format);
234 sb->sb_fs_format = be32_to_cpu(str->sb_fs_format);
235 sb->sb_multihost_format = be32_to_cpu(str->sb_multihost_format);
236 sb->sb_bsize = be32_to_cpu(str->sb_bsize);
237 sb->sb_bsize_shift = be32_to_cpu(str->sb_bsize_shift);
238 sb->sb_master_dir.no_addr = be64_to_cpu(str->sb_master_dir.no_addr);
239 sb->sb_master_dir.no_formal_ino = be64_to_cpu(str->sb_master_dir.no_formal_ino);
240 sb->sb_root_dir.no_addr = be64_to_cpu(str->sb_root_dir.no_addr);
241 sb->sb_root_dir.no_formal_ino = be64_to_cpu(str->sb_root_dir.no_formal_ino);
242
243 memcpy(sb->sb_lockproto, str->sb_lockproto, GFS2_LOCKNAME_LEN);
244 memcpy(sb->sb_locktable, str->sb_locktable, GFS2_LOCKNAME_LEN);
245}
246
247/**
248 * gfs2_read_super - Read the gfs2 super block from disk
249 * @sdp: The GFS2 super block
250 * @sector: The location of the super block
251 * @error: The error code to return
252 *
253 * This uses the bio functions to read the super block from disk
254 * because we want to be 100% sure that we never read cached data.
255 * A super block is read twice only during each GFS2 mount and is
256 * never written to by the filesystem. The first time its read no
257 * locks are held, and the only details which are looked at are those
258 * relating to the locking protocol. Once locking is up and working,
259 * the sb is read again under the lock to establish the location of
260 * the master directory (contains pointers to journals etc) and the
261 * root directory.
262 *
263 * Returns: 0 on success or error
264 */
265
266static int gfs2_read_super(struct gfs2_sbd *sdp, sector_t sector)
267{
268 struct super_block *sb = sdp->sd_vfs;
269 struct gfs2_sb *p;
270 struct page *page;
271 struct bio *bio;
272
273 page = alloc_page(GFP_NOFS);
274 if (unlikely(!page))
275 return -ENOBUFS;
276
277 ClearPageUptodate(page);
278 ClearPageDirty(page);
279 lock_page(page);
280
281 bio = bio_alloc(GFP_NOFS, 1);
282 if (unlikely(!bio)) {
283 __free_page(page);
284 return -ENOBUFS;
285 }
286
287 bio->bi_sector = sector * (sb->s_blocksize >> 9);
288 bio->bi_bdev = sb->s_bdev;
289 bio_add_page(bio, page, PAGE_SIZE, 0);
290
291 bio->bi_end_io = end_bio_io_page;
292 bio->bi_private = page;
293 submit_bio(READ_SYNC | (1 << BIO_RW_META), bio);
294 wait_on_page_locked(page);
295 bio_put(bio);
296 if (!PageUptodate(page)) {
297 __free_page(page);
298 return -EIO;
299 }
300 p = kmap(page);
301 gfs2_sb_in(&sdp->sd_sb, p);
302 kunmap(page);
303 __free_page(page);
304 return 0;
305}
306/**
307 * gfs2_read_sb - Read super block
308 * @sdp: The GFS2 superblock
309 * @gl: the glock for the superblock (assumed to be held)
310 * @silent: Don't print message if mount fails
311 *
312 */
313
314static int gfs2_read_sb(struct gfs2_sbd *sdp, struct gfs2_glock *gl, int silent)
315{
316 u32 hash_blocks, ind_blocks, leaf_blocks;
317 u32 tmp_blocks;
318 unsigned int x;
319 int error;
320
321 error = gfs2_read_super(sdp, GFS2_SB_ADDR >> sdp->sd_fsb2bb_shift);
322 if (error) {
323 if (!silent)
324 fs_err(sdp, "can't read superblock\n");
325 return error;
326 }
327
328 error = gfs2_check_sb(sdp, &sdp->sd_sb, silent);
329 if (error)
330 return error;
331
332 sdp->sd_fsb2bb_shift = sdp->sd_sb.sb_bsize_shift -
333 GFS2_BASIC_BLOCK_SHIFT;
334 sdp->sd_fsb2bb = 1 << sdp->sd_fsb2bb_shift;
335 sdp->sd_diptrs = (sdp->sd_sb.sb_bsize -
336 sizeof(struct gfs2_dinode)) / sizeof(u64);
337 sdp->sd_inptrs = (sdp->sd_sb.sb_bsize -
338 sizeof(struct gfs2_meta_header)) / sizeof(u64);
339 sdp->sd_jbsize = sdp->sd_sb.sb_bsize - sizeof(struct gfs2_meta_header);
340 sdp->sd_hash_bsize = sdp->sd_sb.sb_bsize / 2;
341 sdp->sd_hash_bsize_shift = sdp->sd_sb.sb_bsize_shift - 1;
342 sdp->sd_hash_ptrs = sdp->sd_hash_bsize / sizeof(u64);
343 sdp->sd_qc_per_block = (sdp->sd_sb.sb_bsize -
344 sizeof(struct gfs2_meta_header)) /
345 sizeof(struct gfs2_quota_change);
346
347 /* Compute maximum reservation required to add a entry to a directory */
348
349 hash_blocks = DIV_ROUND_UP(sizeof(u64) * (1 << GFS2_DIR_MAX_DEPTH),
350 sdp->sd_jbsize);
351
352 ind_blocks = 0;
353 for (tmp_blocks = hash_blocks; tmp_blocks > sdp->sd_diptrs;) {
354 tmp_blocks = DIV_ROUND_UP(tmp_blocks, sdp->sd_inptrs);
355 ind_blocks += tmp_blocks;
356 }
357
358 leaf_blocks = 2 + GFS2_DIR_MAX_DEPTH;
359
360 sdp->sd_max_dirres = hash_blocks + ind_blocks + leaf_blocks;
361
362 sdp->sd_heightsize[0] = sdp->sd_sb.sb_bsize -
363 sizeof(struct gfs2_dinode);
364 sdp->sd_heightsize[1] = sdp->sd_sb.sb_bsize * sdp->sd_diptrs;
365 for (x = 2;; x++) {
366 u64 space, d;
367 u32 m;
368
369 space = sdp->sd_heightsize[x - 1] * sdp->sd_inptrs;
370 d = space;
371 m = do_div(d, sdp->sd_inptrs);
372
373 if (d != sdp->sd_heightsize[x - 1] || m)
374 break;
375 sdp->sd_heightsize[x] = space;
376 }
377 sdp->sd_max_height = x;
378 sdp->sd_heightsize[x] = ~0;
379 gfs2_assert(sdp, sdp->sd_max_height <= GFS2_MAX_META_HEIGHT);
380
381 sdp->sd_jheightsize[0] = sdp->sd_sb.sb_bsize -
382 sizeof(struct gfs2_dinode);
383 sdp->sd_jheightsize[1] = sdp->sd_jbsize * sdp->sd_diptrs;
384 for (x = 2;; x++) {
385 u64 space, d;
386 u32 m;
387
388 space = sdp->sd_jheightsize[x - 1] * sdp->sd_inptrs;
389 d = space;
390 m = do_div(d, sdp->sd_inptrs);
391
392 if (d != sdp->sd_jheightsize[x - 1] || m)
393 break;
394 sdp->sd_jheightsize[x] = space;
395 }
396 sdp->sd_max_jheight = x;
397 sdp->sd_jheightsize[x] = ~0;
398 gfs2_assert(sdp, sdp->sd_max_jheight <= GFS2_MAX_META_HEIGHT);
399
400 return 0;
401}
402
David Teiglandb3b94fa2006-01-16 16:50:04 +0000403static int init_names(struct gfs2_sbd *sdp, int silent)
404{
David Teiglandb3b94fa2006-01-16 16:50:04 +0000405 char *proto, *table;
406 int error = 0;
407
408 proto = sdp->sd_args.ar_lockproto;
409 table = sdp->sd_args.ar_locktable;
410
411 /* Try to autodetect */
412
413 if (!proto[0] || !table[0]) {
Steven Whitehousebb8d8a62007-06-01 14:11:58 +0100414 error = gfs2_read_super(sdp, GFS2_SB_ADDR >> sdp->sd_fsb2bb_shift);
415 if (error)
416 return error;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000417
Steven Whitehouse3cf1e7b2006-10-02 11:49:41 -0400418 error = gfs2_check_sb(sdp, &sdp->sd_sb, silent);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000419 if (error)
420 goto out;
421
422 if (!proto[0])
Steven Whitehouse3cf1e7b2006-10-02 11:49:41 -0400423 proto = sdp->sd_sb.sb_lockproto;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000424 if (!table[0])
Steven Whitehouse3cf1e7b2006-10-02 11:49:41 -0400425 table = sdp->sd_sb.sb_locktable;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000426 }
427
428 if (!table[0])
429 table = sdp->sd_vfs->s_id;
430
Jean Delvare00377d82008-05-09 17:59:51 +0200431 strlcpy(sdp->sd_proto_name, proto, GFS2_FSNAME_LEN);
432 strlcpy(sdp->sd_table_name, table, GFS2_FSNAME_LEN);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000433
Denis Cheng5d35e312007-08-13 11:01:58 +0800434 table = sdp->sd_table_name;
435 while ((table = strchr(table, '/')))
Robert Petersonb35997d2007-06-07 09:10:01 -0500436 *table = '_';
437
Steven Whitehousea91ea692006-09-04 12:04:26 -0400438out:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000439 return error;
440}
441
442static int init_locking(struct gfs2_sbd *sdp, struct gfs2_holder *mount_gh,
443 int undo)
444{
445 struct task_struct *p;
446 int error = 0;
447
448 if (undo)
449 goto fail_trans;
450
David Teiglandb3b94fa2006-01-16 16:50:04 +0000451 for (sdp->sd_glockd_num = 0;
452 sdp->sd_glockd_num < sdp->sd_args.ar_num_glockd;
453 sdp->sd_glockd_num++) {
454 p = kthread_run(gfs2_glockd, sdp, "gfs2_glockd");
455 error = IS_ERR(p);
456 if (error) {
457 fs_err(sdp, "can't start glockd thread: %d\n", error);
458 goto fail;
459 }
460 sdp->sd_glockd_process[sdp->sd_glockd_num] = p;
461 }
462
463 error = gfs2_glock_nq_num(sdp,
464 GFS2_MOUNT_LOCK, &gfs2_nondisk_glops,
465 LM_ST_EXCLUSIVE, LM_FLAG_NOEXP | GL_NOCACHE,
466 mount_gh);
467 if (error) {
468 fs_err(sdp, "can't acquire mount glock: %d\n", error);
469 goto fail;
470 }
471
472 error = gfs2_glock_nq_num(sdp,
473 GFS2_LIVE_LOCK, &gfs2_nondisk_glops,
474 LM_ST_SHARED,
Steven Whitehouse579b78a2006-04-26 14:58:26 -0400475 LM_FLAG_NOEXP | GL_EXACT,
David Teiglandb3b94fa2006-01-16 16:50:04 +0000476 &sdp->sd_live_gh);
477 if (error) {
478 fs_err(sdp, "can't acquire live glock: %d\n", error);
479 goto fail_mount;
480 }
481
482 error = gfs2_glock_get(sdp, GFS2_RENAME_LOCK, &gfs2_nondisk_glops,
483 CREATE, &sdp->sd_rename_gl);
484 if (error) {
485 fs_err(sdp, "can't create rename glock: %d\n", error);
486 goto fail_live;
487 }
488
489 error = gfs2_glock_get(sdp, GFS2_TRANS_LOCK, &gfs2_trans_glops,
490 CREATE, &sdp->sd_trans_gl);
491 if (error) {
492 fs_err(sdp, "can't create transaction glock: %d\n", error);
493 goto fail_rename;
494 }
495 set_bit(GLF_STICKY, &sdp->sd_trans_gl->gl_flags);
496
497 return 0;
498
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400499fail_trans:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000500 gfs2_glock_put(sdp->sd_trans_gl);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400501fail_rename:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000502 gfs2_glock_put(sdp->sd_rename_gl);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400503fail_live:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000504 gfs2_glock_dq_uninit(&sdp->sd_live_gh);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400505fail_mount:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000506 gfs2_glock_dq_uninit(mount_gh);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400507fail:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000508 while (sdp->sd_glockd_num--)
509 kthread_stop(sdp->sd_glockd_process[sdp->sd_glockd_num]);
510
David Teiglandb3b94fa2006-01-16 16:50:04 +0000511 return error;
512}
513
Steven Whitehouse9b8df982008-08-08 13:45:13 +0100514static int gfs2_lookup_root(struct super_block *sb, struct dentry **dptr,
515 u64 no_addr, const char *name)
Steven Whitehousef42faf42006-01-30 18:34:10 +0000516{
Steven Whitehouse9b8df982008-08-08 13:45:13 +0100517 struct gfs2_sbd *sdp = sb->s_fs_info;
518 struct dentry *dentry;
519 struct inode *inode;
520
521 inode = gfs2_inode_lookup(sb, DT_DIR, no_addr, 0, 0);
522 if (IS_ERR(inode)) {
523 fs_err(sdp, "can't read in %s inode: %ld\n", name, PTR_ERR(inode));
524 return PTR_ERR(inode);
525 }
526 dentry = d_alloc_root(inode);
527 if (!dentry) {
528 fs_err(sdp, "can't alloc %s dentry\n", name);
529 iput(inode);
530 return -ENOMEM;
531 }
532 dentry->d_op = &gfs2_dops;
533 *dptr = dentry;
534 return 0;
Steven Whitehousef42faf42006-01-30 18:34:10 +0000535}
536
Steven Whitehouse9b8df982008-08-08 13:45:13 +0100537static int init_sb(struct gfs2_sbd *sdp, int silent)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000538{
539 struct super_block *sb = sdp->sd_vfs;
540 struct gfs2_holder sb_gh;
Steven Whitehousedbb7cae2007-05-15 15:37:50 +0100541 u64 no_addr;
Steven Whitehouse9b8df982008-08-08 13:45:13 +0100542 int ret;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000543
Steven Whitehouse9b8df982008-08-08 13:45:13 +0100544 ret = gfs2_glock_nq_num(sdp, GFS2_SB_LOCK, &gfs2_meta_glops,
545 LM_ST_SHARED, 0, &sb_gh);
546 if (ret) {
547 fs_err(sdp, "can't acquire superblock glock: %d\n", ret);
548 return ret;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000549 }
Steven Whitehouse907b9bc2006-09-25 09:26:04 -0400550
Steven Whitehouse9b8df982008-08-08 13:45:13 +0100551 ret = gfs2_read_sb(sdp, sb_gh.gh_gl, silent);
552 if (ret) {
553 fs_err(sdp, "can't read superblock: %d\n", ret);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000554 goto out;
555 }
556
557 /* Set up the buffer cache and SB for real */
David Teiglandb3b94fa2006-01-16 16:50:04 +0000558 if (sdp->sd_sb.sb_bsize < bdev_hardsect_size(sb->s_bdev)) {
Steven Whitehouse9b8df982008-08-08 13:45:13 +0100559 ret = -EINVAL;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000560 fs_err(sdp, "FS block size (%u) is too small for device "
561 "block size (%u)\n",
562 sdp->sd_sb.sb_bsize, bdev_hardsect_size(sb->s_bdev));
563 goto out;
564 }
565 if (sdp->sd_sb.sb_bsize > PAGE_SIZE) {
Steven Whitehouse9b8df982008-08-08 13:45:13 +0100566 ret = -EINVAL;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000567 fs_err(sdp, "FS block size (%u) is too big for machine "
568 "page size (%u)\n",
569 sdp->sd_sb.sb_bsize, (unsigned int)PAGE_SIZE);
570 goto out;
571 }
David Teiglandb3b94fa2006-01-16 16:50:04 +0000572 sb_set_blocksize(sb, sdp->sd_sb.sb_bsize);
573
Steven Whitehousef42faf42006-01-30 18:34:10 +0000574 /* Get the root inode */
Steven Whitehousedbb7cae2007-05-15 15:37:50 +0100575 no_addr = sdp->sd_sb.sb_root_dir.no_addr;
Steven Whitehouse9b8df982008-08-08 13:45:13 +0100576 ret = gfs2_lookup_root(sb, &sdp->sd_root_dir, no_addr, "root");
577 if (ret)
578 goto out;
579
580 /* Get the master inode */
581 no_addr = sdp->sd_sb.sb_master_dir.no_addr;
582 ret = gfs2_lookup_root(sb, &sdp->sd_master_dir, no_addr, "master");
583 if (ret) {
584 dput(sdp->sd_root_dir);
Steven Whitehousef42faf42006-01-30 18:34:10 +0000585 goto out;
586 }
Steven Whitehouse9b8df982008-08-08 13:45:13 +0100587 sb->s_root = dget(sdp->sd_args.ar_meta ? sdp->sd_master_dir : sdp->sd_root_dir);
Steven Whitehousef42faf42006-01-30 18:34:10 +0000588out:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000589 gfs2_glock_dq_uninit(&sb_gh);
Steven Whitehouse9b8df982008-08-08 13:45:13 +0100590 return ret;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000591}
592
Bob Petersonda6dd402007-12-11 18:49:21 -0600593/**
594 * map_journal_extents - create a reusable "extent" mapping from all logical
595 * blocks to all physical blocks for the given journal. This will save
596 * us time when writing journal blocks. Most journals will have only one
597 * extent that maps all their logical blocks. That's because gfs2.mkfs
598 * arranges the journal blocks sequentially to maximize performance.
599 * So the extent would map the first block for the entire file length.
600 * However, gfs2_jadd can happen while file activity is happening, so
601 * those journals may not be sequential. Less likely is the case where
602 * the users created their own journals by mounting the metafs and
603 * laying it out. But it's still possible. These journals might have
604 * several extents.
605 *
606 * TODO: This should be done in bigger chunks rather than one block at a time,
607 * but since it's only done at mount time, I'm not worried about the
608 * time it takes.
609 */
610static int map_journal_extents(struct gfs2_sbd *sdp)
611{
612 struct gfs2_jdesc *jd = sdp->sd_jdesc;
613 unsigned int lb;
614 u64 db, prev_db; /* logical block, disk block, prev disk block */
615 struct gfs2_inode *ip = GFS2_I(jd->jd_inode);
616 struct gfs2_journal_extent *jext = NULL;
617 struct buffer_head bh;
618 int rc = 0;
619
Bob Petersonda6dd402007-12-11 18:49:21 -0600620 prev_db = 0;
621
Steven Whitehousec9e98882008-11-04 09:47:33 +0000622 for (lb = 0; lb < ip->i_disksize >> sdp->sd_sb.sb_bsize_shift; lb++) {
Bob Petersonda6dd402007-12-11 18:49:21 -0600623 bh.b_state = 0;
624 bh.b_blocknr = 0;
625 bh.b_size = 1 << ip->i_inode.i_blkbits;
626 rc = gfs2_block_map(jd->jd_inode, lb, &bh, 0);
627 db = bh.b_blocknr;
628 if (rc || !db) {
629 printk(KERN_INFO "GFS2 journal mapping error %d: lb="
630 "%u db=%llu\n", rc, lb, (unsigned long long)db);
631 break;
632 }
633 if (!prev_db || db != prev_db + 1) {
634 jext = kzalloc(sizeof(struct gfs2_journal_extent),
635 GFP_KERNEL);
636 if (!jext) {
637 printk(KERN_INFO "GFS2 error: out of memory "
638 "mapping journal extents.\n");
639 rc = -ENOMEM;
640 break;
641 }
642 jext->dblock = db;
643 jext->lblock = lb;
644 jext->blocks = 1;
645 list_add_tail(&jext->extent_list, &jd->extent_list);
646 } else {
647 jext->blocks++;
648 }
649 prev_db = db;
650 }
651 return rc;
652}
653
Steven Whitehouseda755fd2008-01-30 15:34:04 +0000654static void gfs2_lm_others_may_mount(struct gfs2_sbd *sdp)
655{
Steven Whitehouse048bca22008-05-23 14:46:04 +0100656 if (!sdp->sd_lockstruct.ls_ops->lm_others_may_mount)
657 return;
Steven Whitehouseda755fd2008-01-30 15:34:04 +0000658 if (likely(!test_bit(SDF_SHUTDOWN, &sdp->sd_flags)))
659 sdp->sd_lockstruct.ls_ops->lm_others_may_mount(
660 sdp->sd_lockstruct.ls_lockspace);
661}
662
David Teiglandb3b94fa2006-01-16 16:50:04 +0000663static int init_journal(struct gfs2_sbd *sdp, int undo)
664{
Steven Whitehouse9b8df982008-08-08 13:45:13 +0100665 struct inode *master = sdp->sd_master_dir->d_inode;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000666 struct gfs2_holder ji_gh;
667 struct task_struct *p;
Steven Whitehouse5c676f62006-02-27 17:23:27 -0500668 struct gfs2_inode *ip;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000669 int jindex = 1;
670 int error = 0;
671
672 if (undo) {
673 jindex = 0;
674 goto fail_recoverd;
675 }
676
Steven Whitehouse9b8df982008-08-08 13:45:13 +0100677 sdp->sd_jindex = gfs2_lookup_simple(master, "jindex");
Steven Whitehousec7526662006-03-20 12:30:04 -0500678 if (IS_ERR(sdp->sd_jindex)) {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000679 fs_err(sdp, "can't lookup journal index: %d\n", error);
Steven Whitehousec7526662006-03-20 12:30:04 -0500680 return PTR_ERR(sdp->sd_jindex);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000681 }
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400682 ip = GFS2_I(sdp->sd_jindex);
Steven Whitehouse5c676f62006-02-27 17:23:27 -0500683 set_bit(GLF_STICKY, &ip->i_gl->gl_flags);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000684
685 /* Load in the journal index special file */
686
687 error = gfs2_jindex_hold(sdp, &ji_gh);
688 if (error) {
689 fs_err(sdp, "can't read journal index: %d\n", error);
690 goto fail;
691 }
692
693 error = -EINVAL;
694 if (!gfs2_jindex_size(sdp)) {
695 fs_err(sdp, "no journals!\n");
Steven Whitehouse907b9bc2006-09-25 09:26:04 -0400696 goto fail_jindex;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000697 }
698
699 if (sdp->sd_args.ar_spectator) {
700 sdp->sd_jdesc = gfs2_jdesc_find(sdp, 0);
Steven Whitehousefd041f02007-11-08 14:55:03 +0000701 atomic_set(&sdp->sd_log_blks_free, sdp->sd_jdesc->jd_blocks);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000702 } else {
703 if (sdp->sd_lockstruct.ls_jid >= gfs2_jindex_size(sdp)) {
704 fs_err(sdp, "can't mount journal #%u\n",
705 sdp->sd_lockstruct.ls_jid);
706 fs_err(sdp, "there are only %u journals (0 - %u)\n",
707 gfs2_jindex_size(sdp),
708 gfs2_jindex_size(sdp) - 1);
709 goto fail_jindex;
710 }
711 sdp->sd_jdesc = gfs2_jdesc_find(sdp, sdp->sd_lockstruct.ls_jid);
712
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400713 error = gfs2_glock_nq_num(sdp, sdp->sd_lockstruct.ls_jid,
David Teiglandb3b94fa2006-01-16 16:50:04 +0000714 &gfs2_journal_glops,
715 LM_ST_EXCLUSIVE, LM_FLAG_NOEXP,
716 &sdp->sd_journal_gh);
717 if (error) {
718 fs_err(sdp, "can't acquire journal glock: %d\n", error);
719 goto fail_jindex;
720 }
721
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400722 ip = GFS2_I(sdp->sd_jdesc->jd_inode);
723 error = gfs2_glock_nq_init(ip->i_gl, LM_ST_SHARED,
Bob Peterson75be73a2007-08-08 17:08:14 -0500724 LM_FLAG_NOEXP | GL_EXACT | GL_NOCACHE,
David Teiglandb3b94fa2006-01-16 16:50:04 +0000725 &sdp->sd_jinode_gh);
726 if (error) {
727 fs_err(sdp, "can't acquire journal inode glock: %d\n",
728 error);
729 goto fail_journal_gh;
730 }
731
732 error = gfs2_jdesc_check(sdp->sd_jdesc);
733 if (error) {
734 fs_err(sdp, "my journal (%u) is bad: %d\n",
735 sdp->sd_jdesc->jd_jid, error);
736 goto fail_jinode_gh;
737 }
Steven Whitehousefd041f02007-11-08 14:55:03 +0000738 atomic_set(&sdp->sd_log_blks_free, sdp->sd_jdesc->jd_blocks);
Bob Petersonda6dd402007-12-11 18:49:21 -0600739
740 /* Map the extents for this journal's blocks */
741 map_journal_extents(sdp);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000742 }
743
744 if (sdp->sd_lockstruct.ls_first) {
745 unsigned int x;
746 for (x = 0; x < sdp->sd_journals; x++) {
David Teiglandc63e31c2006-04-20 17:03:48 -0400747 error = gfs2_recover_journal(gfs2_jdesc_find(sdp, x));
David Teiglandb3b94fa2006-01-16 16:50:04 +0000748 if (error) {
749 fs_err(sdp, "error recovering journal %u: %d\n",
750 x, error);
751 goto fail_jinode_gh;
752 }
753 }
754
755 gfs2_lm_others_may_mount(sdp);
756 } else if (!sdp->sd_args.ar_spectator) {
David Teiglandc63e31c2006-04-20 17:03:48 -0400757 error = gfs2_recover_journal(sdp->sd_jdesc);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000758 if (error) {
759 fs_err(sdp, "error recovering my journal: %d\n", error);
760 goto fail_jinode_gh;
761 }
762 }
763
764 set_bit(SDF_JOURNAL_CHECKED, &sdp->sd_flags);
765 gfs2_glock_dq_uninit(&ji_gh);
766 jindex = 0;
767
David Teiglandb3b94fa2006-01-16 16:50:04 +0000768 p = kthread_run(gfs2_recoverd, sdp, "gfs2_recoverd");
769 error = IS_ERR(p);
770 if (error) {
771 fs_err(sdp, "can't start recoverd thread: %d\n", error);
772 goto fail_jinode_gh;
773 }
774 sdp->sd_recoverd_process = p;
775
776 return 0;
777
Steven Whitehousea91ea692006-09-04 12:04:26 -0400778fail_recoverd:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000779 kthread_stop(sdp->sd_recoverd_process);
Steven Whitehousea91ea692006-09-04 12:04:26 -0400780fail_jinode_gh:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000781 if (!sdp->sd_args.ar_spectator)
782 gfs2_glock_dq_uninit(&sdp->sd_jinode_gh);
Steven Whitehousea91ea692006-09-04 12:04:26 -0400783fail_journal_gh:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000784 if (!sdp->sd_args.ar_spectator)
785 gfs2_glock_dq_uninit(&sdp->sd_journal_gh);
Steven Whitehousea91ea692006-09-04 12:04:26 -0400786fail_jindex:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000787 gfs2_jindex_free(sdp);
788 if (jindex)
789 gfs2_glock_dq_uninit(&ji_gh);
Steven Whitehousea91ea692006-09-04 12:04:26 -0400790fail:
Steven Whitehousef42faf42006-01-30 18:34:10 +0000791 iput(sdp->sd_jindex);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000792 return error;
793}
794
David Teiglandb3b94fa2006-01-16 16:50:04 +0000795
796static int init_inodes(struct gfs2_sbd *sdp, int undo)
797{
David Teiglandb3b94fa2006-01-16 16:50:04 +0000798 int error = 0;
Steven Whitehouse5c676f62006-02-27 17:23:27 -0500799 struct gfs2_inode *ip;
Steven Whitehouse9b8df982008-08-08 13:45:13 +0100800 struct inode *master = sdp->sd_master_dir->d_inode;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000801
802 if (undo)
Steven Whitehousef42faf42006-01-30 18:34:10 +0000803 goto fail_qinode;
804
Steven Whitehousef42faf42006-01-30 18:34:10 +0000805 error = init_journal(sdp, undo);
806 if (error)
Steven Whitehouse9b8df982008-08-08 13:45:13 +0100807 goto fail;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000808
809 /* Read in the master inode number inode */
Steven Whitehouse9b8df982008-08-08 13:45:13 +0100810 sdp->sd_inum_inode = gfs2_lookup_simple(master, "inum");
Steven Whitehousec7526662006-03-20 12:30:04 -0500811 if (IS_ERR(sdp->sd_inum_inode)) {
812 error = PTR_ERR(sdp->sd_inum_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000813 fs_err(sdp, "can't read in inum inode: %d\n", error);
Steven Whitehousef42faf42006-01-30 18:34:10 +0000814 goto fail_journal;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000815 }
816
Steven Whitehousef42faf42006-01-30 18:34:10 +0000817
David Teiglandb3b94fa2006-01-16 16:50:04 +0000818 /* Read in the master statfs inode */
Steven Whitehouse9b8df982008-08-08 13:45:13 +0100819 sdp->sd_statfs_inode = gfs2_lookup_simple(master, "statfs");
Steven Whitehousec7526662006-03-20 12:30:04 -0500820 if (IS_ERR(sdp->sd_statfs_inode)) {
821 error = PTR_ERR(sdp->sd_statfs_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000822 fs_err(sdp, "can't read in statfs inode: %d\n", error);
Steven Whitehousef42faf42006-01-30 18:34:10 +0000823 goto fail_inum;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000824 }
825
826 /* Read in the resource index inode */
Steven Whitehouse9b8df982008-08-08 13:45:13 +0100827 sdp->sd_rindex = gfs2_lookup_simple(master, "rindex");
Steven Whitehousec7526662006-03-20 12:30:04 -0500828 if (IS_ERR(sdp->sd_rindex)) {
829 error = PTR_ERR(sdp->sd_rindex);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000830 fs_err(sdp, "can't get resource index inode: %d\n", error);
831 goto fail_statfs;
832 }
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400833 ip = GFS2_I(sdp->sd_rindex);
Steven Whitehouse5c676f62006-02-27 17:23:27 -0500834 set_bit(GLF_STICKY, &ip->i_gl->gl_flags);
Bob Petersoncf45b752008-01-31 10:31:39 -0600835 sdp->sd_rindex_uptodate = 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000836
837 /* Read in the quota inode */
Steven Whitehouse9b8df982008-08-08 13:45:13 +0100838 sdp->sd_quota_inode = gfs2_lookup_simple(master, "quota");
Steven Whitehousec7526662006-03-20 12:30:04 -0500839 if (IS_ERR(sdp->sd_quota_inode)) {
840 error = PTR_ERR(sdp->sd_quota_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000841 fs_err(sdp, "can't get quota file inode: %d\n", error);
842 goto fail_rindex;
843 }
David Teiglandb3b94fa2006-01-16 16:50:04 +0000844 return 0;
845
Steven Whitehousef42faf42006-01-30 18:34:10 +0000846fail_qinode:
847 iput(sdp->sd_quota_inode);
Steven Whitehousef42faf42006-01-30 18:34:10 +0000848fail_rindex:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000849 gfs2_clear_rgrpd(sdp);
Steven Whitehousef42faf42006-01-30 18:34:10 +0000850 iput(sdp->sd_rindex);
Steven Whitehousef42faf42006-01-30 18:34:10 +0000851fail_statfs:
852 iput(sdp->sd_statfs_inode);
Steven Whitehousef42faf42006-01-30 18:34:10 +0000853fail_inum:
854 iput(sdp->sd_inum_inode);
855fail_journal:
856 init_journal(sdp, UNDO);
Steven Whitehousef42faf42006-01-30 18:34:10 +0000857fail:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000858 return error;
859}
860
861static int init_per_node(struct gfs2_sbd *sdp, int undo)
862{
Steven Whitehousef42faf42006-01-30 18:34:10 +0000863 struct inode *pn = NULL;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000864 char buf[30];
865 int error = 0;
Steven Whitehouse5c676f62006-02-27 17:23:27 -0500866 struct gfs2_inode *ip;
Steven Whitehouse9b8df982008-08-08 13:45:13 +0100867 struct inode *master = sdp->sd_master_dir->d_inode;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000868
869 if (sdp->sd_args.ar_spectator)
870 return 0;
871
872 if (undo)
873 goto fail_qc_gh;
874
Steven Whitehouse9b8df982008-08-08 13:45:13 +0100875 pn = gfs2_lookup_simple(master, "per_node");
Steven Whitehousec7526662006-03-20 12:30:04 -0500876 if (IS_ERR(pn)) {
877 error = PTR_ERR(pn);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000878 fs_err(sdp, "can't find per_node directory: %d\n", error);
879 return error;
880 }
881
882 sprintf(buf, "inum_range%u", sdp->sd_jdesc->jd_jid);
Steven Whitehousec7526662006-03-20 12:30:04 -0500883 sdp->sd_ir_inode = gfs2_lookup_simple(pn, buf);
884 if (IS_ERR(sdp->sd_ir_inode)) {
885 error = PTR_ERR(sdp->sd_ir_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000886 fs_err(sdp, "can't find local \"ir\" file: %d\n", error);
887 goto fail;
888 }
889
890 sprintf(buf, "statfs_change%u", sdp->sd_jdesc->jd_jid);
Steven Whitehousec7526662006-03-20 12:30:04 -0500891 sdp->sd_sc_inode = gfs2_lookup_simple(pn, buf);
892 if (IS_ERR(sdp->sd_sc_inode)) {
893 error = PTR_ERR(sdp->sd_sc_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000894 fs_err(sdp, "can't find local \"sc\" file: %d\n", error);
895 goto fail_ir_i;
896 }
897
David Teiglandb3b94fa2006-01-16 16:50:04 +0000898 sprintf(buf, "quota_change%u", sdp->sd_jdesc->jd_jid);
Steven Whitehousec7526662006-03-20 12:30:04 -0500899 sdp->sd_qc_inode = gfs2_lookup_simple(pn, buf);
900 if (IS_ERR(sdp->sd_qc_inode)) {
901 error = PTR_ERR(sdp->sd_qc_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000902 fs_err(sdp, "can't find local \"qc\" file: %d\n", error);
903 goto fail_ut_i;
904 }
905
Steven Whitehousef42faf42006-01-30 18:34:10 +0000906 iput(pn);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000907 pn = NULL;
908
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400909 ip = GFS2_I(sdp->sd_ir_inode);
Steven Whitehouse5c676f62006-02-27 17:23:27 -0500910 error = gfs2_glock_nq_init(ip->i_gl,
Steven Whitehouse579b78a2006-04-26 14:58:26 -0400911 LM_ST_EXCLUSIVE, 0,
David Teiglandb3b94fa2006-01-16 16:50:04 +0000912 &sdp->sd_ir_gh);
913 if (error) {
914 fs_err(sdp, "can't lock local \"ir\" file: %d\n", error);
915 goto fail_qc_i;
916 }
917
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400918 ip = GFS2_I(sdp->sd_sc_inode);
Steven Whitehouse5c676f62006-02-27 17:23:27 -0500919 error = gfs2_glock_nq_init(ip->i_gl,
Steven Whitehouse579b78a2006-04-26 14:58:26 -0400920 LM_ST_EXCLUSIVE, 0,
David Teiglandb3b94fa2006-01-16 16:50:04 +0000921 &sdp->sd_sc_gh);
922 if (error) {
923 fs_err(sdp, "can't lock local \"sc\" file: %d\n", error);
924 goto fail_ir_gh;
925 }
926
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400927 ip = GFS2_I(sdp->sd_qc_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_qc_gh);
931 if (error) {
932 fs_err(sdp, "can't lock local \"qc\" file: %d\n", error);
933 goto fail_ut_gh;
934 }
935
936 return 0;
937
Steven Whitehousea91ea692006-09-04 12:04:26 -0400938fail_qc_gh:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000939 gfs2_glock_dq_uninit(&sdp->sd_qc_gh);
Steven Whitehousea91ea692006-09-04 12:04:26 -0400940fail_ut_gh:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000941 gfs2_glock_dq_uninit(&sdp->sd_sc_gh);
Steven Whitehousea91ea692006-09-04 12:04:26 -0400942fail_ir_gh:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000943 gfs2_glock_dq_uninit(&sdp->sd_ir_gh);
Steven Whitehousea91ea692006-09-04 12:04:26 -0400944fail_qc_i:
Steven Whitehousef42faf42006-01-30 18:34:10 +0000945 iput(sdp->sd_qc_inode);
Steven Whitehousea91ea692006-09-04 12:04:26 -0400946fail_ut_i:
Steven Whitehousef42faf42006-01-30 18:34:10 +0000947 iput(sdp->sd_sc_inode);
Steven Whitehousea91ea692006-09-04 12:04:26 -0400948fail_ir_i:
Steven Whitehousef42faf42006-01-30 18:34:10 +0000949 iput(sdp->sd_ir_inode);
Steven Whitehousea91ea692006-09-04 12:04:26 -0400950fail:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000951 if (pn)
Steven Whitehousef42faf42006-01-30 18:34:10 +0000952 iput(pn);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000953 return error;
954}
955
956static int init_threads(struct gfs2_sbd *sdp, int undo)
957{
958 struct task_struct *p;
959 int error = 0;
960
961 if (undo)
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400962 goto fail_quotad;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000963
964 sdp->sd_log_flush_time = jiffies;
965 sdp->sd_jindex_refresh_time = jiffies;
966
967 p = kthread_run(gfs2_logd, sdp, "gfs2_logd");
968 error = IS_ERR(p);
969 if (error) {
970 fs_err(sdp, "can't start logd thread: %d\n", error);
971 return error;
972 }
973 sdp->sd_logd_process = p;
974
David Teiglandb3b94fa2006-01-16 16:50:04 +0000975 p = kthread_run(gfs2_quotad, sdp, "gfs2_quotad");
976 error = IS_ERR(p);
977 if (error) {
978 fs_err(sdp, "can't start quotad thread: %d\n", error);
979 goto fail;
980 }
981 sdp->sd_quotad_process = p;
982
David Teiglandb3b94fa2006-01-16 16:50:04 +0000983 return 0;
984
David Teiglandb3b94fa2006-01-16 16:50:04 +0000985
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400986fail_quotad:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000987 kthread_stop(sdp->sd_quotad_process);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400988fail:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000989 kthread_stop(sdp->sd_logd_process);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000990 return error;
991}
992
993/**
Steven Whitehouseda755fd2008-01-30 15:34:04 +0000994 * gfs2_lm_mount - mount a locking protocol
995 * @sdp: the filesystem
996 * @args: mount arguements
997 * @silent: if 1, don't complain if the FS isn't a GFS2 fs
998 *
999 * Returns: errno
1000 */
1001
1002static int gfs2_lm_mount(struct gfs2_sbd *sdp, int silent)
1003{
1004 char *proto = sdp->sd_proto_name;
1005 char *table = sdp->sd_table_name;
Benjamin Marzinski58e9fee2008-03-14 13:52:52 -05001006 int flags = LM_MFLAG_CONV_NODROP;
Steven Whitehouseda755fd2008-01-30 15:34:04 +00001007 int error;
1008
1009 if (sdp->sd_args.ar_spectator)
1010 flags |= LM_MFLAG_SPECTATOR;
1011
1012 fs_info(sdp, "Trying to join cluster \"%s\", \"%s\"\n", proto, table);
1013
1014 error = gfs2_mount_lockproto(proto, table, sdp->sd_args.ar_hostdata,
1015 gfs2_glock_cb, sdp,
1016 GFS2_MIN_LVB_SIZE, flags,
1017 &sdp->sd_lockstruct, &sdp->sd_kobj);
1018 if (error) {
1019 fs_info(sdp, "can't mount proto=%s, table=%s, hostdata=%s\n",
1020 proto, table, sdp->sd_args.ar_hostdata);
1021 goto out;
1022 }
1023
Steven Whitehouse048bca22008-05-23 14:46:04 +01001024 if (gfs2_assert_warn(sdp, sdp->sd_lockstruct.ls_ops) ||
Steven Whitehouseda755fd2008-01-30 15:34:04 +00001025 gfs2_assert_warn(sdp, sdp->sd_lockstruct.ls_lvb_size >=
1026 GFS2_MIN_LVB_SIZE)) {
1027 gfs2_unmount_lockproto(&sdp->sd_lockstruct);
1028 goto out;
1029 }
1030
1031 if (sdp->sd_args.ar_spectator)
1032 snprintf(sdp->sd_fsname, GFS2_FSNAME_LEN, "%s.s", table);
1033 else
1034 snprintf(sdp->sd_fsname, GFS2_FSNAME_LEN, "%s.%u", table,
1035 sdp->sd_lockstruct.ls_jid);
1036
1037 fs_info(sdp, "Joined cluster. Now mounting FS...\n");
1038
1039 if ((sdp->sd_lockstruct.ls_flags & LM_LSFLAG_LOCAL) &&
1040 !sdp->sd_args.ar_ignore_local_fs) {
1041 sdp->sd_args.ar_localflocks = 1;
1042 sdp->sd_args.ar_localcaching = 1;
1043 }
1044
1045out:
1046 return error;
1047}
1048
1049void gfs2_lm_unmount(struct gfs2_sbd *sdp)
1050{
1051 if (likely(!test_bit(SDF_SHUTDOWN, &sdp->sd_flags)))
1052 gfs2_unmount_lockproto(&sdp->sd_lockstruct);
1053}
1054
1055/**
David Teiglandb3b94fa2006-01-16 16:50:04 +00001056 * fill_super - Read in superblock
1057 * @sb: The VFS superblock
1058 * @data: Mount options
1059 * @silent: Don't complain if it's not a GFS2 filesystem
1060 *
1061 * Returns: errno
1062 */
1063
1064static int fill_super(struct super_block *sb, void *data, int silent)
1065{
1066 struct gfs2_sbd *sdp;
1067 struct gfs2_holder mount_gh;
1068 int error;
1069
1070 sdp = init_sbd(sb);
1071 if (!sdp) {
Steven Whitehoused92a8d42006-02-27 10:57:14 -05001072 printk(KERN_WARNING "GFS2: can't alloc struct gfs2_sbd\n");
David Teiglandb3b94fa2006-01-16 16:50:04 +00001073 return -ENOMEM;
1074 }
1075
1076 error = gfs2_mount_args(sdp, (char *)data, 0);
1077 if (error) {
Steven Whitehoused92a8d42006-02-27 10:57:14 -05001078 printk(KERN_WARNING "GFS2: can't parse mount arguments\n");
David Teiglandb3b94fa2006-01-16 16:50:04 +00001079 goto fail;
1080 }
1081
Steven Whitehouse719ee342008-09-18 13:53:59 +01001082 sb->s_magic = GFS2_MAGIC;
1083 sb->s_op = &gfs2_super_ops;
1084 sb->s_export_op = &gfs2_export_ops;
1085 sb->s_time_gran = 1;
1086 sb->s_maxbytes = MAX_LFS_FILESIZE;
Steven Whitehouse419c93e2006-03-02 16:33:41 -05001087
1088 /* Set up the buffer cache and fill in some fake block size values
1089 to allow us to read-in the on-disk superblock. */
1090 sdp->sd_sb.sb_bsize = sb_min_blocksize(sb, GFS2_BASIC_BLOCK);
1091 sdp->sd_sb.sb_bsize_shift = sb->s_blocksize_bits;
1092 sdp->sd_fsb2bb_shift = sdp->sd_sb.sb_bsize_shift -
1093 GFS2_BASIC_BLOCK_SHIFT;
1094 sdp->sd_fsb2bb = 1 << sdp->sd_fsb2bb_shift;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001095
1096 error = init_names(sdp, silent);
1097 if (error)
1098 goto fail;
1099
Robert Peterson7c52b162007-03-16 10:26:37 +00001100 gfs2_create_debugfs_file(sdp);
1101
David Teiglandb3b94fa2006-01-16 16:50:04 +00001102 error = gfs2_sys_fs_add(sdp);
1103 if (error)
1104 goto fail;
1105
1106 error = gfs2_lm_mount(sdp, silent);
1107 if (error)
1108 goto fail_sys;
1109
1110 error = init_locking(sdp, &mount_gh, DO);
1111 if (error)
1112 goto fail_lm;
1113
Steven Whitehouse9b8df982008-08-08 13:45:13 +01001114 error = init_sb(sdp, silent);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001115 if (error)
1116 goto fail_locking;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001117
1118 error = init_inodes(sdp, DO);
1119 if (error)
Steven Whitehousef42faf42006-01-30 18:34:10 +00001120 goto fail_sb;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001121
1122 error = init_per_node(sdp, DO);
1123 if (error)
1124 goto fail_inodes;
1125
1126 error = gfs2_statfs_init(sdp);
1127 if (error) {
1128 fs_err(sdp, "can't initialize statfs subsystem: %d\n", error);
1129 goto fail_per_node;
1130 }
1131
1132 error = init_threads(sdp, DO);
1133 if (error)
1134 goto fail_per_node;
1135
1136 if (!(sb->s_flags & MS_RDONLY)) {
1137 error = gfs2_make_fs_rw(sdp);
1138 if (error) {
1139 fs_err(sdp, "can't make FS RW: %d\n", error);
1140 goto fail_threads;
1141 }
1142 }
1143
1144 gfs2_glock_dq_uninit(&mount_gh);
1145
1146 return 0;
1147
Steven Whitehousea91ea692006-09-04 12:04:26 -04001148fail_threads:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001149 init_threads(sdp, UNDO);
Steven Whitehousea91ea692006-09-04 12:04:26 -04001150fail_per_node:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001151 init_per_node(sdp, UNDO);
Steven Whitehousea91ea692006-09-04 12:04:26 -04001152fail_inodes:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001153 init_inodes(sdp, UNDO);
Steven Whitehousea91ea692006-09-04 12:04:26 -04001154fail_sb:
Steven Whitehouse9b8df982008-08-08 13:45:13 +01001155 if (sdp->sd_root_dir)
1156 dput(sdp->sd_root_dir);
1157 if (sdp->sd_master_dir)
1158 dput(sdp->sd_master_dir);
1159 sb->s_root = NULL;
Steven Whitehousea91ea692006-09-04 12:04:26 -04001160fail_locking:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001161 init_locking(sdp, &mount_gh, UNDO);
Steven Whitehousea91ea692006-09-04 12:04:26 -04001162fail_lm:
Steven Whitehouse1bdad602008-06-03 14:09:53 +01001163 gfs2_gl_hash_clear(sdp);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001164 gfs2_lm_unmount(sdp);
1165 while (invalidate_inodes(sb))
1166 yield();
Steven Whitehousea91ea692006-09-04 12:04:26 -04001167fail_sys:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001168 gfs2_sys_fs_del(sdp);
Steven Whitehousea91ea692006-09-04 12:04:26 -04001169fail:
Robert Peterson5f882092007-04-18 11:41:11 -05001170 gfs2_delete_debugfs_file(sdp);
Steven Whitehousea2c45802006-09-08 10:13:03 -04001171 kfree(sdp);
Steven Whitehouse5c676f62006-02-27 17:23:27 -05001172 sb->s_fs_info = NULL;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001173 return error;
1174}
1175
Andrew Mortonccd6efd2006-06-30 02:16:34 -07001176static int gfs2_get_sb(struct file_system_type *fs_type, int flags,
Steven Whitehouse9b8df982008-08-08 13:45:13 +01001177 const char *dev_name, void *data, struct vfsmount *mnt)
1178{
1179 return get_sb_bdev(fs_type, flags, dev_name, data, fill_super, mnt);
1180}
1181
1182static struct super_block *get_gfs2_sb(const char *dev_name)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001183{
Abhijith Das86384602006-08-25 11:13:37 -05001184 struct super_block *sb;
Abhijith Das86384602006-08-25 11:13:37 -05001185 struct nameidata nd;
Abhijith Das86384602006-08-25 11:13:37 -05001186 int error;
Steven Whitehouse907b9bc2006-09-25 09:26:04 -04001187
Abhijith Das86384602006-08-25 11:13:37 -05001188 error = path_lookup(dev_name, LOOKUP_FOLLOW, &nd);
1189 if (error) {
Steven Whitehouse9b8df982008-08-08 13:45:13 +01001190 printk(KERN_WARNING "GFS2: path_lookup on %s returned error %d\n",
1191 dev_name, error);
1192 return NULL;
Abhijith Das86384602006-08-25 11:13:37 -05001193 }
Steven Whitehouse9b8df982008-08-08 13:45:13 +01001194 sb = nd.path.dentry->d_inode->i_sb;
1195 if (sb && (sb->s_type == &gfs2_fs_type))
1196 atomic_inc(&sb->s_active);
1197 else
1198 sb = NULL;
Jan Blunck1d957f92008-02-14 19:34:35 -08001199 path_put(&nd.path);
Abhijith Das86384602006-08-25 11:13:37 -05001200 return sb;
1201}
1202
1203static int gfs2_get_sb_meta(struct file_system_type *fs_type, int flags,
1204 const char *dev_name, void *data, struct vfsmount *mnt)
1205{
Steven Whitehouse9b8df982008-08-08 13:45:13 +01001206 struct super_block *sb = NULL;
Abhijith Das86384602006-08-25 11:13:37 -05001207 struct gfs2_sbd *sdp;
Abhijith Das86384602006-08-25 11:13:37 -05001208
1209 sb = get_gfs2_sb(dev_name);
1210 if (!sb) {
1211 printk(KERN_WARNING "GFS2: gfs2 mount does not exist\n");
Steven Whitehouse9b8df982008-08-08 13:45:13 +01001212 return -ENOENT;
Abhijith Das86384602006-08-25 11:13:37 -05001213 }
Denis Cheng2d3ba1e2007-08-11 10:27:08 +08001214 sdp = sb->s_fs_info;
Steven Whitehouse9b8df982008-08-08 13:45:13 +01001215 mnt->mnt_sb = sb;
1216 mnt->mnt_root = dget(sdp->sd_master_dir);
1217 return 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001218}
1219
Steven Whitehouse419c93e2006-03-02 16:33:41 -05001220static void gfs2_kill_sb(struct super_block *sb)
1221{
Abhijith Das86384602006-08-25 11:13:37 -05001222 struct gfs2_sbd *sdp = sb->s_fs_info;
Abhijith Dasacd2c8a2008-09-15 08:54:06 -05001223 if (sdp) {
1224 gfs2_meta_syncfs(sdp);
1225 dput(sdp->sd_root_dir);
1226 dput(sdp->sd_master_dir);
1227 sdp->sd_root_dir = NULL;
1228 sdp->sd_master_dir = NULL;
1229 }
Steven Whitehouse9b8df982008-08-08 13:45:13 +01001230 shrink_dcache_sb(sb);
1231 kill_block_super(sb);
Abhijith Dasacd2c8a2008-09-15 08:54:06 -05001232 if (sdp)
1233 gfs2_delete_debugfs_file(sdp);
Abhijith Das86384602006-08-25 11:13:37 -05001234}
1235
David Teiglandb3b94fa2006-01-16 16:50:04 +00001236struct file_system_type gfs2_fs_type = {
1237 .name = "gfs2",
1238 .fs_flags = FS_REQUIRES_DEV,
1239 .get_sb = gfs2_get_sb,
Steven Whitehouse419c93e2006-03-02 16:33:41 -05001240 .kill_sb = gfs2_kill_sb,
1241 .owner = THIS_MODULE,
1242};
1243
1244struct file_system_type gfs2meta_fs_type = {
1245 .name = "gfs2meta",
1246 .fs_flags = FS_REQUIRES_DEV,
Abhijith Das86384602006-08-25 11:13:37 -05001247 .get_sb = gfs2_get_sb_meta,
David Teiglandb3b94fa2006-01-16 16:50:04 +00001248 .owner = THIS_MODULE,
1249};
1250