blob: 952f4ccb18de4b0d6b23d3e21bbb23597e07c4e4 [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
Li Hong41c88bd2010-04-06 00:54:11 +080070struct kmem_cache *nilfs_inode_cachep;
71struct kmem_cache *nilfs_transaction_cachep;
72struct kmem_cache *nilfs_segbuf_cachep;
73struct kmem_cache *nilfs_btree_path_cache;
74
Ryusuke Konishi783f6182009-04-06 19:01:35 -070075static int nilfs_remount(struct super_block *sb, int *flags, char *data);
Ryusuke Konishi783f6182009-04-06 19:01:35 -070076
Ryusuke Konishic8a11c82010-06-28 17:49:30 +090077static void nilfs_set_error(struct nilfs_sb_info *sbi)
78{
79 struct the_nilfs *nilfs = sbi->s_nilfs;
Jiro SEKIBAd26493b2010-06-28 17:49:32 +090080 struct nilfs_super_block **sbp;
Ryusuke Konishic8a11c82010-06-28 17:49:30 +090081
82 down_write(&nilfs->ns_sem);
83 if (!(nilfs->ns_mount_state & NILFS_ERROR_FS)) {
84 nilfs->ns_mount_state |= NILFS_ERROR_FS;
Jiro SEKIBAb2ac86e2010-06-28 17:49:33 +090085 sbp = nilfs_prepare_super(sbi, 0);
Jiro SEKIBAd26493b2010-06-28 17:49:32 +090086 if (likely(sbp)) {
87 sbp[0]->s_state |= cpu_to_le16(NILFS_ERROR_FS);
Jiro SEKIBAb2ac86e2010-06-28 17:49:33 +090088 if (sbp[1])
89 sbp[1]->s_state |= cpu_to_le16(NILFS_ERROR_FS);
90 nilfs_commit_super(sbi, NILFS_SB_COMMIT_ALL);
Jiro SEKIBAd26493b2010-06-28 17:49:32 +090091 }
Ryusuke Konishic8a11c82010-06-28 17:49:30 +090092 }
93 up_write(&nilfs->ns_sem);
94}
95
Ryusuke Konishi783f6182009-04-06 19:01:35 -070096/**
97 * nilfs_error() - report failure condition on a filesystem
98 *
99 * nilfs_error() sets an ERROR_FS flag on the superblock as well as
100 * reporting an error message. It should be called when NILFS detects
101 * incoherences or defects of meta data on disk. As for sustainable
102 * errors such as a single-shot I/O error, nilfs_warning() or the printk()
103 * function should be used instead.
104 *
105 * The segment constructor must not call this function because it can
106 * kill itself.
107 */
108void nilfs_error(struct super_block *sb, const char *function,
109 const char *fmt, ...)
110{
111 struct nilfs_sb_info *sbi = NILFS_SB(sb);
112 va_list args;
113
114 va_start(args, fmt);
115 printk(KERN_CRIT "NILFS error (device %s): %s: ", sb->s_id, function);
116 vprintk(fmt, args);
117 printk("\n");
118 va_end(args);
119
120 if (!(sb->s_flags & MS_RDONLY)) {
Ryusuke Konishic8a11c82010-06-28 17:49:30 +0900121 nilfs_set_error(sbi);
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700122
123 if (nilfs_test_opt(sbi, ERRORS_RO)) {
124 printk(KERN_CRIT "Remounting filesystem read-only\n");
125 sb->s_flags |= MS_RDONLY;
126 }
127 }
128
129 if (nilfs_test_opt(sbi, ERRORS_PANIC))
130 panic("NILFS (device %s): panic forced after error\n",
131 sb->s_id);
132}
133
134void nilfs_warning(struct super_block *sb, const char *function,
135 const char *fmt, ...)
136{
137 va_list args;
138
139 va_start(args, fmt);
140 printk(KERN_WARNING "NILFS warning (device %s): %s: ",
141 sb->s_id, function);
142 vprintk(fmt, args);
143 printk("\n");
144 va_end(args);
145}
146
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700147
Ryusuke Konishia53b4752009-05-27 22:11:46 +0900148struct inode *nilfs_alloc_inode_common(struct the_nilfs *nilfs)
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700149{
150 struct nilfs_inode_info *ii;
151
152 ii = kmem_cache_alloc(nilfs_inode_cachep, GFP_NOFS);
153 if (!ii)
154 return NULL;
155 ii->i_bh = NULL;
156 ii->i_state = 0;
157 ii->vfs_inode.i_version = 1;
Ryusuke Konishia53b4752009-05-27 22:11:46 +0900158 nilfs_btnode_cache_init(&ii->i_btnode_cache, nilfs->ns_bdi);
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700159 return &ii->vfs_inode;
160}
161
Ryusuke Konishia53b4752009-05-27 22:11:46 +0900162struct inode *nilfs_alloc_inode(struct super_block *sb)
163{
164 return nilfs_alloc_inode_common(NILFS_SB(sb)->s_nilfs);
165}
166
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700167void nilfs_destroy_inode(struct inode *inode)
168{
169 kmem_cache_free(nilfs_inode_cachep, NILFS_I(inode));
170}
171
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700172static void nilfs_clear_inode(struct inode *inode)
173{
174 struct nilfs_inode_info *ii = NILFS_I(inode);
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700175
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700176 /*
177 * Free resources allocated in nilfs_read_inode(), here.
178 */
Ryusuke Konishia2e7d2d2009-04-06 19:01:44 -0700179 BUG_ON(!list_empty(&ii->i_dirty));
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700180 brelse(ii->i_bh);
181 ii->i_bh = NULL;
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700182
183 if (test_bit(NILFS_I_BMAP, &ii->i_state))
184 nilfs_bmap_clear(ii->i_bmap);
185
186 nilfs_btnode_cache_clear(&ii->i_btnode_cache);
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700187}
188
Jiro SEKIBAb2ac86e2010-06-28 17:49:33 +0900189static int nilfs_sync_super(struct nilfs_sb_info *sbi, int flag)
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700190{
191 struct the_nilfs *nilfs = sbi->s_nilfs;
192 int err;
193 int barrier_done = 0;
194
195 if (nilfs_test_opt(sbi, BARRIER)) {
Ryusuke Konishie339ad32009-04-06 19:01:59 -0700196 set_buffer_ordered(nilfs->ns_sbh[0]);
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700197 barrier_done = 1;
198 }
199 retry:
Ryusuke Konishie339ad32009-04-06 19:01:59 -0700200 set_buffer_dirty(nilfs->ns_sbh[0]);
201 err = sync_dirty_buffer(nilfs->ns_sbh[0]);
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700202 if (err == -EOPNOTSUPP && barrier_done) {
203 nilfs_warning(sbi->s_super, __func__,
204 "barrier-based sync failed. "
205 "disabling barriers\n");
206 nilfs_clear_opt(sbi, BARRIER);
207 barrier_done = 0;
Ryusuke Konishie339ad32009-04-06 19:01:59 -0700208 clear_buffer_ordered(nilfs->ns_sbh[0]);
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700209 goto retry;
210 }
Ryusuke Konishie339ad32009-04-06 19:01:59 -0700211 if (unlikely(err)) {
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700212 printk(KERN_ERR
213 "NILFS: unable to write superblock (err=%d)\n", err);
Ryusuke Konishie339ad32009-04-06 19:01:59 -0700214 if (err == -EIO && nilfs->ns_sbh[1]) {
Jiro SEKIBAb2ac86e2010-06-28 17:49:33 +0900215 /*
216 * sbp[0] points to newer log than sbp[1],
217 * so copy sbp[0] to sbp[1] to take over sbp[0].
218 */
219 memcpy(nilfs->ns_sbp[1], nilfs->ns_sbp[0],
220 nilfs->ns_sbsize);
Ryusuke Konishie339ad32009-04-06 19:01:59 -0700221 nilfs_fall_back_super_block(nilfs);
222 goto retry;
223 }
224 } else {
225 struct nilfs_super_block *sbp = nilfs->ns_sbp[0];
226
Jiro SEKIBAb2ac86e2010-06-28 17:49:33 +0900227 nilfs->ns_sbwcount++;
228
Ryusuke Konishie339ad32009-04-06 19:01:59 -0700229 /*
230 * The latest segment becomes trailable from the position
231 * written in superblock.
232 */
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700233 clear_nilfs_discontinued(nilfs);
Ryusuke Konishie339ad32009-04-06 19:01:59 -0700234
235 /* update GC protection for recent segments */
236 if (nilfs->ns_sbh[1]) {
Jiro SEKIBAb2ac86e2010-06-28 17:49:33 +0900237 if (flag == NILFS_SB_COMMIT_ALL) {
Ryusuke Konishie339ad32009-04-06 19:01:59 -0700238 set_buffer_dirty(nilfs->ns_sbh[1]);
Jiro SEKIBAb2ac86e2010-06-28 17:49:33 +0900239 if (sync_dirty_buffer(nilfs->ns_sbh[1]) < 0)
240 goto out;
Ryusuke Konishie339ad32009-04-06 19:01:59 -0700241 }
Jiro SEKIBAb2ac86e2010-06-28 17:49:33 +0900242 if (le64_to_cpu(nilfs->ns_sbp[1]->s_last_cno) <
243 le64_to_cpu(nilfs->ns_sbp[0]->s_last_cno))
244 sbp = nilfs->ns_sbp[1];
Ryusuke Konishie339ad32009-04-06 19:01:59 -0700245 }
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700246
Jiro SEKIBAb2ac86e2010-06-28 17:49:33 +0900247 spin_lock(&nilfs->ns_last_segment_lock);
248 nilfs->ns_prot_seq = le64_to_cpu(sbp->s_last_seq);
249 spin_unlock(&nilfs->ns_last_segment_lock);
250 }
251 out:
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700252 return err;
253}
254
Ryusuke Konishi60f46b72010-06-28 17:49:31 +0900255void nilfs_set_log_cursor(struct nilfs_super_block *sbp,
256 struct the_nilfs *nilfs)
257{
258 sector_t nfreeblocks;
259
260 /* nilfs->ns_sem must be locked by the caller. */
261 nilfs_count_free_blocks(nilfs, &nfreeblocks);
262 sbp->s_free_blocks_count = cpu_to_le64(nfreeblocks);
263
264 spin_lock(&nilfs->ns_last_segment_lock);
265 sbp->s_last_seq = cpu_to_le64(nilfs->ns_last_seq);
266 sbp->s_last_pseg = cpu_to_le64(nilfs->ns_last_pseg);
267 sbp->s_last_cno = cpu_to_le64(nilfs->ns_last_cno);
268 spin_unlock(&nilfs->ns_last_segment_lock);
269}
270
Jiro SEKIBAb2ac86e2010-06-28 17:49:33 +0900271struct nilfs_super_block **nilfs_prepare_super(struct nilfs_sb_info *sbi,
272 int flip)
Jiro SEKIBAd26493b2010-06-28 17:49:32 +0900273{
274 struct the_nilfs *nilfs = sbi->s_nilfs;
275 struct nilfs_super_block **sbp = nilfs->ns_sbp;
276
277 /* nilfs->ns_sem must be locked by the caller. */
278 if (sbp[0]->s_magic != cpu_to_le16(NILFS_SUPER_MAGIC)) {
279 if (sbp[1] &&
280 sbp[1]->s_magic == cpu_to_le16(NILFS_SUPER_MAGIC)) {
Jiro SEKIBAb2ac86e2010-06-28 17:49:33 +0900281 memcpy(sbp[0], sbp[1], nilfs->ns_sbsize);
Jiro SEKIBAd26493b2010-06-28 17:49:32 +0900282 } else {
283 printk(KERN_CRIT "NILFS: superblock broke on dev %s\n",
284 sbi->s_super->s_id);
285 return NULL;
286 }
Jiro SEKIBAb2ac86e2010-06-28 17:49:33 +0900287 } else if (sbp[1] &&
288 sbp[1]->s_magic != cpu_to_le16(NILFS_SUPER_MAGIC)) {
289 memcpy(sbp[1], sbp[0], nilfs->ns_sbsize);
Jiro SEKIBAd26493b2010-06-28 17:49:32 +0900290 }
Jiro SEKIBAb2ac86e2010-06-28 17:49:33 +0900291
292 if (flip && sbp[1])
293 nilfs_swap_super_block(nilfs);
294
Jiro SEKIBAd26493b2010-06-28 17:49:32 +0900295 return sbp;
296}
297
Jiro SEKIBAb2ac86e2010-06-28 17:49:33 +0900298int nilfs_commit_super(struct nilfs_sb_info *sbi, int flag)
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700299{
300 struct the_nilfs *nilfs = sbi->s_nilfs;
Ryusuke Konishie339ad32009-04-06 19:01:59 -0700301 struct nilfs_super_block **sbp = nilfs->ns_sbp;
Ryusuke Konishie339ad32009-04-06 19:01:59 -0700302 time_t t;
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700303
Jiro SEKIBAd26493b2010-06-28 17:49:32 +0900304 /* nilfs->ns_sem must be locked by the caller. */
Ryusuke Konishie339ad32009-04-06 19:01:59 -0700305 t = get_seconds();
Jiro SEKIBAb2ac86e2010-06-28 17:49:33 +0900306 nilfs->ns_sbwtime = t;
Ryusuke Konishie339ad32009-04-06 19:01:59 -0700307 sbp[0]->s_wtime = cpu_to_le64(t);
308 sbp[0]->s_sum = 0;
309 sbp[0]->s_sum = cpu_to_le32(crc32_le(nilfs->ns_crc_seed,
310 (unsigned char *)sbp[0],
311 nilfs->ns_sbsize));
Jiro SEKIBAb2ac86e2010-06-28 17:49:33 +0900312 if (flag == NILFS_SB_COMMIT_ALL && sbp[1]) {
313 sbp[1]->s_wtime = sbp[0]->s_wtime;
314 sbp[1]->s_sum = 0;
315 sbp[1]->s_sum = cpu_to_le32(crc32_le(nilfs->ns_crc_seed,
316 (unsigned char *)sbp[1],
317 nilfs->ns_sbsize));
Ryusuke Konishie339ad32009-04-06 19:01:59 -0700318 }
Ryusuke Konishie605f0a2009-12-09 00:57:52 +0900319 clear_nilfs_sb_dirty(nilfs);
Jiro SEKIBAb2ac86e2010-06-28 17:49:33 +0900320 return nilfs_sync_super(sbi, flag);
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700321}
322
Ryusuke Konishi7ecaa462010-06-28 17:49:29 +0900323/**
324 * nilfs_cleanup_super() - write filesystem state for cleanup
325 * @sbi: nilfs_sb_info to be unmounted or degraded to read-only
326 *
327 * This function restores state flags in the on-disk super block.
328 * This will set "clean" flag (i.e. NILFS_VALID_FS) unless the
329 * filesystem was not clean previously.
330 */
331int nilfs_cleanup_super(struct nilfs_sb_info *sbi)
332{
Jiro SEKIBAd26493b2010-06-28 17:49:32 +0900333 struct nilfs_super_block **sbp;
Jiro SEKIBAb2ac86e2010-06-28 17:49:33 +0900334 int flag = NILFS_SB_COMMIT;
Jiro SEKIBAd26493b2010-06-28 17:49:32 +0900335 int ret = -EIO;
Ryusuke Konishi7ecaa462010-06-28 17:49:29 +0900336
Jiro SEKIBAb2ac86e2010-06-28 17:49:33 +0900337 sbp = nilfs_prepare_super(sbi, 0);
Jiro SEKIBAd26493b2010-06-28 17:49:32 +0900338 if (sbp) {
339 sbp[0]->s_state = cpu_to_le16(sbi->s_nilfs->ns_mount_state);
Jiro SEKIBAb2ac86e2010-06-28 17:49:33 +0900340 nilfs_set_log_cursor(sbp[0], sbi->s_nilfs);
341 if (sbp[1] && sbp[0]->s_last_cno == sbp[1]->s_last_cno) {
342 /*
343 * make the "clean" flag also to the opposite
344 * super block if both super blocks point to
345 * the same checkpoint.
346 */
347 sbp[1]->s_state = sbp[0]->s_state;
348 flag = NILFS_SB_COMMIT_ALL;
349 }
350 ret = nilfs_commit_super(sbi, flag);
Jiro SEKIBAd26493b2010-06-28 17:49:32 +0900351 }
Ryusuke Konishi7ecaa462010-06-28 17:49:29 +0900352 return ret;
353}
354
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700355static void nilfs_put_super(struct super_block *sb)
356{
357 struct nilfs_sb_info *sbi = NILFS_SB(sb);
358 struct the_nilfs *nilfs = sbi->s_nilfs;
359
Christoph Hellwig6cfd0142009-05-05 15:40:36 +0200360 lock_kernel();
361
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700362 nilfs_detach_segment_constructor(sbi);
363
364 if (!(sb->s_flags & MS_RDONLY)) {
365 down_write(&nilfs->ns_sem);
Ryusuke Konishi7ecaa462010-06-28 17:49:29 +0900366 nilfs_cleanup_super(sbi);
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700367 up_write(&nilfs->ns_sem);
368 }
Ryusuke Konishie59399d2009-06-08 01:39:32 +0900369 down_write(&nilfs->ns_super_sem);
Ryusuke Konishi3f82ff52009-06-08 01:39:30 +0900370 if (nilfs->ns_current == sbi)
371 nilfs->ns_current = NULL;
Ryusuke Konishie59399d2009-06-08 01:39:32 +0900372 up_write(&nilfs->ns_super_sem);
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700373
374 nilfs_detach_checkpoint(sbi);
375 put_nilfs(sbi->s_nilfs);
376 sbi->s_super = NULL;
377 sb->s_fs_info = NULL;
Ryusuke Konishi6dd47402009-06-08 01:39:31 +0900378 nilfs_put_sbinfo(sbi);
Christoph Hellwig6cfd0142009-05-05 15:40:36 +0200379
380 unlock_kernel();
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700381}
382
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700383static int nilfs_sync_fs(struct super_block *sb, int wait)
384{
Jiro SEKIBA6233caa2009-07-23 01:26:33 +0900385 struct nilfs_sb_info *sbi = NILFS_SB(sb);
386 struct the_nilfs *nilfs = sbi->s_nilfs;
Jiro SEKIBAd26493b2010-06-28 17:49:32 +0900387 struct nilfs_super_block **sbp;
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700388 int err = 0;
389
390 /* This function is called when super block should be written back */
391 if (wait)
392 err = nilfs_construct_segment(sb);
Jiro SEKIBA6233caa2009-07-23 01:26:33 +0900393
394 down_write(&nilfs->ns_sem);
Jiro SEKIBAd26493b2010-06-28 17:49:32 +0900395 if (nilfs_sb_dirty(nilfs)) {
Jiro SEKIBAb2ac86e2010-06-28 17:49:33 +0900396 sbp = nilfs_prepare_super(sbi, nilfs_sb_will_flip(nilfs));
397 if (likely(sbp)) {
398 nilfs_set_log_cursor(sbp[0], nilfs);
399 nilfs_commit_super(sbi, NILFS_SB_COMMIT);
400 }
Jiro SEKIBAd26493b2010-06-28 17:49:32 +0900401 }
Jiro SEKIBA6233caa2009-07-23 01:26:33 +0900402 up_write(&nilfs->ns_sem);
403
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700404 return err;
405}
406
407int nilfs_attach_checkpoint(struct nilfs_sb_info *sbi, __u64 cno)
408{
409 struct the_nilfs *nilfs = sbi->s_nilfs;
410 struct nilfs_checkpoint *raw_cp;
411 struct buffer_head *bh_cp;
412 int err;
413
Ryusuke Konishie59399d2009-06-08 01:39:32 +0900414 down_write(&nilfs->ns_super_sem);
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700415 list_add(&sbi->s_list, &nilfs->ns_supers);
Ryusuke Konishie59399d2009-06-08 01:39:32 +0900416 up_write(&nilfs->ns_super_sem);
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700417
Ryusuke Konishi79739562009-11-12 23:56:43 +0900418 sbi->s_ifile = nilfs_ifile_new(sbi, nilfs->ns_inode_size);
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700419 if (!sbi->s_ifile)
420 return -ENOMEM;
421
Zhang Qiang1154ecb2009-08-18 14:58:24 +0800422 down_read(&nilfs->ns_segctor_sem);
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700423 err = nilfs_cpfile_get_checkpoint(nilfs->ns_cpfile, cno, 0, &raw_cp,
424 &bh_cp);
Zhang Qiang1154ecb2009-08-18 14:58:24 +0800425 up_read(&nilfs->ns_segctor_sem);
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700426 if (unlikely(err)) {
427 if (err == -ENOENT || err == -EINVAL) {
428 printk(KERN_ERR
429 "NILFS: Invalid checkpoint "
430 "(checkpoint number=%llu)\n",
431 (unsigned long long)cno);
432 err = -EINVAL;
433 }
434 goto failed;
435 }
436 err = nilfs_read_inode_common(sbi->s_ifile, &raw_cp->cp_ifile_inode);
437 if (unlikely(err))
438 goto failed_bh;
439 atomic_set(&sbi->s_inodes_count, le64_to_cpu(raw_cp->cp_inodes_count));
440 atomic_set(&sbi->s_blocks_count, le64_to_cpu(raw_cp->cp_blocks_count));
441
442 nilfs_cpfile_put_checkpoint(nilfs->ns_cpfile, cno, bh_cp);
443 return 0;
444
445 failed_bh:
446 nilfs_cpfile_put_checkpoint(nilfs->ns_cpfile, cno, bh_cp);
447 failed:
448 nilfs_mdt_destroy(sbi->s_ifile);
449 sbi->s_ifile = NULL;
450
Ryusuke Konishie59399d2009-06-08 01:39:32 +0900451 down_write(&nilfs->ns_super_sem);
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700452 list_del_init(&sbi->s_list);
Ryusuke Konishie59399d2009-06-08 01:39:32 +0900453 up_write(&nilfs->ns_super_sem);
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700454
455 return err;
456}
457
458void nilfs_detach_checkpoint(struct nilfs_sb_info *sbi)
459{
460 struct the_nilfs *nilfs = sbi->s_nilfs;
461
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700462 nilfs_mdt_destroy(sbi->s_ifile);
463 sbi->s_ifile = NULL;
Ryusuke Konishie59399d2009-06-08 01:39:32 +0900464 down_write(&nilfs->ns_super_sem);
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700465 list_del_init(&sbi->s_list);
Ryusuke Konishie59399d2009-06-08 01:39:32 +0900466 up_write(&nilfs->ns_super_sem);
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700467}
468
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700469static int nilfs_statfs(struct dentry *dentry, struct kstatfs *buf)
470{
471 struct super_block *sb = dentry->d_sb;
472 struct nilfs_sb_info *sbi = NILFS_SB(sb);
Ryusuke Konishic306af22009-03-26 10:16:57 +0900473 struct the_nilfs *nilfs = sbi->s_nilfs;
474 u64 id = huge_encode_dev(sb->s_bdev->bd_dev);
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700475 unsigned long long blocks;
476 unsigned long overhead;
477 unsigned long nrsvblocks;
478 sector_t nfreeblocks;
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700479 int err;
480
481 /*
482 * Compute all of the segment blocks
483 *
484 * The blocks before first segment and after last segment
485 * are excluded.
486 */
487 blocks = nilfs->ns_blocks_per_segment * nilfs->ns_nsegments
488 - nilfs->ns_first_data_block;
489 nrsvblocks = nilfs->ns_nrsvsegs * nilfs->ns_blocks_per_segment;
490
491 /*
492 * Compute the overhead
493 *
Ryusuke Konishi7a650042010-03-14 03:32:40 +0900494 * When distributing meta data blocks outside segment structure,
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700495 * We must count them as the overhead.
496 */
497 overhead = 0;
498
499 err = nilfs_count_free_blocks(nilfs, &nfreeblocks);
500 if (unlikely(err))
501 return err;
502
503 buf->f_type = NILFS_SUPER_MAGIC;
504 buf->f_bsize = sb->s_blocksize;
505 buf->f_blocks = blocks - overhead;
506 buf->f_bfree = nfreeblocks;
507 buf->f_bavail = (buf->f_bfree >= nrsvblocks) ?
508 (buf->f_bfree - nrsvblocks) : 0;
509 buf->f_files = atomic_read(&sbi->s_inodes_count);
510 buf->f_ffree = 0; /* nilfs_count_free_inodes(sb); */
511 buf->f_namelen = NILFS_NAME_LEN;
Ryusuke Konishic306af22009-03-26 10:16:57 +0900512 buf->f_fsid.val[0] = (u32)id;
513 buf->f_fsid.val[1] = (u32)(id >> 32);
514
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700515 return 0;
516}
517
Jiro SEKIBAb58a2852009-06-24 20:06:34 +0900518static int nilfs_show_options(struct seq_file *seq, struct vfsmount *vfs)
519{
520 struct super_block *sb = vfs->mnt_sb;
521 struct nilfs_sb_info *sbi = NILFS_SB(sb);
522
523 if (!nilfs_test_opt(sbi, BARRIER))
Ryusuke Konishic6b4d572010-07-05 14:40:27 +0900524 seq_puts(seq, ",nobarrier");
Jiro SEKIBAb58a2852009-06-24 20:06:34 +0900525 if (nilfs_test_opt(sbi, SNAPSHOT))
526 seq_printf(seq, ",cp=%llu",
527 (unsigned long long int)sbi->s_snapshot_cno);
Jiro SEKIBAb58a2852009-06-24 20:06:34 +0900528 if (nilfs_test_opt(sbi, ERRORS_PANIC))
Ryusuke Konishic6b4d572010-07-05 14:40:27 +0900529 seq_puts(seq, ",errors=panic");
Ryusuke Konishi277a6a32010-04-02 18:02:33 +0900530 if (nilfs_test_opt(sbi, ERRORS_CONT))
Ryusuke Konishic6b4d572010-07-05 14:40:27 +0900531 seq_puts(seq, ",errors=continue");
Jiro SEKIBAb58a2852009-06-24 20:06:34 +0900532 if (nilfs_test_opt(sbi, STRICT_ORDER))
Ryusuke Konishic6b4d572010-07-05 14:40:27 +0900533 seq_puts(seq, ",order=strict");
Ryusuke Konishi02345762009-11-20 03:28:01 +0900534 if (nilfs_test_opt(sbi, NORECOVERY))
Ryusuke Konishic6b4d572010-07-05 14:40:27 +0900535 seq_puts(seq, ",norecovery");
Jiro SEKIBAe902ec92010-01-30 18:06:35 +0900536 if (nilfs_test_opt(sbi, DISCARD))
Ryusuke Konishic6b4d572010-07-05 14:40:27 +0900537 seq_puts(seq, ",discard");
Jiro SEKIBAb58a2852009-06-24 20:06:34 +0900538
539 return 0;
540}
541
Alexey Dobriyanb87221d2009-09-21 17:01:09 -0700542static const struct super_operations nilfs_sops = {
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700543 .alloc_inode = nilfs_alloc_inode,
544 .destroy_inode = nilfs_destroy_inode,
545 .dirty_inode = nilfs_dirty_inode,
546 /* .write_inode = nilfs_write_inode, */
547 /* .put_inode = nilfs_put_inode, */
548 /* .drop_inode = nilfs_drop_inode, */
549 .delete_inode = nilfs_delete_inode,
550 .put_super = nilfs_put_super,
Jiro SEKIBA1dfa2712009-07-23 01:33:49 +0900551 /* .write_super = nilfs_write_super, */
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700552 .sync_fs = nilfs_sync_fs,
553 /* .write_super_lockfs */
554 /* .unlockfs */
555 .statfs = nilfs_statfs,
556 .remount_fs = nilfs_remount,
557 .clear_inode = nilfs_clear_inode,
558 /* .umount_begin */
Jiro SEKIBAb58a2852009-06-24 20:06:34 +0900559 .show_options = nilfs_show_options
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700560};
561
562static struct inode *
563nilfs_nfs_get_inode(struct super_block *sb, u64 ino, u32 generation)
564{
565 struct inode *inode;
566
567 if (ino < NILFS_FIRST_INO(sb) && ino != NILFS_ROOT_INO &&
568 ino != NILFS_SKETCH_INO)
569 return ERR_PTR(-ESTALE);
570
571 inode = nilfs_iget(sb, ino);
572 if (IS_ERR(inode))
573 return ERR_CAST(inode);
574 if (generation && inode->i_generation != generation) {
575 iput(inode);
576 return ERR_PTR(-ESTALE);
577 }
578
579 return inode;
580}
581
582static struct dentry *
583nilfs_fh_to_dentry(struct super_block *sb, struct fid *fid, int fh_len,
584 int fh_type)
585{
586 return generic_fh_to_dentry(sb, fid, fh_len, fh_type,
587 nilfs_nfs_get_inode);
588}
589
590static struct dentry *
591nilfs_fh_to_parent(struct super_block *sb, struct fid *fid, int fh_len,
592 int fh_type)
593{
594 return generic_fh_to_parent(sb, fid, fh_len, fh_type,
595 nilfs_nfs_get_inode);
596}
597
Alexey Dobriyanac4cfdd2009-09-21 17:01:10 -0700598static const struct export_operations nilfs_export_ops = {
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700599 .fh_to_dentry = nilfs_fh_to_dentry,
600 .fh_to_parent = nilfs_fh_to_parent,
601 .get_parent = nilfs_get_parent,
602};
603
604enum {
605 Opt_err_cont, Opt_err_panic, Opt_err_ro,
Ryusuke Konishi773bc4f2010-07-05 13:00:08 +0900606 Opt_barrier, Opt_nobarrier, Opt_snapshot, Opt_order, Opt_norecovery,
Ryusuke Konishi802d3172010-07-05 14:27:04 +0900607 Opt_discard, Opt_nodiscard, Opt_err,
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700608};
609
610static match_table_t tokens = {
611 {Opt_err_cont, "errors=continue"},
612 {Opt_err_panic, "errors=panic"},
613 {Opt_err_ro, "errors=remount-ro"},
Ryusuke Konishi773bc4f2010-07-05 13:00:08 +0900614 {Opt_barrier, "barrier"},
Jiro SEKIBA91f19532009-11-12 14:07:26 +0900615 {Opt_nobarrier, "nobarrier"},
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700616 {Opt_snapshot, "cp=%u"},
617 {Opt_order, "order=%s"},
Ryusuke Konishi02345762009-11-20 03:28:01 +0900618 {Opt_norecovery, "norecovery"},
Jiro SEKIBAe902ec92010-01-30 18:06:35 +0900619 {Opt_discard, "discard"},
Ryusuke Konishi802d3172010-07-05 14:27:04 +0900620 {Opt_nodiscard, "nodiscard"},
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700621 {Opt_err, NULL}
622};
623
Ryusuke Konishi7c017452010-07-05 20:08:33 +0900624static int parse_options(char *options, struct super_block *sb, int is_remount)
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700625{
626 struct nilfs_sb_info *sbi = NILFS_SB(sb);
627 char *p;
628 substring_t args[MAX_OPT_ARGS];
629 int option;
630
631 if (!options)
632 return 1;
633
634 while ((p = strsep(&options, ",")) != NULL) {
635 int token;
636 if (!*p)
637 continue;
638
639 token = match_token(p, tokens, args);
640 switch (token) {
Ryusuke Konishi773bc4f2010-07-05 13:00:08 +0900641 case Opt_barrier:
642 nilfs_set_opt(sbi, BARRIER);
643 break;
Jiro SEKIBA91f19532009-11-12 14:07:26 +0900644 case Opt_nobarrier:
645 nilfs_clear_opt(sbi, BARRIER);
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700646 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;
Ryusuke Konishi7c017452010-07-05 20:08:33 +0900669 if (is_remount) {
670 if (!nilfs_test_opt(sbi, SNAPSHOT)) {
671 printk(KERN_ERR
672 "NILFS: cannot change regular "
673 "mount to snapshot.\n");
674 return 0;
675 } else if (option != sbi->s_snapshot_cno) {
676 printk(KERN_ERR
677 "NILFS: cannot remount to a "
678 "different snapshot.\n");
679 return 0;
680 }
681 break;
682 }
683 if (!(sb->s_flags & MS_RDONLY)) {
684 printk(KERN_ERR "NILFS: cannot mount snapshot "
685 "read/write. A read-only option is "
686 "required.\n");
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700687 return 0;
Ryusuke Konishi7c017452010-07-05 20:08:33 +0900688 }
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700689 sbi->s_snapshot_cno = option;
690 nilfs_set_opt(sbi, SNAPSHOT);
691 break;
Ryusuke Konishi02345762009-11-20 03:28:01 +0900692 case Opt_norecovery:
693 nilfs_set_opt(sbi, NORECOVERY);
694 break;
Jiro SEKIBAe902ec92010-01-30 18:06:35 +0900695 case Opt_discard:
696 nilfs_set_opt(sbi, DISCARD);
697 break;
Ryusuke Konishi802d3172010-07-05 14:27:04 +0900698 case Opt_nodiscard:
699 nilfs_clear_opt(sbi, DISCARD);
700 break;
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700701 default:
702 printk(KERN_ERR
703 "NILFS: Unrecognized mount option \"%s\"\n", p);
704 return 0;
705 }
706 }
707 return 1;
708}
709
710static inline void
711nilfs_set_default_options(struct nilfs_sb_info *sbi,
712 struct nilfs_super_block *sbp)
713{
714 sbi->s_mount_opt =
Ryusuke Konishi277a6a32010-04-02 18:02:33 +0900715 NILFS_MOUNT_ERRORS_RO | NILFS_MOUNT_BARRIER;
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700716}
717
718static int nilfs_setup_super(struct nilfs_sb_info *sbi)
719{
720 struct the_nilfs *nilfs = sbi->s_nilfs;
Jiro SEKIBAd26493b2010-06-28 17:49:32 +0900721 struct nilfs_super_block **sbp;
722 int max_mnt_count;
723 int mnt_count;
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700724
Jiro SEKIBAd26493b2010-06-28 17:49:32 +0900725 /* nilfs->ns_sem must be locked by the caller. */
Jiro SEKIBAb2ac86e2010-06-28 17:49:33 +0900726 sbp = nilfs_prepare_super(sbi, 0);
Jiro SEKIBAd26493b2010-06-28 17:49:32 +0900727 if (!sbp)
728 return -EIO;
729
730 max_mnt_count = le16_to_cpu(sbp[0]->s_max_mnt_count);
731 mnt_count = le16_to_cpu(sbp[0]->s_mnt_count);
732
Ryusuke Konishif50a4c82009-11-19 16:58:40 +0900733 if (nilfs->ns_mount_state & NILFS_ERROR_FS) {
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700734 printk(KERN_WARNING
735 "NILFS warning: mounting fs with errors\n");
736#if 0
737 } else if (max_mnt_count >= 0 && mnt_count >= max_mnt_count) {
738 printk(KERN_WARNING
739 "NILFS warning: maximal mount count reached\n");
740#endif
741 }
742 if (!max_mnt_count)
Jiro SEKIBAd26493b2010-06-28 17:49:32 +0900743 sbp[0]->s_max_mnt_count = cpu_to_le16(NILFS_DFL_MAX_MNT_COUNT);
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700744
Jiro SEKIBAd26493b2010-06-28 17:49:32 +0900745 sbp[0]->s_mnt_count = cpu_to_le16(mnt_count + 1);
746 sbp[0]->s_state =
747 cpu_to_le16(le16_to_cpu(sbp[0]->s_state) & ~NILFS_VALID_FS);
748 sbp[0]->s_mtime = cpu_to_le64(get_seconds());
Jiro SEKIBAb2ac86e2010-06-28 17:49:33 +0900749 /* synchronize sbp[1] with sbp[0] */
750 memcpy(sbp[1], sbp[0], nilfs->ns_sbsize);
751 return nilfs_commit_super(sbi, NILFS_SB_COMMIT_ALL);
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700752}
753
Ryusuke Konishie339ad32009-04-06 19:01:59 -0700754struct nilfs_super_block *nilfs_read_super_block(struct super_block *sb,
755 u64 pos, int blocksize,
756 struct buffer_head **pbh)
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700757{
Ryusuke Konishie339ad32009-04-06 19:01:59 -0700758 unsigned long long sb_index = pos;
759 unsigned long offset;
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700760
Ryusuke Konishie339ad32009-04-06 19:01:59 -0700761 offset = do_div(sb_index, blocksize);
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700762 *pbh = sb_bread(sb, sb_index);
Ryusuke Konishie339ad32009-04-06 19:01:59 -0700763 if (!*pbh)
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700764 return NULL;
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700765 return (struct nilfs_super_block *)((char *)(*pbh)->b_data + offset);
766}
767
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700768int nilfs_store_magic_and_option(struct super_block *sb,
769 struct nilfs_super_block *sbp,
770 char *data)
771{
772 struct nilfs_sb_info *sbi = NILFS_SB(sb);
773
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700774 sb->s_magic = le16_to_cpu(sbp->s_magic);
775
776 /* FS independent flags */
777#ifdef NILFS_ATIME_DISABLE
778 sb->s_flags |= MS_NOATIME;
779#endif
780
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700781 nilfs_set_default_options(sbi, sbp);
782
783 sbi->s_resuid = le16_to_cpu(sbp->s_def_resuid);
784 sbi->s_resgid = le16_to_cpu(sbp->s_def_resgid);
785 sbi->s_interval = le32_to_cpu(sbp->s_c_interval);
786 sbi->s_watermark = le32_to_cpu(sbp->s_c_block_max);
787
Ryusuke Konishi7c017452010-07-05 20:08:33 +0900788 return !parse_options(data, sb, 0) ? -EINVAL : 0 ;
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700789}
790
791/**
792 * nilfs_fill_super() - initialize a super block instance
793 * @sb: super_block
794 * @data: mount options
795 * @silent: silent mode flag
796 * @nilfs: the_nilfs struct
797 *
Ryusuke Konishiaa7dfb82009-06-08 01:39:33 +0900798 * This function is called exclusively by nilfs->ns_mount_mutex.
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700799 * So, the recovery process is protected from other simultaneous mounts.
800 */
801static int
802nilfs_fill_super(struct super_block *sb, void *data, int silent,
803 struct the_nilfs *nilfs)
804{
805 struct nilfs_sb_info *sbi;
806 struct inode *root;
807 __u64 cno;
808 int err;
809
810 sbi = kzalloc(sizeof(*sbi), GFP_KERNEL);
811 if (!sbi)
812 return -ENOMEM;
813
814 sb->s_fs_info = sbi;
815
816 get_nilfs(nilfs);
817 sbi->s_nilfs = nilfs;
818 sbi->s_super = sb;
Ryusuke Konishi6dd47402009-06-08 01:39:31 +0900819 atomic_set(&sbi->s_count, 1);
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700820
821 err = init_nilfs(nilfs, sbi, (char *)data);
822 if (err)
823 goto failed_sbi;
824
825 spin_lock_init(&sbi->s_inode_lock);
826 INIT_LIST_HEAD(&sbi->s_dirty_files);
827 INIT_LIST_HEAD(&sbi->s_list);
828
829 /*
830 * Following initialization is overlapped because
831 * nilfs_sb_info structure has been cleared at the beginning.
832 * But we reserve them to keep our interest and make ready
833 * for the future change.
834 */
835 get_random_bytes(&sbi->s_next_generation,
836 sizeof(sbi->s_next_generation));
837 spin_lock_init(&sbi->s_next_gen_lock);
838
839 sb->s_op = &nilfs_sops;
840 sb->s_export_op = &nilfs_export_ops;
841 sb->s_root = NULL;
Ryusuke Konishi61239232009-04-06 19:02:00 -0700842 sb->s_time_gran = 1;
Ryusuke Konishi973bec32010-05-03 21:00:48 +0900843 sb->s_bdi = nilfs->ns_bdi;
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700844
Ryusuke Konishif50a4c82009-11-19 16:58:40 +0900845 err = load_nilfs(nilfs, sbi);
846 if (err)
847 goto failed_sbi;
848
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700849 cno = nilfs_last_cno(nilfs);
850
851 if (sb->s_flags & MS_RDONLY) {
852 if (nilfs_test_opt(sbi, SNAPSHOT)) {
Zhu Yanhai43be0ec2009-08-12 14:17:59 +0800853 down_read(&nilfs->ns_segctor_sem);
Ryusuke Konishi1f5abe72009-04-06 19:01:55 -0700854 err = nilfs_cpfile_is_snapshot(nilfs->ns_cpfile,
855 sbi->s_snapshot_cno);
Zhu Yanhai43be0ec2009-08-12 14:17:59 +0800856 up_read(&nilfs->ns_segctor_sem);
857 if (err < 0) {
858 if (err == -ENOENT)
859 err = -EINVAL;
Ryusuke Konishi1f5abe72009-04-06 19:01:55 -0700860 goto failed_sbi;
Zhu Yanhai43be0ec2009-08-12 14:17:59 +0800861 }
Ryusuke Konishi1f5abe72009-04-06 19:01:55 -0700862 if (!err) {
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700863 printk(KERN_ERR
864 "NILFS: The specified checkpoint is "
865 "not a snapshot "
866 "(checkpoint number=%llu).\n",
867 (unsigned long long)sbi->s_snapshot_cno);
868 err = -EINVAL;
869 goto failed_sbi;
870 }
871 cno = sbi->s_snapshot_cno;
Ryusuke Konishid240e062010-05-09 21:51:53 +0900872 }
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700873 }
874
875 err = nilfs_attach_checkpoint(sbi, cno);
876 if (err) {
877 printk(KERN_ERR "NILFS: error loading a checkpoint"
878 " (checkpoint number=%llu).\n", (unsigned long long)cno);
879 goto failed_sbi;
880 }
881
882 if (!(sb->s_flags & MS_RDONLY)) {
Ryusuke Konishicece5522009-04-06 19:01:58 -0700883 err = nilfs_attach_segment_constructor(sbi);
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700884 if (err)
885 goto failed_checkpoint;
886 }
887
888 root = nilfs_iget(sb, NILFS_ROOT_INO);
889 if (IS_ERR(root)) {
890 printk(KERN_ERR "NILFS: get root inode failed\n");
891 err = PTR_ERR(root);
892 goto failed_segctor;
893 }
894 if (!S_ISDIR(root->i_mode) || !root->i_blocks || !root->i_size) {
895 iput(root);
896 printk(KERN_ERR "NILFS: corrupt root inode.\n");
897 err = -EINVAL;
898 goto failed_segctor;
899 }
900 sb->s_root = d_alloc_root(root);
901 if (!sb->s_root) {
902 iput(root);
903 printk(KERN_ERR "NILFS: get root dentry failed\n");
904 err = -ENOMEM;
905 goto failed_segctor;
906 }
907
908 if (!(sb->s_flags & MS_RDONLY)) {
909 down_write(&nilfs->ns_sem);
910 nilfs_setup_super(sbi);
911 up_write(&nilfs->ns_sem);
912 }
913
Ryusuke Konishie59399d2009-06-08 01:39:32 +0900914 down_write(&nilfs->ns_super_sem);
Ryusuke Konishi3f82ff52009-06-08 01:39:30 +0900915 if (!nilfs_test_opt(sbi, SNAPSHOT))
916 nilfs->ns_current = sbi;
Ryusuke Konishie59399d2009-06-08 01:39:32 +0900917 up_write(&nilfs->ns_super_sem);
Ryusuke Konishi3f82ff52009-06-08 01:39:30 +0900918
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700919 return 0;
920
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700921 failed_segctor:
922 nilfs_detach_segment_constructor(sbi);
923
924 failed_checkpoint:
925 nilfs_detach_checkpoint(sbi);
926
927 failed_sbi:
928 put_nilfs(nilfs);
929 sb->s_fs_info = NULL;
Ryusuke Konishi6dd47402009-06-08 01:39:31 +0900930 nilfs_put_sbinfo(sbi);
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700931 return err;
932}
933
934static int nilfs_remount(struct super_block *sb, int *flags, char *data)
935{
936 struct nilfs_sb_info *sbi = NILFS_SB(sb);
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700937 struct the_nilfs *nilfs = sbi->s_nilfs;
938 unsigned long old_sb_flags;
939 struct nilfs_mount_options old_opts;
Ryusuke Konishid240e062010-05-09 21:51:53 +0900940 int was_snapshot, err;
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700941
Alessio Igor Bogani337eb002009-05-12 15:10:54 +0200942 lock_kernel();
943
Ryusuke Konishie59399d2009-06-08 01:39:32 +0900944 down_write(&nilfs->ns_super_sem);
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700945 old_sb_flags = sb->s_flags;
946 old_opts.mount_opt = sbi->s_mount_opt;
947 old_opts.snapshot_cno = sbi->s_snapshot_cno;
Ryusuke Konishid240e062010-05-09 21:51:53 +0900948 was_snapshot = nilfs_test_opt(sbi, SNAPSHOT);
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700949
Ryusuke Konishi7c017452010-07-05 20:08:33 +0900950 if (!parse_options(data, sb, 1)) {
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700951 err = -EINVAL;
952 goto restore_opts;
953 }
954 sb->s_flags = (sb->s_flags & ~MS_POSIXACL);
955
Ryusuke Konishid240e062010-05-09 21:51:53 +0900956 err = -EINVAL;
Ryusuke Konishi7c017452010-07-05 20:08:33 +0900957 if (was_snapshot && !(*flags & MS_RDONLY)) {
958 printk(KERN_ERR "NILFS (device %s): cannot remount snapshot "
959 "read/write.\n", sb->s_id);
960 goto restore_opts;
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700961 }
962
Ryusuke Konishi02345762009-11-20 03:28:01 +0900963 if (!nilfs_valid_fs(nilfs)) {
964 printk(KERN_WARNING "NILFS (device %s): couldn't "
965 "remount because the filesystem is in an "
966 "incomplete recovery state.\n", sb->s_id);
Ryusuke Konishi02345762009-11-20 03:28:01 +0900967 goto restore_opts;
968 }
969
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700970 if ((*flags & MS_RDONLY) == (sb->s_flags & MS_RDONLY))
971 goto out;
972 if (*flags & MS_RDONLY) {
973 /* Shutting down the segment constructor */
974 nilfs_detach_segment_constructor(sbi);
975 sb->s_flags |= MS_RDONLY;
976
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700977 /*
978 * Remounting a valid RW partition RDONLY, so set
979 * the RDONLY flag and then mark the partition as valid again.
980 */
981 down_write(&nilfs->ns_sem);
Ryusuke Konishi7ecaa462010-06-28 17:49:29 +0900982 nilfs_cleanup_super(sbi);
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700983 up_write(&nilfs->ns_sem);
984 } else {
985 /*
986 * Mounting a RDONLY partition read-write, so reread and
987 * store the current valid flag. (It may have been changed
988 * by fsck since we originally mounted the partition.)
989 */
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700990 sb->s_flags &= ~MS_RDONLY;
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700991
Ryusuke Konishicece5522009-04-06 19:01:58 -0700992 err = nilfs_attach_segment_constructor(sbi);
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700993 if (err)
Ryusuke Konishie59399d2009-06-08 01:39:32 +0900994 goto restore_opts;
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700995
996 down_write(&nilfs->ns_sem);
997 nilfs_setup_super(sbi);
998 up_write(&nilfs->ns_sem);
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700999 }
1000 out:
Ryusuke Konishie59399d2009-06-08 01:39:32 +09001001 up_write(&nilfs->ns_super_sem);
Alessio Igor Bogani337eb002009-05-12 15:10:54 +02001002 unlock_kernel();
Ryusuke Konishi783f6182009-04-06 19:01:35 -07001003 return 0;
1004
Ryusuke Konishi783f6182009-04-06 19:01:35 -07001005 restore_opts:
1006 sb->s_flags = old_sb_flags;
1007 sbi->s_mount_opt = old_opts.mount_opt;
1008 sbi->s_snapshot_cno = old_opts.snapshot_cno;
Ryusuke Konishie59399d2009-06-08 01:39:32 +09001009 up_write(&nilfs->ns_super_sem);
Alessio Igor Bogani337eb002009-05-12 15:10:54 +02001010 unlock_kernel();
Ryusuke Konishi783f6182009-04-06 19:01:35 -07001011 return err;
1012}
1013
1014struct nilfs_super_data {
1015 struct block_device *bdev;
Ryusuke Konishi6dd47402009-06-08 01:39:31 +09001016 struct nilfs_sb_info *sbi;
Ryusuke Konishi783f6182009-04-06 19:01:35 -07001017 __u64 cno;
1018 int flags;
1019};
1020
1021/**
1022 * nilfs_identify - pre-read mount options needed to identify mount instance
1023 * @data: mount options
1024 * @sd: nilfs_super_data
1025 */
1026static int nilfs_identify(char *data, struct nilfs_super_data *sd)
1027{
1028 char *p, *options = data;
1029 substring_t args[MAX_OPT_ARGS];
1030 int option, token;
1031 int ret = 0;
1032
1033 do {
1034 p = strsep(&options, ",");
1035 if (p != NULL && *p) {
1036 token = match_token(p, tokens, args);
1037 if (token == Opt_snapshot) {
1038 if (!(sd->flags & MS_RDONLY))
1039 ret++;
1040 else {
1041 ret = match_int(&args[0], &option);
1042 if (!ret) {
1043 if (option > 0)
1044 sd->cno = option;
1045 else
1046 ret++;
1047 }
1048 }
1049 }
1050 if (ret)
1051 printk(KERN_ERR
1052 "NILFS: invalid mount option: %s\n", p);
1053 }
1054 if (!options)
1055 break;
1056 BUG_ON(options == data);
1057 *(options - 1) = ',';
1058 } while (!ret);
1059 return ret;
1060}
1061
1062static int nilfs_set_bdev_super(struct super_block *s, void *data)
1063{
1064 struct nilfs_super_data *sd = data;
1065
1066 s->s_bdev = sd->bdev;
1067 s->s_dev = s->s_bdev->bd_dev;
1068 return 0;
1069}
1070
1071static int nilfs_test_bdev_super(struct super_block *s, void *data)
1072{
1073 struct nilfs_super_data *sd = data;
Ryusuke Konishi783f6182009-04-06 19:01:35 -07001074
Ryusuke Konishi6dd47402009-06-08 01:39:31 +09001075 return sd->sbi && s->s_fs_info == (void *)sd->sbi;
Ryusuke Konishi783f6182009-04-06 19:01:35 -07001076}
1077
1078static int
1079nilfs_get_sb(struct file_system_type *fs_type, int flags,
1080 const char *dev_name, void *data, struct vfsmount *mnt)
1081{
1082 struct nilfs_super_data sd;
Ryusuke Konishi33c8e572009-06-08 01:39:29 +09001083 struct super_block *s;
Ryusuke Konishi13e90552010-05-09 02:57:57 +09001084 fmode_t mode = FMODE_READ;
Ryusuke Konishi33c8e572009-06-08 01:39:29 +09001085 struct the_nilfs *nilfs;
Ryusuke Konishi783f6182009-04-06 19:01:35 -07001086 int err, need_to_close = 1;
1087
Ryusuke Konishi13e90552010-05-09 02:57:57 +09001088 if (!(flags & MS_RDONLY))
1089 mode |= FMODE_WRITE;
1090
1091 sd.bdev = open_bdev_exclusive(dev_name, mode, fs_type);
Ryusuke Konishi783f6182009-04-06 19:01:35 -07001092 if (IS_ERR(sd.bdev))
1093 return PTR_ERR(sd.bdev);
1094
1095 /*
1096 * To get mount instance using sget() vfs-routine, NILFS needs
1097 * much more information than normal filesystems to identify mount
1098 * instance. For snapshot mounts, not only a mount type (ro-mount
1099 * or rw-mount) but also a checkpoint number is required.
Ryusuke Konishi783f6182009-04-06 19:01:35 -07001100 */
1101 sd.cno = 0;
1102 sd.flags = flags;
1103 if (nilfs_identify((char *)data, &sd)) {
1104 err = -EINVAL;
1105 goto failed;
1106 }
1107
Ryusuke Konishi33c8e572009-06-08 01:39:29 +09001108 nilfs = find_or_create_nilfs(sd.bdev);
1109 if (!nilfs) {
1110 err = -ENOMEM;
1111 goto failed;
1112 }
1113
Ryusuke Konishiaa7dfb82009-06-08 01:39:33 +09001114 mutex_lock(&nilfs->ns_mount_mutex);
Ryusuke Konishi3f82ff52009-06-08 01:39:30 +09001115
1116 if (!sd.cno) {
1117 /*
1118 * Check if an exclusive mount exists or not.
1119 * Snapshot mounts coexist with a current mount
1120 * (i.e. rw-mount or ro-mount), whereas rw-mount and
1121 * ro-mount are mutually exclusive.
1122 */
Ryusuke Konishie59399d2009-06-08 01:39:32 +09001123 down_read(&nilfs->ns_super_sem);
Ryusuke Konishi3f82ff52009-06-08 01:39:30 +09001124 if (nilfs->ns_current &&
1125 ((nilfs->ns_current->s_super->s_flags ^ flags)
1126 & MS_RDONLY)) {
Ryusuke Konishie59399d2009-06-08 01:39:32 +09001127 up_read(&nilfs->ns_super_sem);
Ryusuke Konishi3f82ff52009-06-08 01:39:30 +09001128 err = -EBUSY;
1129 goto failed_unlock;
1130 }
Ryusuke Konishie59399d2009-06-08 01:39:32 +09001131 up_read(&nilfs->ns_super_sem);
Ryusuke Konishi783f6182009-04-06 19:01:35 -07001132 }
1133
1134 /*
Ryusuke Konishi6dd47402009-06-08 01:39:31 +09001135 * Find existing nilfs_sb_info struct
Ryusuke Konishi783f6182009-04-06 19:01:35 -07001136 */
Ryusuke Konishi6dd47402009-06-08 01:39:31 +09001137 sd.sbi = nilfs_find_sbinfo(nilfs, !(flags & MS_RDONLY), sd.cno);
1138
Ryusuke Konishi6dd47402009-06-08 01:39:31 +09001139 /*
1140 * Get super block instance holding the nilfs_sb_info struct.
1141 * A new instance is allocated if no existing mount is present or
1142 * existing instance has been unmounted.
1143 */
Ryusuke Konishi783f6182009-04-06 19:01:35 -07001144 s = sget(fs_type, nilfs_test_bdev_super, nilfs_set_bdev_super, &sd);
Ryusuke Konishi6dd47402009-06-08 01:39:31 +09001145 if (sd.sbi)
1146 nilfs_put_sbinfo(sd.sbi);
1147
Ryusuke Konishi33c8e572009-06-08 01:39:29 +09001148 if (IS_ERR(s)) {
1149 err = PTR_ERR(s);
1150 goto failed_unlock;
Ryusuke Konishi783f6182009-04-06 19:01:35 -07001151 }
1152
1153 if (!s->s_root) {
1154 char b[BDEVNAME_SIZE];
1155
Ryusuke Konishi33c8e572009-06-08 01:39:29 +09001156 /* New superblock instance created */
Ryusuke Konishi783f6182009-04-06 19:01:35 -07001157 s->s_flags = flags;
Ryusuke Konishi4571b822010-05-09 03:01:32 +09001158 s->s_mode = mode;
Ryusuke Konishi783f6182009-04-06 19:01:35 -07001159 strlcpy(s->s_id, bdevname(sd.bdev, b), sizeof(s->s_id));
1160 sb_set_blocksize(s, block_size(sd.bdev));
1161
Ryusuke Konishie2d15912010-05-09 09:48:31 +09001162 err = nilfs_fill_super(s, data, flags & MS_SILENT ? 1 : 0,
1163 nilfs);
Ryusuke Konishi783f6182009-04-06 19:01:35 -07001164 if (err)
1165 goto cancel_new;
1166
1167 s->s_flags |= MS_ACTIVE;
1168 need_to_close = 0;
Ryusuke Konishi783f6182009-04-06 19:01:35 -07001169 }
1170
Ryusuke Konishiaa7dfb82009-06-08 01:39:33 +09001171 mutex_unlock(&nilfs->ns_mount_mutex);
Ryusuke Konishi783f6182009-04-06 19:01:35 -07001172 put_nilfs(nilfs);
1173 if (need_to_close)
Ryusuke Konishi13e90552010-05-09 02:57:57 +09001174 close_bdev_exclusive(sd.bdev, mode);
Ryusuke Konishi783f6182009-04-06 19:01:35 -07001175 simple_set_mnt(mnt, s);
1176 return 0;
1177
Ryusuke Konishi783f6182009-04-06 19:01:35 -07001178 failed_unlock:
Ryusuke Konishiaa7dfb82009-06-08 01:39:33 +09001179 mutex_unlock(&nilfs->ns_mount_mutex);
Ryusuke Konishi33c8e572009-06-08 01:39:29 +09001180 put_nilfs(nilfs);
Ryusuke Konishi783f6182009-04-06 19:01:35 -07001181 failed:
Ryusuke Konishi13e90552010-05-09 02:57:57 +09001182 close_bdev_exclusive(sd.bdev, mode);
Ryusuke Konishi783f6182009-04-06 19:01:35 -07001183
1184 return err;
1185
1186 cancel_new:
1187 /* Abandoning the newly allocated superblock */
Ryusuke Konishiaa7dfb82009-06-08 01:39:33 +09001188 mutex_unlock(&nilfs->ns_mount_mutex);
Ryusuke Konishi33c8e572009-06-08 01:39:29 +09001189 put_nilfs(nilfs);
Al Viroa95161a2009-08-09 00:52:02 +04001190 deactivate_locked_super(s);
Ryusuke Konishi783f6182009-04-06 19:01:35 -07001191 /*
Ryusuke Konishib87ca912010-05-09 10:05:21 +09001192 * deactivate_locked_super() invokes close_bdev_exclusive().
Ryusuke Konishi783f6182009-04-06 19:01:35 -07001193 * We must finish all post-cleaning before this call;
Ryusuke Konishiaa7dfb82009-06-08 01:39:33 +09001194 * put_nilfs() needs the block device.
Ryusuke Konishi783f6182009-04-06 19:01:35 -07001195 */
1196 return err;
1197}
1198
Ryusuke Konishi783f6182009-04-06 19:01:35 -07001199struct file_system_type nilfs_fs_type = {
1200 .owner = THIS_MODULE,
1201 .name = "nilfs2",
1202 .get_sb = nilfs_get_sb,
1203 .kill_sb = kill_block_super,
1204 .fs_flags = FS_REQUIRES_DEV,
1205};
1206
Li Hong41c88bd2010-04-06 00:54:11 +08001207static void nilfs_inode_init_once(void *obj)
1208{
1209 struct nilfs_inode_info *ii = obj;
1210
1211 INIT_LIST_HEAD(&ii->i_dirty);
1212#ifdef CONFIG_NILFS_XATTR
1213 init_rwsem(&ii->xattr_sem);
1214#endif
1215 nilfs_btnode_cache_init_once(&ii->i_btnode_cache);
1216 ii->i_bmap = (struct nilfs_bmap *)&ii->i_bmap_union;
1217 inode_init_once(&ii->vfs_inode);
1218}
1219
1220static void nilfs_segbuf_init_once(void *obj)
1221{
1222 memset(obj, 0, sizeof(struct nilfs_segment_buffer));
1223}
1224
1225static void nilfs_destroy_cachep(void)
1226{
Ryusuke Konishi84cb0992010-05-22 12:49:32 +09001227 if (nilfs_inode_cachep)
Li Hong41c88bd2010-04-06 00:54:11 +08001228 kmem_cache_destroy(nilfs_inode_cachep);
Ryusuke Konishi84cb0992010-05-22 12:49:32 +09001229 if (nilfs_transaction_cachep)
Li Hong41c88bd2010-04-06 00:54:11 +08001230 kmem_cache_destroy(nilfs_transaction_cachep);
Ryusuke Konishi84cb0992010-05-22 12:49:32 +09001231 if (nilfs_segbuf_cachep)
Li Hong41c88bd2010-04-06 00:54:11 +08001232 kmem_cache_destroy(nilfs_segbuf_cachep);
Ryusuke Konishi84cb0992010-05-22 12:49:32 +09001233 if (nilfs_btree_path_cache)
Li Hong41c88bd2010-04-06 00:54:11 +08001234 kmem_cache_destroy(nilfs_btree_path_cache);
1235}
1236
1237static int __init nilfs_init_cachep(void)
1238{
1239 nilfs_inode_cachep = kmem_cache_create("nilfs2_inode_cache",
1240 sizeof(struct nilfs_inode_info), 0,
1241 SLAB_RECLAIM_ACCOUNT, nilfs_inode_init_once);
1242 if (!nilfs_inode_cachep)
1243 goto fail;
1244
1245 nilfs_transaction_cachep = kmem_cache_create("nilfs2_transaction_cache",
1246 sizeof(struct nilfs_transaction_info), 0,
1247 SLAB_RECLAIM_ACCOUNT, NULL);
1248 if (!nilfs_transaction_cachep)
1249 goto fail;
1250
1251 nilfs_segbuf_cachep = kmem_cache_create("nilfs2_segbuf_cache",
1252 sizeof(struct nilfs_segment_buffer), 0,
1253 SLAB_RECLAIM_ACCOUNT, nilfs_segbuf_init_once);
1254 if (!nilfs_segbuf_cachep)
1255 goto fail;
1256
1257 nilfs_btree_path_cache = kmem_cache_create("nilfs2_btree_path_cache",
1258 sizeof(struct nilfs_btree_path) * NILFS_BTREE_LEVEL_MAX,
1259 0, 0, NULL);
1260 if (!nilfs_btree_path_cache)
1261 goto fail;
1262
1263 return 0;
1264
1265fail:
1266 nilfs_destroy_cachep();
1267 return -ENOMEM;
1268}
1269
Ryusuke Konishi783f6182009-04-06 19:01:35 -07001270static int __init init_nilfs_fs(void)
1271{
1272 int err;
1273
Li Hong41c88bd2010-04-06 00:54:11 +08001274 err = nilfs_init_cachep();
Ryusuke Konishi783f6182009-04-06 19:01:35 -07001275 if (err)
Li Hong41c88bd2010-04-06 00:54:11 +08001276 goto fail;
Ryusuke Konishi783f6182009-04-06 19:01:35 -07001277
1278 err = register_filesystem(&nilfs_fs_type);
1279 if (err)
Li Hong41c88bd2010-04-06 00:54:11 +08001280 goto free_cachep;
Ryusuke Konishi783f6182009-04-06 19:01:35 -07001281
Li Hong9f130262010-04-09 23:09:53 +08001282 printk(KERN_INFO "NILFS version 2 loaded\n");
Ryusuke Konishi783f6182009-04-06 19:01:35 -07001283 return 0;
1284
Li Hong41c88bd2010-04-06 00:54:11 +08001285free_cachep:
1286 nilfs_destroy_cachep();
1287fail:
Ryusuke Konishi783f6182009-04-06 19:01:35 -07001288 return err;
1289}
1290
1291static void __exit exit_nilfs_fs(void)
1292{
Li Hong41c88bd2010-04-06 00:54:11 +08001293 nilfs_destroy_cachep();
Ryusuke Konishi783f6182009-04-06 19:01:35 -07001294 unregister_filesystem(&nilfs_fs_type);
1295}
1296
1297module_init(init_nilfs_fs)
1298module_exit(exit_nilfs_fs)