blob: 69bd801afb53b987ea3fa862fd2a444b41d2efdb [file] [log] [blame]
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -07001/*
2 * the_nilfs.c - the_nilfs shared structure.
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
24#include <linux/buffer_head.h>
25#include <linux/slab.h>
26#include <linux/blkdev.h>
27#include <linux/backing-dev.h>
Ryusuke Konishi9b1fc4e42011-03-09 11:05:08 +090028#include <linux/random.h>
Ryusuke Konishie339ad32009-04-06 19:01:59 -070029#include <linux/crc32.h>
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -070030#include "nilfs.h"
31#include "segment.h"
32#include "alloc.h"
33#include "cpfile.h"
34#include "sufile.h"
35#include "dat.h"
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -070036#include "segbuf.h"
37
Ryusuke Konishi33c8e572009-06-08 01:39:29 +090038
Ryusuke Konishi6c1251602010-06-28 19:15:26 +090039static int nilfs_valid_sb(struct nilfs_super_block *sbp);
40
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -070041void nilfs_set_last_segment(struct the_nilfs *nilfs,
42 sector_t start_blocknr, u64 seq, __u64 cno)
43{
44 spin_lock(&nilfs->ns_last_segment_lock);
45 nilfs->ns_last_pseg = start_blocknr;
46 nilfs->ns_last_seq = seq;
47 nilfs->ns_last_cno = cno;
Ryusuke Konishi32502042010-06-29 14:42:13 +090048
49 if (!nilfs_sb_dirty(nilfs)) {
50 if (nilfs->ns_prev_seq == nilfs->ns_last_seq)
51 goto stay_cursor;
52
53 set_nilfs_sb_dirty(nilfs);
54 }
55 nilfs->ns_prev_seq = nilfs->ns_last_seq;
56
57 stay_cursor:
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -070058 spin_unlock(&nilfs->ns_last_segment_lock);
59}
60
61/**
Ryusuke Konishi348fe8d2010-09-09 02:07:56 +090062 * alloc_nilfs - allocate a nilfs object
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -070063 * @bdev: block device to which the_nilfs is related
64 *
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -070065 * Return Value: On success, pointer to the_nilfs is returned.
66 * On error, NULL is returned.
67 */
Ryusuke Konishi348fe8d2010-09-09 02:07:56 +090068struct the_nilfs *alloc_nilfs(struct block_device *bdev)
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -070069{
70 struct the_nilfs *nilfs;
71
72 nilfs = kzalloc(sizeof(*nilfs), GFP_KERNEL);
73 if (!nilfs)
74 return NULL;
75
76 nilfs->ns_bdev = bdev;
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -070077 atomic_set(&nilfs->ns_ndirtyblks, 0);
78 init_rwsem(&nilfs->ns_sem);
Ryusuke Konishi572d8b32012-07-30 14:42:07 -070079 mutex_init(&nilfs->ns_snapshot_mount_mutex);
Ryusuke Konishi693dd322011-03-09 11:05:07 +090080 INIT_LIST_HEAD(&nilfs->ns_dirty_files);
Ryusuke Konishi263d90c2010-08-20 19:06:11 +090081 INIT_LIST_HEAD(&nilfs->ns_gc_inodes);
Ryusuke Konishi693dd322011-03-09 11:05:07 +090082 spin_lock_init(&nilfs->ns_inode_lock);
Ryusuke Konishi9b1fc4e42011-03-09 11:05:08 +090083 spin_lock_init(&nilfs->ns_next_gen_lock);
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -070084 spin_lock_init(&nilfs->ns_last_segment_lock);
Ryusuke Konishiba65ae42010-08-14 12:59:15 +090085 nilfs->ns_cptree = RB_ROOT;
86 spin_lock_init(&nilfs->ns_cptree_lock);
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -070087 init_rwsem(&nilfs->ns_segctor_sem);
Vyacheslav Dubeykocaa05d42014-08-08 14:20:42 -070088 nilfs->ns_sb_update_freq = NILFS_SB_FREQ;
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -070089
90 return nilfs;
91}
92
93/**
Ryusuke Konishi348fe8d2010-09-09 02:07:56 +090094 * destroy_nilfs - destroy nilfs object
95 * @nilfs: nilfs object to be released
Ryusuke Konishi33c8e572009-06-08 01:39:29 +090096 */
Ryusuke Konishi348fe8d2010-09-09 02:07:56 +090097void destroy_nilfs(struct the_nilfs *nilfs)
Ryusuke Konishi33c8e572009-06-08 01:39:29 +090098{
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -070099 might_sleep();
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700100 if (nilfs_init(nilfs)) {
Vyacheslav Dubeykodd70edb2014-08-08 14:20:55 -0700101 nilfs_sysfs_delete_device_group(nilfs);
Ryusuke Konishie339ad32009-04-06 19:01:59 -0700102 brelse(nilfs->ns_sbh[0]);
103 brelse(nilfs->ns_sbh[1]);
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700104 }
105 kfree(nilfs);
106}
107
Ryusuke Konishif1e89c82010-09-05 12:20:59 +0900108static int nilfs_load_super_root(struct the_nilfs *nilfs,
109 struct super_block *sb, sector_t sr_block)
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700110{
111 struct buffer_head *bh_sr;
112 struct nilfs_super_root *raw_sr;
Ryusuke Konishie339ad32009-04-06 19:01:59 -0700113 struct nilfs_super_block **sbp = nilfs->ns_sbp;
Ryusuke Konishif1e89c82010-09-05 12:20:59 +0900114 struct nilfs_inode *rawi;
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700115 unsigned dat_entry_size, segment_usage_size, checkpoint_size;
116 unsigned inode_size;
117 int err;
118
Ryusuke Konishi8b940252010-05-23 01:39:02 +0900119 err = nilfs_read_super_root_block(nilfs, sr_block, &bh_sr, 1);
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700120 if (unlikely(err))
121 return err;
122
123 down_read(&nilfs->ns_sem);
Ryusuke Konishie339ad32009-04-06 19:01:59 -0700124 dat_entry_size = le16_to_cpu(sbp[0]->s_dat_entry_size);
125 checkpoint_size = le16_to_cpu(sbp[0]->s_checkpoint_size);
126 segment_usage_size = le16_to_cpu(sbp[0]->s_segment_usage_size);
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700127 up_read(&nilfs->ns_sem);
128
129 inode_size = nilfs->ns_inode_size;
130
Ryusuke Konishif1e89c82010-09-05 12:20:59 +0900131 rawi = (void *)bh_sr->b_data + NILFS_SR_DAT_OFFSET(inode_size);
132 err = nilfs_dat_read(sb, dat_entry_size, rawi, &nilfs->ns_dat);
133 if (err)
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700134 goto failed;
135
Ryusuke Konishif1e89c82010-09-05 12:20:59 +0900136 rawi = (void *)bh_sr->b_data + NILFS_SR_CPFILE_OFFSET(inode_size);
137 err = nilfs_cpfile_read(sb, checkpoint_size, rawi, &nilfs->ns_cpfile);
138 if (err)
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700139 goto failed_dat;
140
Ryusuke Konishif1e89c82010-09-05 12:20:59 +0900141 rawi = (void *)bh_sr->b_data + NILFS_SR_SUFILE_OFFSET(inode_size);
142 err = nilfs_sufile_read(sb, segment_usage_size, rawi,
143 &nilfs->ns_sufile);
144 if (err)
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700145 goto failed_cpfile;
146
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700147 raw_sr = (struct nilfs_super_root *)bh_sr->b_data;
148 nilfs->ns_nongc_ctime = le64_to_cpu(raw_sr->sr_nongc_ctime);
149
150 failed:
151 brelse(bh_sr);
152 return err;
153
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700154 failed_cpfile:
Ryusuke Konishif1e89c82010-09-05 12:20:59 +0900155 iput(nilfs->ns_cpfile);
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700156
157 failed_dat:
Ryusuke Konishif1e89c82010-09-05 12:20:59 +0900158 iput(nilfs->ns_dat);
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700159 goto failed;
160}
161
162static void nilfs_init_recovery_info(struct nilfs_recovery_info *ri)
163{
164 memset(ri, 0, sizeof(*ri));
165 INIT_LIST_HEAD(&ri->ri_used_segments);
166}
167
168static void nilfs_clear_recovery_info(struct nilfs_recovery_info *ri)
169{
170 nilfs_dispose_segment_list(&ri->ri_used_segments);
171}
172
173/**
Ryusuke Konishi843d63b2010-06-28 19:15:24 +0900174 * nilfs_store_log_cursor - load log cursor from a super block
175 * @nilfs: nilfs object
176 * @sbp: buffer storing super block to be read
177 *
178 * nilfs_store_log_cursor() reads the last position of the log
179 * containing a super root from a given super block, and initializes
180 * relevant information on the nilfs object preparatory for log
181 * scanning and recovery.
182 */
183static int nilfs_store_log_cursor(struct the_nilfs *nilfs,
184 struct nilfs_super_block *sbp)
185{
186 int ret = 0;
187
188 nilfs->ns_last_pseg = le64_to_cpu(sbp->s_last_pseg);
189 nilfs->ns_last_cno = le64_to_cpu(sbp->s_last_cno);
190 nilfs->ns_last_seq = le64_to_cpu(sbp->s_last_seq);
191
Ryusuke Konishi32502042010-06-29 14:42:13 +0900192 nilfs->ns_prev_seq = nilfs->ns_last_seq;
Ryusuke Konishi843d63b2010-06-28 19:15:24 +0900193 nilfs->ns_seg_seq = nilfs->ns_last_seq;
194 nilfs->ns_segnum =
195 nilfs_get_segnum_of_block(nilfs, nilfs->ns_last_pseg);
196 nilfs->ns_cno = nilfs->ns_last_cno + 1;
197 if (nilfs->ns_segnum >= nilfs->ns_nsegments) {
198 printk(KERN_ERR "NILFS invalid last segment number.\n");
199 ret = -EINVAL;
200 }
201 return ret;
202}
203
204/**
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700205 * load_nilfs - load and recover the nilfs
206 * @nilfs: the_nilfs structure to be released
Ryusuke Konishif7545142011-03-09 11:05:08 +0900207 * @sb: super block isntance used to recover past segment
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700208 *
209 * load_nilfs() searches and load the latest super root,
210 * attaches the last segment, and does recovery if needed.
211 * The caller must call this exclusively for simultaneous mounts.
212 */
Ryusuke Konishif7545142011-03-09 11:05:08 +0900213int load_nilfs(struct the_nilfs *nilfs, struct super_block *sb)
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700214{
215 struct nilfs_recovery_info ri;
Ryusuke Konishif7545142011-03-09 11:05:08 +0900216 unsigned int s_flags = sb->s_flags;
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700217 int really_read_only = bdev_read_only(nilfs->ns_bdev);
Ryusuke Konishia057d2c2009-11-19 19:58:46 +0900218 int valid_fs = nilfs_valid_fs(nilfs);
Ryusuke Konishif50a4c82009-11-19 16:58:40 +0900219 int err;
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700220
Ryusuke Konishif50a4c82009-11-19 16:58:40 +0900221 if (!valid_fs) {
222 printk(KERN_WARNING "NILFS warning: mounting unchecked fs\n");
223 if (s_flags & MS_RDONLY) {
224 printk(KERN_INFO "NILFS: INFO: recovery "
225 "required for readonly filesystem.\n");
226 printk(KERN_INFO "NILFS: write access will "
227 "be enabled during recovery.\n");
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700228 }
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700229 }
230
Ryusuke Konishif50a4c82009-11-19 16:58:40 +0900231 nilfs_init_recovery_info(&ri);
232
Ryusuke Konishi8b940252010-05-23 01:39:02 +0900233 err = nilfs_search_super_root(nilfs, &ri);
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700234 if (unlikely(err)) {
Ryusuke Konishi6c1251602010-06-28 19:15:26 +0900235 struct nilfs_super_block **sbp = nilfs->ns_sbp;
236 int blocksize;
237
238 if (err != -EINVAL)
239 goto scan_error;
240
241 if (!nilfs_valid_sb(sbp[1])) {
242 printk(KERN_WARNING
243 "NILFS warning: unable to fall back to spare"
244 "super block\n");
245 goto scan_error;
246 }
247 printk(KERN_INFO
248 "NILFS: try rollback from an earlier position\n");
249
250 /*
251 * restore super block with its spare and reconfigure
252 * relevant states of the nilfs object.
253 */
254 memcpy(sbp[0], sbp[1], nilfs->ns_sbsize);
255 nilfs->ns_crc_seed = le32_to_cpu(sbp[0]->s_crc_seed);
256 nilfs->ns_sbwtime = le64_to_cpu(sbp[0]->s_wtime);
257
258 /* verify consistency between two super blocks */
259 blocksize = BLOCK_SIZE << le32_to_cpu(sbp[0]->s_log_block_size);
260 if (blocksize != nilfs->ns_blocksize) {
261 printk(KERN_WARNING
262 "NILFS warning: blocksize differs between "
263 "two super blocks (%d != %d)\n",
264 blocksize, nilfs->ns_blocksize);
265 goto scan_error;
266 }
267
268 err = nilfs_store_log_cursor(nilfs, sbp[0]);
269 if (err)
270 goto scan_error;
271
272 /* drop clean flag to allow roll-forward and recovery */
273 nilfs->ns_mount_state &= ~NILFS_VALID_FS;
274 valid_fs = 0;
275
276 err = nilfs_search_super_root(nilfs, &ri);
277 if (err)
278 goto scan_error;
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700279 }
280
Ryusuke Konishif7545142011-03-09 11:05:08 +0900281 err = nilfs_load_super_root(nilfs, sb, ri.ri_super_root);
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700282 if (unlikely(err)) {
283 printk(KERN_ERR "NILFS: error loading super root.\n");
284 goto failed;
285 }
286
Ryusuke Konishif50a4c82009-11-19 16:58:40 +0900287 if (valid_fs)
288 goto skip_recovery;
289
290 if (s_flags & MS_RDONLY) {
Ryusuke Konishic5ca48a2010-07-22 03:22:20 +0900291 __u64 features;
292
Ryusuke Konishi3b2ce582011-03-09 11:05:07 +0900293 if (nilfs_test_opt(nilfs, NORECOVERY)) {
Ryusuke Konishi02345762009-11-20 03:28:01 +0900294 printk(KERN_INFO "NILFS: norecovery option specified. "
295 "skipping roll-forward recovery\n");
296 goto skip_recovery;
297 }
Ryusuke Konishic5ca48a2010-07-22 03:22:20 +0900298 features = le64_to_cpu(nilfs->ns_sbp[0]->s_feature_compat_ro) &
299 ~NILFS_FEATURE_COMPAT_RO_SUPP;
300 if (features) {
301 printk(KERN_ERR "NILFS: couldn't proceed with "
302 "recovery because of unsupported optional "
303 "features (%llx)\n",
304 (unsigned long long)features);
305 err = -EROFS;
306 goto failed_unload;
307 }
Ryusuke Konishif50a4c82009-11-19 16:58:40 +0900308 if (really_read_only) {
309 printk(KERN_ERR "NILFS: write access "
310 "unavailable, cannot proceed.\n");
311 err = -EROFS;
312 goto failed_unload;
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700313 }
Ryusuke Konishif7545142011-03-09 11:05:08 +0900314 sb->s_flags &= ~MS_RDONLY;
Ryusuke Konishi3b2ce582011-03-09 11:05:07 +0900315 } else if (nilfs_test_opt(nilfs, NORECOVERY)) {
Ryusuke Konishi02345762009-11-20 03:28:01 +0900316 printk(KERN_ERR "NILFS: recovery cancelled because norecovery "
317 "option was specified for a read/write mount\n");
318 err = -EINVAL;
319 goto failed_unload;
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700320 }
321
Ryusuke Konishif7545142011-03-09 11:05:08 +0900322 err = nilfs_salvage_orphan_logs(nilfs, sb, &ri);
Ryusuke Konishif50a4c82009-11-19 16:58:40 +0900323 if (err)
324 goto failed_unload;
325
326 down_write(&nilfs->ns_sem);
Ryusuke Konishi7ecaa462010-06-28 17:49:29 +0900327 nilfs->ns_mount_state |= NILFS_VALID_FS; /* set "clean" flag */
Ryusuke Konishif7545142011-03-09 11:05:08 +0900328 err = nilfs_cleanup_super(sb);
Ryusuke Konishif50a4c82009-11-19 16:58:40 +0900329 up_write(&nilfs->ns_sem);
330
331 if (err) {
332 printk(KERN_ERR "NILFS: failed to update super block. "
333 "recovery unfinished.\n");
334 goto failed_unload;
335 }
336 printk(KERN_INFO "NILFS: recovery complete.\n");
337
338 skip_recovery:
Ryusuke Konishif50a4c82009-11-19 16:58:40 +0900339 nilfs_clear_recovery_info(&ri);
Ryusuke Konishif7545142011-03-09 11:05:08 +0900340 sb->s_flags = s_flags;
Ryusuke Konishif50a4c82009-11-19 16:58:40 +0900341 return 0;
342
Ryusuke Konishi6c1251602010-06-28 19:15:26 +0900343 scan_error:
344 printk(KERN_ERR "NILFS: error searching super root.\n");
345 goto failed;
346
Ryusuke Konishif50a4c82009-11-19 16:58:40 +0900347 failed_unload:
Ryusuke Konishif1e89c82010-09-05 12:20:59 +0900348 iput(nilfs->ns_cpfile);
349 iput(nilfs->ns_sufile);
350 iput(nilfs->ns_dat);
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700351
352 failed:
353 nilfs_clear_recovery_info(&ri);
Ryusuke Konishif7545142011-03-09 11:05:08 +0900354 sb->s_flags = s_flags;
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700355 return err;
356}
357
358static unsigned long long nilfs_max_size(unsigned int blkbits)
359{
360 unsigned int max_bits;
361 unsigned long long res = MAX_LFS_FILESIZE; /* page cache limit */
362
363 max_bits = blkbits + NILFS_BMAP_KEY_BIT; /* bmap size limit */
364 if (max_bits < 64)
365 res = min_t(unsigned long long, res, (1ULL << max_bits) - 1);
366 return res;
367}
368
Ryusuke Konishi4e33f9e2011-05-05 01:23:58 +0900369/**
370 * nilfs_nrsvsegs - calculate the number of reserved segments
371 * @nilfs: nilfs object
372 * @nsegs: total number of segments
373 */
374unsigned long nilfs_nrsvsegs(struct the_nilfs *nilfs, unsigned long nsegs)
375{
376 return max_t(unsigned long, NILFS_MIN_NRSVSEGS,
377 DIV_ROUND_UP(nsegs * nilfs->ns_r_segments_percentage,
378 100));
379}
380
381void nilfs_set_nsegments(struct the_nilfs *nilfs, unsigned long nsegs)
382{
383 nilfs->ns_nsegments = nsegs;
384 nilfs->ns_nrsvsegs = nilfs_nrsvsegs(nilfs, nsegs);
385}
386
Ryusuke Konishie339ad32009-04-06 19:01:59 -0700387static int nilfs_store_disk_layout(struct the_nilfs *nilfs,
388 struct nilfs_super_block *sbp)
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700389{
Ryusuke Konishi9566a7a2010-08-10 00:58:41 +0900390 if (le32_to_cpu(sbp->s_rev_level) < NILFS_MIN_SUPP_REV) {
391 printk(KERN_ERR "NILFS: unsupported revision "
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700392 "(superblock rev.=%d.%d, current rev.=%d.%d). "
393 "Please check the version of mkfs.nilfs.\n",
394 le32_to_cpu(sbp->s_rev_level),
395 le16_to_cpu(sbp->s_minor_rev_level),
396 NILFS_CURRENT_REV, NILFS_MINOR_REV);
397 return -EINVAL;
398 }
Ryusuke Konishie339ad32009-04-06 19:01:59 -0700399 nilfs->ns_sbsize = le16_to_cpu(sbp->s_bytes);
400 if (nilfs->ns_sbsize > BLOCK_SIZE)
401 return -EINVAL;
402
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700403 nilfs->ns_inode_size = le16_to_cpu(sbp->s_inode_size);
Ryusuke Konishi0ec060d2014-04-03 14:50:31 -0700404 if (nilfs->ns_inode_size > nilfs->ns_blocksize) {
405 printk(KERN_ERR "NILFS: too large inode size: %d bytes.\n",
406 nilfs->ns_inode_size);
407 return -EINVAL;
408 } else if (nilfs->ns_inode_size < NILFS_MIN_INODE_SIZE) {
409 printk(KERN_ERR "NILFS: too small inode size: %d bytes.\n",
410 nilfs->ns_inode_size);
411 return -EINVAL;
412 }
413
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700414 nilfs->ns_first_ino = le32_to_cpu(sbp->s_first_ino);
415
416 nilfs->ns_blocks_per_segment = le32_to_cpu(sbp->s_blocks_per_segment);
417 if (nilfs->ns_blocks_per_segment < NILFS_SEG_MIN_BLOCKS) {
Ryusuke Konishic91cea12010-03-14 04:01:27 +0900418 printk(KERN_ERR "NILFS: too short segment.\n");
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700419 return -EINVAL;
420 }
421
422 nilfs->ns_first_data_block = le64_to_cpu(sbp->s_first_data_block);
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700423 nilfs->ns_r_segments_percentage =
424 le32_to_cpu(sbp->s_r_segments_percentage);
Haogang Chen3d777a62012-03-16 17:08:38 -0700425 if (nilfs->ns_r_segments_percentage < 1 ||
426 nilfs->ns_r_segments_percentage > 99) {
427 printk(KERN_ERR "NILFS: invalid reserved segments percentage.\n");
428 return -EINVAL;
429 }
430
Ryusuke Konishi4e33f9e2011-05-05 01:23:58 +0900431 nilfs_set_nsegments(nilfs, le64_to_cpu(sbp->s_nsegments));
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700432 nilfs->ns_crc_seed = le32_to_cpu(sbp->s_crc_seed);
433 return 0;
434}
435
Ryusuke Konishie339ad32009-04-06 19:01:59 -0700436static int nilfs_valid_sb(struct nilfs_super_block *sbp)
437{
438 static unsigned char sum[4];
439 const int sumoff = offsetof(struct nilfs_super_block, s_sum);
440 size_t bytes;
441 u32 crc;
442
443 if (!sbp || le16_to_cpu(sbp->s_magic) != NILFS_SUPER_MAGIC)
444 return 0;
445 bytes = le16_to_cpu(sbp->s_bytes);
446 if (bytes > BLOCK_SIZE)
447 return 0;
448 crc = crc32_le(le32_to_cpu(sbp->s_crc_seed), (unsigned char *)sbp,
449 sumoff);
450 crc = crc32_le(crc, sum, 4);
451 crc = crc32_le(crc, (unsigned char *)sbp + sumoff + 4,
452 bytes - sumoff - 4);
453 return crc == le32_to_cpu(sbp->s_sum);
454}
455
456static int nilfs_sb2_bad_offset(struct nilfs_super_block *sbp, u64 offset)
457{
458 return offset < ((le64_to_cpu(sbp->s_nsegments) *
459 le32_to_cpu(sbp->s_blocks_per_segment)) <<
460 (le32_to_cpu(sbp->s_log_block_size) + 10));
461}
462
463static void nilfs_release_super_block(struct the_nilfs *nilfs)
464{
465 int i;
466
467 for (i = 0; i < 2; i++) {
468 if (nilfs->ns_sbp[i]) {
469 brelse(nilfs->ns_sbh[i]);
470 nilfs->ns_sbh[i] = NULL;
471 nilfs->ns_sbp[i] = NULL;
472 }
473 }
474}
475
476void nilfs_fall_back_super_block(struct the_nilfs *nilfs)
477{
478 brelse(nilfs->ns_sbh[0]);
479 nilfs->ns_sbh[0] = nilfs->ns_sbh[1];
480 nilfs->ns_sbp[0] = nilfs->ns_sbp[1];
481 nilfs->ns_sbh[1] = NULL;
482 nilfs->ns_sbp[1] = NULL;
483}
484
485void nilfs_swap_super_block(struct the_nilfs *nilfs)
486{
487 struct buffer_head *tsbh = nilfs->ns_sbh[0];
488 struct nilfs_super_block *tsbp = nilfs->ns_sbp[0];
489
490 nilfs->ns_sbh[0] = nilfs->ns_sbh[1];
491 nilfs->ns_sbp[0] = nilfs->ns_sbp[1];
492 nilfs->ns_sbh[1] = tsbh;
493 nilfs->ns_sbp[1] = tsbp;
494}
495
496static int nilfs_load_super_block(struct the_nilfs *nilfs,
497 struct super_block *sb, int blocksize,
498 struct nilfs_super_block **sbpp)
499{
500 struct nilfs_super_block **sbp = nilfs->ns_sbp;
501 struct buffer_head **sbh = nilfs->ns_sbh;
502 u64 sb2off = NILFS_SB2_OFFSET_BYTES(nilfs->ns_bdev->bd_inode->i_size);
503 int valid[2], swp = 0;
504
505 sbp[0] = nilfs_read_super_block(sb, NILFS_SB_OFFSET_BYTES, blocksize,
506 &sbh[0]);
507 sbp[1] = nilfs_read_super_block(sb, sb2off, blocksize, &sbh[1]);
508
509 if (!sbp[0]) {
510 if (!sbp[1]) {
511 printk(KERN_ERR "NILFS: unable to read superblock\n");
512 return -EIO;
513 }
514 printk(KERN_WARNING
Ryusuke Konishi4138ec22011-01-24 00:28:22 +0900515 "NILFS warning: unable to read primary superblock "
516 "(blocksize = %d)\n", blocksize);
517 } else if (!sbp[1]) {
Ryusuke Konishie339ad32009-04-06 19:01:59 -0700518 printk(KERN_WARNING
Ryusuke Konishi4138ec22011-01-24 00:28:22 +0900519 "NILFS warning: unable to read secondary superblock "
520 "(blocksize = %d)\n", blocksize);
521 }
Ryusuke Konishie339ad32009-04-06 19:01:59 -0700522
Ryusuke Konishi25294d82010-05-01 11:54:21 +0900523 /*
524 * Compare two super blocks and set 1 in swp if the secondary
525 * super block is valid and newer. Otherwise, set 0 in swp.
526 */
Ryusuke Konishie339ad32009-04-06 19:01:59 -0700527 valid[0] = nilfs_valid_sb(sbp[0]);
528 valid[1] = nilfs_valid_sb(sbp[1]);
Ryusuke Konishi25294d82010-05-01 11:54:21 +0900529 swp = valid[1] && (!valid[0] ||
530 le64_to_cpu(sbp[1]->s_last_cno) >
531 le64_to_cpu(sbp[0]->s_last_cno));
Ryusuke Konishie339ad32009-04-06 19:01:59 -0700532
533 if (valid[swp] && nilfs_sb2_bad_offset(sbp[swp], sb2off)) {
534 brelse(sbh[1]);
535 sbh[1] = NULL;
536 sbp[1] = NULL;
Ryusuke Konishid7178c72012-03-16 17:08:39 -0700537 valid[1] = 0;
Ryusuke Konishie339ad32009-04-06 19:01:59 -0700538 swp = 0;
539 }
540 if (!valid[swp]) {
541 nilfs_release_super_block(nilfs);
542 printk(KERN_ERR "NILFS: Can't find nilfs on dev %s.\n",
543 sb->s_id);
544 return -EINVAL;
545 }
546
Ryusuke Konishiea1a16f2010-08-15 20:16:11 +0900547 if (!valid[!swp])
Ryusuke Konishie339ad32009-04-06 19:01:59 -0700548 printk(KERN_WARNING "NILFS warning: broken superblock. "
Ryusuke Konishi4138ec22011-01-24 00:28:22 +0900549 "using spare superblock (blocksize = %d).\n", blocksize);
Ryusuke Konishiea1a16f2010-08-15 20:16:11 +0900550 if (swp)
Ryusuke Konishie339ad32009-04-06 19:01:59 -0700551 nilfs_swap_super_block(nilfs);
Ryusuke Konishie339ad32009-04-06 19:01:59 -0700552
Jiro SEKIBAb2ac86e2010-06-28 17:49:33 +0900553 nilfs->ns_sbwcount = 0;
554 nilfs->ns_sbwtime = le64_to_cpu(sbp[0]->s_wtime);
Ryusuke Konishie339ad32009-04-06 19:01:59 -0700555 nilfs->ns_prot_seq = le64_to_cpu(sbp[valid[1] & !swp]->s_last_seq);
556 *sbpp = sbp[0];
557 return 0;
558}
559
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700560/**
561 * init_nilfs - initialize a NILFS instance.
562 * @nilfs: the_nilfs structure
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700563 * @sb: super block
564 * @data: mount options
565 *
566 * init_nilfs() performs common initialization per block device (e.g.
567 * reading the super block, getting disk layout information, initializing
Ryusuke Konishif11459a2010-08-16 01:54:52 +0900568 * shared fields in the_nilfs).
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700569 *
570 * Return Value: On success, 0 is returned. On error, a negative error
571 * code is returned.
572 */
Ryusuke Konishif7545142011-03-09 11:05:08 +0900573int init_nilfs(struct the_nilfs *nilfs, struct super_block *sb, char *data)
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700574{
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700575 struct nilfs_super_block *sbp;
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700576 int blocksize;
Ryusuke Konishie339ad32009-04-06 19:01:59 -0700577 int err;
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700578
579 down_write(&nilfs->ns_sem);
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700580
Ryusuke Konishi89c0fd02010-07-25 22:44:53 +0900581 blocksize = sb_min_blocksize(sb, NILFS_MIN_BLOCK_SIZE);
Ryusuke Konishie339ad32009-04-06 19:01:59 -0700582 if (!blocksize) {
583 printk(KERN_ERR "NILFS: unable to set blocksize\n");
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700584 err = -EINVAL;
585 goto out;
586 }
Ryusuke Konishie339ad32009-04-06 19:01:59 -0700587 err = nilfs_load_super_block(nilfs, sb, blocksize, &sbp);
588 if (err)
589 goto out;
590
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700591 err = nilfs_store_magic_and_option(sb, sbp, data);
592 if (err)
593 goto failed_sbh;
594
Ryusuke Konishic5ca48a2010-07-22 03:22:20 +0900595 err = nilfs_check_feature_compatibility(sb, sbp);
596 if (err)
597 goto failed_sbh;
598
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700599 blocksize = BLOCK_SIZE << le32_to_cpu(sbp->s_log_block_size);
Ryusuke Konishi89c0fd02010-07-25 22:44:53 +0900600 if (blocksize < NILFS_MIN_BLOCK_SIZE ||
601 blocksize > NILFS_MAX_BLOCK_SIZE) {
602 printk(KERN_ERR "NILFS: couldn't mount because of unsupported "
603 "filesystem blocksize %d\n", blocksize);
604 err = -EINVAL;
605 goto failed_sbh;
606 }
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700607 if (sb->s_blocksize != blocksize) {
Martin K. Petersene1defc42009-05-22 17:17:49 -0400608 int hw_blocksize = bdev_logical_block_size(sb->s_bdev);
Ryusuke Konishie339ad32009-04-06 19:01:59 -0700609
610 if (blocksize < hw_blocksize) {
611 printk(KERN_ERR
612 "NILFS: blocksize %d too small for device "
613 "(sector-size = %d).\n",
614 blocksize, hw_blocksize);
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700615 err = -EINVAL;
Ryusuke Konishie339ad32009-04-06 19:01:59 -0700616 goto failed_sbh;
617 }
618 nilfs_release_super_block(nilfs);
619 sb_set_blocksize(sb, blocksize);
620
621 err = nilfs_load_super_block(nilfs, sb, blocksize, &sbp);
622 if (err)
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700623 goto out;
624 /* not failed_sbh; sbh is released automatically
625 when reloading fails. */
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700626 }
627 nilfs->ns_blocksize_bits = sb->s_blocksize_bits;
Ryusuke Konishi92c60cc2010-05-23 00:17:48 +0900628 nilfs->ns_blocksize = blocksize;
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700629
Ryusuke Konishi9b1fc4e42011-03-09 11:05:08 +0900630 get_random_bytes(&nilfs->ns_next_generation,
631 sizeof(nilfs->ns_next_generation));
632
Ryusuke Konishie339ad32009-04-06 19:01:59 -0700633 err = nilfs_store_disk_layout(nilfs, sbp);
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700634 if (err)
635 goto failed_sbh;
636
637 sb->s_maxbytes = nilfs_max_size(sb->s_blocksize_bits);
638
639 nilfs->ns_mount_state = le16_to_cpu(sbp->s_state);
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700640
Ryusuke Konishi843d63b2010-06-28 19:15:24 +0900641 err = nilfs_store_log_cursor(nilfs, sbp);
642 if (err)
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700643 goto failed_sbh;
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700644
Vyacheslav Dubeykodd70edb2014-08-08 14:20:55 -0700645 err = nilfs_sysfs_create_device_group(sb);
646 if (err)
647 goto failed_sbh;
648
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700649 set_nilfs_init(nilfs);
650 err = 0;
651 out:
652 up_write(&nilfs->ns_sem);
653 return err;
654
655 failed_sbh:
Ryusuke Konishie339ad32009-04-06 19:01:59 -0700656 nilfs_release_super_block(nilfs);
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700657 goto out;
658}
659
Jiro SEKIBAe902ec92010-01-30 18:06:35 +0900660int nilfs_discard_segments(struct the_nilfs *nilfs, __u64 *segnump,
661 size_t nsegs)
662{
663 sector_t seg_start, seg_end;
664 sector_t start = 0, nblocks = 0;
665 unsigned int sects_per_block;
666 __u64 *sn;
667 int ret = 0;
668
669 sects_per_block = (1 << nilfs->ns_blocksize_bits) /
670 bdev_logical_block_size(nilfs->ns_bdev);
671 for (sn = segnump; sn < segnump + nsegs; sn++) {
672 nilfs_get_segment_range(nilfs, *sn, &seg_start, &seg_end);
673
674 if (!nblocks) {
675 start = seg_start;
676 nblocks = seg_end - seg_start + 1;
677 } else if (start + nblocks == seg_start) {
678 nblocks += seg_end - seg_start + 1;
679 } else {
680 ret = blkdev_issue_discard(nilfs->ns_bdev,
681 start * sects_per_block,
682 nblocks * sects_per_block,
Christoph Hellwigdd3932e2010-09-16 20:51:46 +0200683 GFP_NOFS, 0);
Jiro SEKIBAe902ec92010-01-30 18:06:35 +0900684 if (ret < 0)
685 return ret;
686 nblocks = 0;
687 }
688 }
689 if (nblocks)
690 ret = blkdev_issue_discard(nilfs->ns_bdev,
691 start * sects_per_block,
692 nblocks * sects_per_block,
Christoph Hellwigdd3932e2010-09-16 20:51:46 +0200693 GFP_NOFS, 0);
Jiro SEKIBAe902ec92010-01-30 18:06:35 +0900694 return ret;
695}
696
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700697int nilfs_count_free_blocks(struct the_nilfs *nilfs, sector_t *nblocks)
698{
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700699 unsigned long ncleansegs;
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700700
Ryusuke Konishi365e2152010-12-27 00:07:30 +0900701 down_read(&NILFS_MDT(nilfs->ns_dat)->mi_sem);
Ryusuke Konishief7d4752009-11-13 08:45:32 +0900702 ncleansegs = nilfs_sufile_get_ncleansegs(nilfs->ns_sufile);
Ryusuke Konishi365e2152010-12-27 00:07:30 +0900703 up_read(&NILFS_MDT(nilfs->ns_dat)->mi_sem);
Ryusuke Konishief7d4752009-11-13 08:45:32 +0900704 *nblocks = (sector_t)ncleansegs * nilfs->ns_blocks_per_segment;
705 return 0;
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700706}
707
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700708int nilfs_near_disk_full(struct the_nilfs *nilfs)
709{
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700710 unsigned long ncleansegs, nincsegs;
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700711
Ryusuke Konishief7d4752009-11-13 08:45:32 +0900712 ncleansegs = nilfs_sufile_get_ncleansegs(nilfs->ns_sufile);
713 nincsegs = atomic_read(&nilfs->ns_ndirtyblks) /
714 nilfs->ns_blocks_per_segment + 1;
715
716 return ncleansegs <= nilfs->ns_nrsvsegs + nincsegs;
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700717}
718
Ryusuke Konishiba65ae42010-08-14 12:59:15 +0900719struct nilfs_root *nilfs_lookup_root(struct the_nilfs *nilfs, __u64 cno)
Ryusuke Konishi6dd47402009-06-08 01:39:31 +0900720{
Ryusuke Konishiba65ae42010-08-14 12:59:15 +0900721 struct rb_node *n;
722 struct nilfs_root *root;
Ryusuke Konishi6dd47402009-06-08 01:39:31 +0900723
Ryusuke Konishiba65ae42010-08-14 12:59:15 +0900724 spin_lock(&nilfs->ns_cptree_lock);
725 n = nilfs->ns_cptree.rb_node;
726 while (n) {
727 root = rb_entry(n, struct nilfs_root, rb_node);
Ryusuke Konishi6dd47402009-06-08 01:39:31 +0900728
Ryusuke Konishiba65ae42010-08-14 12:59:15 +0900729 if (cno < root->cno) {
730 n = n->rb_left;
731 } else if (cno > root->cno) {
732 n = n->rb_right;
733 } else {
734 atomic_inc(&root->count);
735 spin_unlock(&nilfs->ns_cptree_lock);
736 return root;
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700737 }
738 }
Ryusuke Konishiba65ae42010-08-14 12:59:15 +0900739 spin_unlock(&nilfs->ns_cptree_lock);
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700740
Ryusuke Konishiba65ae42010-08-14 12:59:15 +0900741 return NULL;
742}
743
744struct nilfs_root *
745nilfs_find_or_create_root(struct the_nilfs *nilfs, __u64 cno)
746{
747 struct rb_node **p, *parent;
748 struct nilfs_root *root, *new;
Vyacheslav Dubeykodd70edb2014-08-08 14:20:55 -0700749 int err;
Ryusuke Konishiba65ae42010-08-14 12:59:15 +0900750
751 root = nilfs_lookup_root(nilfs, cno);
752 if (root)
753 return root;
754
Vyacheslav Dubeykodd70edb2014-08-08 14:20:55 -0700755 new = kzalloc(sizeof(*root), GFP_KERNEL);
Ryusuke Konishiba65ae42010-08-14 12:59:15 +0900756 if (!new)
757 return NULL;
758
759 spin_lock(&nilfs->ns_cptree_lock);
760
761 p = &nilfs->ns_cptree.rb_node;
762 parent = NULL;
763
764 while (*p) {
765 parent = *p;
766 root = rb_entry(parent, struct nilfs_root, rb_node);
767
768 if (cno < root->cno) {
769 p = &(*p)->rb_left;
770 } else if (cno > root->cno) {
771 p = &(*p)->rb_right;
772 } else {
773 atomic_inc(&root->count);
774 spin_unlock(&nilfs->ns_cptree_lock);
775 kfree(new);
776 return root;
777 }
778 }
779
780 new->cno = cno;
781 new->ifile = NULL;
782 new->nilfs = nilfs;
783 atomic_set(&new->count, 1);
Vyacheslav Dubeykoe5f7f842013-07-03 15:08:06 -0700784 atomic64_set(&new->inodes_count, 0);
785 atomic64_set(&new->blocks_count, 0);
Ryusuke Konishiba65ae42010-08-14 12:59:15 +0900786
787 rb_link_node(&new->rb_node, parent, p);
788 rb_insert_color(&new->rb_node, &nilfs->ns_cptree);
789
790 spin_unlock(&nilfs->ns_cptree_lock);
791
Vyacheslav Dubeykodd70edb2014-08-08 14:20:55 -0700792 err = nilfs_sysfs_create_snapshot_group(new);
793 if (err) {
794 kfree(new);
795 new = NULL;
796 }
797
Ryusuke Konishiba65ae42010-08-14 12:59:15 +0900798 return new;
799}
800
801void nilfs_put_root(struct nilfs_root *root)
802{
803 if (atomic_dec_and_test(&root->count)) {
804 struct the_nilfs *nilfs = root->nilfs;
805
Vyacheslav Dubeykodd70edb2014-08-08 14:20:55 -0700806 nilfs_sysfs_delete_snapshot_group(root);
807
Ryusuke Konishiba65ae42010-08-14 12:59:15 +0900808 spin_lock(&nilfs->ns_cptree_lock);
809 rb_erase(&root->rb_node, &nilfs->ns_cptree);
810 spin_unlock(&nilfs->ns_cptree_lock);
Markus Elfring72b99182014-12-10 15:54:31 -0800811 iput(root->ifile);
Ryusuke Konishiba65ae42010-08-14 12:59:15 +0900812
813 kfree(root);
814 }
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700815}