blob: 11151eaa2c4a2de3f2deb4797a0bc81177100efb [file] [log] [blame]
Ryusuke Konishi783f6182009-04-06 19:01:35 -07001/*
2 * super.c - NILFS module and super block management.
3 *
4 * Copyright (C) 2005-2008 Nippon Telegraph and Telephone Corporation.
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
19 *
20 * Written by Ryusuke Konishi <ryusuke@osrg.net>
21 */
22/*
23 * linux/fs/ext2/super.c
24 *
25 * Copyright (C) 1992, 1993, 1994, 1995
26 * Remy Card (card@masi.ibp.fr)
27 * Laboratoire MASI - Institut Blaise Pascal
28 * Universite Pierre et Marie Curie (Paris VI)
29 *
30 * from
31 *
32 * linux/fs/minix/inode.c
33 *
34 * Copyright (C) 1991, 1992 Linus Torvalds
35 *
36 * Big-endian to little-endian byte-swapping/bitmaps by
37 * David S. Miller (davem@caip.rutgers.edu), 1995
38 */
39
40#include <linux/module.h>
41#include <linux/string.h>
42#include <linux/slab.h>
43#include <linux/init.h>
44#include <linux/blkdev.h>
45#include <linux/parser.h>
46#include <linux/random.h>
47#include <linux/crc32.h>
48#include <linux/smp_lock.h>
49#include <linux/vfs.h>
50#include <linux/writeback.h>
51#include <linux/kobject.h>
52#include <linux/exportfs.h>
53#include "nilfs.h"
54#include "mdt.h"
55#include "alloc.h"
56#include "page.h"
57#include "cpfile.h"
58#include "ifile.h"
59#include "dat.h"
60#include "segment.h"
61#include "segbuf.h"
62
63MODULE_AUTHOR("NTT Corp.");
64MODULE_DESCRIPTION("A New Implementation of the Log-structured Filesystem "
65 "(NILFS)");
Ryusuke Konishi783f6182009-04-06 19:01:35 -070066MODULE_LICENSE("GPL");
67
Christoph Hellwig8c85e122009-04-28 18:00:26 +020068static void nilfs_write_super(struct super_block *sb);
Ryusuke Konishi783f6182009-04-06 19:01:35 -070069static int nilfs_remount(struct super_block *sb, int *flags, char *data);
70static int test_exclusive_mount(struct file_system_type *fs_type,
71 struct block_device *bdev, int flags);
72
73/**
74 * nilfs_error() - report failure condition on a filesystem
75 *
76 * nilfs_error() sets an ERROR_FS flag on the superblock as well as
77 * reporting an error message. It should be called when NILFS detects
78 * incoherences or defects of meta data on disk. As for sustainable
79 * errors such as a single-shot I/O error, nilfs_warning() or the printk()
80 * function should be used instead.
81 *
82 * The segment constructor must not call this function because it can
83 * kill itself.
84 */
85void nilfs_error(struct super_block *sb, const char *function,
86 const char *fmt, ...)
87{
88 struct nilfs_sb_info *sbi = NILFS_SB(sb);
89 va_list args;
90
91 va_start(args, fmt);
92 printk(KERN_CRIT "NILFS error (device %s): %s: ", sb->s_id, function);
93 vprintk(fmt, args);
94 printk("\n");
95 va_end(args);
96
97 if (!(sb->s_flags & MS_RDONLY)) {
98 struct the_nilfs *nilfs = sbi->s_nilfs;
99
100 if (!nilfs_test_opt(sbi, ERRORS_CONT))
101 nilfs_detach_segment_constructor(sbi);
102
103 down_write(&nilfs->ns_sem);
104 if (!(nilfs->ns_mount_state & NILFS_ERROR_FS)) {
105 nilfs->ns_mount_state |= NILFS_ERROR_FS;
Ryusuke Konishie339ad32009-04-06 19:01:59 -0700106 nilfs->ns_sbp[0]->s_state |=
107 cpu_to_le16(NILFS_ERROR_FS);
108 nilfs_commit_super(sbi, 1);
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700109 }
110 up_write(&nilfs->ns_sem);
111
112 if (nilfs_test_opt(sbi, ERRORS_RO)) {
113 printk(KERN_CRIT "Remounting filesystem read-only\n");
114 sb->s_flags |= MS_RDONLY;
115 }
116 }
117
118 if (nilfs_test_opt(sbi, ERRORS_PANIC))
119 panic("NILFS (device %s): panic forced after error\n",
120 sb->s_id);
121}
122
123void nilfs_warning(struct super_block *sb, const char *function,
124 const char *fmt, ...)
125{
126 va_list args;
127
128 va_start(args, fmt);
129 printk(KERN_WARNING "NILFS warning (device %s): %s: ",
130 sb->s_id, function);
131 vprintk(fmt, args);
132 printk("\n");
133 va_end(args);
134}
135
136static struct kmem_cache *nilfs_inode_cachep;
137
138struct inode *nilfs_alloc_inode(struct super_block *sb)
139{
140 struct nilfs_inode_info *ii;
141
142 ii = kmem_cache_alloc(nilfs_inode_cachep, GFP_NOFS);
143 if (!ii)
144 return NULL;
145 ii->i_bh = NULL;
146 ii->i_state = 0;
147 ii->vfs_inode.i_version = 1;
148 nilfs_btnode_cache_init(&ii->i_btnode_cache);
149 return &ii->vfs_inode;
150}
151
152void nilfs_destroy_inode(struct inode *inode)
153{
154 kmem_cache_free(nilfs_inode_cachep, NILFS_I(inode));
155}
156
157static void init_once(void *obj)
158{
159 struct nilfs_inode_info *ii = obj;
160
161 INIT_LIST_HEAD(&ii->i_dirty);
162#ifdef CONFIG_NILFS_XATTR
163 init_rwsem(&ii->xattr_sem);
164#endif
165 nilfs_btnode_cache_init_once(&ii->i_btnode_cache);
166 ii->i_bmap = (struct nilfs_bmap *)&ii->i_bmap_union;
167 inode_init_once(&ii->vfs_inode);
168}
169
170static int nilfs_init_inode_cache(void)
171{
172 nilfs_inode_cachep = kmem_cache_create("nilfs2_inode_cache",
173 sizeof(struct nilfs_inode_info),
174 0, SLAB_RECLAIM_ACCOUNT,
175 init_once);
176
177 return (nilfs_inode_cachep == NULL) ? -ENOMEM : 0;
178}
179
180static inline void nilfs_destroy_inode_cache(void)
181{
182 kmem_cache_destroy(nilfs_inode_cachep);
183}
184
185static void nilfs_clear_inode(struct inode *inode)
186{
187 struct nilfs_inode_info *ii = NILFS_I(inode);
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700188
189#ifdef CONFIG_NILFS_POSIX_ACL
190 if (ii->i_acl && ii->i_acl != NILFS_ACL_NOT_CACHED) {
191 posix_acl_release(ii->i_acl);
192 ii->i_acl = NILFS_ACL_NOT_CACHED;
193 }
194 if (ii->i_default_acl && ii->i_default_acl != NILFS_ACL_NOT_CACHED) {
195 posix_acl_release(ii->i_default_acl);
196 ii->i_default_acl = NILFS_ACL_NOT_CACHED;
197 }
198#endif
199 /*
200 * Free resources allocated in nilfs_read_inode(), here.
201 */
Ryusuke Konishia2e7d2d2009-04-06 19:01:44 -0700202 BUG_ON(!list_empty(&ii->i_dirty));
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700203 brelse(ii->i_bh);
204 ii->i_bh = NULL;
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700205
206 if (test_bit(NILFS_I_BMAP, &ii->i_state))
207 nilfs_bmap_clear(ii->i_bmap);
208
209 nilfs_btnode_cache_clear(&ii->i_btnode_cache);
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700210}
211
Ryusuke Konishie339ad32009-04-06 19:01:59 -0700212static int nilfs_sync_super(struct nilfs_sb_info *sbi, int dupsb)
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700213{
214 struct the_nilfs *nilfs = sbi->s_nilfs;
215 int err;
216 int barrier_done = 0;
217
218 if (nilfs_test_opt(sbi, BARRIER)) {
Ryusuke Konishie339ad32009-04-06 19:01:59 -0700219 set_buffer_ordered(nilfs->ns_sbh[0]);
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700220 barrier_done = 1;
221 }
222 retry:
Ryusuke Konishie339ad32009-04-06 19:01:59 -0700223 set_buffer_dirty(nilfs->ns_sbh[0]);
224 err = sync_dirty_buffer(nilfs->ns_sbh[0]);
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700225 if (err == -EOPNOTSUPP && barrier_done) {
226 nilfs_warning(sbi->s_super, __func__,
227 "barrier-based sync failed. "
228 "disabling barriers\n");
229 nilfs_clear_opt(sbi, BARRIER);
230 barrier_done = 0;
Ryusuke Konishie339ad32009-04-06 19:01:59 -0700231 clear_buffer_ordered(nilfs->ns_sbh[0]);
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700232 goto retry;
233 }
Ryusuke Konishie339ad32009-04-06 19:01:59 -0700234 if (unlikely(err)) {
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700235 printk(KERN_ERR
236 "NILFS: unable to write superblock (err=%d)\n", err);
Ryusuke Konishie339ad32009-04-06 19:01:59 -0700237 if (err == -EIO && nilfs->ns_sbh[1]) {
238 nilfs_fall_back_super_block(nilfs);
239 goto retry;
240 }
241 } else {
242 struct nilfs_super_block *sbp = nilfs->ns_sbp[0];
243
244 /*
245 * The latest segment becomes trailable from the position
246 * written in superblock.
247 */
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700248 clear_nilfs_discontinued(nilfs);
Ryusuke Konishie339ad32009-04-06 19:01:59 -0700249
250 /* update GC protection for recent segments */
251 if (nilfs->ns_sbh[1]) {
252 sbp = NULL;
253 if (dupsb) {
254 set_buffer_dirty(nilfs->ns_sbh[1]);
255 if (!sync_dirty_buffer(nilfs->ns_sbh[1]))
256 sbp = nilfs->ns_sbp[1];
257 }
258 }
259 if (sbp) {
260 spin_lock(&nilfs->ns_last_segment_lock);
261 nilfs->ns_prot_seq = le64_to_cpu(sbp->s_last_seq);
262 spin_unlock(&nilfs->ns_last_segment_lock);
263 }
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700264 }
265
266 return err;
267}
268
Ryusuke Konishie339ad32009-04-06 19:01:59 -0700269int nilfs_commit_super(struct nilfs_sb_info *sbi, int dupsb)
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700270{
271 struct the_nilfs *nilfs = sbi->s_nilfs;
Ryusuke Konishie339ad32009-04-06 19:01:59 -0700272 struct nilfs_super_block **sbp = nilfs->ns_sbp;
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700273 sector_t nfreeblocks;
Ryusuke Konishie339ad32009-04-06 19:01:59 -0700274 time_t t;
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700275 int err;
276
277 /* nilfs->sem must be locked by the caller. */
Ryusuke Konishie339ad32009-04-06 19:01:59 -0700278 if (sbp[0]->s_magic != NILFS_SUPER_MAGIC) {
279 if (sbp[1] && sbp[1]->s_magic == NILFS_SUPER_MAGIC)
280 nilfs_swap_super_block(nilfs);
281 else {
282 printk(KERN_CRIT "NILFS: superblock broke on dev %s\n",
283 sbi->s_super->s_id);
284 return -EIO;
285 }
286 }
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700287 err = nilfs_count_free_blocks(nilfs, &nfreeblocks);
288 if (unlikely(err)) {
289 printk(KERN_ERR "NILFS: failed to count free blocks\n");
290 return err;
291 }
Ryusuke Konishie339ad32009-04-06 19:01:59 -0700292 spin_lock(&nilfs->ns_last_segment_lock);
293 sbp[0]->s_last_seq = cpu_to_le64(nilfs->ns_last_seq);
294 sbp[0]->s_last_pseg = cpu_to_le64(nilfs->ns_last_pseg);
295 sbp[0]->s_last_cno = cpu_to_le64(nilfs->ns_last_cno);
296 spin_unlock(&nilfs->ns_last_segment_lock);
297
298 t = get_seconds();
299 nilfs->ns_sbwtime[0] = t;
300 sbp[0]->s_free_blocks_count = cpu_to_le64(nfreeblocks);
301 sbp[0]->s_wtime = cpu_to_le64(t);
302 sbp[0]->s_sum = 0;
303 sbp[0]->s_sum = cpu_to_le32(crc32_le(nilfs->ns_crc_seed,
304 (unsigned char *)sbp[0],
305 nilfs->ns_sbsize));
306 if (dupsb && sbp[1]) {
307 memcpy(sbp[1], sbp[0], nilfs->ns_sbsize);
308 nilfs->ns_sbwtime[1] = t;
309 }
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700310 sbi->s_super->s_dirt = 0;
Ryusuke Konishie339ad32009-04-06 19:01:59 -0700311 return nilfs_sync_super(sbi, dupsb);
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700312}
313
314static void nilfs_put_super(struct super_block *sb)
315{
316 struct nilfs_sb_info *sbi = NILFS_SB(sb);
317 struct the_nilfs *nilfs = sbi->s_nilfs;
318
Christoph Hellwig6cfd0142009-05-05 15:40:36 +0200319 lock_kernel();
320
Christoph Hellwig8c85e122009-04-28 18:00:26 +0200321 if (sb->s_dirt)
322 nilfs_write_super(sb);
323
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700324 nilfs_detach_segment_constructor(sbi);
325
326 if (!(sb->s_flags & MS_RDONLY)) {
327 down_write(&nilfs->ns_sem);
Ryusuke Konishie339ad32009-04-06 19:01:59 -0700328 nilfs->ns_sbp[0]->s_state = cpu_to_le16(nilfs->ns_mount_state);
329 nilfs_commit_super(sbi, 1);
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700330 up_write(&nilfs->ns_sem);
331 }
332
333 nilfs_detach_checkpoint(sbi);
334 put_nilfs(sbi->s_nilfs);
335 sbi->s_super = NULL;
336 sb->s_fs_info = NULL;
337 kfree(sbi);
Christoph Hellwig6cfd0142009-05-05 15:40:36 +0200338
339 unlock_kernel();
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700340}
341
342/**
343 * nilfs_write_super - write super block(s) of NILFS
344 * @sb: super_block
345 *
346 * nilfs_write_super() gets a fs-dependent lock, writes super block(s), and
347 * clears s_dirt. This function is called in the section protected by
348 * lock_super().
349 *
350 * The s_dirt flag is managed by each filesystem and we protect it by ns_sem
351 * of the struct the_nilfs. Lock order must be as follows:
352 *
353 * 1. lock_super()
354 * 2. down_write(&nilfs->ns_sem)
355 *
356 * Inside NILFS, locking ns_sem is enough to protect s_dirt and the buffer
Ryusuke Konishie339ad32009-04-06 19:01:59 -0700357 * of the super block (nilfs->ns_sbp[]).
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700358 *
359 * In most cases, VFS functions call lock_super() before calling these
360 * methods. So we must be careful not to bring on deadlocks when using
361 * lock_super(); see generic_shutdown_super(), write_super(), and so on.
362 *
363 * Note that order of lock_kernel() and lock_super() depends on contexts
364 * of VFS. We should also note that lock_kernel() can be used in its
365 * protective section and only the outermost one has an effect.
366 */
367static void nilfs_write_super(struct super_block *sb)
368{
369 struct nilfs_sb_info *sbi = NILFS_SB(sb);
370 struct the_nilfs *nilfs = sbi->s_nilfs;
371
372 down_write(&nilfs->ns_sem);
Ryusuke Konishie339ad32009-04-06 19:01:59 -0700373 if (!(sb->s_flags & MS_RDONLY)) {
374 struct nilfs_super_block **sbp = nilfs->ns_sbp;
375 u64 t = get_seconds();
376 int dupsb;
377
378 if (!nilfs_discontinued(nilfs) && t >= nilfs->ns_sbwtime[0] &&
379 t < nilfs->ns_sbwtime[0] + NILFS_SB_FREQ) {
380 up_write(&nilfs->ns_sem);
381 return;
382 }
383 dupsb = sbp[1] && t > nilfs->ns_sbwtime[1] + NILFS_ALTSB_FREQ;
384 nilfs_commit_super(sbi, dupsb);
385 }
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700386 sb->s_dirt = 0;
387 up_write(&nilfs->ns_sem);
388}
389
390static int nilfs_sync_fs(struct super_block *sb, int wait)
391{
392 int err = 0;
393
394 /* This function is called when super block should be written back */
395 if (wait)
396 err = nilfs_construct_segment(sb);
397 return err;
398}
399
400int nilfs_attach_checkpoint(struct nilfs_sb_info *sbi, __u64 cno)
401{
402 struct the_nilfs *nilfs = sbi->s_nilfs;
403 struct nilfs_checkpoint *raw_cp;
404 struct buffer_head *bh_cp;
405 int err;
406
407 down_write(&nilfs->ns_sem);
408 list_add(&sbi->s_list, &nilfs->ns_supers);
409 up_write(&nilfs->ns_sem);
410
411 sbi->s_ifile = nilfs_mdt_new(
412 nilfs, sbi->s_super, NILFS_IFILE_INO, NILFS_IFILE_GFP);
413 if (!sbi->s_ifile)
414 return -ENOMEM;
415
416 err = nilfs_palloc_init_blockgroup(sbi->s_ifile, nilfs->ns_inode_size);
417 if (unlikely(err))
418 goto failed;
419
420 err = nilfs_cpfile_get_checkpoint(nilfs->ns_cpfile, cno, 0, &raw_cp,
421 &bh_cp);
422 if (unlikely(err)) {
423 if (err == -ENOENT || err == -EINVAL) {
424 printk(KERN_ERR
425 "NILFS: Invalid checkpoint "
426 "(checkpoint number=%llu)\n",
427 (unsigned long long)cno);
428 err = -EINVAL;
429 }
430 goto failed;
431 }
432 err = nilfs_read_inode_common(sbi->s_ifile, &raw_cp->cp_ifile_inode);
433 if (unlikely(err))
434 goto failed_bh;
435 atomic_set(&sbi->s_inodes_count, le64_to_cpu(raw_cp->cp_inodes_count));
436 atomic_set(&sbi->s_blocks_count, le64_to_cpu(raw_cp->cp_blocks_count));
437
438 nilfs_cpfile_put_checkpoint(nilfs->ns_cpfile, cno, bh_cp);
439 return 0;
440
441 failed_bh:
442 nilfs_cpfile_put_checkpoint(nilfs->ns_cpfile, cno, bh_cp);
443 failed:
444 nilfs_mdt_destroy(sbi->s_ifile);
445 sbi->s_ifile = NULL;
446
447 down_write(&nilfs->ns_sem);
448 list_del_init(&sbi->s_list);
449 up_write(&nilfs->ns_sem);
450
451 return err;
452}
453
454void nilfs_detach_checkpoint(struct nilfs_sb_info *sbi)
455{
456 struct the_nilfs *nilfs = sbi->s_nilfs;
457
458 nilfs_mdt_clear(sbi->s_ifile);
459 nilfs_mdt_destroy(sbi->s_ifile);
460 sbi->s_ifile = NULL;
461 down_write(&nilfs->ns_sem);
462 list_del_init(&sbi->s_list);
463 up_write(&nilfs->ns_sem);
464}
465
466static int nilfs_mark_recovery_complete(struct nilfs_sb_info *sbi)
467{
468 struct the_nilfs *nilfs = sbi->s_nilfs;
469 int err = 0;
470
471 down_write(&nilfs->ns_sem);
472 if (!(nilfs->ns_mount_state & NILFS_VALID_FS)) {
473 nilfs->ns_mount_state |= NILFS_VALID_FS;
Ryusuke Konishie339ad32009-04-06 19:01:59 -0700474 err = nilfs_commit_super(sbi, 1);
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700475 if (likely(!err))
476 printk(KERN_INFO "NILFS: recovery complete.\n");
477 }
478 up_write(&nilfs->ns_sem);
479 return err;
480}
481
482static int nilfs_statfs(struct dentry *dentry, struct kstatfs *buf)
483{
484 struct super_block *sb = dentry->d_sb;
485 struct nilfs_sb_info *sbi = NILFS_SB(sb);
Ryusuke Konishic306af22009-03-26 10:16:57 +0900486 struct the_nilfs *nilfs = sbi->s_nilfs;
487 u64 id = huge_encode_dev(sb->s_bdev->bd_dev);
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700488 unsigned long long blocks;
489 unsigned long overhead;
490 unsigned long nrsvblocks;
491 sector_t nfreeblocks;
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700492 int err;
493
494 /*
495 * Compute all of the segment blocks
496 *
497 * The blocks before first segment and after last segment
498 * are excluded.
499 */
500 blocks = nilfs->ns_blocks_per_segment * nilfs->ns_nsegments
501 - nilfs->ns_first_data_block;
502 nrsvblocks = nilfs->ns_nrsvsegs * nilfs->ns_blocks_per_segment;
503
504 /*
505 * Compute the overhead
506 *
507 * When distributing meta data blocks outside semgent structure,
508 * We must count them as the overhead.
509 */
510 overhead = 0;
511
512 err = nilfs_count_free_blocks(nilfs, &nfreeblocks);
513 if (unlikely(err))
514 return err;
515
516 buf->f_type = NILFS_SUPER_MAGIC;
517 buf->f_bsize = sb->s_blocksize;
518 buf->f_blocks = blocks - overhead;
519 buf->f_bfree = nfreeblocks;
520 buf->f_bavail = (buf->f_bfree >= nrsvblocks) ?
521 (buf->f_bfree - nrsvblocks) : 0;
522 buf->f_files = atomic_read(&sbi->s_inodes_count);
523 buf->f_ffree = 0; /* nilfs_count_free_inodes(sb); */
524 buf->f_namelen = NILFS_NAME_LEN;
Ryusuke Konishic306af22009-03-26 10:16:57 +0900525 buf->f_fsid.val[0] = (u32)id;
526 buf->f_fsid.val[1] = (u32)(id >> 32);
527
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700528 return 0;
529}
530
531static struct super_operations nilfs_sops = {
532 .alloc_inode = nilfs_alloc_inode,
533 .destroy_inode = nilfs_destroy_inode,
534 .dirty_inode = nilfs_dirty_inode,
535 /* .write_inode = nilfs_write_inode, */
536 /* .put_inode = nilfs_put_inode, */
537 /* .drop_inode = nilfs_drop_inode, */
538 .delete_inode = nilfs_delete_inode,
539 .put_super = nilfs_put_super,
540 .write_super = nilfs_write_super,
541 .sync_fs = nilfs_sync_fs,
542 /* .write_super_lockfs */
543 /* .unlockfs */
544 .statfs = nilfs_statfs,
545 .remount_fs = nilfs_remount,
546 .clear_inode = nilfs_clear_inode,
547 /* .umount_begin */
548 /* .show_options */
549};
550
551static struct inode *
552nilfs_nfs_get_inode(struct super_block *sb, u64 ino, u32 generation)
553{
554 struct inode *inode;
555
556 if (ino < NILFS_FIRST_INO(sb) && ino != NILFS_ROOT_INO &&
557 ino != NILFS_SKETCH_INO)
558 return ERR_PTR(-ESTALE);
559
560 inode = nilfs_iget(sb, ino);
561 if (IS_ERR(inode))
562 return ERR_CAST(inode);
563 if (generation && inode->i_generation != generation) {
564 iput(inode);
565 return ERR_PTR(-ESTALE);
566 }
567
568 return inode;
569}
570
571static struct dentry *
572nilfs_fh_to_dentry(struct super_block *sb, struct fid *fid, int fh_len,
573 int fh_type)
574{
575 return generic_fh_to_dentry(sb, fid, fh_len, fh_type,
576 nilfs_nfs_get_inode);
577}
578
579static struct dentry *
580nilfs_fh_to_parent(struct super_block *sb, struct fid *fid, int fh_len,
581 int fh_type)
582{
583 return generic_fh_to_parent(sb, fid, fh_len, fh_type,
584 nilfs_nfs_get_inode);
585}
586
587static struct export_operations nilfs_export_ops = {
588 .fh_to_dentry = nilfs_fh_to_dentry,
589 .fh_to_parent = nilfs_fh_to_parent,
590 .get_parent = nilfs_get_parent,
591};
592
593enum {
594 Opt_err_cont, Opt_err_panic, Opt_err_ro,
595 Opt_barrier, Opt_snapshot, Opt_order,
596 Opt_err,
597};
598
599static match_table_t tokens = {
600 {Opt_err_cont, "errors=continue"},
601 {Opt_err_panic, "errors=panic"},
602 {Opt_err_ro, "errors=remount-ro"},
603 {Opt_barrier, "barrier=%s"},
604 {Opt_snapshot, "cp=%u"},
605 {Opt_order, "order=%s"},
606 {Opt_err, NULL}
607};
608
609static int match_bool(substring_t *s, int *result)
610{
611 int len = s->to - s->from;
612
613 if (strncmp(s->from, "on", len) == 0)
614 *result = 1;
615 else if (strncmp(s->from, "off", len) == 0)
616 *result = 0;
617 else
618 return 1;
619 return 0;
620}
621
622static int parse_options(char *options, struct super_block *sb)
623{
624 struct nilfs_sb_info *sbi = NILFS_SB(sb);
625 char *p;
626 substring_t args[MAX_OPT_ARGS];
627 int option;
628
629 if (!options)
630 return 1;
631
632 while ((p = strsep(&options, ",")) != NULL) {
633 int token;
634 if (!*p)
635 continue;
636
637 token = match_token(p, tokens, args);
638 switch (token) {
639 case Opt_barrier:
640 if (match_bool(&args[0], &option))
641 return 0;
642 if (option)
643 nilfs_set_opt(sbi, BARRIER);
644 else
645 nilfs_clear_opt(sbi, BARRIER);
646 break;
647 case Opt_order:
648 if (strcmp(args[0].from, "relaxed") == 0)
649 /* Ordered data semantics */
650 nilfs_clear_opt(sbi, STRICT_ORDER);
651 else if (strcmp(args[0].from, "strict") == 0)
652 /* Strict in-order semantics */
653 nilfs_set_opt(sbi, STRICT_ORDER);
654 else
655 return 0;
656 break;
657 case Opt_err_panic:
658 nilfs_write_opt(sbi, ERROR_MODE, ERRORS_PANIC);
659 break;
660 case Opt_err_ro:
661 nilfs_write_opt(sbi, ERROR_MODE, ERRORS_RO);
662 break;
663 case Opt_err_cont:
664 nilfs_write_opt(sbi, ERROR_MODE, ERRORS_CONT);
665 break;
666 case Opt_snapshot:
667 if (match_int(&args[0], &option) || option <= 0)
668 return 0;
669 if (!(sb->s_flags & MS_RDONLY))
670 return 0;
671 sbi->s_snapshot_cno = option;
672 nilfs_set_opt(sbi, SNAPSHOT);
673 break;
674 default:
675 printk(KERN_ERR
676 "NILFS: Unrecognized mount option \"%s\"\n", p);
677 return 0;
678 }
679 }
680 return 1;
681}
682
683static inline void
684nilfs_set_default_options(struct nilfs_sb_info *sbi,
685 struct nilfs_super_block *sbp)
686{
687 sbi->s_mount_opt =
688 NILFS_MOUNT_ERRORS_CONT | NILFS_MOUNT_BARRIER;
689}
690
691static int nilfs_setup_super(struct nilfs_sb_info *sbi)
692{
693 struct the_nilfs *nilfs = sbi->s_nilfs;
Ryusuke Konishie339ad32009-04-06 19:01:59 -0700694 struct nilfs_super_block *sbp = nilfs->ns_sbp[0];
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700695 int max_mnt_count = le16_to_cpu(sbp->s_max_mnt_count);
696 int mnt_count = le16_to_cpu(sbp->s_mnt_count);
697
698 /* nilfs->sem must be locked by the caller. */
699 if (!(nilfs->ns_mount_state & NILFS_VALID_FS)) {
700 printk(KERN_WARNING "NILFS warning: mounting unchecked fs\n");
701 } else if (nilfs->ns_mount_state & NILFS_ERROR_FS) {
702 printk(KERN_WARNING
703 "NILFS warning: mounting fs with errors\n");
704#if 0
705 } else if (max_mnt_count >= 0 && mnt_count >= max_mnt_count) {
706 printk(KERN_WARNING
707 "NILFS warning: maximal mount count reached\n");
708#endif
709 }
710 if (!max_mnt_count)
711 sbp->s_max_mnt_count = cpu_to_le16(NILFS_DFL_MAX_MNT_COUNT);
712
713 sbp->s_mnt_count = cpu_to_le16(mnt_count + 1);
714 sbp->s_state = cpu_to_le16(le16_to_cpu(sbp->s_state) & ~NILFS_VALID_FS);
715 sbp->s_mtime = cpu_to_le64(get_seconds());
Ryusuke Konishie339ad32009-04-06 19:01:59 -0700716 return nilfs_commit_super(sbi, 1);
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700717}
718
Ryusuke Konishie339ad32009-04-06 19:01:59 -0700719struct nilfs_super_block *nilfs_read_super_block(struct super_block *sb,
720 u64 pos, int blocksize,
721 struct buffer_head **pbh)
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700722{
Ryusuke Konishie339ad32009-04-06 19:01:59 -0700723 unsigned long long sb_index = pos;
724 unsigned long offset;
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700725
Ryusuke Konishie339ad32009-04-06 19:01:59 -0700726 offset = do_div(sb_index, blocksize);
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700727 *pbh = sb_bread(sb, sb_index);
Ryusuke Konishie339ad32009-04-06 19:01:59 -0700728 if (!*pbh)
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700729 return NULL;
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700730 return (struct nilfs_super_block *)((char *)(*pbh)->b_data + offset);
731}
732
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700733int nilfs_store_magic_and_option(struct super_block *sb,
734 struct nilfs_super_block *sbp,
735 char *data)
736{
737 struct nilfs_sb_info *sbi = NILFS_SB(sb);
738
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700739 sb->s_magic = le16_to_cpu(sbp->s_magic);
740
741 /* FS independent flags */
742#ifdef NILFS_ATIME_DISABLE
743 sb->s_flags |= MS_NOATIME;
744#endif
745
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700746 nilfs_set_default_options(sbi, sbp);
747
748 sbi->s_resuid = le16_to_cpu(sbp->s_def_resuid);
749 sbi->s_resgid = le16_to_cpu(sbp->s_def_resgid);
750 sbi->s_interval = le32_to_cpu(sbp->s_c_interval);
751 sbi->s_watermark = le32_to_cpu(sbp->s_c_block_max);
752
Ryusuke Konishie339ad32009-04-06 19:01:59 -0700753 return !parse_options(data, sb) ? -EINVAL : 0 ;
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700754}
755
756/**
757 * nilfs_fill_super() - initialize a super block instance
758 * @sb: super_block
759 * @data: mount options
760 * @silent: silent mode flag
761 * @nilfs: the_nilfs struct
762 *
763 * This function is called exclusively by bd_mount_mutex.
764 * So, the recovery process is protected from other simultaneous mounts.
765 */
766static int
767nilfs_fill_super(struct super_block *sb, void *data, int silent,
768 struct the_nilfs *nilfs)
769{
770 struct nilfs_sb_info *sbi;
771 struct inode *root;
772 __u64 cno;
773 int err;
774
775 sbi = kzalloc(sizeof(*sbi), GFP_KERNEL);
776 if (!sbi)
777 return -ENOMEM;
778
779 sb->s_fs_info = sbi;
780
781 get_nilfs(nilfs);
782 sbi->s_nilfs = nilfs;
783 sbi->s_super = sb;
784
785 err = init_nilfs(nilfs, sbi, (char *)data);
786 if (err)
787 goto failed_sbi;
788
789 spin_lock_init(&sbi->s_inode_lock);
790 INIT_LIST_HEAD(&sbi->s_dirty_files);
791 INIT_LIST_HEAD(&sbi->s_list);
792
793 /*
794 * Following initialization is overlapped because
795 * nilfs_sb_info structure has been cleared at the beginning.
796 * But we reserve them to keep our interest and make ready
797 * for the future change.
798 */
799 get_random_bytes(&sbi->s_next_generation,
800 sizeof(sbi->s_next_generation));
801 spin_lock_init(&sbi->s_next_gen_lock);
802
803 sb->s_op = &nilfs_sops;
804 sb->s_export_op = &nilfs_export_ops;
805 sb->s_root = NULL;
Ryusuke Konishi61239232009-04-06 19:02:00 -0700806 sb->s_time_gran = 1;
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700807
808 if (!nilfs_loaded(nilfs)) {
809 err = load_nilfs(nilfs, sbi);
810 if (err)
811 goto failed_sbi;
812 }
813 cno = nilfs_last_cno(nilfs);
814
815 if (sb->s_flags & MS_RDONLY) {
816 if (nilfs_test_opt(sbi, SNAPSHOT)) {
Ryusuke Konishi1f5abe72009-04-06 19:01:55 -0700817 err = nilfs_cpfile_is_snapshot(nilfs->ns_cpfile,
818 sbi->s_snapshot_cno);
819 if (err < 0)
820 goto failed_sbi;
821 if (!err) {
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700822 printk(KERN_ERR
823 "NILFS: The specified checkpoint is "
824 "not a snapshot "
825 "(checkpoint number=%llu).\n",
826 (unsigned long long)sbi->s_snapshot_cno);
827 err = -EINVAL;
828 goto failed_sbi;
829 }
830 cno = sbi->s_snapshot_cno;
831 } else
832 /* Read-only mount */
833 sbi->s_snapshot_cno = cno;
834 }
835
836 err = nilfs_attach_checkpoint(sbi, cno);
837 if (err) {
838 printk(KERN_ERR "NILFS: error loading a checkpoint"
839 " (checkpoint number=%llu).\n", (unsigned long long)cno);
840 goto failed_sbi;
841 }
842
843 if (!(sb->s_flags & MS_RDONLY)) {
Ryusuke Konishicece5522009-04-06 19:01:58 -0700844 err = nilfs_attach_segment_constructor(sbi);
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700845 if (err)
846 goto failed_checkpoint;
847 }
848
849 root = nilfs_iget(sb, NILFS_ROOT_INO);
850 if (IS_ERR(root)) {
851 printk(KERN_ERR "NILFS: get root inode failed\n");
852 err = PTR_ERR(root);
853 goto failed_segctor;
854 }
855 if (!S_ISDIR(root->i_mode) || !root->i_blocks || !root->i_size) {
856 iput(root);
857 printk(KERN_ERR "NILFS: corrupt root inode.\n");
858 err = -EINVAL;
859 goto failed_segctor;
860 }
861 sb->s_root = d_alloc_root(root);
862 if (!sb->s_root) {
863 iput(root);
864 printk(KERN_ERR "NILFS: get root dentry failed\n");
865 err = -ENOMEM;
866 goto failed_segctor;
867 }
868
869 if (!(sb->s_flags & MS_RDONLY)) {
870 down_write(&nilfs->ns_sem);
871 nilfs_setup_super(sbi);
872 up_write(&nilfs->ns_sem);
873 }
874
875 err = nilfs_mark_recovery_complete(sbi);
876 if (unlikely(err)) {
877 printk(KERN_ERR "NILFS: recovery failed.\n");
878 goto failed_root;
879 }
880
881 return 0;
882
883 failed_root:
884 dput(sb->s_root);
885 sb->s_root = NULL;
886
887 failed_segctor:
888 nilfs_detach_segment_constructor(sbi);
889
890 failed_checkpoint:
891 nilfs_detach_checkpoint(sbi);
892
893 failed_sbi:
894 put_nilfs(nilfs);
895 sb->s_fs_info = NULL;
896 kfree(sbi);
897 return err;
898}
899
900static int nilfs_remount(struct super_block *sb, int *flags, char *data)
901{
902 struct nilfs_sb_info *sbi = NILFS_SB(sb);
903 struct nilfs_super_block *sbp;
904 struct the_nilfs *nilfs = sbi->s_nilfs;
905 unsigned long old_sb_flags;
906 struct nilfs_mount_options old_opts;
907 int err;
908
Alessio Igor Bogani337eb002009-05-12 15:10:54 +0200909 lock_kernel();
910
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700911 old_sb_flags = sb->s_flags;
912 old_opts.mount_opt = sbi->s_mount_opt;
913 old_opts.snapshot_cno = sbi->s_snapshot_cno;
914
915 if (!parse_options(data, sb)) {
916 err = -EINVAL;
917 goto restore_opts;
918 }
919 sb->s_flags = (sb->s_flags & ~MS_POSIXACL);
920
921 if ((*flags & MS_RDONLY) &&
922 sbi->s_snapshot_cno != old_opts.snapshot_cno) {
923 printk(KERN_WARNING "NILFS (device %s): couldn't "
924 "remount to a different snapshot. \n",
925 sb->s_id);
926 err = -EINVAL;
927 goto restore_opts;
928 }
929
930 if ((*flags & MS_RDONLY) == (sb->s_flags & MS_RDONLY))
931 goto out;
932 if (*flags & MS_RDONLY) {
933 /* Shutting down the segment constructor */
934 nilfs_detach_segment_constructor(sbi);
935 sb->s_flags |= MS_RDONLY;
936
937 sbi->s_snapshot_cno = nilfs_last_cno(nilfs);
938 /* nilfs_set_opt(sbi, SNAPSHOT); */
939
940 /*
941 * Remounting a valid RW partition RDONLY, so set
942 * the RDONLY flag and then mark the partition as valid again.
943 */
944 down_write(&nilfs->ns_sem);
Ryusuke Konishie339ad32009-04-06 19:01:59 -0700945 sbp = nilfs->ns_sbp[0];
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700946 if (!(sbp->s_state & le16_to_cpu(NILFS_VALID_FS)) &&
947 (nilfs->ns_mount_state & NILFS_VALID_FS))
948 sbp->s_state = cpu_to_le16(nilfs->ns_mount_state);
949 sbp->s_mtime = cpu_to_le64(get_seconds());
Ryusuke Konishie339ad32009-04-06 19:01:59 -0700950 nilfs_commit_super(sbi, 1);
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700951 up_write(&nilfs->ns_sem);
952 } else {
953 /*
954 * Mounting a RDONLY partition read-write, so reread and
955 * store the current valid flag. (It may have been changed
956 * by fsck since we originally mounted the partition.)
957 */
958 down(&sb->s_bdev->bd_mount_sem);
959 /* Check existing RW-mount */
960 if (test_exclusive_mount(sb->s_type, sb->s_bdev, 0)) {
961 printk(KERN_WARNING "NILFS (device %s): couldn't "
962 "remount because a RW-mount exists.\n",
963 sb->s_id);
964 err = -EBUSY;
965 goto rw_remount_failed;
966 }
967 if (sbi->s_snapshot_cno != nilfs_last_cno(nilfs)) {
968 printk(KERN_WARNING "NILFS (device %s): couldn't "
969 "remount because the current RO-mount is not "
970 "the latest one.\n",
971 sb->s_id);
972 err = -EINVAL;
973 goto rw_remount_failed;
974 }
975 sb->s_flags &= ~MS_RDONLY;
976 nilfs_clear_opt(sbi, SNAPSHOT);
977 sbi->s_snapshot_cno = 0;
978
Ryusuke Konishicece5522009-04-06 19:01:58 -0700979 err = nilfs_attach_segment_constructor(sbi);
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700980 if (err)
981 goto rw_remount_failed;
982
983 down_write(&nilfs->ns_sem);
984 nilfs_setup_super(sbi);
985 up_write(&nilfs->ns_sem);
986
987 up(&sb->s_bdev->bd_mount_sem);
988 }
989 out:
Alessio Igor Bogani337eb002009-05-12 15:10:54 +0200990 unlock_kernel();
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700991 return 0;
992
993 rw_remount_failed:
994 up(&sb->s_bdev->bd_mount_sem);
995 restore_opts:
996 sb->s_flags = old_sb_flags;
997 sbi->s_mount_opt = old_opts.mount_opt;
998 sbi->s_snapshot_cno = old_opts.snapshot_cno;
Alessio Igor Bogani337eb002009-05-12 15:10:54 +0200999 unlock_kernel();
Ryusuke Konishi783f6182009-04-06 19:01:35 -07001000 return err;
1001}
1002
1003struct nilfs_super_data {
1004 struct block_device *bdev;
1005 __u64 cno;
1006 int flags;
1007};
1008
1009/**
1010 * nilfs_identify - pre-read mount options needed to identify mount instance
1011 * @data: mount options
1012 * @sd: nilfs_super_data
1013 */
1014static int nilfs_identify(char *data, struct nilfs_super_data *sd)
1015{
1016 char *p, *options = data;
1017 substring_t args[MAX_OPT_ARGS];
1018 int option, token;
1019 int ret = 0;
1020
1021 do {
1022 p = strsep(&options, ",");
1023 if (p != NULL && *p) {
1024 token = match_token(p, tokens, args);
1025 if (token == Opt_snapshot) {
1026 if (!(sd->flags & MS_RDONLY))
1027 ret++;
1028 else {
1029 ret = match_int(&args[0], &option);
1030 if (!ret) {
1031 if (option > 0)
1032 sd->cno = option;
1033 else
1034 ret++;
1035 }
1036 }
1037 }
1038 if (ret)
1039 printk(KERN_ERR
1040 "NILFS: invalid mount option: %s\n", p);
1041 }
1042 if (!options)
1043 break;
1044 BUG_ON(options == data);
1045 *(options - 1) = ',';
1046 } while (!ret);
1047 return ret;
1048}
1049
1050static int nilfs_set_bdev_super(struct super_block *s, void *data)
1051{
1052 struct nilfs_super_data *sd = data;
1053
1054 s->s_bdev = sd->bdev;
1055 s->s_dev = s->s_bdev->bd_dev;
1056 return 0;
1057}
1058
1059static int nilfs_test_bdev_super(struct super_block *s, void *data)
1060{
1061 struct nilfs_super_data *sd = data;
1062
1063 return s->s_bdev == sd->bdev;
1064}
1065
1066static int nilfs_test_bdev_super2(struct super_block *s, void *data)
1067{
1068 struct nilfs_super_data *sd = data;
1069 int ret;
1070
1071 if (s->s_bdev != sd->bdev)
1072 return 0;
1073
1074 if (!((s->s_flags | sd->flags) & MS_RDONLY))
1075 return 1; /* Reuse an old R/W-mode super_block */
1076
1077 if (s->s_flags & sd->flags & MS_RDONLY) {
1078 if (down_read_trylock(&s->s_umount)) {
1079 ret = s->s_root &&
1080 (sd->cno == NILFS_SB(s)->s_snapshot_cno);
1081 up_read(&s->s_umount);
1082 /*
1083 * This path is locked with sb_lock by sget().
1084 * So, drop_super() causes deadlock.
1085 */
1086 return ret;
1087 }
1088 }
1089 return 0;
1090}
1091
1092static int
1093nilfs_get_sb(struct file_system_type *fs_type, int flags,
1094 const char *dev_name, void *data, struct vfsmount *mnt)
1095{
1096 struct nilfs_super_data sd;
1097 struct super_block *s, *s2;
1098 struct the_nilfs *nilfs = NULL;
1099 int err, need_to_close = 1;
1100
1101 sd.bdev = open_bdev_exclusive(dev_name, flags, fs_type);
1102 if (IS_ERR(sd.bdev))
1103 return PTR_ERR(sd.bdev);
1104
1105 /*
1106 * To get mount instance using sget() vfs-routine, NILFS needs
1107 * much more information than normal filesystems to identify mount
1108 * instance. For snapshot mounts, not only a mount type (ro-mount
1109 * or rw-mount) but also a checkpoint number is required.
1110 * The results are passed in sget() using nilfs_super_data.
1111 */
1112 sd.cno = 0;
1113 sd.flags = flags;
1114 if (nilfs_identify((char *)data, &sd)) {
1115 err = -EINVAL;
1116 goto failed;
1117 }
1118
1119 /*
1120 * once the super is inserted into the list by sget, s_umount
1121 * will protect the lockfs code from trying to start a snapshot
1122 * while we are mounting
1123 */
1124 down(&sd.bdev->bd_mount_sem);
1125 if (!sd.cno &&
1126 (err = test_exclusive_mount(fs_type, sd.bdev, flags ^ MS_RDONLY))) {
1127 err = (err < 0) ? : -EBUSY;
1128 goto failed_unlock;
1129 }
1130
1131 /*
1132 * Phase-1: search any existent instance and get the_nilfs
1133 */
1134 s = sget(fs_type, nilfs_test_bdev_super, nilfs_set_bdev_super, &sd);
1135 if (IS_ERR(s))
1136 goto error_s;
1137
1138 if (!s->s_root) {
1139 err = -ENOMEM;
1140 nilfs = alloc_nilfs(sd.bdev);
1141 if (!nilfs)
1142 goto cancel_new;
1143 } else {
1144 struct nilfs_sb_info *sbi = NILFS_SB(s);
1145
Ryusuke Konishi783f6182009-04-06 19:01:35 -07001146 /*
1147 * s_umount protects super_block from unmount process;
1148 * It covers pointers of nilfs_sb_info and the_nilfs.
1149 */
1150 nilfs = sbi->s_nilfs;
1151 get_nilfs(nilfs);
1152 up_write(&s->s_umount);
1153
1154 /*
1155 * Phase-2: search specified snapshot or R/W mode super_block
1156 */
1157 if (!sd.cno)
1158 /* trying to get the latest checkpoint. */
1159 sd.cno = nilfs_last_cno(nilfs);
1160
1161 s2 = sget(fs_type, nilfs_test_bdev_super2,
1162 nilfs_set_bdev_super, &sd);
1163 deactivate_super(s);
1164 /*
1165 * Although deactivate_super() invokes close_bdev_exclusive() at
1166 * kill_block_super(). Here, s is an existent mount; we need
1167 * one more close_bdev_exclusive() call.
1168 */
1169 s = s2;
1170 if (IS_ERR(s))
1171 goto error_s;
1172 }
1173
1174 if (!s->s_root) {
1175 char b[BDEVNAME_SIZE];
1176
1177 s->s_flags = flags;
1178 strlcpy(s->s_id, bdevname(sd.bdev, b), sizeof(s->s_id));
1179 sb_set_blocksize(s, block_size(sd.bdev));
1180
1181 err = nilfs_fill_super(s, data, flags & MS_VERBOSE, nilfs);
1182 if (err)
1183 goto cancel_new;
1184
1185 s->s_flags |= MS_ACTIVE;
1186 need_to_close = 0;
1187 } else if (!(s->s_flags & MS_RDONLY)) {
1188 err = -EBUSY;
1189 }
1190
1191 up(&sd.bdev->bd_mount_sem);
1192 put_nilfs(nilfs);
1193 if (need_to_close)
1194 close_bdev_exclusive(sd.bdev, flags);
1195 simple_set_mnt(mnt, s);
1196 return 0;
1197
1198 error_s:
1199 up(&sd.bdev->bd_mount_sem);
1200 if (nilfs)
1201 put_nilfs(nilfs);
1202 close_bdev_exclusive(sd.bdev, flags);
1203 return PTR_ERR(s);
1204
1205 failed_unlock:
1206 up(&sd.bdev->bd_mount_sem);
1207 failed:
1208 close_bdev_exclusive(sd.bdev, flags);
1209
1210 return err;
1211
1212 cancel_new:
1213 /* Abandoning the newly allocated superblock */
1214 up(&sd.bdev->bd_mount_sem);
1215 if (nilfs)
1216 put_nilfs(nilfs);
1217 up_write(&s->s_umount);
1218 deactivate_super(s);
1219 /*
1220 * deactivate_super() invokes close_bdev_exclusive().
1221 * We must finish all post-cleaning before this call;
1222 * put_nilfs() and unlocking bd_mount_sem need the block device.
1223 */
1224 return err;
1225}
1226
1227static int nilfs_test_bdev_super3(struct super_block *s, void *data)
1228{
1229 struct nilfs_super_data *sd = data;
1230 int ret;
1231
1232 if (s->s_bdev != sd->bdev)
1233 return 0;
1234 if (down_read_trylock(&s->s_umount)) {
1235 ret = (s->s_flags & MS_RDONLY) && s->s_root &&
1236 nilfs_test_opt(NILFS_SB(s), SNAPSHOT);
1237 up_read(&s->s_umount);
1238 if (ret)
1239 return 0; /* ignore snapshot mounts */
1240 }
1241 return !((sd->flags ^ s->s_flags) & MS_RDONLY);
1242}
1243
1244static int __false_bdev_super(struct super_block *s, void *data)
1245{
1246#if 0 /* XXX: workaround for lock debug. This is not good idea */
1247 up_write(&s->s_umount);
1248#endif
1249 return -EFAULT;
1250}
1251
1252/**
1253 * test_exclusive_mount - check whether an exclusive RW/RO mount exists or not.
1254 * fs_type: filesystem type
1255 * bdev: block device
1256 * flag: 0 (check rw-mount) or MS_RDONLY (check ro-mount)
1257 * res: pointer to an integer to store result
1258 *
1259 * This function must be called within a section protected by bd_mount_mutex.
1260 */
1261static int test_exclusive_mount(struct file_system_type *fs_type,
1262 struct block_device *bdev, int flags)
1263{
1264 struct super_block *s;
1265 struct nilfs_super_data sd = { .flags = flags, .bdev = bdev };
1266
1267 s = sget(fs_type, nilfs_test_bdev_super3, __false_bdev_super, &sd);
1268 if (IS_ERR(s)) {
1269 if (PTR_ERR(s) != -EFAULT)
1270 return PTR_ERR(s);
1271 return 0; /* Not found */
1272 }
1273 up_write(&s->s_umount);
1274 deactivate_super(s);
1275 return 1; /* Found */
1276}
1277
1278struct file_system_type nilfs_fs_type = {
1279 .owner = THIS_MODULE,
1280 .name = "nilfs2",
1281 .get_sb = nilfs_get_sb,
1282 .kill_sb = kill_block_super,
1283 .fs_flags = FS_REQUIRES_DEV,
1284};
1285
1286static int __init init_nilfs_fs(void)
1287{
1288 int err;
1289
1290 err = nilfs_init_inode_cache();
1291 if (err)
1292 goto failed;
1293
1294 err = nilfs_init_transaction_cache();
1295 if (err)
1296 goto failed_inode_cache;
1297
1298 err = nilfs_init_segbuf_cache();
1299 if (err)
1300 goto failed_transaction_cache;
1301
1302 err = nilfs_btree_path_cache_init();
1303 if (err)
1304 goto failed_segbuf_cache;
1305
1306 err = register_filesystem(&nilfs_fs_type);
1307 if (err)
1308 goto failed_btree_path_cache;
1309
1310 return 0;
1311
1312 failed_btree_path_cache:
1313 nilfs_btree_path_cache_destroy();
1314
1315 failed_segbuf_cache:
1316 nilfs_destroy_segbuf_cache();
1317
1318 failed_transaction_cache:
1319 nilfs_destroy_transaction_cache();
1320
1321 failed_inode_cache:
1322 nilfs_destroy_inode_cache();
1323
1324 failed:
1325 return err;
1326}
1327
1328static void __exit exit_nilfs_fs(void)
1329{
1330 nilfs_destroy_segbuf_cache();
1331 nilfs_destroy_transaction_cache();
1332 nilfs_destroy_inode_cache();
1333 nilfs_btree_path_cache_destroy();
1334 unregister_filesystem(&nilfs_fs_type);
1335}
1336
1337module_init(init_nilfs_fs)
1338module_exit(exit_nilfs_fs)