blob: 3073b646e1bacf7c33aa8fd458ca8dfd7cb30884 [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 *
Ryusuke Konishi4b420ab2016-05-23 16:23:09 -070016 * Written by Ryusuke Konishi.
Ryusuke Konishi783f6182009-04-06 19:01:35 -070017 */
18/*
19 * linux/fs/ext2/super.c
20 *
21 * Copyright (C) 1992, 1993, 1994, 1995
22 * Remy Card (card@masi.ibp.fr)
23 * Laboratoire MASI - Institut Blaise Pascal
24 * Universite Pierre et Marie Curie (Paris VI)
25 *
26 * from
27 *
28 * linux/fs/minix/inode.c
29 *
30 * Copyright (C) 1991, 1992 Linus Torvalds
31 *
32 * Big-endian to little-endian byte-swapping/bitmaps by
33 * David S. Miller (davem@caip.rutgers.edu), 1995
34 */
35
36#include <linux/module.h>
37#include <linux/string.h>
38#include <linux/slab.h>
39#include <linux/init.h>
40#include <linux/blkdev.h>
41#include <linux/parser.h>
Ryusuke Konishi783f6182009-04-06 19:01:35 -070042#include <linux/crc32.h>
Ryusuke Konishi783f6182009-04-06 19:01:35 -070043#include <linux/vfs.h>
44#include <linux/writeback.h>
Jiro SEKIBAb58a2852009-06-24 20:06:34 +090045#include <linux/seq_file.h>
46#include <linux/mount.h>
Ryusuke Konishi783f6182009-04-06 19:01:35 -070047#include "nilfs.h"
Ryusuke Konishi8e656fd2010-08-27 00:23:02 +090048#include "export.h"
Ryusuke Konishi783f6182009-04-06 19:01:35 -070049#include "mdt.h"
50#include "alloc.h"
Ryusuke Konishi05d0e942010-07-10 20:52:09 +090051#include "btree.h"
52#include "btnode.h"
Ryusuke Konishi783f6182009-04-06 19:01:35 -070053#include "page.h"
54#include "cpfile.h"
Ryusuke Konishi4e33f9e2011-05-05 01:23:58 +090055#include "sufile.h" /* nilfs_sufile_resize(), nilfs_sufile_set_alloc_range() */
Ryusuke Konishi783f6182009-04-06 19:01:35 -070056#include "ifile.h"
57#include "dat.h"
58#include "segment.h"
59#include "segbuf.h"
60
61MODULE_AUTHOR("NTT Corp.");
62MODULE_DESCRIPTION("A New Implementation of the Log-structured Filesystem "
63 "(NILFS)");
Ryusuke Konishi783f6182009-04-06 19:01:35 -070064MODULE_LICENSE("GPL");
65
Jiro SEKIBAabc0b502010-10-08 22:37:27 +090066static struct kmem_cache *nilfs_inode_cachep;
Li Hong41c88bd2010-04-06 00:54:11 +080067struct kmem_cache *nilfs_transaction_cachep;
68struct kmem_cache *nilfs_segbuf_cachep;
69struct kmem_cache *nilfs_btree_path_cache;
70
Ryusuke Konishif7545142011-03-09 11:05:08 +090071static int nilfs_setup_super(struct super_block *sb, int is_mount);
Ryusuke Konishi783f6182009-04-06 19:01:35 -070072static int nilfs_remount(struct super_block *sb, int *flags, char *data);
Ryusuke Konishi783f6182009-04-06 19:01:35 -070073
Ryusuke Konishia66dfb02016-08-02 14:05:02 -070074void __nilfs_msg(struct super_block *sb, const char *level, const char *fmt,
75 ...)
76{
77 struct va_format vaf;
78 va_list args;
79
80 va_start(args, fmt);
81 vaf.fmt = fmt;
82 vaf.va = &args;
83 if (sb)
84 printk("%sNILFS (%s): %pV\n", level, sb->s_id, &vaf);
85 else
86 printk("%sNILFS: %pV\n", level, &vaf);
87 va_end(args);
88}
89
Ryusuke Konishif7545142011-03-09 11:05:08 +090090static void nilfs_set_error(struct super_block *sb)
Ryusuke Konishic8a11c82010-06-28 17:49:30 +090091{
Ryusuke Konishie3154e92011-03-09 11:05:08 +090092 struct the_nilfs *nilfs = sb->s_fs_info;
Jiro SEKIBAd26493b2010-06-28 17:49:32 +090093 struct nilfs_super_block **sbp;
Ryusuke Konishic8a11c82010-06-28 17:49:30 +090094
95 down_write(&nilfs->ns_sem);
96 if (!(nilfs->ns_mount_state & NILFS_ERROR_FS)) {
97 nilfs->ns_mount_state |= NILFS_ERROR_FS;
Ryusuke Konishif7545142011-03-09 11:05:08 +090098 sbp = nilfs_prepare_super(sb, 0);
Jiro SEKIBAd26493b2010-06-28 17:49:32 +090099 if (likely(sbp)) {
100 sbp[0]->s_state |= cpu_to_le16(NILFS_ERROR_FS);
Jiro SEKIBAb2ac86e2010-06-28 17:49:33 +0900101 if (sbp[1])
102 sbp[1]->s_state |= cpu_to_le16(NILFS_ERROR_FS);
Ryusuke Konishif7545142011-03-09 11:05:08 +0900103 nilfs_commit_super(sb, NILFS_SB_COMMIT_ALL);
Jiro SEKIBAd26493b2010-06-28 17:49:32 +0900104 }
Ryusuke Konishic8a11c82010-06-28 17:49:30 +0900105 }
106 up_write(&nilfs->ns_sem);
107}
108
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700109/**
Ryusuke Konishicae3d4c2016-08-02 14:05:00 -0700110 * __nilfs_error() - report failure condition on a filesystem
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700111 *
Ryusuke Konishicae3d4c2016-08-02 14:05:00 -0700112 * __nilfs_error() sets an ERROR_FS flag on the superblock as well as
113 * reporting an error message. This function should be called when
114 * NILFS detects incoherences or defects of meta data on disk.
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700115 *
Ryusuke Konishicae3d4c2016-08-02 14:05:00 -0700116 * This implements the body of nilfs_error() macro. Normally,
117 * nilfs_error() should be used. As for sustainable errors such as a
Ryusuke Konishid6517de2016-08-02 14:05:14 -0700118 * single-shot I/O error, nilfs_msg() should be used instead.
Ryusuke Konishicae3d4c2016-08-02 14:05:00 -0700119 *
120 * Callers should not add a trailing newline since this will do it.
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700121 */
Ryusuke Konishicae3d4c2016-08-02 14:05:00 -0700122void __nilfs_error(struct super_block *sb, const char *function,
123 const char *fmt, ...)
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700124{
Ryusuke Konishie3154e92011-03-09 11:05:08 +0900125 struct the_nilfs *nilfs = sb->s_fs_info;
Joe Perchesb004a5e2010-11-09 16:35:21 -0800126 struct va_format vaf;
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700127 va_list args;
128
129 va_start(args, fmt);
Joe Perchesb004a5e2010-11-09 16:35:21 -0800130
131 vaf.fmt = fmt;
132 vaf.va = &args;
133
134 printk(KERN_CRIT "NILFS error (device %s): %s: %pV\n",
135 sb->s_id, function, &vaf);
136
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700137 va_end(args);
138
David Howellsbc98a422017-07-17 08:45:34 +0100139 if (!sb_rdonly(sb)) {
Ryusuke Konishif7545142011-03-09 11:05:08 +0900140 nilfs_set_error(sb);
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700141
Ryusuke Konishi3b2ce582011-03-09 11:05:07 +0900142 if (nilfs_test_opt(nilfs, ERRORS_RO)) {
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700143 printk(KERN_CRIT "Remounting filesystem read-only\n");
Linus Torvalds1751e8a2017-11-27 13:05:09 -0800144 sb->s_flags |= SB_RDONLY;
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700145 }
146 }
147
Ryusuke Konishi3b2ce582011-03-09 11:05:07 +0900148 if (nilfs_test_opt(nilfs, ERRORS_PANIC))
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700149 panic("NILFS (device %s): panic forced after error\n",
150 sb->s_id);
151}
152
Ryusuke Konishi2879ed62010-09-05 13:35:53 +0900153struct inode *nilfs_alloc_inode(struct super_block *sb)
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700154{
155 struct nilfs_inode_info *ii;
156
157 ii = kmem_cache_alloc(nilfs_inode_cachep, GFP_NOFS);
158 if (!ii)
159 return NULL;
160 ii->i_bh = NULL;
161 ii->i_state = 0;
Ryusuke Konishi0e14a352010-08-20 21:20:29 +0900162 ii->i_cno = 0;
Christoph Hellwigb83ae6d2015-01-14 10:42:37 +0100163 nilfs_mapping_init(&ii->i_btnode_cache, &ii->vfs_inode);
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700164 return &ii->vfs_inode;
165}
166
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +1100167static void nilfs_i_callback(struct rcu_head *head)
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700168{
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +1100169 struct inode *inode = container_of(head, struct inode, i_rcu);
Ryusuke Konishib91c9a92010-08-20 23:46:06 +0900170
Ryusuke Konishi2d199612016-05-23 16:23:20 -0700171 if (nilfs_is_metadata_file_inode(inode))
172 nilfs_mdt_destroy(inode);
173
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700174 kmem_cache_free(nilfs_inode_cachep, NILFS_I(inode));
175}
176
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +1100177void nilfs_destroy_inode(struct inode *inode)
178{
179 call_rcu(&inode->i_rcu, nilfs_i_callback);
180}
181
Ryusuke Konishif7545142011-03-09 11:05:08 +0900182static int nilfs_sync_super(struct super_block *sb, int flag)
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700183{
Ryusuke Konishie3154e92011-03-09 11:05:08 +0900184 struct the_nilfs *nilfs = sb->s_fs_info;
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700185 int err;
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700186
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700187 retry:
Ryusuke Konishie339ad32009-04-06 19:01:59 -0700188 set_buffer_dirty(nilfs->ns_sbh[0]);
Ryusuke Konishi3b2ce582011-03-09 11:05:07 +0900189 if (nilfs_test_opt(nilfs, BARRIER)) {
Christoph Hellwig87e99512010-08-11 17:05:45 +0200190 err = __sync_dirty_buffer(nilfs->ns_sbh[0],
Christoph Hellwig70fd7612016-11-01 07:40:10 -0600191 REQ_SYNC | REQ_PREFLUSH | REQ_FUA);
Christoph Hellwig87e99512010-08-11 17:05:45 +0200192 } else {
193 err = sync_dirty_buffer(nilfs->ns_sbh[0]);
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700194 }
Christoph Hellwig87e99512010-08-11 17:05:45 +0200195
Ryusuke Konishie339ad32009-04-06 19:01:59 -0700196 if (unlikely(err)) {
Ryusuke Konishifeee8802016-08-02 14:05:10 -0700197 nilfs_msg(sb, KERN_ERR, "unable to write superblock: err=%d",
198 err);
Ryusuke Konishie339ad32009-04-06 19:01:59 -0700199 if (err == -EIO && nilfs->ns_sbh[1]) {
Jiro SEKIBAb2ac86e2010-06-28 17:49:33 +0900200 /*
201 * sbp[0] points to newer log than sbp[1],
202 * so copy sbp[0] to sbp[1] to take over sbp[0].
203 */
204 memcpy(nilfs->ns_sbp[1], nilfs->ns_sbp[0],
205 nilfs->ns_sbsize);
Ryusuke Konishie339ad32009-04-06 19:01:59 -0700206 nilfs_fall_back_super_block(nilfs);
207 goto retry;
208 }
209 } else {
210 struct nilfs_super_block *sbp = nilfs->ns_sbp[0];
211
Jiro SEKIBAb2ac86e2010-06-28 17:49:33 +0900212 nilfs->ns_sbwcount++;
213
Ryusuke Konishie339ad32009-04-06 19:01:59 -0700214 /*
215 * The latest segment becomes trailable from the position
216 * written in superblock.
217 */
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700218 clear_nilfs_discontinued(nilfs);
Ryusuke Konishie339ad32009-04-06 19:01:59 -0700219
220 /* update GC protection for recent segments */
221 if (nilfs->ns_sbh[1]) {
Jiro SEKIBAb2ac86e2010-06-28 17:49:33 +0900222 if (flag == NILFS_SB_COMMIT_ALL) {
Ryusuke Konishie339ad32009-04-06 19:01:59 -0700223 set_buffer_dirty(nilfs->ns_sbh[1]);
Jiro SEKIBAb2ac86e2010-06-28 17:49:33 +0900224 if (sync_dirty_buffer(nilfs->ns_sbh[1]) < 0)
225 goto out;
Ryusuke Konishie339ad32009-04-06 19:01:59 -0700226 }
Jiro SEKIBAb2ac86e2010-06-28 17:49:33 +0900227 if (le64_to_cpu(nilfs->ns_sbp[1]->s_last_cno) <
228 le64_to_cpu(nilfs->ns_sbp[0]->s_last_cno))
229 sbp = nilfs->ns_sbp[1];
Ryusuke Konishie339ad32009-04-06 19:01:59 -0700230 }
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700231
Jiro SEKIBAb2ac86e2010-06-28 17:49:33 +0900232 spin_lock(&nilfs->ns_last_segment_lock);
233 nilfs->ns_prot_seq = le64_to_cpu(sbp->s_last_seq);
234 spin_unlock(&nilfs->ns_last_segment_lock);
235 }
236 out:
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700237 return err;
238}
239
Ryusuke Konishi60f46b72010-06-28 17:49:31 +0900240void nilfs_set_log_cursor(struct nilfs_super_block *sbp,
241 struct the_nilfs *nilfs)
242{
243 sector_t nfreeblocks;
244
245 /* nilfs->ns_sem must be locked by the caller. */
246 nilfs_count_free_blocks(nilfs, &nfreeblocks);
247 sbp->s_free_blocks_count = cpu_to_le64(nfreeblocks);
248
249 spin_lock(&nilfs->ns_last_segment_lock);
250 sbp->s_last_seq = cpu_to_le64(nilfs->ns_last_seq);
251 sbp->s_last_pseg = cpu_to_le64(nilfs->ns_last_pseg);
252 sbp->s_last_cno = cpu_to_le64(nilfs->ns_last_cno);
253 spin_unlock(&nilfs->ns_last_segment_lock);
254}
255
Ryusuke Konishif7545142011-03-09 11:05:08 +0900256struct nilfs_super_block **nilfs_prepare_super(struct super_block *sb,
Jiro SEKIBAb2ac86e2010-06-28 17:49:33 +0900257 int flip)
Jiro SEKIBAd26493b2010-06-28 17:49:32 +0900258{
Ryusuke Konishie3154e92011-03-09 11:05:08 +0900259 struct the_nilfs *nilfs = sb->s_fs_info;
Jiro SEKIBAd26493b2010-06-28 17:49:32 +0900260 struct nilfs_super_block **sbp = nilfs->ns_sbp;
261
262 /* nilfs->ns_sem must be locked by the caller. */
263 if (sbp[0]->s_magic != cpu_to_le16(NILFS_SUPER_MAGIC)) {
264 if (sbp[1] &&
265 sbp[1]->s_magic == cpu_to_le16(NILFS_SUPER_MAGIC)) {
Jiro SEKIBAb2ac86e2010-06-28 17:49:33 +0900266 memcpy(sbp[0], sbp[1], nilfs->ns_sbsize);
Jiro SEKIBAd26493b2010-06-28 17:49:32 +0900267 } else {
Ryusuke Konishifeee8802016-08-02 14:05:10 -0700268 nilfs_msg(sb, KERN_CRIT, "superblock broke");
Jiro SEKIBAd26493b2010-06-28 17:49:32 +0900269 return NULL;
270 }
Jiro SEKIBAb2ac86e2010-06-28 17:49:33 +0900271 } else if (sbp[1] &&
272 sbp[1]->s_magic != cpu_to_le16(NILFS_SUPER_MAGIC)) {
Ryusuke Konishi7592ecd2016-05-23 16:23:36 -0700273 memcpy(sbp[1], sbp[0], nilfs->ns_sbsize);
Jiro SEKIBAd26493b2010-06-28 17:49:32 +0900274 }
Jiro SEKIBAb2ac86e2010-06-28 17:49:33 +0900275
276 if (flip && sbp[1])
277 nilfs_swap_super_block(nilfs);
278
Jiro SEKIBAd26493b2010-06-28 17:49:32 +0900279 return sbp;
280}
281
Ryusuke Konishif7545142011-03-09 11:05:08 +0900282int nilfs_commit_super(struct super_block *sb, int flag)
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700283{
Ryusuke Konishie3154e92011-03-09 11:05:08 +0900284 struct the_nilfs *nilfs = sb->s_fs_info;
Ryusuke Konishie339ad32009-04-06 19:01:59 -0700285 struct nilfs_super_block **sbp = nilfs->ns_sbp;
Ryusuke Konishie339ad32009-04-06 19:01:59 -0700286 time_t t;
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700287
Jiro SEKIBAd26493b2010-06-28 17:49:32 +0900288 /* nilfs->ns_sem must be locked by the caller. */
Ryusuke Konishie339ad32009-04-06 19:01:59 -0700289 t = get_seconds();
Jiro SEKIBAb2ac86e2010-06-28 17:49:33 +0900290 nilfs->ns_sbwtime = t;
Ryusuke Konishie339ad32009-04-06 19:01:59 -0700291 sbp[0]->s_wtime = cpu_to_le64(t);
292 sbp[0]->s_sum = 0;
293 sbp[0]->s_sum = cpu_to_le32(crc32_le(nilfs->ns_crc_seed,
294 (unsigned char *)sbp[0],
295 nilfs->ns_sbsize));
Jiro SEKIBAb2ac86e2010-06-28 17:49:33 +0900296 if (flag == NILFS_SB_COMMIT_ALL && sbp[1]) {
297 sbp[1]->s_wtime = sbp[0]->s_wtime;
298 sbp[1]->s_sum = 0;
299 sbp[1]->s_sum = cpu_to_le32(crc32_le(nilfs->ns_crc_seed,
300 (unsigned char *)sbp[1],
301 nilfs->ns_sbsize));
Ryusuke Konishie339ad32009-04-06 19:01:59 -0700302 }
Ryusuke Konishie605f0a2009-12-09 00:57:52 +0900303 clear_nilfs_sb_dirty(nilfs);
Andreas Rohnere2c76172014-10-13 15:53:20 -0700304 nilfs->ns_flushed_device = 1;
305 /* make sure store to ns_flushed_device cannot be reordered */
306 smp_wmb();
Ryusuke Konishif7545142011-03-09 11:05:08 +0900307 return nilfs_sync_super(sb, flag);
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700308}
309
Ryusuke Konishi7ecaa462010-06-28 17:49:29 +0900310/**
311 * nilfs_cleanup_super() - write filesystem state for cleanup
Ryusuke Konishif7545142011-03-09 11:05:08 +0900312 * @sb: super block instance to be unmounted or degraded to read-only
Ryusuke Konishi7ecaa462010-06-28 17:49:29 +0900313 *
314 * This function restores state flags in the on-disk super block.
315 * This will set "clean" flag (i.e. NILFS_VALID_FS) unless the
316 * filesystem was not clean previously.
317 */
Ryusuke Konishif7545142011-03-09 11:05:08 +0900318int nilfs_cleanup_super(struct super_block *sb)
Ryusuke Konishi7ecaa462010-06-28 17:49:29 +0900319{
Ryusuke Konishie3154e92011-03-09 11:05:08 +0900320 struct the_nilfs *nilfs = sb->s_fs_info;
Jiro SEKIBAd26493b2010-06-28 17:49:32 +0900321 struct nilfs_super_block **sbp;
Jiro SEKIBAb2ac86e2010-06-28 17:49:33 +0900322 int flag = NILFS_SB_COMMIT;
Jiro SEKIBAd26493b2010-06-28 17:49:32 +0900323 int ret = -EIO;
Ryusuke Konishi7ecaa462010-06-28 17:49:29 +0900324
Ryusuke Konishif7545142011-03-09 11:05:08 +0900325 sbp = nilfs_prepare_super(sb, 0);
Jiro SEKIBAd26493b2010-06-28 17:49:32 +0900326 if (sbp) {
Ryusuke Konishif7545142011-03-09 11:05:08 +0900327 sbp[0]->s_state = cpu_to_le16(nilfs->ns_mount_state);
328 nilfs_set_log_cursor(sbp[0], nilfs);
Jiro SEKIBAb2ac86e2010-06-28 17:49:33 +0900329 if (sbp[1] && sbp[0]->s_last_cno == sbp[1]->s_last_cno) {
330 /*
331 * make the "clean" flag also to the opposite
332 * super block if both super blocks point to
333 * the same checkpoint.
334 */
335 sbp[1]->s_state = sbp[0]->s_state;
336 flag = NILFS_SB_COMMIT_ALL;
337 }
Ryusuke Konishif7545142011-03-09 11:05:08 +0900338 ret = nilfs_commit_super(sb, flag);
Jiro SEKIBAd26493b2010-06-28 17:49:32 +0900339 }
Ryusuke Konishi7ecaa462010-06-28 17:49:29 +0900340 return ret;
341}
342
Ryusuke Konishicfb0a4b2011-05-05 01:23:57 +0900343/**
344 * nilfs_move_2nd_super - relocate secondary super block
345 * @sb: super block instance
346 * @sb2off: new offset of the secondary super block (in bytes)
347 */
348static int nilfs_move_2nd_super(struct super_block *sb, loff_t sb2off)
349{
350 struct the_nilfs *nilfs = sb->s_fs_info;
351 struct buffer_head *nsbh;
352 struct nilfs_super_block *nsbp;
353 sector_t blocknr, newblocknr;
354 unsigned long offset;
Ryusuke Konishi4f050282015-11-06 16:32:16 -0800355 int sb2i; /* array index of the secondary superblock */
Ryusuke Konishicfb0a4b2011-05-05 01:23:57 +0900356 int ret = 0;
357
358 /* nilfs->ns_sem must be locked by the caller. */
359 if (nilfs->ns_sbh[1] &&
360 nilfs->ns_sbh[1]->b_blocknr > nilfs->ns_first_data_block) {
361 sb2i = 1;
362 blocknr = nilfs->ns_sbh[1]->b_blocknr;
363 } else if (nilfs->ns_sbh[0]->b_blocknr > nilfs->ns_first_data_block) {
364 sb2i = 0;
365 blocknr = nilfs->ns_sbh[0]->b_blocknr;
Ryusuke Konishi4f050282015-11-06 16:32:16 -0800366 } else {
367 sb2i = -1;
368 blocknr = 0;
Ryusuke Konishicfb0a4b2011-05-05 01:23:57 +0900369 }
370 if (sb2i >= 0 && (u64)blocknr << nilfs->ns_blocksize_bits == sb2off)
371 goto out; /* super block location is unchanged */
372
373 /* Get new super block buffer */
374 newblocknr = sb2off >> nilfs->ns_blocksize_bits;
375 offset = sb2off & (nilfs->ns_blocksize - 1);
376 nsbh = sb_getblk(sb, newblocknr);
377 if (!nsbh) {
Ryusuke Konishifeee8802016-08-02 14:05:10 -0700378 nilfs_msg(sb, KERN_WARNING,
379 "unable to move secondary superblock to block %llu",
380 (unsigned long long)newblocknr);
Ryusuke Konishicfb0a4b2011-05-05 01:23:57 +0900381 ret = -EIO;
382 goto out;
383 }
384 nsbp = (void *)nsbh->b_data + offset;
385 memset(nsbp, 0, nilfs->ns_blocksize);
386
387 if (sb2i >= 0) {
388 memcpy(nsbp, nilfs->ns_sbp[sb2i], nilfs->ns_sbsize);
389 brelse(nilfs->ns_sbh[sb2i]);
390 nilfs->ns_sbh[sb2i] = nsbh;
391 nilfs->ns_sbp[sb2i] = nsbp;
392 } else if (nilfs->ns_sbh[0]->b_blocknr < nilfs->ns_first_data_block) {
393 /* secondary super block will be restored to index 1 */
394 nilfs->ns_sbh[1] = nsbh;
395 nilfs->ns_sbp[1] = nsbp;
396 } else {
397 brelse(nsbh);
398 }
399out:
400 return ret;
401}
402
Ryusuke Konishi4e33f9e2011-05-05 01:23:58 +0900403/**
404 * nilfs_resize_fs - resize the filesystem
405 * @sb: super block instance
406 * @newsize: new size of the filesystem (in bytes)
407 */
408int nilfs_resize_fs(struct super_block *sb, __u64 newsize)
409{
410 struct the_nilfs *nilfs = sb->s_fs_info;
411 struct nilfs_super_block **sbp;
412 __u64 devsize, newnsegs;
413 loff_t sb2off;
414 int ret;
415
416 ret = -ERANGE;
417 devsize = i_size_read(sb->s_bdev->bd_inode);
418 if (newsize > devsize)
419 goto out;
420
421 /*
422 * Write lock is required to protect some functions depending
423 * on the number of segments, the number of reserved segments,
424 * and so forth.
425 */
426 down_write(&nilfs->ns_segctor_sem);
427
428 sb2off = NILFS_SB2_OFFSET_BYTES(newsize);
429 newnsegs = sb2off >> nilfs->ns_blocksize_bits;
430 do_div(newnsegs, nilfs->ns_blocks_per_segment);
431
432 ret = nilfs_sufile_resize(nilfs->ns_sufile, newnsegs);
433 up_write(&nilfs->ns_segctor_sem);
434 if (ret < 0)
435 goto out;
436
437 ret = nilfs_construct_segment(sb);
438 if (ret < 0)
439 goto out;
440
441 down_write(&nilfs->ns_sem);
442 nilfs_move_2nd_super(sb, sb2off);
443 ret = -EIO;
444 sbp = nilfs_prepare_super(sb, 0);
445 if (likely(sbp)) {
446 nilfs_set_log_cursor(sbp[0], nilfs);
447 /*
448 * Drop NILFS_RESIZE_FS flag for compatibility with
449 * mount-time resize which may be implemented in a
450 * future release.
451 */
452 sbp[0]->s_state = cpu_to_le16(le16_to_cpu(sbp[0]->s_state) &
453 ~NILFS_RESIZE_FS);
454 sbp[0]->s_dev_size = cpu_to_le64(newsize);
455 sbp[0]->s_nsegments = cpu_to_le64(nilfs->ns_nsegments);
456 if (sbp[1])
457 memcpy(sbp[1], sbp[0], nilfs->ns_sbsize);
458 ret = nilfs_commit_super(sb, NILFS_SB_COMMIT_ALL);
459 }
460 up_write(&nilfs->ns_sem);
461
462 /*
463 * Reset the range of allocatable segments last. This order
464 * is important in the case of expansion because the secondary
465 * superblock must be protected from log write until migration
466 * completes.
467 */
468 if (!ret)
469 nilfs_sufile_set_alloc_range(nilfs->ns_sufile, 0, newnsegs - 1);
470out:
471 return ret;
472}
473
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700474static void nilfs_put_super(struct super_block *sb)
475{
Ryusuke Konishie3154e92011-03-09 11:05:08 +0900476 struct the_nilfs *nilfs = sb->s_fs_info;
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700477
Ryusuke Konishif7545142011-03-09 11:05:08 +0900478 nilfs_detach_log_writer(sb);
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700479
David Howellsbc98a422017-07-17 08:45:34 +0100480 if (!sb_rdonly(sb)) {
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700481 down_write(&nilfs->ns_sem);
Ryusuke Konishif7545142011-03-09 11:05:08 +0900482 nilfs_cleanup_super(sb);
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700483 up_write(&nilfs->ns_sem);
484 }
485
Ryusuke Konishif1e89c82010-09-05 12:20:59 +0900486 iput(nilfs->ns_sufile);
487 iput(nilfs->ns_cpfile);
488 iput(nilfs->ns_dat);
489
Ryusuke Konishi348fe8d2010-09-09 02:07:56 +0900490 destroy_nilfs(nilfs);
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700491 sb->s_fs_info = NULL;
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700492}
493
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700494static int nilfs_sync_fs(struct super_block *sb, int wait)
495{
Ryusuke Konishie3154e92011-03-09 11:05:08 +0900496 struct the_nilfs *nilfs = sb->s_fs_info;
Jiro SEKIBAd26493b2010-06-28 17:49:32 +0900497 struct nilfs_super_block **sbp;
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700498 int err = 0;
499
500 /* This function is called when super block should be written back */
501 if (wait)
502 err = nilfs_construct_segment(sb);
Jiro SEKIBA6233caa2009-07-23 01:26:33 +0900503
504 down_write(&nilfs->ns_sem);
Jiro SEKIBAd26493b2010-06-28 17:49:32 +0900505 if (nilfs_sb_dirty(nilfs)) {
Ryusuke Konishif7545142011-03-09 11:05:08 +0900506 sbp = nilfs_prepare_super(sb, nilfs_sb_will_flip(nilfs));
Jiro SEKIBAb2ac86e2010-06-28 17:49:33 +0900507 if (likely(sbp)) {
508 nilfs_set_log_cursor(sbp[0], nilfs);
Ryusuke Konishif7545142011-03-09 11:05:08 +0900509 nilfs_commit_super(sb, NILFS_SB_COMMIT);
Jiro SEKIBAb2ac86e2010-06-28 17:49:33 +0900510 }
Jiro SEKIBAd26493b2010-06-28 17:49:32 +0900511 }
Jiro SEKIBA6233caa2009-07-23 01:26:33 +0900512 up_write(&nilfs->ns_sem);
513
Andreas Rohnere2c76172014-10-13 15:53:20 -0700514 if (!err)
515 err = nilfs_flush_device(nilfs);
516
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700517 return err;
518}
519
Ryusuke Konishif7545142011-03-09 11:05:08 +0900520int nilfs_attach_checkpoint(struct super_block *sb, __u64 cno, int curr_mnt,
Ryusuke Konishi4d8d9292010-08-25 17:45:44 +0900521 struct nilfs_root **rootp)
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700522{
Ryusuke Konishie3154e92011-03-09 11:05:08 +0900523 struct the_nilfs *nilfs = sb->s_fs_info;
Ryusuke Konishi4d8d9292010-08-25 17:45:44 +0900524 struct nilfs_root *root;
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700525 struct nilfs_checkpoint *raw_cp;
526 struct buffer_head *bh_cp;
Ryusuke Konishi4d8d9292010-08-25 17:45:44 +0900527 int err = -ENOMEM;
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700528
Ryusuke Konishi4d8d9292010-08-25 17:45:44 +0900529 root = nilfs_find_or_create_root(
530 nilfs, curr_mnt ? NILFS_CPTREE_CURRENT_CNO : cno);
531 if (!root)
532 return err;
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700533
Ryusuke Konishie912a5b2010-08-14 13:07:15 +0900534 if (root->ifile)
535 goto reuse; /* already attached checkpoint */
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700536
Zhang Qiang1154ecb2009-08-18 14:58:24 +0800537 down_read(&nilfs->ns_segctor_sem);
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700538 err = nilfs_cpfile_get_checkpoint(nilfs->ns_cpfile, cno, 0, &raw_cp,
539 &bh_cp);
Zhang Qiang1154ecb2009-08-18 14:58:24 +0800540 up_read(&nilfs->ns_segctor_sem);
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700541 if (unlikely(err)) {
542 if (err == -ENOENT || err == -EINVAL) {
Ryusuke Konishifeee8802016-08-02 14:05:10 -0700543 nilfs_msg(sb, KERN_ERR,
544 "Invalid checkpoint (checkpoint number=%llu)",
545 (unsigned long long)cno);
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700546 err = -EINVAL;
547 }
548 goto failed;
549 }
Ryusuke Konishif1e89c82010-09-05 12:20:59 +0900550
Ryusuke Konishif7545142011-03-09 11:05:08 +0900551 err = nilfs_ifile_read(sb, root, nilfs->ns_inode_size,
Ryusuke Konishif1e89c82010-09-05 12:20:59 +0900552 &raw_cp->cp_ifile_inode, &root->ifile);
553 if (err)
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700554 goto failed_bh;
Ryusuke Konishib7c06342010-08-14 14:48:32 +0900555
Vyacheslav Dubeykoe5f7f842013-07-03 15:08:06 -0700556 atomic64_set(&root->inodes_count,
557 le64_to_cpu(raw_cp->cp_inodes_count));
558 atomic64_set(&root->blocks_count,
559 le64_to_cpu(raw_cp->cp_blocks_count));
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700560
561 nilfs_cpfile_put_checkpoint(nilfs->ns_cpfile, cno, bh_cp);
Ryusuke Konishi4d8d9292010-08-25 17:45:44 +0900562
Ryusuke Konishie912a5b2010-08-14 13:07:15 +0900563 reuse:
Ryusuke Konishi4d8d9292010-08-25 17:45:44 +0900564 *rootp = root;
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700565 return 0;
566
567 failed_bh:
568 nilfs_cpfile_put_checkpoint(nilfs->ns_cpfile, cno, bh_cp);
569 failed:
Ryusuke Konishi4d8d9292010-08-25 17:45:44 +0900570 nilfs_put_root(root);
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700571
572 return err;
573}
574
Ryusuke Konishi5beb6e02010-09-20 18:19:06 +0900575static int nilfs_freeze(struct super_block *sb)
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700576{
Ryusuke Konishie3154e92011-03-09 11:05:08 +0900577 struct the_nilfs *nilfs = sb->s_fs_info;
Ryusuke Konishi5beb6e02010-09-20 18:19:06 +0900578 int err;
579
David Howellsbc98a422017-07-17 08:45:34 +0100580 if (sb_rdonly(sb))
Ryusuke Konishi5beb6e02010-09-20 18:19:06 +0900581 return 0;
582
583 /* Mark super block clean */
584 down_write(&nilfs->ns_sem);
Ryusuke Konishif7545142011-03-09 11:05:08 +0900585 err = nilfs_cleanup_super(sb);
Ryusuke Konishi5beb6e02010-09-20 18:19:06 +0900586 up_write(&nilfs->ns_sem);
587 return err;
588}
589
590static int nilfs_unfreeze(struct super_block *sb)
591{
Ryusuke Konishie3154e92011-03-09 11:05:08 +0900592 struct the_nilfs *nilfs = sb->s_fs_info;
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700593
David Howellsbc98a422017-07-17 08:45:34 +0100594 if (sb_rdonly(sb))
Ryusuke Konishi5beb6e02010-09-20 18:19:06 +0900595 return 0;
596
597 down_write(&nilfs->ns_sem);
Ryusuke Konishif7545142011-03-09 11:05:08 +0900598 nilfs_setup_super(sb, false);
Ryusuke Konishi5beb6e02010-09-20 18:19:06 +0900599 up_write(&nilfs->ns_sem);
600 return 0;
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700601}
602
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700603static int nilfs_statfs(struct dentry *dentry, struct kstatfs *buf)
604{
605 struct super_block *sb = dentry->d_sb;
David Howells2b0143b2015-03-17 22:25:59 +0000606 struct nilfs_root *root = NILFS_I(d_inode(dentry))->i_root;
Ryusuke Konishib7c06342010-08-14 14:48:32 +0900607 struct the_nilfs *nilfs = root->nilfs;
Ryusuke Konishic306af22009-03-26 10:16:57 +0900608 u64 id = huge_encode_dev(sb->s_bdev->bd_dev);
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700609 unsigned long long blocks;
610 unsigned long overhead;
611 unsigned long nrsvblocks;
612 sector_t nfreeblocks;
Vyacheslav Dubeykoc7ef9722013-07-03 15:08:05 -0700613 u64 nmaxinodes, nfreeinodes;
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700614 int err;
615
616 /*
617 * Compute all of the segment blocks
618 *
619 * The blocks before first segment and after last segment
620 * are excluded.
621 */
622 blocks = nilfs->ns_blocks_per_segment * nilfs->ns_nsegments
623 - nilfs->ns_first_data_block;
624 nrsvblocks = nilfs->ns_nrsvsegs * nilfs->ns_blocks_per_segment;
625
626 /*
627 * Compute the overhead
628 *
Ryusuke Konishi7a650042010-03-14 03:32:40 +0900629 * When distributing meta data blocks outside segment structure,
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700630 * We must count them as the overhead.
631 */
632 overhead = 0;
633
634 err = nilfs_count_free_blocks(nilfs, &nfreeblocks);
635 if (unlikely(err))
636 return err;
637
Vyacheslav Dubeykoc7ef9722013-07-03 15:08:05 -0700638 err = nilfs_ifile_count_free_inodes(root->ifile,
639 &nmaxinodes, &nfreeinodes);
640 if (unlikely(err)) {
Ryusuke Konishifeee8802016-08-02 14:05:10 -0700641 nilfs_msg(sb, KERN_WARNING,
642 "failed to count free inodes: err=%d", err);
Vyacheslav Dubeykoc7ef9722013-07-03 15:08:05 -0700643 if (err == -ERANGE) {
644 /*
645 * If nilfs_palloc_count_max_entries() returns
646 * -ERANGE error code then we simply treat
647 * curent inodes count as maximum possible and
648 * zero as free inodes value.
649 */
Vyacheslav Dubeykoe5f7f842013-07-03 15:08:06 -0700650 nmaxinodes = atomic64_read(&root->inodes_count);
Vyacheslav Dubeykoc7ef9722013-07-03 15:08:05 -0700651 nfreeinodes = 0;
652 err = 0;
653 } else
654 return err;
655 }
656
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700657 buf->f_type = NILFS_SUPER_MAGIC;
658 buf->f_bsize = sb->s_blocksize;
659 buf->f_blocks = blocks - overhead;
660 buf->f_bfree = nfreeblocks;
661 buf->f_bavail = (buf->f_bfree >= nrsvblocks) ?
662 (buf->f_bfree - nrsvblocks) : 0;
Vyacheslav Dubeykoc7ef9722013-07-03 15:08:05 -0700663 buf->f_files = nmaxinodes;
664 buf->f_ffree = nfreeinodes;
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700665 buf->f_namelen = NILFS_NAME_LEN;
Ryusuke Konishic306af22009-03-26 10:16:57 +0900666 buf->f_fsid.val[0] = (u32)id;
667 buf->f_fsid.val[1] = (u32)(id >> 32);
668
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700669 return 0;
670}
671
Al Viro34c80b12011-12-08 21:32:45 -0500672static int nilfs_show_options(struct seq_file *seq, struct dentry *dentry)
Jiro SEKIBAb58a2852009-06-24 20:06:34 +0900673{
Al Viro34c80b12011-12-08 21:32:45 -0500674 struct super_block *sb = dentry->d_sb;
Ryusuke Konishie3154e92011-03-09 11:05:08 +0900675 struct the_nilfs *nilfs = sb->s_fs_info;
David Howells2b0143b2015-03-17 22:25:59 +0000676 struct nilfs_root *root = NILFS_I(d_inode(dentry))->i_root;
Jiro SEKIBAb58a2852009-06-24 20:06:34 +0900677
Ryusuke Konishi3b2ce582011-03-09 11:05:07 +0900678 if (!nilfs_test_opt(nilfs, BARRIER))
Ryusuke Konishic6b4d572010-07-05 14:40:27 +0900679 seq_puts(seq, ",nobarrier");
Ryusuke Konishif11459a2010-08-16 01:54:52 +0900680 if (root->cno != NILFS_CPTREE_CURRENT_CNO)
681 seq_printf(seq, ",cp=%llu", (unsigned long long)root->cno);
Ryusuke Konishi3b2ce582011-03-09 11:05:07 +0900682 if (nilfs_test_opt(nilfs, ERRORS_PANIC))
Ryusuke Konishic6b4d572010-07-05 14:40:27 +0900683 seq_puts(seq, ",errors=panic");
Ryusuke Konishi3b2ce582011-03-09 11:05:07 +0900684 if (nilfs_test_opt(nilfs, ERRORS_CONT))
Ryusuke Konishic6b4d572010-07-05 14:40:27 +0900685 seq_puts(seq, ",errors=continue");
Ryusuke Konishi3b2ce582011-03-09 11:05:07 +0900686 if (nilfs_test_opt(nilfs, STRICT_ORDER))
Ryusuke Konishic6b4d572010-07-05 14:40:27 +0900687 seq_puts(seq, ",order=strict");
Ryusuke Konishi3b2ce582011-03-09 11:05:07 +0900688 if (nilfs_test_opt(nilfs, NORECOVERY))
Ryusuke Konishic6b4d572010-07-05 14:40:27 +0900689 seq_puts(seq, ",norecovery");
Ryusuke Konishi3b2ce582011-03-09 11:05:07 +0900690 if (nilfs_test_opt(nilfs, DISCARD))
Ryusuke Konishic6b4d572010-07-05 14:40:27 +0900691 seq_puts(seq, ",discard");
Jiro SEKIBAb58a2852009-06-24 20:06:34 +0900692
693 return 0;
694}
695
Alexey Dobriyanb87221d2009-09-21 17:01:09 -0700696static const struct super_operations nilfs_sops = {
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700697 .alloc_inode = nilfs_alloc_inode,
698 .destroy_inode = nilfs_destroy_inode,
699 .dirty_inode = nilfs_dirty_inode,
Al Viro6fd1e5c2010-06-07 11:55:00 -0400700 .evict_inode = nilfs_evict_inode,
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700701 .put_super = nilfs_put_super,
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700702 .sync_fs = nilfs_sync_fs,
Ryusuke Konishi5beb6e02010-09-20 18:19:06 +0900703 .freeze_fs = nilfs_freeze,
704 .unfreeze_fs = nilfs_unfreeze,
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700705 .statfs = nilfs_statfs,
706 .remount_fs = nilfs_remount,
Jiro SEKIBAb58a2852009-06-24 20:06:34 +0900707 .show_options = nilfs_show_options
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700708};
709
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700710enum {
711 Opt_err_cont, Opt_err_panic, Opt_err_ro,
Ryusuke Konishi773bc4f2010-07-05 13:00:08 +0900712 Opt_barrier, Opt_nobarrier, Opt_snapshot, Opt_order, Opt_norecovery,
Ryusuke Konishi802d3172010-07-05 14:27:04 +0900713 Opt_discard, Opt_nodiscard, Opt_err,
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700714};
715
716static match_table_t tokens = {
717 {Opt_err_cont, "errors=continue"},
718 {Opt_err_panic, "errors=panic"},
719 {Opt_err_ro, "errors=remount-ro"},
Ryusuke Konishi773bc4f2010-07-05 13:00:08 +0900720 {Opt_barrier, "barrier"},
Jiro SEKIBA91f19532009-11-12 14:07:26 +0900721 {Opt_nobarrier, "nobarrier"},
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700722 {Opt_snapshot, "cp=%u"},
723 {Opt_order, "order=%s"},
Ryusuke Konishi02345762009-11-20 03:28:01 +0900724 {Opt_norecovery, "norecovery"},
Jiro SEKIBAe902ec92010-01-30 18:06:35 +0900725 {Opt_discard, "discard"},
Ryusuke Konishi802d3172010-07-05 14:27:04 +0900726 {Opt_nodiscard, "nodiscard"},
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700727 {Opt_err, NULL}
728};
729
Ryusuke Konishi7c017452010-07-05 20:08:33 +0900730static int parse_options(char *options, struct super_block *sb, int is_remount)
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700731{
Ryusuke Konishie3154e92011-03-09 11:05:08 +0900732 struct the_nilfs *nilfs = sb->s_fs_info;
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700733 char *p;
734 substring_t args[MAX_OPT_ARGS];
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700735
736 if (!options)
737 return 1;
738
739 while ((p = strsep(&options, ",")) != NULL) {
740 int token;
Ryusuke Konishi4ad364c2016-05-23 16:23:25 -0700741
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700742 if (!*p)
743 continue;
744
745 token = match_token(p, tokens, args);
746 switch (token) {
Ryusuke Konishi773bc4f2010-07-05 13:00:08 +0900747 case Opt_barrier:
Ryusuke Konishi3b2ce582011-03-09 11:05:07 +0900748 nilfs_set_opt(nilfs, BARRIER);
Ryusuke Konishi773bc4f2010-07-05 13:00:08 +0900749 break;
Jiro SEKIBA91f19532009-11-12 14:07:26 +0900750 case Opt_nobarrier:
Ryusuke Konishi3b2ce582011-03-09 11:05:07 +0900751 nilfs_clear_opt(nilfs, BARRIER);
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700752 break;
753 case Opt_order:
754 if (strcmp(args[0].from, "relaxed") == 0)
755 /* Ordered data semantics */
Ryusuke Konishi3b2ce582011-03-09 11:05:07 +0900756 nilfs_clear_opt(nilfs, STRICT_ORDER);
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700757 else if (strcmp(args[0].from, "strict") == 0)
758 /* Strict in-order semantics */
Ryusuke Konishi3b2ce582011-03-09 11:05:07 +0900759 nilfs_set_opt(nilfs, STRICT_ORDER);
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700760 else
761 return 0;
762 break;
763 case Opt_err_panic:
Ryusuke Konishi3b2ce582011-03-09 11:05:07 +0900764 nilfs_write_opt(nilfs, ERROR_MODE, ERRORS_PANIC);
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700765 break;
766 case Opt_err_ro:
Ryusuke Konishi3b2ce582011-03-09 11:05:07 +0900767 nilfs_write_opt(nilfs, ERROR_MODE, ERRORS_RO);
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700768 break;
769 case Opt_err_cont:
Ryusuke Konishi3b2ce582011-03-09 11:05:07 +0900770 nilfs_write_opt(nilfs, ERROR_MODE, ERRORS_CONT);
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700771 break;
772 case Opt_snapshot:
Ryusuke Konishi7c017452010-07-05 20:08:33 +0900773 if (is_remount) {
Ryusuke Konishifeee8802016-08-02 14:05:10 -0700774 nilfs_msg(sb, KERN_ERR,
775 "\"%s\" option is invalid for remount",
776 p);
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700777 return 0;
Ryusuke Konishi7c017452010-07-05 20:08:33 +0900778 }
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700779 break;
Ryusuke Konishi02345762009-11-20 03:28:01 +0900780 case Opt_norecovery:
Ryusuke Konishi3b2ce582011-03-09 11:05:07 +0900781 nilfs_set_opt(nilfs, NORECOVERY);
Ryusuke Konishi02345762009-11-20 03:28:01 +0900782 break;
Jiro SEKIBAe902ec92010-01-30 18:06:35 +0900783 case Opt_discard:
Ryusuke Konishi3b2ce582011-03-09 11:05:07 +0900784 nilfs_set_opt(nilfs, DISCARD);
Jiro SEKIBAe902ec92010-01-30 18:06:35 +0900785 break;
Ryusuke Konishi802d3172010-07-05 14:27:04 +0900786 case Opt_nodiscard:
Ryusuke Konishi3b2ce582011-03-09 11:05:07 +0900787 nilfs_clear_opt(nilfs, DISCARD);
Ryusuke Konishi802d3172010-07-05 14:27:04 +0900788 break;
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700789 default:
Ryusuke Konishifeee8802016-08-02 14:05:10 -0700790 nilfs_msg(sb, KERN_ERR,
791 "unrecognized mount option \"%s\"", p);
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700792 return 0;
793 }
794 }
795 return 1;
796}
797
798static inline void
Ryusuke Konishi3b2ce582011-03-09 11:05:07 +0900799nilfs_set_default_options(struct super_block *sb,
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700800 struct nilfs_super_block *sbp)
801{
Ryusuke Konishie3154e92011-03-09 11:05:08 +0900802 struct the_nilfs *nilfs = sb->s_fs_info;
Ryusuke Konishi3b2ce582011-03-09 11:05:07 +0900803
804 nilfs->ns_mount_opt =
Ryusuke Konishi277a6a32010-04-02 18:02:33 +0900805 NILFS_MOUNT_ERRORS_RO | NILFS_MOUNT_BARRIER;
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700806}
807
Ryusuke Konishif7545142011-03-09 11:05:08 +0900808static int nilfs_setup_super(struct super_block *sb, int is_mount)
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700809{
Ryusuke Konishie3154e92011-03-09 11:05:08 +0900810 struct the_nilfs *nilfs = sb->s_fs_info;
Jiro SEKIBAd26493b2010-06-28 17:49:32 +0900811 struct nilfs_super_block **sbp;
812 int max_mnt_count;
813 int mnt_count;
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700814
Jiro SEKIBAd26493b2010-06-28 17:49:32 +0900815 /* nilfs->ns_sem must be locked by the caller. */
Ryusuke Konishif7545142011-03-09 11:05:08 +0900816 sbp = nilfs_prepare_super(sb, 0);
Jiro SEKIBAd26493b2010-06-28 17:49:32 +0900817 if (!sbp)
818 return -EIO;
819
Ryusuke Konishi5beb6e02010-09-20 18:19:06 +0900820 if (!is_mount)
821 goto skip_mount_setup;
822
Jiro SEKIBAd26493b2010-06-28 17:49:32 +0900823 max_mnt_count = le16_to_cpu(sbp[0]->s_max_mnt_count);
824 mnt_count = le16_to_cpu(sbp[0]->s_mnt_count);
825
Ryusuke Konishif50a4c82009-11-19 16:58:40 +0900826 if (nilfs->ns_mount_state & NILFS_ERROR_FS) {
Ryusuke Konishifeee8802016-08-02 14:05:10 -0700827 nilfs_msg(sb, KERN_WARNING, "mounting fs with errors");
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700828#if 0
829 } else if (max_mnt_count >= 0 && mnt_count >= max_mnt_count) {
Ryusuke Konishifeee8802016-08-02 14:05:10 -0700830 nilfs_msg(sb, KERN_WARNING, "maximal mount count reached");
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700831#endif
832 }
833 if (!max_mnt_count)
Jiro SEKIBAd26493b2010-06-28 17:49:32 +0900834 sbp[0]->s_max_mnt_count = cpu_to_le16(NILFS_DFL_MAX_MNT_COUNT);
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700835
Jiro SEKIBAd26493b2010-06-28 17:49:32 +0900836 sbp[0]->s_mnt_count = cpu_to_le16(mnt_count + 1);
Ryusuke Konishi5beb6e02010-09-20 18:19:06 +0900837 sbp[0]->s_mtime = cpu_to_le64(get_seconds());
838
839skip_mount_setup:
Jiro SEKIBAd26493b2010-06-28 17:49:32 +0900840 sbp[0]->s_state =
841 cpu_to_le16(le16_to_cpu(sbp[0]->s_state) & ~NILFS_VALID_FS);
Jiro SEKIBAb2ac86e2010-06-28 17:49:33 +0900842 /* synchronize sbp[1] with sbp[0] */
Ryusuke Konishi0ca7a5b2011-01-21 16:40:31 +0900843 if (sbp[1])
844 memcpy(sbp[1], sbp[0], nilfs->ns_sbsize);
Ryusuke Konishif7545142011-03-09 11:05:08 +0900845 return nilfs_commit_super(sb, NILFS_SB_COMMIT_ALL);
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700846}
847
Ryusuke Konishie339ad32009-04-06 19:01:59 -0700848struct nilfs_super_block *nilfs_read_super_block(struct super_block *sb,
849 u64 pos, int blocksize,
850 struct buffer_head **pbh)
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700851{
Ryusuke Konishie339ad32009-04-06 19:01:59 -0700852 unsigned long long sb_index = pos;
853 unsigned long offset;
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700854
Ryusuke Konishie339ad32009-04-06 19:01:59 -0700855 offset = do_div(sb_index, blocksize);
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700856 *pbh = sb_bread(sb, sb_index);
Ryusuke Konishie339ad32009-04-06 19:01:59 -0700857 if (!*pbh)
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700858 return NULL;
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700859 return (struct nilfs_super_block *)((char *)(*pbh)->b_data + offset);
860}
861
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700862int nilfs_store_magic_and_option(struct super_block *sb,
863 struct nilfs_super_block *sbp,
864 char *data)
865{
Ryusuke Konishie3154e92011-03-09 11:05:08 +0900866 struct the_nilfs *nilfs = sb->s_fs_info;
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700867
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700868 sb->s_magic = le16_to_cpu(sbp->s_magic);
869
870 /* FS independent flags */
871#ifdef NILFS_ATIME_DISABLE
Linus Torvalds1751e8a2017-11-27 13:05:09 -0800872 sb->s_flags |= SB_NOATIME;
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700873#endif
874
Ryusuke Konishi3b2ce582011-03-09 11:05:07 +0900875 nilfs_set_default_options(sb, sbp);
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700876
Ryusuke Konishi574e6c32011-03-09 11:05:07 +0900877 nilfs->ns_resuid = le16_to_cpu(sbp->s_def_resuid);
878 nilfs->ns_resgid = le16_to_cpu(sbp->s_def_resgid);
879 nilfs->ns_interval = le32_to_cpu(sbp->s_c_interval);
880 nilfs->ns_watermark = le32_to_cpu(sbp->s_c_block_max);
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700881
Ryusuke Konishic9cb9b52016-05-23 16:23:34 -0700882 return !parse_options(data, sb, 0) ? -EINVAL : 0;
Ryusuke Konishi783f6182009-04-06 19:01:35 -0700883}
884
Ryusuke Konishic5ca48a2010-07-22 03:22:20 +0900885int nilfs_check_feature_compatibility(struct super_block *sb,
886 struct nilfs_super_block *sbp)
887{
888 __u64 features;
889
890 features = le64_to_cpu(sbp->s_feature_incompat) &
891 ~NILFS_FEATURE_INCOMPAT_SUPP;
892 if (features) {
Ryusuke Konishifeee8802016-08-02 14:05:10 -0700893 nilfs_msg(sb, KERN_ERR,
894 "couldn't mount because of unsupported optional features (%llx)",
895 (unsigned long long)features);
Ryusuke Konishic5ca48a2010-07-22 03:22:20 +0900896 return -EINVAL;
897 }
898 features = le64_to_cpu(sbp->s_feature_compat_ro) &
899 ~NILFS_FEATURE_COMPAT_RO_SUPP;
David Howellsbc98a422017-07-17 08:45:34 +0100900 if (!sb_rdonly(sb) && features) {
Ryusuke Konishifeee8802016-08-02 14:05:10 -0700901 nilfs_msg(sb, KERN_ERR,
902 "couldn't mount RDWR because of unsupported optional features (%llx)",
903 (unsigned long long)features);
Ryusuke Konishic5ca48a2010-07-22 03:22:20 +0900904 return -EINVAL;
905 }
906 return 0;
907}
908
Ryusuke Konishi367ea332010-08-26 01:52:51 +0900909static int nilfs_get_root_dentry(struct super_block *sb,
910 struct nilfs_root *root,
911 struct dentry **root_dentry)
912{
913 struct inode *inode;
914 struct dentry *dentry;
915 int ret = 0;
916
917 inode = nilfs_iget(sb, root, NILFS_ROOT_INO);
918 if (IS_ERR(inode)) {
Ryusuke Konishi367ea332010-08-26 01:52:51 +0900919 ret = PTR_ERR(inode);
Ryusuke Konishifeee8802016-08-02 14:05:10 -0700920 nilfs_msg(sb, KERN_ERR, "error %d getting root inode", ret);
Ryusuke Konishi367ea332010-08-26 01:52:51 +0900921 goto out;
922 }
923 if (!S_ISDIR(inode->i_mode) || !inode->i_blocks || !inode->i_size) {
924 iput(inode);
Ryusuke Konishifeee8802016-08-02 14:05:10 -0700925 nilfs_msg(sb, KERN_ERR, "corrupt root inode");
Ryusuke Konishi367ea332010-08-26 01:52:51 +0900926 ret = -EINVAL;
927 goto out;
928 }
929
Ryusuke Konishif11459a2010-08-16 01:54:52 +0900930 if (root->cno == NILFS_CPTREE_CURRENT_CNO) {
931 dentry = d_find_alias(inode);
932 if (!dentry) {
Al Viro48fde702012-01-08 22:15:13 -0500933 dentry = d_make_root(inode);
Ryusuke Konishif11459a2010-08-16 01:54:52 +0900934 if (!dentry) {
Ryusuke Konishif11459a2010-08-16 01:54:52 +0900935 ret = -ENOMEM;
936 goto failed_dentry;
937 }
938 } else {
939 iput(inode);
940 }
941 } else {
J. Bruce Fields1a0a3972014-02-14 17:35:37 -0500942 dentry = d_obtain_root(inode);
Ryusuke Konishif11459a2010-08-16 01:54:52 +0900943 if (IS_ERR(dentry)) {
944 ret = PTR_ERR(dentry);
945 goto failed_dentry;
946 }
Ryusuke Konishi367ea332010-08-26 01:52:51 +0900947 }
948 *root_dentry = dentry;
949 out:
950 return ret;
Ryusuke Konishif11459a2010-08-16 01:54:52 +0900951
952 failed_dentry:
Ryusuke Konishifeee8802016-08-02 14:05:10 -0700953 nilfs_msg(sb, KERN_ERR, "error %d getting root dentry", ret);
Ryusuke Konishif11459a2010-08-16 01:54:52 +0900954 goto out;
Ryusuke Konishi367ea332010-08-26 01:52:51 +0900955}
956
Ryusuke Konishiab4d8f72010-08-26 02:15:41 +0900957static int nilfs_attach_snapshot(struct super_block *s, __u64 cno,
958 struct dentry **root_dentry)
959{
Ryusuke Konishie3154e92011-03-09 11:05:08 +0900960 struct the_nilfs *nilfs = s->s_fs_info;
Ryusuke Konishiab4d8f72010-08-26 02:15:41 +0900961 struct nilfs_root *root;
962 int ret;
963
Ryusuke Konishi572d8b32012-07-30 14:42:07 -0700964 mutex_lock(&nilfs->ns_snapshot_mount_mutex);
965
Ryusuke Konishiab4d8f72010-08-26 02:15:41 +0900966 down_read(&nilfs->ns_segctor_sem);
967 ret = nilfs_cpfile_is_snapshot(nilfs->ns_cpfile, cno);
968 up_read(&nilfs->ns_segctor_sem);
969 if (ret < 0) {
970 ret = (ret == -ENOENT) ? -EINVAL : ret;
971 goto out;
972 } else if (!ret) {
Ryusuke Konishifeee8802016-08-02 14:05:10 -0700973 nilfs_msg(s, KERN_ERR,
974 "The specified checkpoint is not a snapshot (checkpoint number=%llu)",
975 (unsigned long long)cno);
Ryusuke Konishiab4d8f72010-08-26 02:15:41 +0900976 ret = -EINVAL;
977 goto out;
978 }
979
Ryusuke Konishif7545142011-03-09 11:05:08 +0900980 ret = nilfs_attach_checkpoint(s, cno, false, &root);
Ryusuke Konishiab4d8f72010-08-26 02:15:41 +0900981 if (ret) {
Ryusuke Konishifeee8802016-08-02 14:05:10 -0700982 nilfs_msg(s, KERN_ERR,
983 "error %d while loading snapshot (checkpoint number=%llu)",
984 ret, (unsigned long long)cno);
Ryusuke Konishiab4d8f72010-08-26 02:15:41 +0900985 goto out;
986 }
987 ret = nilfs_get_root_dentry(s, root, root_dentry);
988 nilfs_put_root(root);
989 out:
Ryusuke Konishi572d8b32012-07-30 14:42:07 -0700990 mutex_unlock(&nilfs->ns_snapshot_mount_mutex);
Ryusuke Konishiab4d8f72010-08-26 02:15:41 +0900991 return ret;
992}
993
Ryusuke Konishif11459a2010-08-16 01:54:52 +0900994/**
Al Viroe95c3112013-08-24 12:06:16 -0400995 * nilfs_tree_is_busy() - try to shrink dentries of a checkpoint
Ryusuke Konishif11459a2010-08-16 01:54:52 +0900996 * @root_dentry: root dentry of the tree to be shrunk
997 *
998 * This function returns true if the tree was in-use.
999 */
Al Viroe95c3112013-08-24 12:06:16 -04001000static bool nilfs_tree_is_busy(struct dentry *root_dentry)
Ryusuke Konishif11459a2010-08-16 01:54:52 +09001001{
Ryusuke Konishif11459a2010-08-16 01:54:52 +09001002 shrink_dcache_parent(root_dentry);
Al Viroe95c3112013-08-24 12:06:16 -04001003 return d_count(root_dentry) > 1;
Ryusuke Konishif11459a2010-08-16 01:54:52 +09001004}
1005
Ryusuke Konishi032dbb32010-09-13 11:16:34 +09001006int nilfs_checkpoint_is_mounted(struct super_block *sb, __u64 cno)
1007{
Ryusuke Konishie3154e92011-03-09 11:05:08 +09001008 struct the_nilfs *nilfs = sb->s_fs_info;
Ryusuke Konishi032dbb32010-09-13 11:16:34 +09001009 struct nilfs_root *root;
1010 struct inode *inode;
1011 struct dentry *dentry;
1012 int ret;
1013
Ryusuke Konishi3377f842015-04-16 12:46:45 -07001014 if (cno > nilfs->ns_cno)
Ryusuke Konishi032dbb32010-09-13 11:16:34 +09001015 return false;
1016
1017 if (cno >= nilfs_last_cno(nilfs))
1018 return true; /* protect recent checkpoints */
1019
1020 ret = false;
Ryusuke Konishie3154e92011-03-09 11:05:08 +09001021 root = nilfs_lookup_root(nilfs, cno);
Ryusuke Konishi032dbb32010-09-13 11:16:34 +09001022 if (root) {
1023 inode = nilfs_ilookup(sb, root, NILFS_ROOT_INO);
1024 if (inode) {
1025 dentry = d_find_alias(inode);
1026 if (dentry) {
Al Viroe95c3112013-08-24 12:06:16 -04001027 ret = nilfs_tree_is_busy(dentry);
Ryusuke Konishi032dbb32010-09-13 11:16:34 +09001028 dput(dentry);
1029 }
1030 iput(inode);
1031 }
1032 nilfs_put_root(root);
1033 }
1034 return ret;
1035}
1036
Ryusuke Konishi783f6182009-04-06 19:01:35 -07001037/**
1038 * nilfs_fill_super() - initialize a super block instance
1039 * @sb: super_block
1040 * @data: mount options
1041 * @silent: silent mode flag
Ryusuke Konishi783f6182009-04-06 19:01:35 -07001042 *
Ryusuke Konishiaa7dfb82009-06-08 01:39:33 +09001043 * This function is called exclusively by nilfs->ns_mount_mutex.
Ryusuke Konishi783f6182009-04-06 19:01:35 -07001044 * So, the recovery process is protected from other simultaneous mounts.
1045 */
1046static int
Ryusuke Konishi348fe8d2010-09-09 02:07:56 +09001047nilfs_fill_super(struct super_block *sb, void *data, int silent)
Ryusuke Konishi783f6182009-04-06 19:01:35 -07001048{
Ryusuke Konishi348fe8d2010-09-09 02:07:56 +09001049 struct the_nilfs *nilfs;
Ryusuke Konishi4d8d9292010-08-25 17:45:44 +09001050 struct nilfs_root *fsroot;
Ryusuke Konishi783f6182009-04-06 19:01:35 -07001051 __u64 cno;
1052 int err;
1053
Ryusuke Konishi66256892016-08-02 14:05:06 -07001054 nilfs = alloc_nilfs(sb);
Ryusuke Konishie3154e92011-03-09 11:05:08 +09001055 if (!nilfs)
Ryusuke Konishi783f6182009-04-06 19:01:35 -07001056 return -ENOMEM;
1057
Ryusuke Konishie3154e92011-03-09 11:05:08 +09001058 sb->s_fs_info = nilfs;
Ryusuke Konishi783f6182009-04-06 19:01:35 -07001059
Ryusuke Konishif7545142011-03-09 11:05:08 +09001060 err = init_nilfs(nilfs, sb, (char *)data);
Ryusuke Konishi783f6182009-04-06 19:01:35 -07001061 if (err)
Ryusuke Konishi348fe8d2010-09-09 02:07:56 +09001062 goto failed_nilfs;
Ryusuke Konishi783f6182009-04-06 19:01:35 -07001063
Ryusuke Konishi783f6182009-04-06 19:01:35 -07001064 sb->s_op = &nilfs_sops;
1065 sb->s_export_op = &nilfs_export_ops;
1066 sb->s_root = NULL;
Ryusuke Konishi61239232009-04-06 19:02:00 -07001067 sb->s_time_gran = 1;
Al Viro8de52772012-02-06 12:45:27 -05001068 sb->s_max_links = NILFS_LINK_MAX;
Ryusuke Konishi026a7d62010-10-07 14:19:48 +09001069
Jan Kara0546c532017-04-12 12:24:43 +02001070 sb->s_bdi = bdi_get(sb->s_bdev->bd_bdi);
Ryusuke Konishi783f6182009-04-06 19:01:35 -07001071
Ryusuke Konishif7545142011-03-09 11:05:08 +09001072 err = load_nilfs(nilfs, sb);
Ryusuke Konishif50a4c82009-11-19 16:58:40 +09001073 if (err)
Ryusuke Konishi348fe8d2010-09-09 02:07:56 +09001074 goto failed_nilfs;
Ryusuke Konishif50a4c82009-11-19 16:58:40 +09001075
Ryusuke Konishi783f6182009-04-06 19:01:35 -07001076 cno = nilfs_last_cno(nilfs);
Ryusuke Konishif7545142011-03-09 11:05:08 +09001077 err = nilfs_attach_checkpoint(sb, cno, true, &fsroot);
Ryusuke Konishi783f6182009-04-06 19:01:35 -07001078 if (err) {
Ryusuke Konishifeee8802016-08-02 14:05:10 -07001079 nilfs_msg(sb, KERN_ERR,
1080 "error %d while loading last checkpoint (checkpoint number=%llu)",
1081 err, (unsigned long long)cno);
Ryusuke Konishif1e89c82010-09-05 12:20:59 +09001082 goto failed_unload;
Ryusuke Konishi783f6182009-04-06 19:01:35 -07001083 }
1084
David Howellsbc98a422017-07-17 08:45:34 +01001085 if (!sb_rdonly(sb)) {
Ryusuke Konishif7545142011-03-09 11:05:08 +09001086 err = nilfs_attach_log_writer(sb, fsroot);
Ryusuke Konishi783f6182009-04-06 19:01:35 -07001087 if (err)
1088 goto failed_checkpoint;
1089 }
1090
Ryusuke Konishi367ea332010-08-26 01:52:51 +09001091 err = nilfs_get_root_dentry(sb, fsroot, &sb->s_root);
1092 if (err)
Ryusuke Konishi783f6182009-04-06 19:01:35 -07001093 goto failed_segctor;
Ryusuke Konishi783f6182009-04-06 19:01:35 -07001094
Ryusuke Konishi4d8d9292010-08-25 17:45:44 +09001095 nilfs_put_root(fsroot);
Ryusuke Konishi783f6182009-04-06 19:01:35 -07001096
David Howellsbc98a422017-07-17 08:45:34 +01001097 if (!sb_rdonly(sb)) {
Ryusuke Konishi783f6182009-04-06 19:01:35 -07001098 down_write(&nilfs->ns_sem);
Ryusuke Konishif7545142011-03-09 11:05:08 +09001099 nilfs_setup_super(sb, true);
Ryusuke Konishi783f6182009-04-06 19:01:35 -07001100 up_write(&nilfs->ns_sem);
1101 }
1102
Ryusuke Konishi783f6182009-04-06 19:01:35 -07001103 return 0;
1104
Ryusuke Konishi783f6182009-04-06 19:01:35 -07001105 failed_segctor:
Ryusuke Konishif7545142011-03-09 11:05:08 +09001106 nilfs_detach_log_writer(sb);
Ryusuke Konishi783f6182009-04-06 19:01:35 -07001107
1108 failed_checkpoint:
Ryusuke Konishi4d8d9292010-08-25 17:45:44 +09001109 nilfs_put_root(fsroot);
Ryusuke Konishi783f6182009-04-06 19:01:35 -07001110
Ryusuke Konishif1e89c82010-09-05 12:20:59 +09001111 failed_unload:
1112 iput(nilfs->ns_sufile);
1113 iput(nilfs->ns_cpfile);
1114 iput(nilfs->ns_dat);
1115
Ryusuke Konishi348fe8d2010-09-09 02:07:56 +09001116 failed_nilfs:
1117 destroy_nilfs(nilfs);
Ryusuke Konishi783f6182009-04-06 19:01:35 -07001118 return err;
1119}
1120
1121static int nilfs_remount(struct super_block *sb, int *flags, char *data)
1122{
Ryusuke Konishie3154e92011-03-09 11:05:08 +09001123 struct the_nilfs *nilfs = sb->s_fs_info;
Ryusuke Konishi783f6182009-04-06 19:01:35 -07001124 unsigned long old_sb_flags;
Ryusuke Konishi06df0f92010-12-27 00:04:06 +09001125 unsigned long old_mount_opt;
Ryusuke Konishif11459a2010-08-16 01:54:52 +09001126 int err;
Ryusuke Konishi783f6182009-04-06 19:01:35 -07001127
Theodore Ts'o02b99842014-03-13 10:14:33 -04001128 sync_filesystem(sb);
Ryusuke Konishi783f6182009-04-06 19:01:35 -07001129 old_sb_flags = sb->s_flags;
Ryusuke Konishi3b2ce582011-03-09 11:05:07 +09001130 old_mount_opt = nilfs->ns_mount_opt;
Ryusuke Konishi783f6182009-04-06 19:01:35 -07001131
Ryusuke Konishi7c017452010-07-05 20:08:33 +09001132 if (!parse_options(data, sb, 1)) {
Ryusuke Konishi783f6182009-04-06 19:01:35 -07001133 err = -EINVAL;
1134 goto restore_opts;
1135 }
Linus Torvalds1751e8a2017-11-27 13:05:09 -08001136 sb->s_flags = (sb->s_flags & ~SB_POSIXACL);
Ryusuke Konishi783f6182009-04-06 19:01:35 -07001137
Ryusuke Konishid240e062010-05-09 21:51:53 +09001138 err = -EINVAL;
Ryusuke Konishi783f6182009-04-06 19:01:35 -07001139
Ryusuke Konishi02345762009-11-20 03:28:01 +09001140 if (!nilfs_valid_fs(nilfs)) {
Ryusuke Konishifeee8802016-08-02 14:05:10 -07001141 nilfs_msg(sb, KERN_WARNING,
1142 "couldn't remount because the filesystem is in an incomplete recovery state");
Ryusuke Konishi02345762009-11-20 03:28:01 +09001143 goto restore_opts;
1144 }
1145
Linus Torvalds1751e8a2017-11-27 13:05:09 -08001146 if ((bool)(*flags & SB_RDONLY) == sb_rdonly(sb))
Ryusuke Konishi783f6182009-04-06 19:01:35 -07001147 goto out;
Linus Torvalds1751e8a2017-11-27 13:05:09 -08001148 if (*flags & SB_RDONLY) {
Ryusuke Konishif7545142011-03-09 11:05:08 +09001149 /* Shutting down log writer */
1150 nilfs_detach_log_writer(sb);
Linus Torvalds1751e8a2017-11-27 13:05:09 -08001151 sb->s_flags |= SB_RDONLY;
Ryusuke Konishi783f6182009-04-06 19:01:35 -07001152
Ryusuke Konishi783f6182009-04-06 19:01:35 -07001153 /*
1154 * Remounting a valid RW partition RDONLY, so set
1155 * the RDONLY flag and then mark the partition as valid again.
1156 */
1157 down_write(&nilfs->ns_sem);
Ryusuke Konishif7545142011-03-09 11:05:08 +09001158 nilfs_cleanup_super(sb);
Ryusuke Konishi783f6182009-04-06 19:01:35 -07001159 up_write(&nilfs->ns_sem);
1160 } else {
Ryusuke Konishic5ca48a2010-07-22 03:22:20 +09001161 __u64 features;
Ryusuke Konishie912a5b2010-08-14 13:07:15 +09001162 struct nilfs_root *root;
Ryusuke Konishic5ca48a2010-07-22 03:22:20 +09001163
Ryusuke Konishi783f6182009-04-06 19:01:35 -07001164 /*
1165 * Mounting a RDONLY partition read-write, so reread and
1166 * store the current valid flag. (It may have been changed
1167 * by fsck since we originally mounted the partition.)
1168 */
Ryusuke Konishic5ca48a2010-07-22 03:22:20 +09001169 down_read(&nilfs->ns_sem);
1170 features = le64_to_cpu(nilfs->ns_sbp[0]->s_feature_compat_ro) &
1171 ~NILFS_FEATURE_COMPAT_RO_SUPP;
1172 up_read(&nilfs->ns_sem);
1173 if (features) {
Ryusuke Konishifeee8802016-08-02 14:05:10 -07001174 nilfs_msg(sb, KERN_WARNING,
1175 "couldn't remount RDWR because of unsupported optional features (%llx)",
1176 (unsigned long long)features);
Ryusuke Konishic5ca48a2010-07-22 03:22:20 +09001177 err = -EROFS;
1178 goto restore_opts;
1179 }
1180
Linus Torvalds1751e8a2017-11-27 13:05:09 -08001181 sb->s_flags &= ~SB_RDONLY;
Ryusuke Konishi783f6182009-04-06 19:01:35 -07001182
David Howells2b0143b2015-03-17 22:25:59 +00001183 root = NILFS_I(d_inode(sb->s_root))->i_root;
Ryusuke Konishif7545142011-03-09 11:05:08 +09001184 err = nilfs_attach_log_writer(sb, root);
Ryusuke Konishi783f6182009-04-06 19:01:35 -07001185 if (err)
Ryusuke Konishie59399d2009-06-08 01:39:32 +09001186 goto restore_opts;
Ryusuke Konishi783f6182009-04-06 19:01:35 -07001187
1188 down_write(&nilfs->ns_sem);
Ryusuke Konishif7545142011-03-09 11:05:08 +09001189 nilfs_setup_super(sb, true);
Ryusuke Konishi783f6182009-04-06 19:01:35 -07001190 up_write(&nilfs->ns_sem);
Ryusuke Konishi783f6182009-04-06 19:01:35 -07001191 }
1192 out:
1193 return 0;
1194
Ryusuke Konishi783f6182009-04-06 19:01:35 -07001195 restore_opts:
1196 sb->s_flags = old_sb_flags;
Ryusuke Konishi3b2ce582011-03-09 11:05:07 +09001197 nilfs->ns_mount_opt = old_mount_opt;
Ryusuke Konishi783f6182009-04-06 19:01:35 -07001198 return err;
1199}
1200
1201struct nilfs_super_data {
1202 struct block_device *bdev;
1203 __u64 cno;
1204 int flags;
1205};
1206
Ryusuke Konishia7d3f102016-08-02 14:05:22 -07001207static int nilfs_parse_snapshot_option(const char *option,
1208 const substring_t *arg,
1209 struct nilfs_super_data *sd)
1210{
1211 unsigned long long val;
1212 const char *msg = NULL;
1213 int err;
1214
Linus Torvalds1751e8a2017-11-27 13:05:09 -08001215 if (!(sd->flags & SB_RDONLY)) {
Ryusuke Konishia7d3f102016-08-02 14:05:22 -07001216 msg = "read-only option is not specified";
1217 goto parse_error;
1218 }
1219
1220 err = kstrtoull(arg->from, 0, &val);
1221 if (err) {
1222 if (err == -ERANGE)
1223 msg = "too large checkpoint number";
1224 else
1225 msg = "malformed argument";
1226 goto parse_error;
1227 } else if (val == 0) {
1228 msg = "invalid checkpoint number 0";
1229 goto parse_error;
1230 }
1231 sd->cno = val;
1232 return 0;
1233
1234parse_error:
1235 nilfs_msg(NULL, KERN_ERR, "invalid option \"%s\": %s", option, msg);
1236 return 1;
1237}
1238
Ryusuke Konishi783f6182009-04-06 19:01:35 -07001239/**
1240 * nilfs_identify - pre-read mount options needed to identify mount instance
1241 * @data: mount options
1242 * @sd: nilfs_super_data
1243 */
1244static int nilfs_identify(char *data, struct nilfs_super_data *sd)
1245{
1246 char *p, *options = data;
1247 substring_t args[MAX_OPT_ARGS];
Ryusuke Konishic05dbfc2010-09-16 00:36:24 +09001248 int token;
Ryusuke Konishi783f6182009-04-06 19:01:35 -07001249 int ret = 0;
1250
1251 do {
1252 p = strsep(&options, ",");
1253 if (p != NULL && *p) {
1254 token = match_token(p, tokens, args);
Ryusuke Konishia7d3f102016-08-02 14:05:22 -07001255 if (token == Opt_snapshot)
1256 ret = nilfs_parse_snapshot_option(p, &args[0],
1257 sd);
Ryusuke Konishi783f6182009-04-06 19:01:35 -07001258 }
1259 if (!options)
1260 break;
1261 BUG_ON(options == data);
1262 *(options - 1) = ',';
1263 } while (!ret);
1264 return ret;
1265}
1266
1267static int nilfs_set_bdev_super(struct super_block *s, void *data)
1268{
Ryusuke Konishif11459a2010-08-16 01:54:52 +09001269 s->s_bdev = data;
Ryusuke Konishi783f6182009-04-06 19:01:35 -07001270 s->s_dev = s->s_bdev->bd_dev;
1271 return 0;
1272}
1273
1274static int nilfs_test_bdev_super(struct super_block *s, void *data)
1275{
Ryusuke Konishif11459a2010-08-16 01:54:52 +09001276 return (void *)s->s_bdev == data;
Ryusuke Konishi783f6182009-04-06 19:01:35 -07001277}
1278
Al Viroe4c59d62010-07-26 12:19:34 +04001279static struct dentry *
1280nilfs_mount(struct file_system_type *fs_type, int flags,
1281 const char *dev_name, void *data)
Ryusuke Konishi783f6182009-04-06 19:01:35 -07001282{
1283 struct nilfs_super_data sd;
Ryusuke Konishi33c8e572009-06-08 01:39:29 +09001284 struct super_block *s;
Tejun Heod4d77622010-11-13 11:55:18 +01001285 fmode_t mode = FMODE_READ | FMODE_EXCL;
Ryusuke Konishif11459a2010-08-16 01:54:52 +09001286 struct dentry *root_dentry;
1287 int err, s_new = false;
Ryusuke Konishi783f6182009-04-06 19:01:35 -07001288
Linus Torvalds1751e8a2017-11-27 13:05:09 -08001289 if (!(flags & SB_RDONLY))
Ryusuke Konishi13e90552010-05-09 02:57:57 +09001290 mode |= FMODE_WRITE;
1291
Tejun Heod4d77622010-11-13 11:55:18 +01001292 sd.bdev = blkdev_get_by_path(dev_name, mode, fs_type);
Jan Blunckd6d4c192010-02-24 13:25:32 +01001293 if (IS_ERR(sd.bdev))
Al Viroe4c59d62010-07-26 12:19:34 +04001294 return ERR_CAST(sd.bdev);
Ryusuke Konishi783f6182009-04-06 19:01:35 -07001295
Ryusuke Konishi783f6182009-04-06 19:01:35 -07001296 sd.cno = 0;
1297 sd.flags = flags;
1298 if (nilfs_identify((char *)data, &sd)) {
1299 err = -EINVAL;
1300 goto failed;
1301 }
1302
Ryusuke Konishi5beb6e02010-09-20 18:19:06 +09001303 /*
1304 * once the super is inserted into the list by sget, s_umount
1305 * will protect the lockfs code from trying to start a snapshot
1306 * while we are mounting
1307 */
1308 mutex_lock(&sd.bdev->bd_fsfreeze_mutex);
1309 if (sd.bdev->bd_fsfreeze_count > 0) {
1310 mutex_unlock(&sd.bdev->bd_fsfreeze_mutex);
1311 err = -EBUSY;
Ryusuke Konishi33c8e572009-06-08 01:39:29 +09001312 goto failed;
1313 }
David Howells9249e172012-06-25 12:55:37 +01001314 s = sget(fs_type, nilfs_test_bdev_super, nilfs_set_bdev_super, flags,
1315 sd.bdev);
Ryusuke Konishi5beb6e02010-09-20 18:19:06 +09001316 mutex_unlock(&sd.bdev->bd_fsfreeze_mutex);
Ryusuke Konishi33c8e572009-06-08 01:39:29 +09001317 if (IS_ERR(s)) {
1318 err = PTR_ERR(s);
Ryusuke Konishi348fe8d2010-09-09 02:07:56 +09001319 goto failed;
Ryusuke Konishi783f6182009-04-06 19:01:35 -07001320 }
1321
1322 if (!s->s_root) {
Ryusuke Konishi8fa7c322016-05-23 16:23:00 -07001323 s_new = true;
Ryusuke Konishif11459a2010-08-16 01:54:52 +09001324
Ryusuke Konishi33c8e572009-06-08 01:39:29 +09001325 /* New superblock instance created */
Ryusuke Konishi4571b822010-05-09 03:01:32 +09001326 s->s_mode = mode;
Dmitry Monakhova1c6f0572015-04-13 16:31:37 +04001327 snprintf(s->s_id, sizeof(s->s_id), "%pg", sd.bdev);
Ryusuke Konishi783f6182009-04-06 19:01:35 -07001328 sb_set_blocksize(s, block_size(sd.bdev));
1329
Linus Torvalds1751e8a2017-11-27 13:05:09 -08001330 err = nilfs_fill_super(s, data, flags & SB_SILENT ? 1 : 0);
Ryusuke Konishi783f6182009-04-06 19:01:35 -07001331 if (err)
Ryusuke Konishi348fe8d2010-09-09 02:07:56 +09001332 goto failed_super;
Ryusuke Konishi783f6182009-04-06 19:01:35 -07001333
Linus Torvalds1751e8a2017-11-27 13:05:09 -08001334 s->s_flags |= SB_ACTIVE;
Ryusuke Konishif11459a2010-08-16 01:54:52 +09001335 } else if (!sd.cno) {
Al Viroe95c3112013-08-24 12:06:16 -04001336 if (nilfs_tree_is_busy(s->s_root)) {
Linus Torvalds1751e8a2017-11-27 13:05:09 -08001337 if ((flags ^ s->s_flags) & SB_RDONLY) {
Ryusuke Konishifeee8802016-08-02 14:05:10 -07001338 nilfs_msg(s, KERN_ERR,
1339 "the device already has a %s mount.",
David Howellsbc98a422017-07-17 08:45:34 +01001340 sb_rdonly(s) ? "read-only" : "read/write");
Ryusuke Konishif11459a2010-08-16 01:54:52 +09001341 err = -EBUSY;
1342 goto failed_super;
1343 }
Al Viroe95c3112013-08-24 12:06:16 -04001344 } else {
Ryusuke Konishif11459a2010-08-16 01:54:52 +09001345 /*
1346 * Try remount to setup mount states if the current
1347 * tree is not mounted and only snapshots use this sb.
1348 */
1349 err = nilfs_remount(s, &flags, data);
1350 if (err)
1351 goto failed_super;
1352 }
Ryusuke Konishi783f6182009-04-06 19:01:35 -07001353 }
1354
Ryusuke Konishif11459a2010-08-16 01:54:52 +09001355 if (sd.cno) {
1356 err = nilfs_attach_snapshot(s, sd.cno, &root_dentry);
Ryusuke Konishi348fe8d2010-09-09 02:07:56 +09001357 if (err)
Ryusuke Konishif11459a2010-08-16 01:54:52 +09001358 goto failed_super;
Ryusuke Konishif11459a2010-08-16 01:54:52 +09001359 } else {
1360 root_dentry = dget(s->s_root);
Ryusuke Konishi783f6182009-04-06 19:01:35 -07001361 }
1362
Ryusuke Konishif11459a2010-08-16 01:54:52 +09001363 if (!s_new)
Tejun Heod4d77622010-11-13 11:55:18 +01001364 blkdev_put(sd.bdev, mode);
Ryusuke Konishif11459a2010-08-16 01:54:52 +09001365
Al Viroe4c59d62010-07-26 12:19:34 +04001366 return root_dentry;
Ryusuke Konishi783f6182009-04-06 19:01:35 -07001367
Ryusuke Konishif11459a2010-08-16 01:54:52 +09001368 failed_super:
Al Viroa95161a2009-08-09 00:52:02 +04001369 deactivate_locked_super(s);
Ryusuke Konishi783f6182009-04-06 19:01:35 -07001370
Ryusuke Konishi348fe8d2010-09-09 02:07:56 +09001371 failed:
1372 if (!s_new)
Tejun Heod4d77622010-11-13 11:55:18 +01001373 blkdev_put(sd.bdev, mode);
Al Viroe4c59d62010-07-26 12:19:34 +04001374 return ERR_PTR(err);
Ryusuke Konishi783f6182009-04-06 19:01:35 -07001375}
1376
Ryusuke Konishi783f6182009-04-06 19:01:35 -07001377struct file_system_type nilfs_fs_type = {
1378 .owner = THIS_MODULE,
1379 .name = "nilfs2",
Al Viroe4c59d62010-07-26 12:19:34 +04001380 .mount = nilfs_mount,
Ryusuke Konishi783f6182009-04-06 19:01:35 -07001381 .kill_sb = kill_block_super,
1382 .fs_flags = FS_REQUIRES_DEV,
1383};
Eric W. Biederman7f78e032013-03-02 19:39:14 -08001384MODULE_ALIAS_FS("nilfs2");
Ryusuke Konishi783f6182009-04-06 19:01:35 -07001385
Li Hong41c88bd2010-04-06 00:54:11 +08001386static void nilfs_inode_init_once(void *obj)
1387{
1388 struct nilfs_inode_info *ii = obj;
1389
1390 INIT_LIST_HEAD(&ii->i_dirty);
1391#ifdef CONFIG_NILFS_XATTR
1392 init_rwsem(&ii->xattr_sem);
1393#endif
Miklos Szeredi2aa15892011-02-23 13:49:47 +01001394 address_space_init_once(&ii->i_btnode_cache);
Ryusuke Konishi05d0e942010-07-10 20:52:09 +09001395 ii->i_bmap = &ii->i_bmap_data;
Li Hong41c88bd2010-04-06 00:54:11 +08001396 inode_init_once(&ii->vfs_inode);
1397}
1398
1399static void nilfs_segbuf_init_once(void *obj)
1400{
1401 memset(obj, 0, sizeof(struct nilfs_segment_buffer));
1402}
1403
1404static void nilfs_destroy_cachep(void)
1405{
Kirill A. Shutemov8c0a8532012-09-26 11:33:07 +10001406 /*
1407 * Make sure all delayed rcu free inodes are flushed before we
1408 * destroy cache.
1409 */
1410 rcu_barrier();
1411
Julia Lawallda80a392015-11-06 16:31:40 -08001412 kmem_cache_destroy(nilfs_inode_cachep);
1413 kmem_cache_destroy(nilfs_transaction_cachep);
1414 kmem_cache_destroy(nilfs_segbuf_cachep);
1415 kmem_cache_destroy(nilfs_btree_path_cache);
Li Hong41c88bd2010-04-06 00:54:11 +08001416}
1417
1418static int __init nilfs_init_cachep(void)
1419{
1420 nilfs_inode_cachep = kmem_cache_create("nilfs2_inode_cache",
1421 sizeof(struct nilfs_inode_info), 0,
Vladimir Davydov5d097052016-01-14 15:18:21 -08001422 SLAB_RECLAIM_ACCOUNT|SLAB_ACCOUNT,
1423 nilfs_inode_init_once);
Li Hong41c88bd2010-04-06 00:54:11 +08001424 if (!nilfs_inode_cachep)
1425 goto fail;
1426
1427 nilfs_transaction_cachep = kmem_cache_create("nilfs2_transaction_cache",
1428 sizeof(struct nilfs_transaction_info), 0,
1429 SLAB_RECLAIM_ACCOUNT, NULL);
1430 if (!nilfs_transaction_cachep)
1431 goto fail;
1432
1433 nilfs_segbuf_cachep = kmem_cache_create("nilfs2_segbuf_cache",
1434 sizeof(struct nilfs_segment_buffer), 0,
1435 SLAB_RECLAIM_ACCOUNT, nilfs_segbuf_init_once);
1436 if (!nilfs_segbuf_cachep)
1437 goto fail;
1438
1439 nilfs_btree_path_cache = kmem_cache_create("nilfs2_btree_path_cache",
1440 sizeof(struct nilfs_btree_path) * NILFS_BTREE_LEVEL_MAX,
1441 0, 0, NULL);
1442 if (!nilfs_btree_path_cache)
1443 goto fail;
1444
1445 return 0;
1446
1447fail:
1448 nilfs_destroy_cachep();
1449 return -ENOMEM;
1450}
1451
Ryusuke Konishi783f6182009-04-06 19:01:35 -07001452static int __init init_nilfs_fs(void)
1453{
1454 int err;
1455
Li Hong41c88bd2010-04-06 00:54:11 +08001456 err = nilfs_init_cachep();
Ryusuke Konishi783f6182009-04-06 19:01:35 -07001457 if (err)
Li Hong41c88bd2010-04-06 00:54:11 +08001458 goto fail;
Ryusuke Konishi783f6182009-04-06 19:01:35 -07001459
Vyacheslav Dubeykodd70edb2014-08-08 14:20:55 -07001460 err = nilfs_sysfs_init();
Ryusuke Konishi783f6182009-04-06 19:01:35 -07001461 if (err)
Li Hong41c88bd2010-04-06 00:54:11 +08001462 goto free_cachep;
Ryusuke Konishi783f6182009-04-06 19:01:35 -07001463
Vyacheslav Dubeykodd70edb2014-08-08 14:20:55 -07001464 err = register_filesystem(&nilfs_fs_type);
1465 if (err)
1466 goto deinit_sysfs_entry;
1467
Li Hong9f130262010-04-09 23:09:53 +08001468 printk(KERN_INFO "NILFS version 2 loaded\n");
Ryusuke Konishi783f6182009-04-06 19:01:35 -07001469 return 0;
1470
Vyacheslav Dubeykodd70edb2014-08-08 14:20:55 -07001471deinit_sysfs_entry:
1472 nilfs_sysfs_exit();
Li Hong41c88bd2010-04-06 00:54:11 +08001473free_cachep:
1474 nilfs_destroy_cachep();
1475fail:
Ryusuke Konishi783f6182009-04-06 19:01:35 -07001476 return err;
1477}
1478
1479static void __exit exit_nilfs_fs(void)
1480{
Li Hong41c88bd2010-04-06 00:54:11 +08001481 nilfs_destroy_cachep();
Vyacheslav Dubeykodd70edb2014-08-08 14:20:55 -07001482 nilfs_sysfs_exit();
Ryusuke Konishi783f6182009-04-06 19:01:35 -07001483 unregister_filesystem(&nilfs_fs_type);
1484}
1485
1486module_init(init_nilfs_fs)
1487module_exit(exit_nilfs_fs)