blob: 9926a1d6d225eb1fbfe374811d62f1f6a9bb2f54 [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>
Jiro SEKIBAb58a2852009-06-24 20:06:34 +090053#include <linux/seq_file.h>
54#include <linux/mount.h>
Ryusuke Konishi783f6182009-04-06 19:01:35 -070055#include "nilfs.h"
56#include "mdt.h"
57#include "alloc.h"
58#include "page.h"
59#include "cpfile.h"
60#include "ifile.h"
61#include "dat.h"
62#include "segment.h"
63#include "segbuf.h"
64
65MODULE_AUTHOR("NTT Corp.");
66MODULE_DESCRIPTION("A New Implementation of the Log-structured Filesystem "
67 "(NILFS)");
Ryusuke Konishi783f6182009-04-06 19:01:35 -070068MODULE_LICENSE("GPL");
69
Christoph Hellwig8c85e122009-04-28 18:00:26 +020070static void nilfs_write_super(struct super_block *sb);
Ryusuke Konishi783f6182009-04-06 19:01:35 -070071static int nilfs_remount(struct super_block *sb, int *flags, char *data);
Ryusuke Konishi783f6182009-04-06 19:01:35 -070072
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
Ryusuke Konishia53b4752009-05-27 22:11:46 +0900138struct inode *nilfs_alloc_inode_common(struct the_nilfs *nilfs)
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700139{
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;
Ryusuke Konishia53b4752009-05-27 22:11:46 +0900148 nilfs_btnode_cache_init(&ii->i_btnode_cache, nilfs->ns_bdi);
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700149 return &ii->vfs_inode;
150}
151
Ryusuke Konishia53b4752009-05-27 22:11:46 +0900152struct inode *nilfs_alloc_inode(struct super_block *sb)
153{
154 return nilfs_alloc_inode_common(NILFS_SB(sb)->s_nilfs);
155}
156
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700157void nilfs_destroy_inode(struct inode *inode)
158{
159 kmem_cache_free(nilfs_inode_cachep, NILFS_I(inode));
160}
161
162static void init_once(void *obj)
163{
164 struct nilfs_inode_info *ii = obj;
165
166 INIT_LIST_HEAD(&ii->i_dirty);
167#ifdef CONFIG_NILFS_XATTR
168 init_rwsem(&ii->xattr_sem);
169#endif
170 nilfs_btnode_cache_init_once(&ii->i_btnode_cache);
171 ii->i_bmap = (struct nilfs_bmap *)&ii->i_bmap_union;
172 inode_init_once(&ii->vfs_inode);
173}
174
175static int nilfs_init_inode_cache(void)
176{
177 nilfs_inode_cachep = kmem_cache_create("nilfs2_inode_cache",
178 sizeof(struct nilfs_inode_info),
179 0, SLAB_RECLAIM_ACCOUNT,
180 init_once);
181
182 return (nilfs_inode_cachep == NULL) ? -ENOMEM : 0;
183}
184
185static inline void nilfs_destroy_inode_cache(void)
186{
187 kmem_cache_destroy(nilfs_inode_cachep);
188}
189
190static void nilfs_clear_inode(struct inode *inode)
191{
192 struct nilfs_inode_info *ii = NILFS_I(inode);
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700193
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700194 /*
195 * Free resources allocated in nilfs_read_inode(), here.
196 */
Ryusuke Konishia2e7d2d2009-04-06 19:01:44 -0700197 BUG_ON(!list_empty(&ii->i_dirty));
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700198 brelse(ii->i_bh);
199 ii->i_bh = NULL;
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700200
201 if (test_bit(NILFS_I_BMAP, &ii->i_state))
202 nilfs_bmap_clear(ii->i_bmap);
203
204 nilfs_btnode_cache_clear(&ii->i_btnode_cache);
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700205}
206
Ryusuke Konishie339ad32009-04-06 19:01:59 -0700207static int nilfs_sync_super(struct nilfs_sb_info *sbi, int dupsb)
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700208{
209 struct the_nilfs *nilfs = sbi->s_nilfs;
210 int err;
211 int barrier_done = 0;
212
213 if (nilfs_test_opt(sbi, BARRIER)) {
Ryusuke Konishie339ad32009-04-06 19:01:59 -0700214 set_buffer_ordered(nilfs->ns_sbh[0]);
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700215 barrier_done = 1;
216 }
217 retry:
Ryusuke Konishie339ad32009-04-06 19:01:59 -0700218 set_buffer_dirty(nilfs->ns_sbh[0]);
219 err = sync_dirty_buffer(nilfs->ns_sbh[0]);
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700220 if (err == -EOPNOTSUPP && barrier_done) {
221 nilfs_warning(sbi->s_super, __func__,
222 "barrier-based sync failed. "
223 "disabling barriers\n");
224 nilfs_clear_opt(sbi, BARRIER);
225 barrier_done = 0;
Ryusuke Konishie339ad32009-04-06 19:01:59 -0700226 clear_buffer_ordered(nilfs->ns_sbh[0]);
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700227 goto retry;
228 }
Ryusuke Konishie339ad32009-04-06 19:01:59 -0700229 if (unlikely(err)) {
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700230 printk(KERN_ERR
231 "NILFS: unable to write superblock (err=%d)\n", err);
Ryusuke Konishie339ad32009-04-06 19:01:59 -0700232 if (err == -EIO && nilfs->ns_sbh[1]) {
233 nilfs_fall_back_super_block(nilfs);
234 goto retry;
235 }
236 } else {
237 struct nilfs_super_block *sbp = nilfs->ns_sbp[0];
238
239 /*
240 * The latest segment becomes trailable from the position
241 * written in superblock.
242 */
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700243 clear_nilfs_discontinued(nilfs);
Ryusuke Konishie339ad32009-04-06 19:01:59 -0700244
245 /* update GC protection for recent segments */
246 if (nilfs->ns_sbh[1]) {
247 sbp = NULL;
248 if (dupsb) {
249 set_buffer_dirty(nilfs->ns_sbh[1]);
250 if (!sync_dirty_buffer(nilfs->ns_sbh[1]))
251 sbp = nilfs->ns_sbp[1];
252 }
253 }
254 if (sbp) {
255 spin_lock(&nilfs->ns_last_segment_lock);
256 nilfs->ns_prot_seq = le64_to_cpu(sbp->s_last_seq);
257 spin_unlock(&nilfs->ns_last_segment_lock);
258 }
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700259 }
260
261 return err;
262}
263
Ryusuke Konishie339ad32009-04-06 19:01:59 -0700264int nilfs_commit_super(struct nilfs_sb_info *sbi, int dupsb)
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700265{
266 struct the_nilfs *nilfs = sbi->s_nilfs;
Ryusuke Konishie339ad32009-04-06 19:01:59 -0700267 struct nilfs_super_block **sbp = nilfs->ns_sbp;
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700268 sector_t nfreeblocks;
Ryusuke Konishie339ad32009-04-06 19:01:59 -0700269 time_t t;
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700270 int err;
271
272 /* nilfs->sem must be locked by the caller. */
Ryusuke Konishie339ad32009-04-06 19:01:59 -0700273 if (sbp[0]->s_magic != NILFS_SUPER_MAGIC) {
274 if (sbp[1] && sbp[1]->s_magic == NILFS_SUPER_MAGIC)
275 nilfs_swap_super_block(nilfs);
276 else {
277 printk(KERN_CRIT "NILFS: superblock broke on dev %s\n",
278 sbi->s_super->s_id);
279 return -EIO;
280 }
281 }
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700282 err = nilfs_count_free_blocks(nilfs, &nfreeblocks);
283 if (unlikely(err)) {
284 printk(KERN_ERR "NILFS: failed to count free blocks\n");
285 return err;
286 }
Ryusuke Konishie339ad32009-04-06 19:01:59 -0700287 spin_lock(&nilfs->ns_last_segment_lock);
288 sbp[0]->s_last_seq = cpu_to_le64(nilfs->ns_last_seq);
289 sbp[0]->s_last_pseg = cpu_to_le64(nilfs->ns_last_pseg);
290 sbp[0]->s_last_cno = cpu_to_le64(nilfs->ns_last_cno);
291 spin_unlock(&nilfs->ns_last_segment_lock);
292
293 t = get_seconds();
294 nilfs->ns_sbwtime[0] = t;
295 sbp[0]->s_free_blocks_count = cpu_to_le64(nfreeblocks);
296 sbp[0]->s_wtime = cpu_to_le64(t);
297 sbp[0]->s_sum = 0;
298 sbp[0]->s_sum = cpu_to_le32(crc32_le(nilfs->ns_crc_seed,
299 (unsigned char *)sbp[0],
300 nilfs->ns_sbsize));
301 if (dupsb && sbp[1]) {
302 memcpy(sbp[1], sbp[0], nilfs->ns_sbsize);
303 nilfs->ns_sbwtime[1] = t;
304 }
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700305 sbi->s_super->s_dirt = 0;
Ryusuke Konishie339ad32009-04-06 19:01:59 -0700306 return nilfs_sync_super(sbi, dupsb);
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700307}
308
309static void nilfs_put_super(struct super_block *sb)
310{
311 struct nilfs_sb_info *sbi = NILFS_SB(sb);
312 struct the_nilfs *nilfs = sbi->s_nilfs;
313
Christoph Hellwig6cfd0142009-05-05 15:40:36 +0200314 lock_kernel();
315
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700316 nilfs_detach_segment_constructor(sbi);
317
318 if (!(sb->s_flags & MS_RDONLY)) {
319 down_write(&nilfs->ns_sem);
Ryusuke Konishie339ad32009-04-06 19:01:59 -0700320 nilfs->ns_sbp[0]->s_state = cpu_to_le16(nilfs->ns_mount_state);
321 nilfs_commit_super(sbi, 1);
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700322 up_write(&nilfs->ns_sem);
323 }
Ryusuke Konishie59399d2009-06-08 01:39:32 +0900324 down_write(&nilfs->ns_super_sem);
Ryusuke Konishi3f82ff52009-06-08 01:39:30 +0900325 if (nilfs->ns_current == sbi)
326 nilfs->ns_current = NULL;
Ryusuke Konishie59399d2009-06-08 01:39:32 +0900327 up_write(&nilfs->ns_super_sem);
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700328
329 nilfs_detach_checkpoint(sbi);
330 put_nilfs(sbi->s_nilfs);
331 sbi->s_super = NULL;
332 sb->s_fs_info = NULL;
Ryusuke Konishi6dd47402009-06-08 01:39:31 +0900333 nilfs_put_sbinfo(sbi);
Christoph Hellwig6cfd0142009-05-05 15:40:36 +0200334
335 unlock_kernel();
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700336}
337
338/**
339 * nilfs_write_super - write super block(s) of NILFS
340 * @sb: super_block
341 *
342 * nilfs_write_super() gets a fs-dependent lock, writes super block(s), and
343 * clears s_dirt. This function is called in the section protected by
344 * lock_super().
345 *
346 * The s_dirt flag is managed by each filesystem and we protect it by ns_sem
347 * of the struct the_nilfs. Lock order must be as follows:
348 *
349 * 1. lock_super()
350 * 2. down_write(&nilfs->ns_sem)
351 *
352 * Inside NILFS, locking ns_sem is enough to protect s_dirt and the buffer
Ryusuke Konishie339ad32009-04-06 19:01:59 -0700353 * of the super block (nilfs->ns_sbp[]).
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700354 *
355 * In most cases, VFS functions call lock_super() before calling these
356 * methods. So we must be careful not to bring on deadlocks when using
357 * lock_super(); see generic_shutdown_super(), write_super(), and so on.
358 *
359 * Note that order of lock_kernel() and lock_super() depends on contexts
360 * of VFS. We should also note that lock_kernel() can be used in its
361 * protective section and only the outermost one has an effect.
362 */
363static void nilfs_write_super(struct super_block *sb)
364{
365 struct nilfs_sb_info *sbi = NILFS_SB(sb);
366 struct the_nilfs *nilfs = sbi->s_nilfs;
367
368 down_write(&nilfs->ns_sem);
Ryusuke Konishie339ad32009-04-06 19:01:59 -0700369 if (!(sb->s_flags & MS_RDONLY)) {
370 struct nilfs_super_block **sbp = nilfs->ns_sbp;
371 u64 t = get_seconds();
372 int dupsb;
373
374 if (!nilfs_discontinued(nilfs) && t >= nilfs->ns_sbwtime[0] &&
375 t < nilfs->ns_sbwtime[0] + NILFS_SB_FREQ) {
376 up_write(&nilfs->ns_sem);
377 return;
378 }
379 dupsb = sbp[1] && t > nilfs->ns_sbwtime[1] + NILFS_ALTSB_FREQ;
380 nilfs_commit_super(sbi, dupsb);
381 }
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700382 sb->s_dirt = 0;
383 up_write(&nilfs->ns_sem);
384}
385
386static int nilfs_sync_fs(struct super_block *sb, int wait)
387{
Jiro SEKIBA6233caa2009-07-23 01:26:33 +0900388 struct nilfs_sb_info *sbi = NILFS_SB(sb);
389 struct the_nilfs *nilfs = sbi->s_nilfs;
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700390 int err = 0;
391
392 /* This function is called when super block should be written back */
393 if (wait)
394 err = nilfs_construct_segment(sb);
Jiro SEKIBA6233caa2009-07-23 01:26:33 +0900395
396 down_write(&nilfs->ns_sem);
397 if (sb->s_dirt)
398 nilfs_commit_super(sbi, 1);
399 up_write(&nilfs->ns_sem);
400
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700401 return err;
402}
403
404int nilfs_attach_checkpoint(struct nilfs_sb_info *sbi, __u64 cno)
405{
406 struct the_nilfs *nilfs = sbi->s_nilfs;
407 struct nilfs_checkpoint *raw_cp;
408 struct buffer_head *bh_cp;
409 int err;
410
Ryusuke Konishie59399d2009-06-08 01:39:32 +0900411 down_write(&nilfs->ns_super_sem);
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700412 list_add(&sbi->s_list, &nilfs->ns_supers);
Ryusuke Konishie59399d2009-06-08 01:39:32 +0900413 up_write(&nilfs->ns_super_sem);
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700414
415 sbi->s_ifile = nilfs_mdt_new(
416 nilfs, sbi->s_super, NILFS_IFILE_INO, NILFS_IFILE_GFP);
417 if (!sbi->s_ifile)
418 return -ENOMEM;
419
420 err = nilfs_palloc_init_blockgroup(sbi->s_ifile, nilfs->ns_inode_size);
421 if (unlikely(err))
422 goto failed;
423
Zhang Qiang1154ecb2009-08-18 14:58:24 +0800424 down_read(&nilfs->ns_segctor_sem);
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700425 err = nilfs_cpfile_get_checkpoint(nilfs->ns_cpfile, cno, 0, &raw_cp,
426 &bh_cp);
Zhang Qiang1154ecb2009-08-18 14:58:24 +0800427 up_read(&nilfs->ns_segctor_sem);
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700428 if (unlikely(err)) {
429 if (err == -ENOENT || err == -EINVAL) {
430 printk(KERN_ERR
431 "NILFS: Invalid checkpoint "
432 "(checkpoint number=%llu)\n",
433 (unsigned long long)cno);
434 err = -EINVAL;
435 }
436 goto failed;
437 }
438 err = nilfs_read_inode_common(sbi->s_ifile, &raw_cp->cp_ifile_inode);
439 if (unlikely(err))
440 goto failed_bh;
441 atomic_set(&sbi->s_inodes_count, le64_to_cpu(raw_cp->cp_inodes_count));
442 atomic_set(&sbi->s_blocks_count, le64_to_cpu(raw_cp->cp_blocks_count));
443
444 nilfs_cpfile_put_checkpoint(nilfs->ns_cpfile, cno, bh_cp);
445 return 0;
446
447 failed_bh:
448 nilfs_cpfile_put_checkpoint(nilfs->ns_cpfile, cno, bh_cp);
449 failed:
450 nilfs_mdt_destroy(sbi->s_ifile);
451 sbi->s_ifile = NULL;
452
Ryusuke Konishie59399d2009-06-08 01:39:32 +0900453 down_write(&nilfs->ns_super_sem);
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700454 list_del_init(&sbi->s_list);
Ryusuke Konishie59399d2009-06-08 01:39:32 +0900455 up_write(&nilfs->ns_super_sem);
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700456
457 return err;
458}
459
460void nilfs_detach_checkpoint(struct nilfs_sb_info *sbi)
461{
462 struct the_nilfs *nilfs = sbi->s_nilfs;
463
464 nilfs_mdt_clear(sbi->s_ifile);
465 nilfs_mdt_destroy(sbi->s_ifile);
466 sbi->s_ifile = NULL;
Ryusuke Konishie59399d2009-06-08 01:39:32 +0900467 down_write(&nilfs->ns_super_sem);
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700468 list_del_init(&sbi->s_list);
Ryusuke Konishie59399d2009-06-08 01:39:32 +0900469 up_write(&nilfs->ns_super_sem);
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700470}
471
472static int nilfs_mark_recovery_complete(struct nilfs_sb_info *sbi)
473{
474 struct the_nilfs *nilfs = sbi->s_nilfs;
475 int err = 0;
476
477 down_write(&nilfs->ns_sem);
478 if (!(nilfs->ns_mount_state & NILFS_VALID_FS)) {
479 nilfs->ns_mount_state |= NILFS_VALID_FS;
Ryusuke Konishie339ad32009-04-06 19:01:59 -0700480 err = nilfs_commit_super(sbi, 1);
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700481 if (likely(!err))
482 printk(KERN_INFO "NILFS: recovery complete.\n");
483 }
484 up_write(&nilfs->ns_sem);
485 return err;
486}
487
488static int nilfs_statfs(struct dentry *dentry, struct kstatfs *buf)
489{
490 struct super_block *sb = dentry->d_sb;
491 struct nilfs_sb_info *sbi = NILFS_SB(sb);
Ryusuke Konishic306af22009-03-26 10:16:57 +0900492 struct the_nilfs *nilfs = sbi->s_nilfs;
493 u64 id = huge_encode_dev(sb->s_bdev->bd_dev);
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700494 unsigned long long blocks;
495 unsigned long overhead;
496 unsigned long nrsvblocks;
497 sector_t nfreeblocks;
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700498 int err;
499
500 /*
501 * Compute all of the segment blocks
502 *
503 * The blocks before first segment and after last segment
504 * are excluded.
505 */
506 blocks = nilfs->ns_blocks_per_segment * nilfs->ns_nsegments
507 - nilfs->ns_first_data_block;
508 nrsvblocks = nilfs->ns_nrsvsegs * nilfs->ns_blocks_per_segment;
509
510 /*
511 * Compute the overhead
512 *
513 * When distributing meta data blocks outside semgent structure,
514 * We must count them as the overhead.
515 */
516 overhead = 0;
517
518 err = nilfs_count_free_blocks(nilfs, &nfreeblocks);
519 if (unlikely(err))
520 return err;
521
522 buf->f_type = NILFS_SUPER_MAGIC;
523 buf->f_bsize = sb->s_blocksize;
524 buf->f_blocks = blocks - overhead;
525 buf->f_bfree = nfreeblocks;
526 buf->f_bavail = (buf->f_bfree >= nrsvblocks) ?
527 (buf->f_bfree - nrsvblocks) : 0;
528 buf->f_files = atomic_read(&sbi->s_inodes_count);
529 buf->f_ffree = 0; /* nilfs_count_free_inodes(sb); */
530 buf->f_namelen = NILFS_NAME_LEN;
Ryusuke Konishic306af22009-03-26 10:16:57 +0900531 buf->f_fsid.val[0] = (u32)id;
532 buf->f_fsid.val[1] = (u32)(id >> 32);
533
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700534 return 0;
535}
536
Jiro SEKIBAb58a2852009-06-24 20:06:34 +0900537static int nilfs_show_options(struct seq_file *seq, struct vfsmount *vfs)
538{
539 struct super_block *sb = vfs->mnt_sb;
540 struct nilfs_sb_info *sbi = NILFS_SB(sb);
541
542 if (!nilfs_test_opt(sbi, BARRIER))
543 seq_printf(seq, ",barrier=off");
544 if (nilfs_test_opt(sbi, SNAPSHOT))
545 seq_printf(seq, ",cp=%llu",
546 (unsigned long long int)sbi->s_snapshot_cno);
547 if (nilfs_test_opt(sbi, ERRORS_RO))
548 seq_printf(seq, ",errors=remount-ro");
549 if (nilfs_test_opt(sbi, ERRORS_PANIC))
550 seq_printf(seq, ",errors=panic");
551 if (nilfs_test_opt(sbi, STRICT_ORDER))
552 seq_printf(seq, ",order=strict");
553
554 return 0;
555}
556
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700557static struct super_operations nilfs_sops = {
558 .alloc_inode = nilfs_alloc_inode,
559 .destroy_inode = nilfs_destroy_inode,
560 .dirty_inode = nilfs_dirty_inode,
561 /* .write_inode = nilfs_write_inode, */
562 /* .put_inode = nilfs_put_inode, */
563 /* .drop_inode = nilfs_drop_inode, */
564 .delete_inode = nilfs_delete_inode,
565 .put_super = nilfs_put_super,
566 .write_super = nilfs_write_super,
567 .sync_fs = nilfs_sync_fs,
568 /* .write_super_lockfs */
569 /* .unlockfs */
570 .statfs = nilfs_statfs,
571 .remount_fs = nilfs_remount,
572 .clear_inode = nilfs_clear_inode,
573 /* .umount_begin */
Jiro SEKIBAb58a2852009-06-24 20:06:34 +0900574 .show_options = nilfs_show_options
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700575};
576
577static struct inode *
578nilfs_nfs_get_inode(struct super_block *sb, u64 ino, u32 generation)
579{
580 struct inode *inode;
581
582 if (ino < NILFS_FIRST_INO(sb) && ino != NILFS_ROOT_INO &&
583 ino != NILFS_SKETCH_INO)
584 return ERR_PTR(-ESTALE);
585
586 inode = nilfs_iget(sb, ino);
587 if (IS_ERR(inode))
588 return ERR_CAST(inode);
589 if (generation && inode->i_generation != generation) {
590 iput(inode);
591 return ERR_PTR(-ESTALE);
592 }
593
594 return inode;
595}
596
597static struct dentry *
598nilfs_fh_to_dentry(struct super_block *sb, struct fid *fid, int fh_len,
599 int fh_type)
600{
601 return generic_fh_to_dentry(sb, fid, fh_len, fh_type,
602 nilfs_nfs_get_inode);
603}
604
605static struct dentry *
606nilfs_fh_to_parent(struct super_block *sb, struct fid *fid, int fh_len,
607 int fh_type)
608{
609 return generic_fh_to_parent(sb, fid, fh_len, fh_type,
610 nilfs_nfs_get_inode);
611}
612
613static struct export_operations nilfs_export_ops = {
614 .fh_to_dentry = nilfs_fh_to_dentry,
615 .fh_to_parent = nilfs_fh_to_parent,
616 .get_parent = nilfs_get_parent,
617};
618
619enum {
620 Opt_err_cont, Opt_err_panic, Opt_err_ro,
621 Opt_barrier, Opt_snapshot, Opt_order,
622 Opt_err,
623};
624
625static match_table_t tokens = {
626 {Opt_err_cont, "errors=continue"},
627 {Opt_err_panic, "errors=panic"},
628 {Opt_err_ro, "errors=remount-ro"},
629 {Opt_barrier, "barrier=%s"},
630 {Opt_snapshot, "cp=%u"},
631 {Opt_order, "order=%s"},
632 {Opt_err, NULL}
633};
634
635static int match_bool(substring_t *s, int *result)
636{
637 int len = s->to - s->from;
638
639 if (strncmp(s->from, "on", len) == 0)
640 *result = 1;
641 else if (strncmp(s->from, "off", len) == 0)
642 *result = 0;
643 else
644 return 1;
645 return 0;
646}
647
648static int parse_options(char *options, struct super_block *sb)
649{
650 struct nilfs_sb_info *sbi = NILFS_SB(sb);
651 char *p;
652 substring_t args[MAX_OPT_ARGS];
653 int option;
654
655 if (!options)
656 return 1;
657
658 while ((p = strsep(&options, ",")) != NULL) {
659 int token;
660 if (!*p)
661 continue;
662
663 token = match_token(p, tokens, args);
664 switch (token) {
665 case Opt_barrier:
666 if (match_bool(&args[0], &option))
667 return 0;
668 if (option)
669 nilfs_set_opt(sbi, BARRIER);
670 else
671 nilfs_clear_opt(sbi, BARRIER);
672 break;
673 case Opt_order:
674 if (strcmp(args[0].from, "relaxed") == 0)
675 /* Ordered data semantics */
676 nilfs_clear_opt(sbi, STRICT_ORDER);
677 else if (strcmp(args[0].from, "strict") == 0)
678 /* Strict in-order semantics */
679 nilfs_set_opt(sbi, STRICT_ORDER);
680 else
681 return 0;
682 break;
683 case Opt_err_panic:
684 nilfs_write_opt(sbi, ERROR_MODE, ERRORS_PANIC);
685 break;
686 case Opt_err_ro:
687 nilfs_write_opt(sbi, ERROR_MODE, ERRORS_RO);
688 break;
689 case Opt_err_cont:
690 nilfs_write_opt(sbi, ERROR_MODE, ERRORS_CONT);
691 break;
692 case Opt_snapshot:
693 if (match_int(&args[0], &option) || option <= 0)
694 return 0;
695 if (!(sb->s_flags & MS_RDONLY))
696 return 0;
697 sbi->s_snapshot_cno = option;
698 nilfs_set_opt(sbi, SNAPSHOT);
699 break;
700 default:
701 printk(KERN_ERR
702 "NILFS: Unrecognized mount option \"%s\"\n", p);
703 return 0;
704 }
705 }
706 return 1;
707}
708
709static inline void
710nilfs_set_default_options(struct nilfs_sb_info *sbi,
711 struct nilfs_super_block *sbp)
712{
713 sbi->s_mount_opt =
714 NILFS_MOUNT_ERRORS_CONT | NILFS_MOUNT_BARRIER;
715}
716
717static int nilfs_setup_super(struct nilfs_sb_info *sbi)
718{
719 struct the_nilfs *nilfs = sbi->s_nilfs;
Ryusuke Konishie339ad32009-04-06 19:01:59 -0700720 struct nilfs_super_block *sbp = nilfs->ns_sbp[0];
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700721 int max_mnt_count = le16_to_cpu(sbp->s_max_mnt_count);
722 int mnt_count = le16_to_cpu(sbp->s_mnt_count);
723
724 /* nilfs->sem must be locked by the caller. */
725 if (!(nilfs->ns_mount_state & NILFS_VALID_FS)) {
726 printk(KERN_WARNING "NILFS warning: mounting unchecked fs\n");
727 } else if (nilfs->ns_mount_state & NILFS_ERROR_FS) {
728 printk(KERN_WARNING
729 "NILFS warning: mounting fs with errors\n");
730#if 0
731 } else if (max_mnt_count >= 0 && mnt_count >= max_mnt_count) {
732 printk(KERN_WARNING
733 "NILFS warning: maximal mount count reached\n");
734#endif
735 }
736 if (!max_mnt_count)
737 sbp->s_max_mnt_count = cpu_to_le16(NILFS_DFL_MAX_MNT_COUNT);
738
739 sbp->s_mnt_count = cpu_to_le16(mnt_count + 1);
740 sbp->s_state = cpu_to_le16(le16_to_cpu(sbp->s_state) & ~NILFS_VALID_FS);
741 sbp->s_mtime = cpu_to_le64(get_seconds());
Ryusuke Konishie339ad32009-04-06 19:01:59 -0700742 return nilfs_commit_super(sbi, 1);
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700743}
744
Ryusuke Konishie339ad32009-04-06 19:01:59 -0700745struct nilfs_super_block *nilfs_read_super_block(struct super_block *sb,
746 u64 pos, int blocksize,
747 struct buffer_head **pbh)
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700748{
Ryusuke Konishie339ad32009-04-06 19:01:59 -0700749 unsigned long long sb_index = pos;
750 unsigned long offset;
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700751
Ryusuke Konishie339ad32009-04-06 19:01:59 -0700752 offset = do_div(sb_index, blocksize);
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700753 *pbh = sb_bread(sb, sb_index);
Ryusuke Konishie339ad32009-04-06 19:01:59 -0700754 if (!*pbh)
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700755 return NULL;
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700756 return (struct nilfs_super_block *)((char *)(*pbh)->b_data + offset);
757}
758
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700759int nilfs_store_magic_and_option(struct super_block *sb,
760 struct nilfs_super_block *sbp,
761 char *data)
762{
763 struct nilfs_sb_info *sbi = NILFS_SB(sb);
764
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700765 sb->s_magic = le16_to_cpu(sbp->s_magic);
766
767 /* FS independent flags */
768#ifdef NILFS_ATIME_DISABLE
769 sb->s_flags |= MS_NOATIME;
770#endif
771
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700772 nilfs_set_default_options(sbi, sbp);
773
774 sbi->s_resuid = le16_to_cpu(sbp->s_def_resuid);
775 sbi->s_resgid = le16_to_cpu(sbp->s_def_resgid);
776 sbi->s_interval = le32_to_cpu(sbp->s_c_interval);
777 sbi->s_watermark = le32_to_cpu(sbp->s_c_block_max);
778
Ryusuke Konishie339ad32009-04-06 19:01:59 -0700779 return !parse_options(data, sb) ? -EINVAL : 0 ;
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700780}
781
782/**
783 * nilfs_fill_super() - initialize a super block instance
784 * @sb: super_block
785 * @data: mount options
786 * @silent: silent mode flag
787 * @nilfs: the_nilfs struct
788 *
Ryusuke Konishiaa7dfb82009-06-08 01:39:33 +0900789 * This function is called exclusively by nilfs->ns_mount_mutex.
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700790 * So, the recovery process is protected from other simultaneous mounts.
791 */
792static int
793nilfs_fill_super(struct super_block *sb, void *data, int silent,
794 struct the_nilfs *nilfs)
795{
796 struct nilfs_sb_info *sbi;
797 struct inode *root;
798 __u64 cno;
799 int err;
800
801 sbi = kzalloc(sizeof(*sbi), GFP_KERNEL);
802 if (!sbi)
803 return -ENOMEM;
804
805 sb->s_fs_info = sbi;
806
807 get_nilfs(nilfs);
808 sbi->s_nilfs = nilfs;
809 sbi->s_super = sb;
Ryusuke Konishi6dd47402009-06-08 01:39:31 +0900810 atomic_set(&sbi->s_count, 1);
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700811
812 err = init_nilfs(nilfs, sbi, (char *)data);
813 if (err)
814 goto failed_sbi;
815
816 spin_lock_init(&sbi->s_inode_lock);
817 INIT_LIST_HEAD(&sbi->s_dirty_files);
818 INIT_LIST_HEAD(&sbi->s_list);
819
820 /*
821 * Following initialization is overlapped because
822 * nilfs_sb_info structure has been cleared at the beginning.
823 * But we reserve them to keep our interest and make ready
824 * for the future change.
825 */
826 get_random_bytes(&sbi->s_next_generation,
827 sizeof(sbi->s_next_generation));
828 spin_lock_init(&sbi->s_next_gen_lock);
829
830 sb->s_op = &nilfs_sops;
831 sb->s_export_op = &nilfs_export_ops;
832 sb->s_root = NULL;
Ryusuke Konishi61239232009-04-06 19:02:00 -0700833 sb->s_time_gran = 1;
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700834
835 if (!nilfs_loaded(nilfs)) {
836 err = load_nilfs(nilfs, sbi);
837 if (err)
838 goto failed_sbi;
839 }
840 cno = nilfs_last_cno(nilfs);
841
842 if (sb->s_flags & MS_RDONLY) {
843 if (nilfs_test_opt(sbi, SNAPSHOT)) {
Ryusuke Konishi1f5abe72009-04-06 19:01:55 -0700844 err = nilfs_cpfile_is_snapshot(nilfs->ns_cpfile,
845 sbi->s_snapshot_cno);
846 if (err < 0)
847 goto failed_sbi;
848 if (!err) {
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700849 printk(KERN_ERR
850 "NILFS: The specified checkpoint is "
851 "not a snapshot "
852 "(checkpoint number=%llu).\n",
853 (unsigned long long)sbi->s_snapshot_cno);
854 err = -EINVAL;
855 goto failed_sbi;
856 }
857 cno = sbi->s_snapshot_cno;
858 } else
859 /* Read-only mount */
860 sbi->s_snapshot_cno = cno;
861 }
862
863 err = nilfs_attach_checkpoint(sbi, cno);
864 if (err) {
865 printk(KERN_ERR "NILFS: error loading a checkpoint"
866 " (checkpoint number=%llu).\n", (unsigned long long)cno);
867 goto failed_sbi;
868 }
869
870 if (!(sb->s_flags & MS_RDONLY)) {
Ryusuke Konishicece5522009-04-06 19:01:58 -0700871 err = nilfs_attach_segment_constructor(sbi);
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700872 if (err)
873 goto failed_checkpoint;
874 }
875
876 root = nilfs_iget(sb, NILFS_ROOT_INO);
877 if (IS_ERR(root)) {
878 printk(KERN_ERR "NILFS: get root inode failed\n");
879 err = PTR_ERR(root);
880 goto failed_segctor;
881 }
882 if (!S_ISDIR(root->i_mode) || !root->i_blocks || !root->i_size) {
883 iput(root);
884 printk(KERN_ERR "NILFS: corrupt root inode.\n");
885 err = -EINVAL;
886 goto failed_segctor;
887 }
888 sb->s_root = d_alloc_root(root);
889 if (!sb->s_root) {
890 iput(root);
891 printk(KERN_ERR "NILFS: get root dentry failed\n");
892 err = -ENOMEM;
893 goto failed_segctor;
894 }
895
896 if (!(sb->s_flags & MS_RDONLY)) {
897 down_write(&nilfs->ns_sem);
898 nilfs_setup_super(sbi);
899 up_write(&nilfs->ns_sem);
900 }
901
902 err = nilfs_mark_recovery_complete(sbi);
903 if (unlikely(err)) {
904 printk(KERN_ERR "NILFS: recovery failed.\n");
905 goto failed_root;
906 }
907
Ryusuke Konishie59399d2009-06-08 01:39:32 +0900908 down_write(&nilfs->ns_super_sem);
Ryusuke Konishi3f82ff52009-06-08 01:39:30 +0900909 if (!nilfs_test_opt(sbi, SNAPSHOT))
910 nilfs->ns_current = sbi;
Ryusuke Konishie59399d2009-06-08 01:39:32 +0900911 up_write(&nilfs->ns_super_sem);
Ryusuke Konishi3f82ff52009-06-08 01:39:30 +0900912
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700913 return 0;
914
915 failed_root:
916 dput(sb->s_root);
917 sb->s_root = NULL;
918
919 failed_segctor:
920 nilfs_detach_segment_constructor(sbi);
921
922 failed_checkpoint:
923 nilfs_detach_checkpoint(sbi);
924
925 failed_sbi:
926 put_nilfs(nilfs);
927 sb->s_fs_info = NULL;
Ryusuke Konishi6dd47402009-06-08 01:39:31 +0900928 nilfs_put_sbinfo(sbi);
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700929 return err;
930}
931
932static int nilfs_remount(struct super_block *sb, int *flags, char *data)
933{
934 struct nilfs_sb_info *sbi = NILFS_SB(sb);
935 struct nilfs_super_block *sbp;
936 struct the_nilfs *nilfs = sbi->s_nilfs;
937 unsigned long old_sb_flags;
938 struct nilfs_mount_options old_opts;
939 int err;
940
Alessio Igor Bogani337eb002009-05-12 15:10:54 +0200941 lock_kernel();
942
Ryusuke Konishie59399d2009-06-08 01:39:32 +0900943 down_write(&nilfs->ns_super_sem);
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700944 old_sb_flags = sb->s_flags;
945 old_opts.mount_opt = sbi->s_mount_opt;
946 old_opts.snapshot_cno = sbi->s_snapshot_cno;
947
948 if (!parse_options(data, sb)) {
949 err = -EINVAL;
950 goto restore_opts;
951 }
952 sb->s_flags = (sb->s_flags & ~MS_POSIXACL);
953
954 if ((*flags & MS_RDONLY) &&
955 sbi->s_snapshot_cno != old_opts.snapshot_cno) {
956 printk(KERN_WARNING "NILFS (device %s): couldn't "
957 "remount to a different snapshot. \n",
958 sb->s_id);
959 err = -EINVAL;
960 goto restore_opts;
961 }
962
963 if ((*flags & MS_RDONLY) == (sb->s_flags & MS_RDONLY))
964 goto out;
965 if (*flags & MS_RDONLY) {
966 /* Shutting down the segment constructor */
967 nilfs_detach_segment_constructor(sbi);
968 sb->s_flags |= MS_RDONLY;
969
970 sbi->s_snapshot_cno = nilfs_last_cno(nilfs);
971 /* nilfs_set_opt(sbi, SNAPSHOT); */
972
973 /*
974 * Remounting a valid RW partition RDONLY, so set
975 * the RDONLY flag and then mark the partition as valid again.
976 */
977 down_write(&nilfs->ns_sem);
Ryusuke Konishie339ad32009-04-06 19:01:59 -0700978 sbp = nilfs->ns_sbp[0];
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700979 if (!(sbp->s_state & le16_to_cpu(NILFS_VALID_FS)) &&
980 (nilfs->ns_mount_state & NILFS_VALID_FS))
981 sbp->s_state = cpu_to_le16(nilfs->ns_mount_state);
982 sbp->s_mtime = cpu_to_le64(get_seconds());
Ryusuke Konishie339ad32009-04-06 19:01:59 -0700983 nilfs_commit_super(sbi, 1);
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700984 up_write(&nilfs->ns_sem);
985 } else {
986 /*
987 * Mounting a RDONLY partition read-write, so reread and
988 * store the current valid flag. (It may have been changed
989 * by fsck since we originally mounted the partition.)
990 */
Ryusuke Konishi3f82ff52009-06-08 01:39:30 +0900991 if (nilfs->ns_current && nilfs->ns_current != sbi) {
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700992 printk(KERN_WARNING "NILFS (device %s): couldn't "
Ryusuke Konishi3f82ff52009-06-08 01:39:30 +0900993 "remount because an RW-mount exists.\n",
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700994 sb->s_id);
995 err = -EBUSY;
Ryusuke Konishie59399d2009-06-08 01:39:32 +0900996 goto restore_opts;
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700997 }
998 if (sbi->s_snapshot_cno != nilfs_last_cno(nilfs)) {
999 printk(KERN_WARNING "NILFS (device %s): couldn't "
1000 "remount because the current RO-mount is not "
1001 "the latest one.\n",
1002 sb->s_id);
1003 err = -EINVAL;
Ryusuke Konishie59399d2009-06-08 01:39:32 +09001004 goto restore_opts;
Ryusuke Konishi783f6182009-04-06 19:01:35 -07001005 }
1006 sb->s_flags &= ~MS_RDONLY;
1007 nilfs_clear_opt(sbi, SNAPSHOT);
1008 sbi->s_snapshot_cno = 0;
1009
Ryusuke Konishicece5522009-04-06 19:01:58 -07001010 err = nilfs_attach_segment_constructor(sbi);
Ryusuke Konishi783f6182009-04-06 19:01:35 -07001011 if (err)
Ryusuke Konishie59399d2009-06-08 01:39:32 +09001012 goto restore_opts;
Ryusuke Konishi783f6182009-04-06 19:01:35 -07001013
1014 down_write(&nilfs->ns_sem);
1015 nilfs_setup_super(sbi);
1016 up_write(&nilfs->ns_sem);
1017
Ryusuke Konishie59399d2009-06-08 01:39:32 +09001018 nilfs->ns_current = sbi;
Ryusuke Konishi783f6182009-04-06 19:01:35 -07001019 }
1020 out:
Ryusuke Konishie59399d2009-06-08 01:39:32 +09001021 up_write(&nilfs->ns_super_sem);
Alessio Igor Bogani337eb002009-05-12 15:10:54 +02001022 unlock_kernel();
Ryusuke Konishi783f6182009-04-06 19:01:35 -07001023 return 0;
1024
Ryusuke Konishi783f6182009-04-06 19:01:35 -07001025 restore_opts:
1026 sb->s_flags = old_sb_flags;
1027 sbi->s_mount_opt = old_opts.mount_opt;
1028 sbi->s_snapshot_cno = old_opts.snapshot_cno;
Ryusuke Konishie59399d2009-06-08 01:39:32 +09001029 up_write(&nilfs->ns_super_sem);
Alessio Igor Bogani337eb002009-05-12 15:10:54 +02001030 unlock_kernel();
Ryusuke Konishi783f6182009-04-06 19:01:35 -07001031 return err;
1032}
1033
1034struct nilfs_super_data {
1035 struct block_device *bdev;
Ryusuke Konishi6dd47402009-06-08 01:39:31 +09001036 struct nilfs_sb_info *sbi;
Ryusuke Konishi783f6182009-04-06 19:01:35 -07001037 __u64 cno;
1038 int flags;
1039};
1040
1041/**
1042 * nilfs_identify - pre-read mount options needed to identify mount instance
1043 * @data: mount options
1044 * @sd: nilfs_super_data
1045 */
1046static int nilfs_identify(char *data, struct nilfs_super_data *sd)
1047{
1048 char *p, *options = data;
1049 substring_t args[MAX_OPT_ARGS];
1050 int option, token;
1051 int ret = 0;
1052
1053 do {
1054 p = strsep(&options, ",");
1055 if (p != NULL && *p) {
1056 token = match_token(p, tokens, args);
1057 if (token == Opt_snapshot) {
1058 if (!(sd->flags & MS_RDONLY))
1059 ret++;
1060 else {
1061 ret = match_int(&args[0], &option);
1062 if (!ret) {
1063 if (option > 0)
1064 sd->cno = option;
1065 else
1066 ret++;
1067 }
1068 }
1069 }
1070 if (ret)
1071 printk(KERN_ERR
1072 "NILFS: invalid mount option: %s\n", p);
1073 }
1074 if (!options)
1075 break;
1076 BUG_ON(options == data);
1077 *(options - 1) = ',';
1078 } while (!ret);
1079 return ret;
1080}
1081
1082static int nilfs_set_bdev_super(struct super_block *s, void *data)
1083{
1084 struct nilfs_super_data *sd = data;
1085
1086 s->s_bdev = sd->bdev;
1087 s->s_dev = s->s_bdev->bd_dev;
1088 return 0;
1089}
1090
1091static int nilfs_test_bdev_super(struct super_block *s, void *data)
1092{
1093 struct nilfs_super_data *sd = data;
Ryusuke Konishi783f6182009-04-06 19:01:35 -07001094
Ryusuke Konishi6dd47402009-06-08 01:39:31 +09001095 return sd->sbi && s->s_fs_info == (void *)sd->sbi;
Ryusuke Konishi783f6182009-04-06 19:01:35 -07001096}
1097
1098static int
1099nilfs_get_sb(struct file_system_type *fs_type, int flags,
1100 const char *dev_name, void *data, struct vfsmount *mnt)
1101{
1102 struct nilfs_super_data sd;
Ryusuke Konishi33c8e572009-06-08 01:39:29 +09001103 struct super_block *s;
1104 struct the_nilfs *nilfs;
Ryusuke Konishi783f6182009-04-06 19:01:35 -07001105 int err, need_to_close = 1;
1106
1107 sd.bdev = open_bdev_exclusive(dev_name, flags, fs_type);
1108 if (IS_ERR(sd.bdev))
1109 return PTR_ERR(sd.bdev);
1110
1111 /*
1112 * To get mount instance using sget() vfs-routine, NILFS needs
1113 * much more information than normal filesystems to identify mount
1114 * instance. For snapshot mounts, not only a mount type (ro-mount
1115 * or rw-mount) but also a checkpoint number is required.
Ryusuke Konishi783f6182009-04-06 19:01:35 -07001116 */
1117 sd.cno = 0;
1118 sd.flags = flags;
1119 if (nilfs_identify((char *)data, &sd)) {
1120 err = -EINVAL;
1121 goto failed;
1122 }
1123
Ryusuke Konishi33c8e572009-06-08 01:39:29 +09001124 nilfs = find_or_create_nilfs(sd.bdev);
1125 if (!nilfs) {
1126 err = -ENOMEM;
1127 goto failed;
1128 }
1129
Ryusuke Konishiaa7dfb82009-06-08 01:39:33 +09001130 mutex_lock(&nilfs->ns_mount_mutex);
Ryusuke Konishi3f82ff52009-06-08 01:39:30 +09001131
1132 if (!sd.cno) {
1133 /*
1134 * Check if an exclusive mount exists or not.
1135 * Snapshot mounts coexist with a current mount
1136 * (i.e. rw-mount or ro-mount), whereas rw-mount and
1137 * ro-mount are mutually exclusive.
1138 */
Ryusuke Konishie59399d2009-06-08 01:39:32 +09001139 down_read(&nilfs->ns_super_sem);
Ryusuke Konishi3f82ff52009-06-08 01:39:30 +09001140 if (nilfs->ns_current &&
1141 ((nilfs->ns_current->s_super->s_flags ^ flags)
1142 & MS_RDONLY)) {
Ryusuke Konishie59399d2009-06-08 01:39:32 +09001143 up_read(&nilfs->ns_super_sem);
Ryusuke Konishi3f82ff52009-06-08 01:39:30 +09001144 err = -EBUSY;
1145 goto failed_unlock;
1146 }
Ryusuke Konishie59399d2009-06-08 01:39:32 +09001147 up_read(&nilfs->ns_super_sem);
Ryusuke Konishi783f6182009-04-06 19:01:35 -07001148 }
1149
1150 /*
Ryusuke Konishi6dd47402009-06-08 01:39:31 +09001151 * Find existing nilfs_sb_info struct
Ryusuke Konishi783f6182009-04-06 19:01:35 -07001152 */
Ryusuke Konishi6dd47402009-06-08 01:39:31 +09001153 sd.sbi = nilfs_find_sbinfo(nilfs, !(flags & MS_RDONLY), sd.cno);
1154
Ryusuke Konishi33c8e572009-06-08 01:39:29 +09001155 if (!sd.cno)
1156 /* trying to get the latest checkpoint. */
1157 sd.cno = nilfs_last_cno(nilfs);
1158
Ryusuke Konishi6dd47402009-06-08 01:39:31 +09001159 /*
1160 * Get super block instance holding the nilfs_sb_info struct.
1161 * A new instance is allocated if no existing mount is present or
1162 * existing instance has been unmounted.
1163 */
Ryusuke Konishi783f6182009-04-06 19:01:35 -07001164 s = sget(fs_type, nilfs_test_bdev_super, nilfs_set_bdev_super, &sd);
Ryusuke Konishi6dd47402009-06-08 01:39:31 +09001165 if (sd.sbi)
1166 nilfs_put_sbinfo(sd.sbi);
1167
Ryusuke Konishi33c8e572009-06-08 01:39:29 +09001168 if (IS_ERR(s)) {
1169 err = PTR_ERR(s);
1170 goto failed_unlock;
Ryusuke Konishi783f6182009-04-06 19:01:35 -07001171 }
1172
1173 if (!s->s_root) {
1174 char b[BDEVNAME_SIZE];
1175
Ryusuke Konishi33c8e572009-06-08 01:39:29 +09001176 /* New superblock instance created */
Ryusuke Konishi783f6182009-04-06 19:01:35 -07001177 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;
Ryusuke Konishi783f6182009-04-06 19:01:35 -07001187 }
1188
Ryusuke Konishiaa7dfb82009-06-08 01:39:33 +09001189 mutex_unlock(&nilfs->ns_mount_mutex);
Ryusuke Konishi783f6182009-04-06 19:01:35 -07001190 put_nilfs(nilfs);
1191 if (need_to_close)
1192 close_bdev_exclusive(sd.bdev, flags);
1193 simple_set_mnt(mnt, s);
1194 return 0;
1195
Ryusuke Konishi783f6182009-04-06 19:01:35 -07001196 failed_unlock:
Ryusuke Konishiaa7dfb82009-06-08 01:39:33 +09001197 mutex_unlock(&nilfs->ns_mount_mutex);
Ryusuke Konishi33c8e572009-06-08 01:39:29 +09001198 put_nilfs(nilfs);
Ryusuke Konishi783f6182009-04-06 19:01:35 -07001199 failed:
1200 close_bdev_exclusive(sd.bdev, flags);
1201
1202 return err;
1203
1204 cancel_new:
1205 /* Abandoning the newly allocated superblock */
Ryusuke Konishiaa7dfb82009-06-08 01:39:33 +09001206 mutex_unlock(&nilfs->ns_mount_mutex);
Ryusuke Konishi33c8e572009-06-08 01:39:29 +09001207 put_nilfs(nilfs);
Ryusuke Konishi783f6182009-04-06 19:01:35 -07001208 up_write(&s->s_umount);
1209 deactivate_super(s);
1210 /*
1211 * deactivate_super() invokes close_bdev_exclusive().
1212 * We must finish all post-cleaning before this call;
Ryusuke Konishiaa7dfb82009-06-08 01:39:33 +09001213 * put_nilfs() needs the block device.
Ryusuke Konishi783f6182009-04-06 19:01:35 -07001214 */
1215 return err;
1216}
1217
Ryusuke Konishi783f6182009-04-06 19:01:35 -07001218struct file_system_type nilfs_fs_type = {
1219 .owner = THIS_MODULE,
1220 .name = "nilfs2",
1221 .get_sb = nilfs_get_sb,
1222 .kill_sb = kill_block_super,
1223 .fs_flags = FS_REQUIRES_DEV,
1224};
1225
1226static int __init init_nilfs_fs(void)
1227{
1228 int err;
1229
1230 err = nilfs_init_inode_cache();
1231 if (err)
1232 goto failed;
1233
1234 err = nilfs_init_transaction_cache();
1235 if (err)
1236 goto failed_inode_cache;
1237
1238 err = nilfs_init_segbuf_cache();
1239 if (err)
1240 goto failed_transaction_cache;
1241
1242 err = nilfs_btree_path_cache_init();
1243 if (err)
1244 goto failed_segbuf_cache;
1245
1246 err = register_filesystem(&nilfs_fs_type);
1247 if (err)
1248 goto failed_btree_path_cache;
1249
1250 return 0;
1251
1252 failed_btree_path_cache:
1253 nilfs_btree_path_cache_destroy();
1254
1255 failed_segbuf_cache:
1256 nilfs_destroy_segbuf_cache();
1257
1258 failed_transaction_cache:
1259 nilfs_destroy_transaction_cache();
1260
1261 failed_inode_cache:
1262 nilfs_destroy_inode_cache();
1263
1264 failed:
1265 return err;
1266}
1267
1268static void __exit exit_nilfs_fs(void)
1269{
1270 nilfs_destroy_segbuf_cache();
1271 nilfs_destroy_transaction_cache();
1272 nilfs_destroy_inode_cache();
1273 nilfs_btree_path_cache_destroy();
1274 unregister_filesystem(&nilfs_fs_type);
1275}
1276
1277module_init(init_nilfs_fs)
1278module_exit(exit_nilfs_fs)