blob: ba7c10c917fcd1545a668c53f6abb2819b04f3bc [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 Konishie339ad32009-04-06 19:01:59 -070028#include <linux/crc32.h>
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -070029#include "nilfs.h"
30#include "segment.h"
31#include "alloc.h"
32#include "cpfile.h"
33#include "sufile.h"
34#include "dat.h"
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -070035#include "segbuf.h"
36
Ryusuke Konishi33c8e572009-06-08 01:39:29 +090037
38static LIST_HEAD(nilfs_objects);
39static DEFINE_SPINLOCK(nilfs_lock);
40
Ryusuke Konishi6c1251602010-06-28 19:15:26 +090041static int nilfs_valid_sb(struct nilfs_super_block *sbp);
42
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -070043void nilfs_set_last_segment(struct the_nilfs *nilfs,
44 sector_t start_blocknr, u64 seq, __u64 cno)
45{
46 spin_lock(&nilfs->ns_last_segment_lock);
47 nilfs->ns_last_pseg = start_blocknr;
48 nilfs->ns_last_seq = seq;
49 nilfs->ns_last_cno = cno;
Ryusuke Konishi32502042010-06-29 14:42:13 +090050
51 if (!nilfs_sb_dirty(nilfs)) {
52 if (nilfs->ns_prev_seq == nilfs->ns_last_seq)
53 goto stay_cursor;
54
55 set_nilfs_sb_dirty(nilfs);
56 }
57 nilfs->ns_prev_seq = nilfs->ns_last_seq;
58
59 stay_cursor:
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -070060 spin_unlock(&nilfs->ns_last_segment_lock);
61}
62
63/**
64 * alloc_nilfs - allocate the_nilfs structure
65 * @bdev: block device to which the_nilfs is related
66 *
67 * alloc_nilfs() allocates memory for the_nilfs and
68 * initializes its reference count and locks.
69 *
70 * Return Value: On success, pointer to the_nilfs is returned.
71 * On error, NULL is returned.
72 */
Ryusuke Konishi33c8e572009-06-08 01:39:29 +090073static struct the_nilfs *alloc_nilfs(struct block_device *bdev)
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -070074{
75 struct the_nilfs *nilfs;
76
77 nilfs = kzalloc(sizeof(*nilfs), GFP_KERNEL);
78 if (!nilfs)
79 return NULL;
80
81 nilfs->ns_bdev = bdev;
82 atomic_set(&nilfs->ns_count, 1);
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -070083 atomic_set(&nilfs->ns_ndirtyblks, 0);
84 init_rwsem(&nilfs->ns_sem);
Ryusuke Konishie59399d2009-06-08 01:39:32 +090085 init_rwsem(&nilfs->ns_super_sem);
Ryusuke Konishiaa7dfb82009-06-08 01:39:33 +090086 mutex_init(&nilfs->ns_mount_mutex);
Ryusuke Konishi027d6402009-08-02 22:45:33 +090087 init_rwsem(&nilfs->ns_writer_sem);
Ryusuke Konishi33c8e572009-06-08 01:39:29 +090088 INIT_LIST_HEAD(&nilfs->ns_list);
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -070089 INIT_LIST_HEAD(&nilfs->ns_supers);
90 spin_lock_init(&nilfs->ns_last_segment_lock);
91 nilfs->ns_gc_inodes_h = NULL;
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -070092 init_rwsem(&nilfs->ns_segctor_sem);
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -070093
94 return nilfs;
95}
96
97/**
Ryusuke Konishi33c8e572009-06-08 01:39:29 +090098 * find_or_create_nilfs - find or create nilfs object
99 * @bdev: block device to which the_nilfs is related
100 *
101 * find_nilfs() looks up an existent nilfs object created on the
102 * device and gets the reference count of the object. If no nilfs object
103 * is found on the device, a new nilfs object is allocated.
104 *
105 * Return Value: On success, pointer to the nilfs object is returned.
106 * On error, NULL is returned.
107 */
108struct the_nilfs *find_or_create_nilfs(struct block_device *bdev)
109{
110 struct the_nilfs *nilfs, *new = NULL;
111
112 retry:
113 spin_lock(&nilfs_lock);
114 list_for_each_entry(nilfs, &nilfs_objects, ns_list) {
115 if (nilfs->ns_bdev == bdev) {
116 get_nilfs(nilfs);
117 spin_unlock(&nilfs_lock);
118 if (new)
119 put_nilfs(new);
120 return nilfs; /* existing object */
121 }
122 }
123 if (new) {
124 list_add_tail(&new->ns_list, &nilfs_objects);
125 spin_unlock(&nilfs_lock);
126 return new; /* new object */
127 }
128 spin_unlock(&nilfs_lock);
129
130 new = alloc_nilfs(bdev);
131 if (new)
132 goto retry;
133 return NULL; /* insufficient memory */
134}
135
136/**
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700137 * put_nilfs - release a reference to the_nilfs
138 * @nilfs: the_nilfs structure to be released
139 *
140 * put_nilfs() decrements a reference counter of the_nilfs.
141 * If the reference count reaches zero, the_nilfs is freed.
142 */
143void put_nilfs(struct the_nilfs *nilfs)
144{
Ryusuke Konishi33c8e572009-06-08 01:39:29 +0900145 spin_lock(&nilfs_lock);
146 if (!atomic_dec_and_test(&nilfs->ns_count)) {
147 spin_unlock(&nilfs_lock);
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700148 return;
Ryusuke Konishi33c8e572009-06-08 01:39:29 +0900149 }
150 list_del_init(&nilfs->ns_list);
151 spin_unlock(&nilfs_lock);
152
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700153 /*
Ryusuke Konishi33c8e572009-06-08 01:39:29 +0900154 * Increment of ns_count never occurs below because the caller
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700155 * of get_nilfs() holds at least one reference to the_nilfs.
156 * Thus its exclusion control is not required here.
157 */
Ryusuke Konishi33c8e572009-06-08 01:39:29 +0900158
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700159 might_sleep();
160 if (nilfs_loaded(nilfs)) {
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700161 nilfs_mdt_destroy(nilfs->ns_sufile);
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700162 nilfs_mdt_destroy(nilfs->ns_cpfile);
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700163 nilfs_mdt_destroy(nilfs->ns_dat);
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700164 nilfs_mdt_destroy(nilfs->ns_gc_dat);
165 }
166 if (nilfs_init(nilfs)) {
167 nilfs_destroy_gccache(nilfs);
Ryusuke Konishie339ad32009-04-06 19:01:59 -0700168 brelse(nilfs->ns_sbh[0]);
169 brelse(nilfs->ns_sbh[1]);
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700170 }
171 kfree(nilfs);
172}
173
Ryusuke Konishi8b940252010-05-23 01:39:02 +0900174static int nilfs_load_super_root(struct the_nilfs *nilfs, sector_t sr_block)
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700175{
176 struct buffer_head *bh_sr;
177 struct nilfs_super_root *raw_sr;
Ryusuke Konishie339ad32009-04-06 19:01:59 -0700178 struct nilfs_super_block **sbp = nilfs->ns_sbp;
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700179 unsigned dat_entry_size, segment_usage_size, checkpoint_size;
180 unsigned inode_size;
181 int err;
182
Ryusuke Konishi8b940252010-05-23 01:39:02 +0900183 err = nilfs_read_super_root_block(nilfs, sr_block, &bh_sr, 1);
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700184 if (unlikely(err))
185 return err;
186
187 down_read(&nilfs->ns_sem);
Ryusuke Konishie339ad32009-04-06 19:01:59 -0700188 dat_entry_size = le16_to_cpu(sbp[0]->s_dat_entry_size);
189 checkpoint_size = le16_to_cpu(sbp[0]->s_checkpoint_size);
190 segment_usage_size = le16_to_cpu(sbp[0]->s_segment_usage_size);
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700191 up_read(&nilfs->ns_sem);
192
193 inode_size = nilfs->ns_inode_size;
194
195 err = -ENOMEM;
Ryusuke Konishi79739562009-11-12 23:56:43 +0900196 nilfs->ns_dat = nilfs_dat_new(nilfs, dat_entry_size);
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700197 if (unlikely(!nilfs->ns_dat))
198 goto failed;
199
Ryusuke Konishi79739562009-11-12 23:56:43 +0900200 nilfs->ns_gc_dat = nilfs_dat_new(nilfs, dat_entry_size);
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700201 if (unlikely(!nilfs->ns_gc_dat))
202 goto failed_dat;
203
Ryusuke Konishi79739562009-11-12 23:56:43 +0900204 nilfs->ns_cpfile = nilfs_cpfile_new(nilfs, checkpoint_size);
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700205 if (unlikely(!nilfs->ns_cpfile))
206 goto failed_gc_dat;
207
Ryusuke Konishi79739562009-11-12 23:56:43 +0900208 nilfs->ns_sufile = nilfs_sufile_new(nilfs, segment_usage_size);
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700209 if (unlikely(!nilfs->ns_sufile))
210 goto failed_cpfile;
211
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700212 nilfs_mdt_set_shadow(nilfs->ns_dat, nilfs->ns_gc_dat);
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700213
Ryusuke Konishi8707df32009-11-13 01:36:56 +0900214 err = nilfs_dat_read(nilfs->ns_dat, (void *)bh_sr->b_data +
215 NILFS_SR_DAT_OFFSET(inode_size));
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700216 if (unlikely(err))
217 goto failed_sufile;
218
Ryusuke Konishi8707df32009-11-13 01:36:56 +0900219 err = nilfs_cpfile_read(nilfs->ns_cpfile, (void *)bh_sr->b_data +
220 NILFS_SR_CPFILE_OFFSET(inode_size));
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700221 if (unlikely(err))
222 goto failed_sufile;
223
Ryusuke Konishi8707df32009-11-13 01:36:56 +0900224 err = nilfs_sufile_read(nilfs->ns_sufile, (void *)bh_sr->b_data +
225 NILFS_SR_SUFILE_OFFSET(inode_size));
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700226 if (unlikely(err))
227 goto failed_sufile;
228
229 raw_sr = (struct nilfs_super_root *)bh_sr->b_data;
230 nilfs->ns_nongc_ctime = le64_to_cpu(raw_sr->sr_nongc_ctime);
231
232 failed:
233 brelse(bh_sr);
234 return err;
235
236 failed_sufile:
237 nilfs_mdt_destroy(nilfs->ns_sufile);
238
239 failed_cpfile:
240 nilfs_mdt_destroy(nilfs->ns_cpfile);
241
242 failed_gc_dat:
243 nilfs_mdt_destroy(nilfs->ns_gc_dat);
244
245 failed_dat:
246 nilfs_mdt_destroy(nilfs->ns_dat);
247 goto failed;
248}
249
250static void nilfs_init_recovery_info(struct nilfs_recovery_info *ri)
251{
252 memset(ri, 0, sizeof(*ri));
253 INIT_LIST_HEAD(&ri->ri_used_segments);
254}
255
256static void nilfs_clear_recovery_info(struct nilfs_recovery_info *ri)
257{
258 nilfs_dispose_segment_list(&ri->ri_used_segments);
259}
260
261/**
Ryusuke Konishi843d63b2010-06-28 19:15:24 +0900262 * nilfs_store_log_cursor - load log cursor from a super block
263 * @nilfs: nilfs object
264 * @sbp: buffer storing super block to be read
265 *
266 * nilfs_store_log_cursor() reads the last position of the log
267 * containing a super root from a given super block, and initializes
268 * relevant information on the nilfs object preparatory for log
269 * scanning and recovery.
270 */
271static int nilfs_store_log_cursor(struct the_nilfs *nilfs,
272 struct nilfs_super_block *sbp)
273{
274 int ret = 0;
275
276 nilfs->ns_last_pseg = le64_to_cpu(sbp->s_last_pseg);
277 nilfs->ns_last_cno = le64_to_cpu(sbp->s_last_cno);
278 nilfs->ns_last_seq = le64_to_cpu(sbp->s_last_seq);
279
Ryusuke Konishi32502042010-06-29 14:42:13 +0900280 nilfs->ns_prev_seq = nilfs->ns_last_seq;
Ryusuke Konishi843d63b2010-06-28 19:15:24 +0900281 nilfs->ns_seg_seq = nilfs->ns_last_seq;
282 nilfs->ns_segnum =
283 nilfs_get_segnum_of_block(nilfs, nilfs->ns_last_pseg);
284 nilfs->ns_cno = nilfs->ns_last_cno + 1;
285 if (nilfs->ns_segnum >= nilfs->ns_nsegments) {
286 printk(KERN_ERR "NILFS invalid last segment number.\n");
287 ret = -EINVAL;
288 }
289 return ret;
290}
291
292/**
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700293 * load_nilfs - load and recover the nilfs
294 * @nilfs: the_nilfs structure to be released
295 * @sbi: nilfs_sb_info used to recover past segment
296 *
297 * load_nilfs() searches and load the latest super root,
298 * attaches the last segment, and does recovery if needed.
299 * The caller must call this exclusively for simultaneous mounts.
300 */
301int load_nilfs(struct the_nilfs *nilfs, struct nilfs_sb_info *sbi)
302{
303 struct nilfs_recovery_info ri;
304 unsigned int s_flags = sbi->s_super->s_flags;
305 int really_read_only = bdev_read_only(nilfs->ns_bdev);
Ryusuke Konishia057d2c2009-11-19 19:58:46 +0900306 int valid_fs = nilfs_valid_fs(nilfs);
Ryusuke Konishif50a4c82009-11-19 16:58:40 +0900307 int err;
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700308
Ryusuke Konishi02345762009-11-20 03:28:01 +0900309 if (nilfs_loaded(nilfs)) {
310 if (valid_fs ||
311 ((s_flags & MS_RDONLY) && nilfs_test_opt(sbi, NORECOVERY)))
312 return 0;
313 printk(KERN_ERR "NILFS: the filesystem is in an incomplete "
314 "recovery state.\n");
315 return -EINVAL;
316 }
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700317
Ryusuke Konishif50a4c82009-11-19 16:58:40 +0900318 if (!valid_fs) {
319 printk(KERN_WARNING "NILFS warning: mounting unchecked fs\n");
320 if (s_flags & MS_RDONLY) {
321 printk(KERN_INFO "NILFS: INFO: recovery "
322 "required for readonly filesystem.\n");
323 printk(KERN_INFO "NILFS: write access will "
324 "be enabled during recovery.\n");
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700325 }
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700326 }
327
Ryusuke Konishif50a4c82009-11-19 16:58:40 +0900328 nilfs_init_recovery_info(&ri);
329
Ryusuke Konishi8b940252010-05-23 01:39:02 +0900330 err = nilfs_search_super_root(nilfs, &ri);
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700331 if (unlikely(err)) {
Ryusuke Konishi6c1251602010-06-28 19:15:26 +0900332 struct nilfs_super_block **sbp = nilfs->ns_sbp;
333 int blocksize;
334
335 if (err != -EINVAL)
336 goto scan_error;
337
338 if (!nilfs_valid_sb(sbp[1])) {
339 printk(KERN_WARNING
340 "NILFS warning: unable to fall back to spare"
341 "super block\n");
342 goto scan_error;
343 }
344 printk(KERN_INFO
345 "NILFS: try rollback from an earlier position\n");
346
347 /*
348 * restore super block with its spare and reconfigure
349 * relevant states of the nilfs object.
350 */
351 memcpy(sbp[0], sbp[1], nilfs->ns_sbsize);
352 nilfs->ns_crc_seed = le32_to_cpu(sbp[0]->s_crc_seed);
353 nilfs->ns_sbwtime = le64_to_cpu(sbp[0]->s_wtime);
354
355 /* verify consistency between two super blocks */
356 blocksize = BLOCK_SIZE << le32_to_cpu(sbp[0]->s_log_block_size);
357 if (blocksize != nilfs->ns_blocksize) {
358 printk(KERN_WARNING
359 "NILFS warning: blocksize differs between "
360 "two super blocks (%d != %d)\n",
361 blocksize, nilfs->ns_blocksize);
362 goto scan_error;
363 }
364
365 err = nilfs_store_log_cursor(nilfs, sbp[0]);
366 if (err)
367 goto scan_error;
368
369 /* drop clean flag to allow roll-forward and recovery */
370 nilfs->ns_mount_state &= ~NILFS_VALID_FS;
371 valid_fs = 0;
372
373 err = nilfs_search_super_root(nilfs, &ri);
374 if (err)
375 goto scan_error;
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700376 }
377
Ryusuke Konishi8b940252010-05-23 01:39:02 +0900378 err = nilfs_load_super_root(nilfs, ri.ri_super_root);
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700379 if (unlikely(err)) {
380 printk(KERN_ERR "NILFS: error loading super root.\n");
381 goto failed;
382 }
383
Ryusuke Konishif50a4c82009-11-19 16:58:40 +0900384 if (valid_fs)
385 goto skip_recovery;
386
387 if (s_flags & MS_RDONLY) {
Ryusuke Konishic5ca48a2010-07-22 03:22:20 +0900388 __u64 features;
389
Ryusuke Konishi02345762009-11-20 03:28:01 +0900390 if (nilfs_test_opt(sbi, NORECOVERY)) {
391 printk(KERN_INFO "NILFS: norecovery option specified. "
392 "skipping roll-forward recovery\n");
393 goto skip_recovery;
394 }
Ryusuke Konishic5ca48a2010-07-22 03:22:20 +0900395 features = le64_to_cpu(nilfs->ns_sbp[0]->s_feature_compat_ro) &
396 ~NILFS_FEATURE_COMPAT_RO_SUPP;
397 if (features) {
398 printk(KERN_ERR "NILFS: couldn't proceed with "
399 "recovery because of unsupported optional "
400 "features (%llx)\n",
401 (unsigned long long)features);
402 err = -EROFS;
403 goto failed_unload;
404 }
Ryusuke Konishif50a4c82009-11-19 16:58:40 +0900405 if (really_read_only) {
406 printk(KERN_ERR "NILFS: write access "
407 "unavailable, cannot proceed.\n");
408 err = -EROFS;
409 goto failed_unload;
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700410 }
Ryusuke Konishif50a4c82009-11-19 16:58:40 +0900411 sbi->s_super->s_flags &= ~MS_RDONLY;
Ryusuke Konishi02345762009-11-20 03:28:01 +0900412 } else if (nilfs_test_opt(sbi, NORECOVERY)) {
413 printk(KERN_ERR "NILFS: recovery cancelled because norecovery "
414 "option was specified for a read/write mount\n");
415 err = -EINVAL;
416 goto failed_unload;
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700417 }
418
Ryusuke Konishiaee5ce22010-05-23 12:21:57 +0900419 err = nilfs_salvage_orphan_logs(nilfs, sbi, &ri);
Ryusuke Konishif50a4c82009-11-19 16:58:40 +0900420 if (err)
421 goto failed_unload;
422
423 down_write(&nilfs->ns_sem);
Ryusuke Konishi7ecaa462010-06-28 17:49:29 +0900424 nilfs->ns_mount_state |= NILFS_VALID_FS; /* set "clean" flag */
425 err = nilfs_cleanup_super(sbi);
Ryusuke Konishif50a4c82009-11-19 16:58:40 +0900426 up_write(&nilfs->ns_sem);
427
428 if (err) {
429 printk(KERN_ERR "NILFS: failed to update super block. "
430 "recovery unfinished.\n");
431 goto failed_unload;
432 }
433 printk(KERN_INFO "NILFS: recovery complete.\n");
434
435 skip_recovery:
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700436 set_nilfs_loaded(nilfs);
Ryusuke Konishif50a4c82009-11-19 16:58:40 +0900437 nilfs_clear_recovery_info(&ri);
438 sbi->s_super->s_flags = s_flags;
439 return 0;
440
Ryusuke Konishi6c1251602010-06-28 19:15:26 +0900441 scan_error:
442 printk(KERN_ERR "NILFS: error searching super root.\n");
443 goto failed;
444
Ryusuke Konishif50a4c82009-11-19 16:58:40 +0900445 failed_unload:
446 nilfs_mdt_destroy(nilfs->ns_cpfile);
447 nilfs_mdt_destroy(nilfs->ns_sufile);
448 nilfs_mdt_destroy(nilfs->ns_dat);
Ryusuke Konishi4afc3132010-08-29 01:55:38 +0900449 nilfs_mdt_destroy(nilfs->ns_gc_dat);
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700450
451 failed:
452 nilfs_clear_recovery_info(&ri);
453 sbi->s_super->s_flags = s_flags;
454 return err;
455}
456
457static unsigned long long nilfs_max_size(unsigned int blkbits)
458{
459 unsigned int max_bits;
460 unsigned long long res = MAX_LFS_FILESIZE; /* page cache limit */
461
462 max_bits = blkbits + NILFS_BMAP_KEY_BIT; /* bmap size limit */
463 if (max_bits < 64)
464 res = min_t(unsigned long long, res, (1ULL << max_bits) - 1);
465 return res;
466}
467
Ryusuke Konishie339ad32009-04-06 19:01:59 -0700468static int nilfs_store_disk_layout(struct the_nilfs *nilfs,
469 struct nilfs_super_block *sbp)
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700470{
471 if (le32_to_cpu(sbp->s_rev_level) != NILFS_CURRENT_REV) {
472 printk(KERN_ERR "NILFS: revision mismatch "
473 "(superblock rev.=%d.%d, current rev.=%d.%d). "
474 "Please check the version of mkfs.nilfs.\n",
475 le32_to_cpu(sbp->s_rev_level),
476 le16_to_cpu(sbp->s_minor_rev_level),
477 NILFS_CURRENT_REV, NILFS_MINOR_REV);
478 return -EINVAL;
479 }
Ryusuke Konishie339ad32009-04-06 19:01:59 -0700480 nilfs->ns_sbsize = le16_to_cpu(sbp->s_bytes);
481 if (nilfs->ns_sbsize > BLOCK_SIZE)
482 return -EINVAL;
483
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700484 nilfs->ns_inode_size = le16_to_cpu(sbp->s_inode_size);
485 nilfs->ns_first_ino = le32_to_cpu(sbp->s_first_ino);
486
487 nilfs->ns_blocks_per_segment = le32_to_cpu(sbp->s_blocks_per_segment);
488 if (nilfs->ns_blocks_per_segment < NILFS_SEG_MIN_BLOCKS) {
Ryusuke Konishic91cea12010-03-14 04:01:27 +0900489 printk(KERN_ERR "NILFS: too short segment.\n");
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700490 return -EINVAL;
491 }
492
493 nilfs->ns_first_data_block = le64_to_cpu(sbp->s_first_data_block);
494 nilfs->ns_nsegments = le64_to_cpu(sbp->s_nsegments);
495 nilfs->ns_r_segments_percentage =
496 le32_to_cpu(sbp->s_r_segments_percentage);
497 nilfs->ns_nrsvsegs =
498 max_t(unsigned long, NILFS_MIN_NRSVSEGS,
499 DIV_ROUND_UP(nilfs->ns_nsegments *
500 nilfs->ns_r_segments_percentage, 100));
501 nilfs->ns_crc_seed = le32_to_cpu(sbp->s_crc_seed);
502 return 0;
503}
504
Ryusuke Konishie339ad32009-04-06 19:01:59 -0700505static int nilfs_valid_sb(struct nilfs_super_block *sbp)
506{
507 static unsigned char sum[4];
508 const int sumoff = offsetof(struct nilfs_super_block, s_sum);
509 size_t bytes;
510 u32 crc;
511
512 if (!sbp || le16_to_cpu(sbp->s_magic) != NILFS_SUPER_MAGIC)
513 return 0;
514 bytes = le16_to_cpu(sbp->s_bytes);
515 if (bytes > BLOCK_SIZE)
516 return 0;
517 crc = crc32_le(le32_to_cpu(sbp->s_crc_seed), (unsigned char *)sbp,
518 sumoff);
519 crc = crc32_le(crc, sum, 4);
520 crc = crc32_le(crc, (unsigned char *)sbp + sumoff + 4,
521 bytes - sumoff - 4);
522 return crc == le32_to_cpu(sbp->s_sum);
523}
524
525static int nilfs_sb2_bad_offset(struct nilfs_super_block *sbp, u64 offset)
526{
527 return offset < ((le64_to_cpu(sbp->s_nsegments) *
528 le32_to_cpu(sbp->s_blocks_per_segment)) <<
529 (le32_to_cpu(sbp->s_log_block_size) + 10));
530}
531
532static void nilfs_release_super_block(struct the_nilfs *nilfs)
533{
534 int i;
535
536 for (i = 0; i < 2; i++) {
537 if (nilfs->ns_sbp[i]) {
538 brelse(nilfs->ns_sbh[i]);
539 nilfs->ns_sbh[i] = NULL;
540 nilfs->ns_sbp[i] = NULL;
541 }
542 }
543}
544
545void nilfs_fall_back_super_block(struct the_nilfs *nilfs)
546{
547 brelse(nilfs->ns_sbh[0]);
548 nilfs->ns_sbh[0] = nilfs->ns_sbh[1];
549 nilfs->ns_sbp[0] = nilfs->ns_sbp[1];
550 nilfs->ns_sbh[1] = NULL;
551 nilfs->ns_sbp[1] = NULL;
552}
553
554void nilfs_swap_super_block(struct the_nilfs *nilfs)
555{
556 struct buffer_head *tsbh = nilfs->ns_sbh[0];
557 struct nilfs_super_block *tsbp = nilfs->ns_sbp[0];
558
559 nilfs->ns_sbh[0] = nilfs->ns_sbh[1];
560 nilfs->ns_sbp[0] = nilfs->ns_sbp[1];
561 nilfs->ns_sbh[1] = tsbh;
562 nilfs->ns_sbp[1] = tsbp;
563}
564
565static int nilfs_load_super_block(struct the_nilfs *nilfs,
566 struct super_block *sb, int blocksize,
567 struct nilfs_super_block **sbpp)
568{
569 struct nilfs_super_block **sbp = nilfs->ns_sbp;
570 struct buffer_head **sbh = nilfs->ns_sbh;
571 u64 sb2off = NILFS_SB2_OFFSET_BYTES(nilfs->ns_bdev->bd_inode->i_size);
572 int valid[2], swp = 0;
573
574 sbp[0] = nilfs_read_super_block(sb, NILFS_SB_OFFSET_BYTES, blocksize,
575 &sbh[0]);
576 sbp[1] = nilfs_read_super_block(sb, sb2off, blocksize, &sbh[1]);
577
578 if (!sbp[0]) {
579 if (!sbp[1]) {
580 printk(KERN_ERR "NILFS: unable to read superblock\n");
581 return -EIO;
582 }
583 printk(KERN_WARNING
584 "NILFS warning: unable to read primary superblock\n");
585 } else if (!sbp[1])
586 printk(KERN_WARNING
587 "NILFS warning: unable to read secondary superblock\n");
588
Ryusuke Konishi25294d82010-05-01 11:54:21 +0900589 /*
590 * Compare two super blocks and set 1 in swp if the secondary
591 * super block is valid and newer. Otherwise, set 0 in swp.
592 */
Ryusuke Konishie339ad32009-04-06 19:01:59 -0700593 valid[0] = nilfs_valid_sb(sbp[0]);
594 valid[1] = nilfs_valid_sb(sbp[1]);
Ryusuke Konishi25294d82010-05-01 11:54:21 +0900595 swp = valid[1] && (!valid[0] ||
596 le64_to_cpu(sbp[1]->s_last_cno) >
597 le64_to_cpu(sbp[0]->s_last_cno));
Ryusuke Konishie339ad32009-04-06 19:01:59 -0700598
599 if (valid[swp] && nilfs_sb2_bad_offset(sbp[swp], sb2off)) {
600 brelse(sbh[1]);
601 sbh[1] = NULL;
602 sbp[1] = NULL;
603 swp = 0;
604 }
605 if (!valid[swp]) {
606 nilfs_release_super_block(nilfs);
607 printk(KERN_ERR "NILFS: Can't find nilfs on dev %s.\n",
608 sb->s_id);
609 return -EINVAL;
610 }
611
Ryusuke Konishiea1a16f2010-08-15 20:16:11 +0900612 if (!valid[!swp])
Ryusuke Konishie339ad32009-04-06 19:01:59 -0700613 printk(KERN_WARNING "NILFS warning: broken superblock. "
614 "using spare superblock.\n");
Ryusuke Konishiea1a16f2010-08-15 20:16:11 +0900615 if (swp)
Ryusuke Konishie339ad32009-04-06 19:01:59 -0700616 nilfs_swap_super_block(nilfs);
Ryusuke Konishie339ad32009-04-06 19:01:59 -0700617
Jiro SEKIBAb2ac86e2010-06-28 17:49:33 +0900618 nilfs->ns_sbwcount = 0;
619 nilfs->ns_sbwtime = le64_to_cpu(sbp[0]->s_wtime);
Ryusuke Konishie339ad32009-04-06 19:01:59 -0700620 nilfs->ns_prot_seq = le64_to_cpu(sbp[valid[1] & !swp]->s_last_seq);
621 *sbpp = sbp[0];
622 return 0;
623}
624
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700625/**
626 * init_nilfs - initialize a NILFS instance.
627 * @nilfs: the_nilfs structure
628 * @sbi: nilfs_sb_info
629 * @sb: super block
630 * @data: mount options
631 *
632 * init_nilfs() performs common initialization per block device (e.g.
633 * reading the super block, getting disk layout information, initializing
634 * shared fields in the_nilfs). It takes on some portion of the jobs
635 * typically done by a fill_super() routine. This division arises from
636 * the nature that multiple NILFS instances may be simultaneously
637 * mounted on a device.
638 * For multiple mounts on the same device, only the first mount
639 * invokes these tasks.
640 *
641 * Return Value: On success, 0 is returned. On error, a negative error
642 * code is returned.
643 */
644int init_nilfs(struct the_nilfs *nilfs, struct nilfs_sb_info *sbi, char *data)
645{
646 struct super_block *sb = sbi->s_super;
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700647 struct nilfs_super_block *sbp;
648 struct backing_dev_info *bdi;
649 int blocksize;
Ryusuke Konishie339ad32009-04-06 19:01:59 -0700650 int err;
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700651
652 down_write(&nilfs->ns_sem);
653 if (nilfs_init(nilfs)) {
654 /* Load values from existing the_nilfs */
Ryusuke Konishie339ad32009-04-06 19:01:59 -0700655 sbp = nilfs->ns_sbp[0];
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700656 err = nilfs_store_magic_and_option(sb, sbp, data);
657 if (err)
658 goto out;
659
Ryusuke Konishic5ca48a2010-07-22 03:22:20 +0900660 err = nilfs_check_feature_compatibility(sb, sbp);
661 if (err)
662 goto out;
663
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700664 blocksize = BLOCK_SIZE << le32_to_cpu(sbp->s_log_block_size);
665 if (sb->s_blocksize != blocksize &&
666 !sb_set_blocksize(sb, blocksize)) {
667 printk(KERN_ERR "NILFS: blocksize %d unfit to device\n",
668 blocksize);
669 err = -EINVAL;
670 }
671 sb->s_maxbytes = nilfs_max_size(sb->s_blocksize_bits);
672 goto out;
673 }
674
Ryusuke Konishi89c0fd02010-07-25 22:44:53 +0900675 blocksize = sb_min_blocksize(sb, NILFS_MIN_BLOCK_SIZE);
Ryusuke Konishie339ad32009-04-06 19:01:59 -0700676 if (!blocksize) {
677 printk(KERN_ERR "NILFS: unable to set blocksize\n");
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700678 err = -EINVAL;
679 goto out;
680 }
Ryusuke Konishie339ad32009-04-06 19:01:59 -0700681 err = nilfs_load_super_block(nilfs, sb, blocksize, &sbp);
682 if (err)
683 goto out;
684
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700685 err = nilfs_store_magic_and_option(sb, sbp, data);
686 if (err)
687 goto failed_sbh;
688
Ryusuke Konishic5ca48a2010-07-22 03:22:20 +0900689 err = nilfs_check_feature_compatibility(sb, sbp);
690 if (err)
691 goto failed_sbh;
692
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700693 blocksize = BLOCK_SIZE << le32_to_cpu(sbp->s_log_block_size);
Ryusuke Konishi89c0fd02010-07-25 22:44:53 +0900694 if (blocksize < NILFS_MIN_BLOCK_SIZE ||
695 blocksize > NILFS_MAX_BLOCK_SIZE) {
696 printk(KERN_ERR "NILFS: couldn't mount because of unsupported "
697 "filesystem blocksize %d\n", blocksize);
698 err = -EINVAL;
699 goto failed_sbh;
700 }
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700701 if (sb->s_blocksize != blocksize) {
Martin K. Petersene1defc42009-05-22 17:17:49 -0400702 int hw_blocksize = bdev_logical_block_size(sb->s_bdev);
Ryusuke Konishie339ad32009-04-06 19:01:59 -0700703
704 if (blocksize < hw_blocksize) {
705 printk(KERN_ERR
706 "NILFS: blocksize %d too small for device "
707 "(sector-size = %d).\n",
708 blocksize, hw_blocksize);
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700709 err = -EINVAL;
Ryusuke Konishie339ad32009-04-06 19:01:59 -0700710 goto failed_sbh;
711 }
712 nilfs_release_super_block(nilfs);
713 sb_set_blocksize(sb, blocksize);
714
715 err = nilfs_load_super_block(nilfs, sb, blocksize, &sbp);
716 if (err)
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700717 goto out;
718 /* not failed_sbh; sbh is released automatically
719 when reloading fails. */
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700720 }
721 nilfs->ns_blocksize_bits = sb->s_blocksize_bits;
Ryusuke Konishi92c60cc2010-05-23 00:17:48 +0900722 nilfs->ns_blocksize = blocksize;
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700723
Ryusuke Konishie339ad32009-04-06 19:01:59 -0700724 err = nilfs_store_disk_layout(nilfs, sbp);
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700725 if (err)
726 goto failed_sbh;
727
728 sb->s_maxbytes = nilfs_max_size(sb->s_blocksize_bits);
729
730 nilfs->ns_mount_state = le16_to_cpu(sbp->s_state);
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700731
Jens Axboe2c96ce92009-09-15 09:43:56 +0200732 bdi = nilfs->ns_bdev->bd_inode->i_mapping->backing_dev_info;
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700733 nilfs->ns_bdi = bdi ? : &default_backing_dev_info;
734
Ryusuke Konishi843d63b2010-06-28 19:15:24 +0900735 err = nilfs_store_log_cursor(nilfs, sbp);
736 if (err)
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700737 goto failed_sbh;
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700738
739 /* Initialize gcinode cache */
740 err = nilfs_init_gccache(nilfs);
741 if (err)
742 goto failed_sbh;
743
744 set_nilfs_init(nilfs);
745 err = 0;
746 out:
747 up_write(&nilfs->ns_sem);
748 return err;
749
750 failed_sbh:
Ryusuke Konishie339ad32009-04-06 19:01:59 -0700751 nilfs_release_super_block(nilfs);
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700752 goto out;
753}
754
Jiro SEKIBAe902ec92010-01-30 18:06:35 +0900755int nilfs_discard_segments(struct the_nilfs *nilfs, __u64 *segnump,
756 size_t nsegs)
757{
758 sector_t seg_start, seg_end;
759 sector_t start = 0, nblocks = 0;
760 unsigned int sects_per_block;
761 __u64 *sn;
762 int ret = 0;
763
764 sects_per_block = (1 << nilfs->ns_blocksize_bits) /
765 bdev_logical_block_size(nilfs->ns_bdev);
766 for (sn = segnump; sn < segnump + nsegs; sn++) {
767 nilfs_get_segment_range(nilfs, *sn, &seg_start, &seg_end);
768
769 if (!nblocks) {
770 start = seg_start;
771 nblocks = seg_end - seg_start + 1;
772 } else if (start + nblocks == seg_start) {
773 nblocks += seg_end - seg_start + 1;
774 } else {
775 ret = blkdev_issue_discard(nilfs->ns_bdev,
776 start * sects_per_block,
777 nblocks * sects_per_block,
778 GFP_NOFS,
Ryusuke Konishi1cb0c922010-08-18 21:11:11 +0900779 BLKDEV_IFL_WAIT |
Stephen Rothwell6a47dc12010-04-29 09:32:00 +0200780 BLKDEV_IFL_BARRIER);
Jiro SEKIBAe902ec92010-01-30 18:06:35 +0900781 if (ret < 0)
782 return ret;
783 nblocks = 0;
784 }
785 }
786 if (nblocks)
787 ret = blkdev_issue_discard(nilfs->ns_bdev,
788 start * sects_per_block,
789 nblocks * sects_per_block,
Ryusuke Konishi1cb0c922010-08-18 21:11:11 +0900790 GFP_NOFS,
791 BLKDEV_IFL_WAIT | BLKDEV_IFL_BARRIER);
Jiro SEKIBAe902ec92010-01-30 18:06:35 +0900792 return ret;
793}
794
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700795int nilfs_count_free_blocks(struct the_nilfs *nilfs, sector_t *nblocks)
796{
797 struct inode *dat = nilfs_dat_inode(nilfs);
798 unsigned long ncleansegs;
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700799
800 down_read(&NILFS_MDT(dat)->mi_sem); /* XXX */
Ryusuke Konishief7d4752009-11-13 08:45:32 +0900801 ncleansegs = nilfs_sufile_get_ncleansegs(nilfs->ns_sufile);
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700802 up_read(&NILFS_MDT(dat)->mi_sem); /* XXX */
Ryusuke Konishief7d4752009-11-13 08:45:32 +0900803 *nblocks = (sector_t)ncleansegs * nilfs->ns_blocks_per_segment;
804 return 0;
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700805}
806
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700807int nilfs_near_disk_full(struct the_nilfs *nilfs)
808{
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700809 unsigned long ncleansegs, nincsegs;
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700810
Ryusuke Konishief7d4752009-11-13 08:45:32 +0900811 ncleansegs = nilfs_sufile_get_ncleansegs(nilfs->ns_sufile);
812 nincsegs = atomic_read(&nilfs->ns_ndirtyblks) /
813 nilfs->ns_blocks_per_segment + 1;
814
815 return ncleansegs <= nilfs->ns_nrsvsegs + nincsegs;
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700816}
817
Ryusuke Konishi6dd47402009-06-08 01:39:31 +0900818/**
819 * nilfs_find_sbinfo - find existing nilfs_sb_info structure
820 * @nilfs: nilfs object
821 * @rw_mount: mount type (non-zero value for read/write mount)
822 * @cno: checkpoint number (zero for read-only mount)
823 *
824 * nilfs_find_sbinfo() returns the nilfs_sb_info structure which
825 * @rw_mount and @cno (in case of snapshots) matched. If no instance
826 * was found, NULL is returned. Although the super block instance can
827 * be unmounted after this function returns, the nilfs_sb_info struct
828 * is kept on memory until nilfs_put_sbinfo() is called.
829 */
830struct nilfs_sb_info *nilfs_find_sbinfo(struct the_nilfs *nilfs,
831 int rw_mount, __u64 cno)
832{
833 struct nilfs_sb_info *sbi;
834
Ryusuke Konishie59399d2009-06-08 01:39:32 +0900835 down_read(&nilfs->ns_super_sem);
Ryusuke Konishi6dd47402009-06-08 01:39:31 +0900836 /*
837 * The SNAPSHOT flag and sb->s_flags are supposed to be
Ryusuke Konishie59399d2009-06-08 01:39:32 +0900838 * protected with nilfs->ns_super_sem.
Ryusuke Konishi6dd47402009-06-08 01:39:31 +0900839 */
840 sbi = nilfs->ns_current;
841 if (rw_mount) {
842 if (sbi && !(sbi->s_super->s_flags & MS_RDONLY))
843 goto found; /* read/write mount */
844 else
845 goto out;
846 } else if (cno == 0) {
847 if (sbi && (sbi->s_super->s_flags & MS_RDONLY))
848 goto found; /* read-only mount */
849 else
850 goto out;
851 }
852
853 list_for_each_entry(sbi, &nilfs->ns_supers, s_list) {
854 if (nilfs_test_opt(sbi, SNAPSHOT) &&
855 sbi->s_snapshot_cno == cno)
856 goto found; /* snapshot mount */
857 }
858 out:
Ryusuke Konishie59399d2009-06-08 01:39:32 +0900859 up_read(&nilfs->ns_super_sem);
Ryusuke Konishi6dd47402009-06-08 01:39:31 +0900860 return NULL;
861
862 found:
863 atomic_inc(&sbi->s_count);
Ryusuke Konishie59399d2009-06-08 01:39:32 +0900864 up_read(&nilfs->ns_super_sem);
Ryusuke Konishi6dd47402009-06-08 01:39:31 +0900865 return sbi;
866}
867
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700868int nilfs_checkpoint_is_mounted(struct the_nilfs *nilfs, __u64 cno,
869 int snapshot_mount)
870{
871 struct nilfs_sb_info *sbi;
872 int ret = 0;
873
Ryusuke Konishie59399d2009-06-08 01:39:32 +0900874 down_read(&nilfs->ns_super_sem);
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700875 if (cno == 0 || cno > nilfs->ns_cno)
876 goto out_unlock;
877
878 list_for_each_entry(sbi, &nilfs->ns_supers, s_list) {
879 if (sbi->s_snapshot_cno == cno &&
880 (!snapshot_mount || nilfs_test_opt(sbi, SNAPSHOT))) {
881 /* exclude read-only mounts */
882 ret++;
883 break;
884 }
885 }
886 /* for protecting recent checkpoints */
887 if (cno >= nilfs_last_cno(nilfs))
888 ret++;
889
890 out_unlock:
Ryusuke Konishie59399d2009-06-08 01:39:32 +0900891 up_read(&nilfs->ns_super_sem);
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700892 return ret;
893}