blob: db156a199149b1c1e740b740376671092308e460 [file] [log] [blame]
Ryusuke Konishi0f3e1c72009-04-06 19:01:38 -07001/*
2 * recovery.c - NILFS recovery logic
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 Konishi0f3e1c72009-04-06 19:01:38 -070017 */
18
19#include <linux/buffer_head.h>
20#include <linux/blkdev.h>
21#include <linux/swap.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090022#include <linux/slab.h>
Ryusuke Konishi0f3e1c72009-04-06 19:01:38 -070023#include <linux/crc32.h>
24#include "nilfs.h"
25#include "segment.h"
26#include "sufile.h"
27#include "page.h"
Ryusuke Konishi0f3e1c72009-04-06 19:01:38 -070028#include "segbuf.h"
29
30/*
31 * Segment check result
32 */
33enum {
34 NILFS_SEG_VALID,
35 NILFS_SEG_NO_SUPER_ROOT,
36 NILFS_SEG_FAIL_IO,
37 NILFS_SEG_FAIL_MAGIC,
38 NILFS_SEG_FAIL_SEQ,
Ryusuke Konishi0f3e1c72009-04-06 19:01:38 -070039 NILFS_SEG_FAIL_CHECKSUM_SUPER_ROOT,
40 NILFS_SEG_FAIL_CHECKSUM_FULL,
41 NILFS_SEG_FAIL_CONSISTENCY,
42};
43
44/* work structure for recovery */
45struct nilfs_recovery_block {
46 ino_t ino; /* Inode number of the file that this block
47 belongs to */
48 sector_t blocknr; /* block number */
49 __u64 vblocknr; /* virtual block number */
50 unsigned long blkoff; /* File offset of the data block (per block) */
51 struct list_head list;
52};
53
54
55static int nilfs_warn_segment_error(int err)
56{
57 switch (err) {
58 case NILFS_SEG_FAIL_IO:
59 printk(KERN_WARNING
60 "NILFS warning: I/O error on loading last segment\n");
61 return -EIO;
62 case NILFS_SEG_FAIL_MAGIC:
63 printk(KERN_WARNING
64 "NILFS warning: Segment magic number invalid\n");
65 break;
66 case NILFS_SEG_FAIL_SEQ:
67 printk(KERN_WARNING
68 "NILFS warning: Sequence number mismatch\n");
69 break;
Ryusuke Konishi0f3e1c72009-04-06 19:01:38 -070070 case NILFS_SEG_FAIL_CHECKSUM_SUPER_ROOT:
71 printk(KERN_WARNING
72 "NILFS warning: Checksum error in super root\n");
73 break;
74 case NILFS_SEG_FAIL_CHECKSUM_FULL:
75 printk(KERN_WARNING
76 "NILFS warning: Checksum error in segment payload\n");
77 break;
78 case NILFS_SEG_FAIL_CONSISTENCY:
79 printk(KERN_WARNING
80 "NILFS warning: Inconsistent segment\n");
81 break;
82 case NILFS_SEG_NO_SUPER_ROOT:
83 printk(KERN_WARNING
84 "NILFS warning: No super root in the last segment\n");
85 break;
Ryusuke Konishi0f3e1c72009-04-06 19:01:38 -070086 }
87 return -EINVAL;
88}
89
Ryusuke Konishi0f3e1c72009-04-06 19:01:38 -070090/**
Ryusuke Konishi8b940252010-05-23 01:39:02 +090091 * nilfs_compute_checksum - compute checksum of blocks continuously
92 * @nilfs: nilfs object
Ryusuke Konishi0f3e1c72009-04-06 19:01:38 -070093 * @bhs: buffer head of start block
94 * @sum: place to store result
95 * @offset: offset bytes in the first block
96 * @check_bytes: number of bytes to be checked
97 * @start: DBN of start block
98 * @nblock: number of blocks to be checked
99 */
Ryusuke Konishi8b940252010-05-23 01:39:02 +0900100static int nilfs_compute_checksum(struct the_nilfs *nilfs,
101 struct buffer_head *bhs, u32 *sum,
102 unsigned long offset, u64 check_bytes,
103 sector_t start, unsigned long nblock)
Ryusuke Konishi0f3e1c72009-04-06 19:01:38 -0700104{
Ryusuke Konishi8b940252010-05-23 01:39:02 +0900105 unsigned int blocksize = nilfs->ns_blocksize;
Ryusuke Konishi0f3e1c72009-04-06 19:01:38 -0700106 unsigned long size;
107 u32 crc;
108
109 BUG_ON(offset >= blocksize);
110 check_bytes -= offset;
111 size = min_t(u64, check_bytes, blocksize - offset);
Ryusuke Konishi8b940252010-05-23 01:39:02 +0900112 crc = crc32_le(nilfs->ns_crc_seed,
Ryusuke Konishi0f3e1c72009-04-06 19:01:38 -0700113 (unsigned char *)bhs->b_data + offset, size);
114 if (--nblock > 0) {
115 do {
Ryusuke Konishi8b940252010-05-23 01:39:02 +0900116 struct buffer_head *bh;
117
118 bh = __bread(nilfs->ns_bdev, ++start, blocksize);
Ryusuke Konishi0f3e1c72009-04-06 19:01:38 -0700119 if (!bh)
120 return -EIO;
121 check_bytes -= size;
122 size = min_t(u64, check_bytes, blocksize);
123 crc = crc32_le(crc, bh->b_data, size);
124 brelse(bh);
125 } while (--nblock > 0);
126 }
127 *sum = crc;
128 return 0;
129}
130
131/**
132 * nilfs_read_super_root_block - read super root block
Ryusuke Konishi8b940252010-05-23 01:39:02 +0900133 * @nilfs: nilfs object
Ryusuke Konishi0f3e1c72009-04-06 19:01:38 -0700134 * @sr_block: disk block number of the super root block
135 * @pbh: address of a buffer_head pointer to return super root buffer
136 * @check: CRC check flag
137 */
Ryusuke Konishi8b940252010-05-23 01:39:02 +0900138int nilfs_read_super_root_block(struct the_nilfs *nilfs, sector_t sr_block,
Ryusuke Konishi0f3e1c72009-04-06 19:01:38 -0700139 struct buffer_head **pbh, int check)
140{
141 struct buffer_head *bh_sr;
142 struct nilfs_super_root *sr;
143 u32 crc;
144 int ret;
145
146 *pbh = NULL;
Ryusuke Konishi8b940252010-05-23 01:39:02 +0900147 bh_sr = __bread(nilfs->ns_bdev, sr_block, nilfs->ns_blocksize);
Ryusuke Konishi0f3e1c72009-04-06 19:01:38 -0700148 if (unlikely(!bh_sr)) {
149 ret = NILFS_SEG_FAIL_IO;
150 goto failed;
151 }
152
153 sr = (struct nilfs_super_root *)bh_sr->b_data;
154 if (check) {
Ryusuke Konishi0c6c44c2016-05-23 16:23:39 -0700155 unsigned int bytes = le16_to_cpu(sr->sr_bytes);
Ryusuke Konishi0f3e1c72009-04-06 19:01:38 -0700156
Ryusuke Konishi8b940252010-05-23 01:39:02 +0900157 if (bytes == 0 || bytes > nilfs->ns_blocksize) {
Ryusuke Konishi0f3e1c72009-04-06 19:01:38 -0700158 ret = NILFS_SEG_FAIL_CHECKSUM_SUPER_ROOT;
159 goto failed_bh;
160 }
Ryusuke Konishi8b940252010-05-23 01:39:02 +0900161 if (nilfs_compute_checksum(
162 nilfs, bh_sr, &crc, sizeof(sr->sr_sum), bytes,
163 sr_block, 1)) {
Ryusuke Konishi0f3e1c72009-04-06 19:01:38 -0700164 ret = NILFS_SEG_FAIL_IO;
165 goto failed_bh;
166 }
167 if (crc != le32_to_cpu(sr->sr_sum)) {
168 ret = NILFS_SEG_FAIL_CHECKSUM_SUPER_ROOT;
169 goto failed_bh;
170 }
171 }
172 *pbh = bh_sr;
173 return 0;
174
175 failed_bh:
176 brelse(bh_sr);
177
178 failed:
179 return nilfs_warn_segment_error(ret);
180}
181
182/**
Ryusuke Konishi354fa8b2010-05-23 19:21:49 +0900183 * nilfs_read_log_header - read summary header of the specified log
Ryusuke Konishi8b940252010-05-23 01:39:02 +0900184 * @nilfs: nilfs object
Ryusuke Konishi354fa8b2010-05-23 19:21:49 +0900185 * @start_blocknr: start block number of the log
186 * @sum: pointer to return segment summary structure
Ryusuke Konishi0f3e1c72009-04-06 19:01:38 -0700187 */
Ryusuke Konishi354fa8b2010-05-23 19:21:49 +0900188static struct buffer_head *
189nilfs_read_log_header(struct the_nilfs *nilfs, sector_t start_blocknr,
190 struct nilfs_segment_summary **sum)
Ryusuke Konishi0f3e1c72009-04-06 19:01:38 -0700191{
192 struct buffer_head *bh_sum;
Ryusuke Konishi354fa8b2010-05-23 19:21:49 +0900193
194 bh_sum = __bread(nilfs->ns_bdev, start_blocknr, nilfs->ns_blocksize);
195 if (bh_sum)
196 *sum = (struct nilfs_segment_summary *)bh_sum->b_data;
197 return bh_sum;
198}
199
200/**
201 * nilfs_validate_log - verify consistency of log
202 * @nilfs: nilfs object
203 * @seg_seq: sequence number of segment
204 * @bh_sum: buffer head of summary block
205 * @sum: segment summary struct
206 */
207static int nilfs_validate_log(struct the_nilfs *nilfs, u64 seg_seq,
208 struct buffer_head *bh_sum,
209 struct nilfs_segment_summary *sum)
210{
Jiro SEKIBA03f29362010-02-18 19:11:35 +0900211 unsigned long nblock;
212 u32 crc;
Ryusuke Konishi354fa8b2010-05-23 19:21:49 +0900213 int ret;
Ryusuke Konishi0f3e1c72009-04-06 19:01:38 -0700214
Ryusuke Konishi354fa8b2010-05-23 19:21:49 +0900215 ret = NILFS_SEG_FAIL_MAGIC;
216 if (le32_to_cpu(sum->ss_magic) != NILFS_SEGSUM_MAGIC)
Ryusuke Konishi0f3e1c72009-04-06 19:01:38 -0700217 goto out;
218
Ryusuke Konishi354fa8b2010-05-23 19:21:49 +0900219 ret = NILFS_SEG_FAIL_SEQ;
220 if (le64_to_cpu(sum->ss_seq) != seg_seq)
221 goto out;
Ryusuke Konishi0f3e1c72009-04-06 19:01:38 -0700222
Ryusuke Konishi354fa8b2010-05-23 19:21:49 +0900223 nblock = le32_to_cpu(sum->ss_nblocks);
224 ret = NILFS_SEG_FAIL_CONSISTENCY;
225 if (unlikely(nblock == 0 || nblock > nilfs->ns_blocks_per_segment))
Ryusuke Konishi0f3e1c72009-04-06 19:01:38 -0700226 /* This limits the number of blocks read in the CRC check */
Ryusuke Konishi354fa8b2010-05-23 19:21:49 +0900227 goto out;
228
229 ret = NILFS_SEG_FAIL_IO;
Ryusuke Konishi8b940252010-05-23 01:39:02 +0900230 if (nilfs_compute_checksum(nilfs, bh_sum, &crc, sizeof(sum->ss_datasum),
231 ((u64)nblock << nilfs->ns_blocksize_bits),
Ryusuke Konishi354fa8b2010-05-23 19:21:49 +0900232 bh_sum->b_blocknr, nblock))
233 goto out;
234
235 ret = NILFS_SEG_FAIL_CHECKSUM_FULL;
236 if (crc != le32_to_cpu(sum->ss_datasum))
237 goto out;
238 ret = 0;
239out:
Ryusuke Konishi0f3e1c72009-04-06 19:01:38 -0700240 return ret;
241}
242
Ryusuke Konishi8b940252010-05-23 01:39:02 +0900243/**
244 * nilfs_read_summary_info - read an item on summary blocks of a log
245 * @nilfs: nilfs object
246 * @pbh: the current buffer head on summary blocks [in, out]
247 * @offset: the current byte offset on summary blocks [in, out]
248 * @bytes: byte size of the item to be read
249 */
250static void *nilfs_read_summary_info(struct the_nilfs *nilfs,
251 struct buffer_head **pbh,
252 unsigned int *offset, unsigned int bytes)
Ryusuke Konishi0f3e1c72009-04-06 19:01:38 -0700253{
254 void *ptr;
255 sector_t blocknr;
256
257 BUG_ON((*pbh)->b_size < *offset);
258 if (bytes > (*pbh)->b_size - *offset) {
259 blocknr = (*pbh)->b_blocknr;
260 brelse(*pbh);
Ryusuke Konishi8b940252010-05-23 01:39:02 +0900261 *pbh = __bread(nilfs->ns_bdev, blocknr + 1,
262 nilfs->ns_blocksize);
Ryusuke Konishi0f3e1c72009-04-06 19:01:38 -0700263 if (unlikely(!*pbh))
264 return NULL;
265 *offset = 0;
266 }
267 ptr = (*pbh)->b_data + *offset;
268 *offset += bytes;
269 return ptr;
270}
271
Ryusuke Konishi8b940252010-05-23 01:39:02 +0900272/**
273 * nilfs_skip_summary_info - skip items on summary blocks of a log
274 * @nilfs: nilfs object
275 * @pbh: the current buffer head on summary blocks [in, out]
276 * @offset: the current byte offset on summary blocks [in, out]
277 * @bytes: byte size of the item to be skipped
278 * @count: number of items to be skipped
279 */
280static void nilfs_skip_summary_info(struct the_nilfs *nilfs,
281 struct buffer_head **pbh,
282 unsigned int *offset, unsigned int bytes,
283 unsigned long count)
Ryusuke Konishi0f3e1c72009-04-06 19:01:38 -0700284{
285 unsigned int rest_item_in_current_block
286 = ((*pbh)->b_size - *offset) / bytes;
287
288 if (count <= rest_item_in_current_block) {
289 *offset += bytes * count;
290 } else {
291 sector_t blocknr = (*pbh)->b_blocknr;
292 unsigned int nitem_per_block = (*pbh)->b_size / bytes;
293 unsigned int bcnt;
294
295 count -= rest_item_in_current_block;
296 bcnt = DIV_ROUND_UP(count, nitem_per_block);
297 *offset = bytes * (count - (bcnt - 1) * nitem_per_block);
298
299 brelse(*pbh);
Ryusuke Konishi8b940252010-05-23 01:39:02 +0900300 *pbh = __bread(nilfs->ns_bdev, blocknr + bcnt,
301 nilfs->ns_blocksize);
Ryusuke Konishi0f3e1c72009-04-06 19:01:38 -0700302 }
303}
304
Ryusuke Konishi8b940252010-05-23 01:39:02 +0900305/**
306 * nilfs_scan_dsync_log - get block information of a log written for data sync
307 * @nilfs: nilfs object
308 * @start_blocknr: start block number of the log
Ryusuke Konishi85655482010-05-23 19:46:44 +0900309 * @sum: log summary information
Ryusuke Konishi8b940252010-05-23 01:39:02 +0900310 * @head: list head to add nilfs_recovery_block struct
311 */
312static int nilfs_scan_dsync_log(struct the_nilfs *nilfs, sector_t start_blocknr,
Ryusuke Konishi85655482010-05-23 19:46:44 +0900313 struct nilfs_segment_summary *sum,
Ryusuke Konishi8b940252010-05-23 01:39:02 +0900314 struct list_head *head)
Ryusuke Konishi0f3e1c72009-04-06 19:01:38 -0700315{
316 struct buffer_head *bh;
317 unsigned int offset;
Ryusuke Konishi85655482010-05-23 19:46:44 +0900318 u32 nfinfo, sumbytes;
319 sector_t blocknr;
Ryusuke Konishi0f3e1c72009-04-06 19:01:38 -0700320 ino_t ino;
321 int err = -EIO;
322
Ryusuke Konishi85655482010-05-23 19:46:44 +0900323 nfinfo = le32_to_cpu(sum->ss_nfinfo);
Ryusuke Konishi0f3e1c72009-04-06 19:01:38 -0700324 if (!nfinfo)
325 return 0;
326
Ryusuke Konishi85655482010-05-23 19:46:44 +0900327 sumbytes = le32_to_cpu(sum->ss_sumbytes);
328 blocknr = start_blocknr + DIV_ROUND_UP(sumbytes, nilfs->ns_blocksize);
Ryusuke Konishi8b940252010-05-23 01:39:02 +0900329 bh = __bread(nilfs->ns_bdev, start_blocknr, nilfs->ns_blocksize);
Ryusuke Konishi0f3e1c72009-04-06 19:01:38 -0700330 if (unlikely(!bh))
331 goto out;
332
Ryusuke Konishi85655482010-05-23 19:46:44 +0900333 offset = le16_to_cpu(sum->ss_bytes);
Ryusuke Konishi0f3e1c72009-04-06 19:01:38 -0700334 for (;;) {
335 unsigned long nblocks, ndatablk, nnodeblk;
336 struct nilfs_finfo *finfo;
337
Ryusuke Konishi8b940252010-05-23 01:39:02 +0900338 finfo = nilfs_read_summary_info(nilfs, &bh, &offset,
339 sizeof(*finfo));
Ryusuke Konishi0f3e1c72009-04-06 19:01:38 -0700340 if (unlikely(!finfo))
341 goto out;
342
343 ino = le64_to_cpu(finfo->fi_ino);
344 nblocks = le32_to_cpu(finfo->fi_nblocks);
345 ndatablk = le32_to_cpu(finfo->fi_ndatablk);
346 nnodeblk = nblocks - ndatablk;
347
348 while (ndatablk-- > 0) {
349 struct nilfs_recovery_block *rb;
350 struct nilfs_binfo_v *binfo;
351
Ryusuke Konishi8b940252010-05-23 01:39:02 +0900352 binfo = nilfs_read_summary_info(nilfs, &bh, &offset,
353 sizeof(*binfo));
Ryusuke Konishi0f3e1c72009-04-06 19:01:38 -0700354 if (unlikely(!binfo))
355 goto out;
356
357 rb = kmalloc(sizeof(*rb), GFP_NOFS);
358 if (unlikely(!rb)) {
359 err = -ENOMEM;
360 goto out;
361 }
362 rb->ino = ino;
363 rb->blocknr = blocknr++;
364 rb->vblocknr = le64_to_cpu(binfo->bi_vblocknr);
365 rb->blkoff = le64_to_cpu(binfo->bi_blkoff);
366 /* INIT_LIST_HEAD(&rb->list); */
367 list_add_tail(&rb->list, head);
368 }
369 if (--nfinfo == 0)
370 break;
Ryusuke Konishi8b940252010-05-23 01:39:02 +0900371 blocknr += nnodeblk; /* always 0 for data sync logs */
372 nilfs_skip_summary_info(nilfs, &bh, &offset, sizeof(__le64),
373 nnodeblk);
Ryusuke Konishi0f3e1c72009-04-06 19:01:38 -0700374 if (unlikely(!bh))
375 goto out;
376 }
377 err = 0;
378 out:
379 brelse(bh); /* brelse(NULL) is just ignored */
380 return err;
381}
382
383static void dispose_recovery_list(struct list_head *head)
384{
385 while (!list_empty(head)) {
Ryusuke Konishi0cc1283882011-05-05 12:56:51 +0900386 struct nilfs_recovery_block *rb;
387
388 rb = list_first_entry(head, struct nilfs_recovery_block, list);
Ryusuke Konishi0f3e1c72009-04-06 19:01:38 -0700389 list_del(&rb->list);
390 kfree(rb);
391 }
392}
393
Ryusuke Konishi654137d2009-05-17 19:07:21 +0900394struct nilfs_segment_entry {
395 struct list_head list;
396 __u64 segnum;
397};
398
399static int nilfs_segment_list_add(struct list_head *head, __u64 segnum)
400{
401 struct nilfs_segment_entry *ent = kmalloc(sizeof(*ent), GFP_NOFS);
402
403 if (unlikely(!ent))
404 return -ENOMEM;
405
406 ent->segnum = segnum;
407 INIT_LIST_HEAD(&ent->list);
408 list_add_tail(&ent->list, head);
409 return 0;
410}
411
Ryusuke Konishi0f3e1c72009-04-06 19:01:38 -0700412void nilfs_dispose_segment_list(struct list_head *head)
413{
414 while (!list_empty(head)) {
Ryusuke Konishi0cc1283882011-05-05 12:56:51 +0900415 struct nilfs_segment_entry *ent;
416
417 ent = list_first_entry(head, struct nilfs_segment_entry, list);
Ryusuke Konishi0f3e1c72009-04-06 19:01:38 -0700418 list_del(&ent->list);
Ryusuke Konishi654137d2009-05-17 19:07:21 +0900419 kfree(ent);
Ryusuke Konishi0f3e1c72009-04-06 19:01:38 -0700420 }
421}
422
423static int nilfs_prepare_segment_for_recovery(struct the_nilfs *nilfs,
Ryusuke Konishif7545142011-03-09 11:05:08 +0900424 struct super_block *sb,
Ryusuke Konishi0f3e1c72009-04-06 19:01:38 -0700425 struct nilfs_recovery_info *ri)
426{
427 struct list_head *head = &ri->ri_used_segments;
428 struct nilfs_segment_entry *ent, *n;
429 struct inode *sufile = nilfs->ns_sufile;
430 __u64 segnum[4];
431 int err;
432 int i;
433
434 segnum[0] = nilfs->ns_segnum;
435 segnum[1] = nilfs->ns_nextnum;
436 segnum[2] = ri->ri_segnum;
437 segnum[3] = ri->ri_nextnum;
438
439 /*
440 * Releasing the next segment of the latest super root.
441 * The next segment is invalidated by this recovery.
442 */
443 err = nilfs_sufile_free(sufile, segnum[1]);
444 if (unlikely(err))
445 goto failed;
446
Ryusuke Konishi0f3e1c72009-04-06 19:01:38 -0700447 for (i = 1; i < 4; i++) {
Ryusuke Konishi654137d2009-05-17 19:07:21 +0900448 err = nilfs_segment_list_add(head, segnum[i]);
449 if (unlikely(err))
Ryusuke Konishi0f3e1c72009-04-06 19:01:38 -0700450 goto failed;
Ryusuke Konishi0f3e1c72009-04-06 19:01:38 -0700451 }
452
453 /*
454 * Collecting segments written after the latest super root.
Ryusuke Konishi2c2e52f2009-04-06 19:01:54 -0700455 * These are marked dirty to avoid being reallocated in the next write.
Ryusuke Konishi0f3e1c72009-04-06 19:01:38 -0700456 */
457 list_for_each_entry_safe(ent, n, head, list) {
Ryusuke Konishic85399c2009-04-05 18:30:58 +0900458 if (ent->segnum != segnum[0]) {
459 err = nilfs_sufile_scrap(sufile, ent->segnum);
460 if (unlikely(err))
461 goto failed;
Ryusuke Konishi0f3e1c72009-04-06 19:01:38 -0700462 }
Ryusuke Konishi2c2e52f2009-04-06 19:01:54 -0700463 list_del(&ent->list);
Ryusuke Konishi654137d2009-05-17 19:07:21 +0900464 kfree(ent);
Ryusuke Konishi0f3e1c72009-04-06 19:01:38 -0700465 }
Ryusuke Konishi0f3e1c72009-04-06 19:01:38 -0700466
Ryusuke Konishi0f3e1c72009-04-06 19:01:38 -0700467 /* Allocate new segments for recovery */
468 err = nilfs_sufile_alloc(sufile, &segnum[0]);
469 if (unlikely(err))
470 goto failed;
471
472 nilfs->ns_pseg_offset = 0;
473 nilfs->ns_seg_seq = ri->ri_seq + 2;
474 nilfs->ns_nextnum = nilfs->ns_segnum = segnum[0];
Ryusuke Konishi0f3e1c72009-04-06 19:01:38 -0700475
476 failed:
477 /* No need to recover sufile because it will be destroyed on error */
478 return err;
479}
480
Ryusuke Konishi8b940252010-05-23 01:39:02 +0900481static int nilfs_recovery_copy_block(struct the_nilfs *nilfs,
Ryusuke Konishi0f3e1c72009-04-06 19:01:38 -0700482 struct nilfs_recovery_block *rb,
483 struct page *page)
484{
485 struct buffer_head *bh_org;
486 void *kaddr;
487
Ryusuke Konishi8b940252010-05-23 01:39:02 +0900488 bh_org = __bread(nilfs->ns_bdev, rb->blocknr, nilfs->ns_blocksize);
Ryusuke Konishi0f3e1c72009-04-06 19:01:38 -0700489 if (unlikely(!bh_org))
490 return -EIO;
491
Cong Wang7b9c0972011-11-25 23:14:33 +0800492 kaddr = kmap_atomic(page);
Ryusuke Konishi0f3e1c72009-04-06 19:01:38 -0700493 memcpy(kaddr + bh_offset(bh_org), bh_org->b_data, bh_org->b_size);
Cong Wang7b9c0972011-11-25 23:14:33 +0800494 kunmap_atomic(kaddr);
Ryusuke Konishi0f3e1c72009-04-06 19:01:38 -0700495 brelse(bh_org);
496 return 0;
497}
498
Ryusuke Konishi8b940252010-05-23 01:39:02 +0900499static int nilfs_recover_dsync_blocks(struct the_nilfs *nilfs,
Ryusuke Konishif7545142011-03-09 11:05:08 +0900500 struct super_block *sb,
Ryusuke Konishi4d8d9292010-08-25 17:45:44 +0900501 struct nilfs_root *root,
Ryusuke Konishi8b940252010-05-23 01:39:02 +0900502 struct list_head *head,
503 unsigned long *nr_salvaged_blocks)
Ryusuke Konishi0f3e1c72009-04-06 19:01:38 -0700504{
505 struct inode *inode;
506 struct nilfs_recovery_block *rb, *n;
Ryusuke Konishi0c6c44c2016-05-23 16:23:39 -0700507 unsigned int blocksize = nilfs->ns_blocksize;
Ryusuke Konishi0f3e1c72009-04-06 19:01:38 -0700508 struct page *page;
509 loff_t pos;
510 int err = 0, err2 = 0;
511
512 list_for_each_entry_safe(rb, n, head, list) {
Ryusuke Konishif7545142011-03-09 11:05:08 +0900513 inode = nilfs_iget(sb, root, rb->ino);
Ryusuke Konishi0f3e1c72009-04-06 19:01:38 -0700514 if (IS_ERR(inode)) {
515 err = PTR_ERR(inode);
516 inode = NULL;
517 goto failed_inode;
518 }
519
520 pos = rb->blkoff << inode->i_blkbits;
Christoph Hellwig155130a2010-06-04 11:29:58 +0200521 err = block_write_begin(inode->i_mapping, pos, blocksize,
522 0, &page, nilfs_get_block);
523 if (unlikely(err)) {
524 loff_t isize = inode->i_size;
Ryusuke Konishi4ad364c2016-05-23 16:23:25 -0700525
Christoph Hellwig155130a2010-06-04 11:29:58 +0200526 if (pos + blocksize > isize)
Marco Stornelli2d1b3992012-12-15 11:57:37 +0100527 nilfs_write_failed(inode->i_mapping,
528 pos + blocksize);
Ryusuke Konishi0f3e1c72009-04-06 19:01:38 -0700529 goto failed_inode;
Christoph Hellwig155130a2010-06-04 11:29:58 +0200530 }
Ryusuke Konishi0f3e1c72009-04-06 19:01:38 -0700531
Ryusuke Konishi8b940252010-05-23 01:39:02 +0900532 err = nilfs_recovery_copy_block(nilfs, rb, page);
Ryusuke Konishi0f3e1c72009-04-06 19:01:38 -0700533 if (unlikely(err))
534 goto failed_page;
535
Ryusuke Konishibcbc8c62010-12-27 00:05:49 +0900536 err = nilfs_set_file_dirty(inode, 1);
Ryusuke Konishi0f3e1c72009-04-06 19:01:38 -0700537 if (unlikely(err))
538 goto failed_page;
539
540 block_write_end(NULL, inode->i_mapping, pos, blocksize,
541 blocksize, page, NULL);
542
543 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300544 put_page(page);
Ryusuke Konishi0f3e1c72009-04-06 19:01:38 -0700545
546 (*nr_salvaged_blocks)++;
547 goto next;
548
549 failed_page:
550 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300551 put_page(page);
Ryusuke Konishi0f3e1c72009-04-06 19:01:38 -0700552
553 failed_inode:
554 printk(KERN_WARNING
555 "NILFS warning: error recovering data block "
556 "(err=%d, ino=%lu, block-offset=%llu)\n",
Heiko Carstensb5696e52009-09-03 17:42:48 +0200557 err, (unsigned long)rb->ino,
558 (unsigned long long)rb->blkoff);
Ryusuke Konishi0f3e1c72009-04-06 19:01:38 -0700559 if (!err2)
560 err2 = err;
561 next:
562 iput(inode); /* iput(NULL) is just ignored */
563 list_del_init(&rb->list);
564 kfree(rb);
565 }
566 return err2;
567}
568
569/**
570 * nilfs_do_roll_forward - salvage logical segments newer than the latest
571 * checkpoint
Ryusuke Konishi8b940252010-05-23 01:39:02 +0900572 * @nilfs: nilfs object
Ryusuke Konishif7545142011-03-09 11:05:08 +0900573 * @sb: super block instance
Ryusuke Konishi0f3e1c72009-04-06 19:01:38 -0700574 * @ri: pointer to a nilfs_recovery_info
575 */
576static int nilfs_do_roll_forward(struct the_nilfs *nilfs,
Ryusuke Konishif7545142011-03-09 11:05:08 +0900577 struct super_block *sb,
Ryusuke Konishi4d8d9292010-08-25 17:45:44 +0900578 struct nilfs_root *root,
Ryusuke Konishi0f3e1c72009-04-06 19:01:38 -0700579 struct nilfs_recovery_info *ri)
580{
Ryusuke Konishi354fa8b2010-05-23 19:21:49 +0900581 struct buffer_head *bh_sum = NULL;
Ryusuke Konishi4f050282015-11-06 16:32:16 -0800582 struct nilfs_segment_summary *sum = NULL;
Ryusuke Konishi0f3e1c72009-04-06 19:01:38 -0700583 sector_t pseg_start;
584 sector_t seg_start, seg_end; /* Starting/ending DBN of full segment */
585 unsigned long nsalvaged_blocks = 0;
Ryusuke Konishi85655482010-05-23 19:46:44 +0900586 unsigned int flags;
Ryusuke Konishi0f3e1c72009-04-06 19:01:38 -0700587 u64 seg_seq;
588 __u64 segnum, nextnum = 0;
589 int empty_seg = 0;
590 int err = 0, ret;
591 LIST_HEAD(dsync_blocks); /* list of data blocks to be recovered */
592 enum {
593 RF_INIT_ST,
594 RF_DSYNC_ST, /* scanning data-sync segments */
595 };
596 int state = RF_INIT_ST;
597
Ryusuke Konishi0f3e1c72009-04-06 19:01:38 -0700598 pseg_start = ri->ri_lsegs_start;
599 seg_seq = ri->ri_lsegs_start_seq;
600 segnum = nilfs_get_segnum_of_block(nilfs, pseg_start);
601 nilfs_get_segment_range(nilfs, segnum, &seg_start, &seg_end);
602
603 while (segnum != ri->ri_segnum || pseg_start <= ri->ri_pseg_start) {
Ryusuke Konishi354fa8b2010-05-23 19:21:49 +0900604 brelse(bh_sum);
605 bh_sum = nilfs_read_log_header(nilfs, pseg_start, &sum);
606 if (!bh_sum) {
607 err = -EIO;
608 goto failed;
609 }
Ryusuke Konishi0f3e1c72009-04-06 19:01:38 -0700610
Ryusuke Konishi354fa8b2010-05-23 19:21:49 +0900611 ret = nilfs_validate_log(nilfs, seg_seq, bh_sum, sum);
Ryusuke Konishi0f3e1c72009-04-06 19:01:38 -0700612 if (ret) {
613 if (ret == NILFS_SEG_FAIL_IO) {
614 err = -EIO;
615 goto failed;
616 }
617 goto strayed;
618 }
Ryusuke Konishi354fa8b2010-05-23 19:21:49 +0900619
Ryusuke Konishi85655482010-05-23 19:46:44 +0900620 flags = le16_to_cpu(sum->ss_flags);
621 if (flags & NILFS_SS_SR)
Ryusuke Konishi0f3e1c72009-04-06 19:01:38 -0700622 goto confused;
623
624 /* Found a valid partial segment; do recovery actions */
Ryusuke Konishi85655482010-05-23 19:46:44 +0900625 nextnum = nilfs_get_segnum_of_block(nilfs,
626 le64_to_cpu(sum->ss_next));
Ryusuke Konishi0f3e1c72009-04-06 19:01:38 -0700627 empty_seg = 0;
Ryusuke Konishi85655482010-05-23 19:46:44 +0900628 nilfs->ns_ctime = le64_to_cpu(sum->ss_create);
629 if (!(flags & NILFS_SS_GC))
630 nilfs->ns_nongc_ctime = nilfs->ns_ctime;
Ryusuke Konishi0f3e1c72009-04-06 19:01:38 -0700631
632 switch (state) {
633 case RF_INIT_ST:
Ryusuke Konishi85655482010-05-23 19:46:44 +0900634 if (!(flags & NILFS_SS_LOGBGN) ||
635 !(flags & NILFS_SS_SYNDT))
Ryusuke Konishi0f3e1c72009-04-06 19:01:38 -0700636 goto try_next_pseg;
637 state = RF_DSYNC_ST;
638 /* Fall through */
639 case RF_DSYNC_ST:
Ryusuke Konishi85655482010-05-23 19:46:44 +0900640 if (!(flags & NILFS_SS_SYNDT))
Ryusuke Konishi0f3e1c72009-04-06 19:01:38 -0700641 goto confused;
642
Ryusuke Konishi85655482010-05-23 19:46:44 +0900643 err = nilfs_scan_dsync_log(nilfs, pseg_start, sum,
Ryusuke Konishi8b940252010-05-23 01:39:02 +0900644 &dsync_blocks);
Ryusuke Konishi0f3e1c72009-04-06 19:01:38 -0700645 if (unlikely(err))
646 goto failed;
Ryusuke Konishi85655482010-05-23 19:46:44 +0900647 if (flags & NILFS_SS_LOGEND) {
Ryusuke Konishi8b940252010-05-23 01:39:02 +0900648 err = nilfs_recover_dsync_blocks(
Ryusuke Konishif7545142011-03-09 11:05:08 +0900649 nilfs, sb, root, &dsync_blocks,
Ryusuke Konishi8b940252010-05-23 01:39:02 +0900650 &nsalvaged_blocks);
Ryusuke Konishi0f3e1c72009-04-06 19:01:38 -0700651 if (unlikely(err))
652 goto failed;
653 state = RF_INIT_ST;
654 }
655 break; /* Fall through to try_next_pseg */
656 }
657
658 try_next_pseg:
659 if (pseg_start == ri->ri_lsegs_end)
660 break;
Ryusuke Konishi85655482010-05-23 19:46:44 +0900661 pseg_start += le32_to_cpu(sum->ss_nblocks);
Ryusuke Konishi0f3e1c72009-04-06 19:01:38 -0700662 if (pseg_start < seg_end)
663 continue;
664 goto feed_segment;
665
666 strayed:
667 if (pseg_start == ri->ri_lsegs_end)
668 break;
669
670 feed_segment:
671 /* Looking to the next full segment */
672 if (empty_seg++)
673 break;
674 seg_seq++;
675 segnum = nextnum;
676 nilfs_get_segment_range(nilfs, segnum, &seg_start, &seg_end);
677 pseg_start = seg_start;
678 }
679
680 if (nsalvaged_blocks) {
681 printk(KERN_INFO "NILFS (device %s): salvaged %lu blocks\n",
Ryusuke Konishif7545142011-03-09 11:05:08 +0900682 sb->s_id, nsalvaged_blocks);
Ryusuke Konishi0f3e1c72009-04-06 19:01:38 -0700683 ri->ri_need_recovery = NILFS_RECOVERY_ROLLFORWARD_DONE;
684 }
685 out:
Ryusuke Konishi354fa8b2010-05-23 19:21:49 +0900686 brelse(bh_sum);
Ryusuke Konishi0f3e1c72009-04-06 19:01:38 -0700687 dispose_recovery_list(&dsync_blocks);
Ryusuke Konishi0f3e1c72009-04-06 19:01:38 -0700688 return err;
689
690 confused:
691 err = -EINVAL;
692 failed:
693 printk(KERN_ERR
694 "NILFS (device %s): Error roll-forwarding "
695 "(err=%d, pseg block=%llu). ",
Ryusuke Konishif7545142011-03-09 11:05:08 +0900696 sb->s_id, err, (unsigned long long)pseg_start);
Ryusuke Konishi0f3e1c72009-04-06 19:01:38 -0700697 goto out;
698}
699
700static void nilfs_finish_roll_forward(struct the_nilfs *nilfs,
Ryusuke Konishi0f3e1c72009-04-06 19:01:38 -0700701 struct nilfs_recovery_info *ri)
702{
703 struct buffer_head *bh;
704 int err;
705
706 if (nilfs_get_segnum_of_block(nilfs, ri->ri_lsegs_start) !=
707 nilfs_get_segnum_of_block(nilfs, ri->ri_super_root))
708 return;
709
Ryusuke Konishi8b940252010-05-23 01:39:02 +0900710 bh = __getblk(nilfs->ns_bdev, ri->ri_lsegs_start, nilfs->ns_blocksize);
Ryusuke Konishi0f3e1c72009-04-06 19:01:38 -0700711 BUG_ON(!bh);
712 memset(bh->b_data, 0, bh->b_size);
713 set_buffer_dirty(bh);
714 err = sync_dirty_buffer(bh);
715 if (unlikely(err))
716 printk(KERN_WARNING
717 "NILFS warning: buffer sync write failed during "
718 "post-cleaning of recovery.\n");
719 brelse(bh);
720}
721
722/**
Ryusuke Konishiaee5ce22010-05-23 12:21:57 +0900723 * nilfs_salvage_orphan_logs - salvage logs written after the latest checkpoint
724 * @nilfs: nilfs object
Ryusuke Konishif7545142011-03-09 11:05:08 +0900725 * @sb: super block instance
Ryusuke Konishi0f3e1c72009-04-06 19:01:38 -0700726 * @ri: pointer to a nilfs_recovery_info struct to store search results.
727 *
728 * Return Value: On success, 0 is returned. On error, one of the following
729 * negative error code is returned.
730 *
731 * %-EINVAL - Inconsistent filesystem state.
732 *
733 * %-EIO - I/O error
734 *
735 * %-ENOSPC - No space left on device (only in a panic state).
736 *
737 * %-ERESTARTSYS - Interrupted.
738 *
739 * %-ENOMEM - Insufficient memory available.
740 */
Ryusuke Konishiaee5ce22010-05-23 12:21:57 +0900741int nilfs_salvage_orphan_logs(struct the_nilfs *nilfs,
Ryusuke Konishif7545142011-03-09 11:05:08 +0900742 struct super_block *sb,
Ryusuke Konishiaee5ce22010-05-23 12:21:57 +0900743 struct nilfs_recovery_info *ri)
Ryusuke Konishi0f3e1c72009-04-06 19:01:38 -0700744{
Ryusuke Konishi4d8d9292010-08-25 17:45:44 +0900745 struct nilfs_root *root;
Ryusuke Konishi0f3e1c72009-04-06 19:01:38 -0700746 int err;
747
748 if (ri->ri_lsegs_start == 0 || ri->ri_lsegs_end == 0)
749 return 0;
750
Ryusuke Konishif7545142011-03-09 11:05:08 +0900751 err = nilfs_attach_checkpoint(sb, ri->ri_cno, true, &root);
Ryusuke Konishi0f3e1c72009-04-06 19:01:38 -0700752 if (unlikely(err)) {
753 printk(KERN_ERR
754 "NILFS: error loading the latest checkpoint.\n");
755 return err;
756 }
757
Ryusuke Konishif7545142011-03-09 11:05:08 +0900758 err = nilfs_do_roll_forward(nilfs, sb, root, ri);
Ryusuke Konishi0f3e1c72009-04-06 19:01:38 -0700759 if (unlikely(err))
760 goto failed;
761
762 if (ri->ri_need_recovery == NILFS_RECOVERY_ROLLFORWARD_DONE) {
Ryusuke Konishif7545142011-03-09 11:05:08 +0900763 err = nilfs_prepare_segment_for_recovery(nilfs, sb, ri);
Ryusuke Konishi0f3e1c72009-04-06 19:01:38 -0700764 if (unlikely(err)) {
765 printk(KERN_ERR "NILFS: Error preparing segments for "
766 "recovery.\n");
767 goto failed;
768 }
769
Ryusuke Konishif7545142011-03-09 11:05:08 +0900770 err = nilfs_attach_log_writer(sb, root);
Ryusuke Konishi0f3e1c72009-04-06 19:01:38 -0700771 if (unlikely(err))
772 goto failed;
773
774 set_nilfs_discontinued(nilfs);
Ryusuke Konishif7545142011-03-09 11:05:08 +0900775 err = nilfs_construct_segment(sb);
776 nilfs_detach_log_writer(sb);
Ryusuke Konishi0f3e1c72009-04-06 19:01:38 -0700777
778 if (unlikely(err)) {
779 printk(KERN_ERR "NILFS: Oops! recovery failed. "
780 "(err=%d)\n", err);
781 goto failed;
782 }
783
Ryusuke Konishi8b940252010-05-23 01:39:02 +0900784 nilfs_finish_roll_forward(nilfs, ri);
Ryusuke Konishi0f3e1c72009-04-06 19:01:38 -0700785 }
786
Ryusuke Konishi0f3e1c72009-04-06 19:01:38 -0700787 failed:
Ryusuke Konishi4d8d9292010-08-25 17:45:44 +0900788 nilfs_put_root(root);
Ryusuke Konishi0f3e1c72009-04-06 19:01:38 -0700789 return err;
790}
791
792/**
793 * nilfs_search_super_root - search the latest valid super root
794 * @nilfs: the_nilfs
Ryusuke Konishi0f3e1c72009-04-06 19:01:38 -0700795 * @ri: pointer to a nilfs_recovery_info struct to store search results.
796 *
797 * nilfs_search_super_root() looks for the latest super-root from a partial
798 * segment pointed by the superblock. It sets up struct the_nilfs through
799 * this search. It fills nilfs_recovery_info (ri) required for recovery.
800 *
801 * Return Value: On success, 0 is returned. On error, one of the following
802 * negative error code is returned.
803 *
804 * %-EINVAL - No valid segment found
805 *
806 * %-EIO - I/O error
Ryusuke Konishi2d72b992010-06-28 19:15:25 +0900807 *
808 * %-ENOMEM - Insufficient memory available.
Ryusuke Konishi0f3e1c72009-04-06 19:01:38 -0700809 */
Ryusuke Konishi8b940252010-05-23 01:39:02 +0900810int nilfs_search_super_root(struct the_nilfs *nilfs,
Ryusuke Konishi0f3e1c72009-04-06 19:01:38 -0700811 struct nilfs_recovery_info *ri)
812{
Ryusuke Konishi354fa8b2010-05-23 19:21:49 +0900813 struct buffer_head *bh_sum = NULL;
Ryusuke Konishi4f050282015-11-06 16:32:16 -0800814 struct nilfs_segment_summary *sum = NULL;
Ryusuke Konishi0f3e1c72009-04-06 19:01:38 -0700815 sector_t pseg_start, pseg_end, sr_pseg_start = 0;
816 sector_t seg_start, seg_end; /* range of full segment (block number) */
Ryusuke Konishi050b4142009-11-19 22:24:48 +0900817 sector_t b, end;
Ryusuke Konishi85655482010-05-23 19:46:44 +0900818 unsigned long nblocks;
819 unsigned int flags;
Ryusuke Konishi0f3e1c72009-04-06 19:01:38 -0700820 u64 seg_seq;
821 __u64 segnum, nextnum = 0;
822 __u64 cno;
Ryusuke Konishi0f3e1c72009-04-06 19:01:38 -0700823 LIST_HEAD(segments);
824 int empty_seg = 0, scan_newer = 0;
825 int ret;
826
827 pseg_start = nilfs->ns_last_pseg;
828 seg_seq = nilfs->ns_last_seq;
829 cno = nilfs->ns_last_cno;
830 segnum = nilfs_get_segnum_of_block(nilfs, pseg_start);
831
832 /* Calculate range of segment */
833 nilfs_get_segment_range(nilfs, segnum, &seg_start, &seg_end);
834
Ryusuke Konishi050b4142009-11-19 22:24:48 +0900835 /* Read ahead segment */
836 b = seg_start;
837 while (b <= seg_end)
Ryusuke Konishi8b940252010-05-23 01:39:02 +0900838 __breadahead(nilfs->ns_bdev, b++, nilfs->ns_blocksize);
Ryusuke Konishi050b4142009-11-19 22:24:48 +0900839
Ryusuke Konishi0f3e1c72009-04-06 19:01:38 -0700840 for (;;) {
Ryusuke Konishi354fa8b2010-05-23 19:21:49 +0900841 brelse(bh_sum);
842 ret = NILFS_SEG_FAIL_IO;
843 bh_sum = nilfs_read_log_header(nilfs, pseg_start, &sum);
844 if (!bh_sum)
845 goto failed;
846
847 ret = nilfs_validate_log(nilfs, seg_seq, bh_sum, sum);
Ryusuke Konishi0f3e1c72009-04-06 19:01:38 -0700848 if (ret) {
849 if (ret == NILFS_SEG_FAIL_IO)
850 goto failed;
851 goto strayed;
852 }
Ryusuke Konishi354fa8b2010-05-23 19:21:49 +0900853
Ryusuke Konishi85655482010-05-23 19:46:44 +0900854 nblocks = le32_to_cpu(sum->ss_nblocks);
855 pseg_end = pseg_start + nblocks - 1;
Ryusuke Konishi0f3e1c72009-04-06 19:01:38 -0700856 if (unlikely(pseg_end > seg_end)) {
857 ret = NILFS_SEG_FAIL_CONSISTENCY;
858 goto strayed;
859 }
860
861 /* A valid partial segment */
862 ri->ri_pseg_start = pseg_start;
863 ri->ri_seq = seg_seq;
864 ri->ri_segnum = segnum;
Ryusuke Konishi85655482010-05-23 19:46:44 +0900865 nextnum = nilfs_get_segnum_of_block(nilfs,
866 le64_to_cpu(sum->ss_next));
Ryusuke Konishi0f3e1c72009-04-06 19:01:38 -0700867 ri->ri_nextnum = nextnum;
868 empty_seg = 0;
869
Ryusuke Konishi85655482010-05-23 19:46:44 +0900870 flags = le16_to_cpu(sum->ss_flags);
871 if (!(flags & NILFS_SS_SR) && !scan_newer) {
Ryusuke Konishi050b4142009-11-19 22:24:48 +0900872 /* This will never happen because a superblock
873 (last_segment) always points to a pseg
874 having a super root. */
875 ret = NILFS_SEG_FAIL_CONSISTENCY;
876 goto failed;
877 }
878
879 if (pseg_start == seg_start) {
880 nilfs_get_segment_range(nilfs, nextnum, &b, &end);
881 while (b <= end)
Ryusuke Konishi8b940252010-05-23 01:39:02 +0900882 __breadahead(nilfs->ns_bdev, b++,
883 nilfs->ns_blocksize);
Ryusuke Konishi050b4142009-11-19 22:24:48 +0900884 }
Ryusuke Konishi85655482010-05-23 19:46:44 +0900885 if (!(flags & NILFS_SS_SR)) {
886 if (!ri->ri_lsegs_start && (flags & NILFS_SS_LOGBGN)) {
Ryusuke Konishi0f3e1c72009-04-06 19:01:38 -0700887 ri->ri_lsegs_start = pseg_start;
888 ri->ri_lsegs_start_seq = seg_seq;
889 }
Ryusuke Konishi85655482010-05-23 19:46:44 +0900890 if (flags & NILFS_SS_LOGEND)
Ryusuke Konishi0f3e1c72009-04-06 19:01:38 -0700891 ri->ri_lsegs_end = pseg_start;
892 goto try_next_pseg;
893 }
894
895 /* A valid super root was found. */
896 ri->ri_cno = cno++;
897 ri->ri_super_root = pseg_end;
898 ri->ri_lsegs_start = ri->ri_lsegs_end = 0;
899
900 nilfs_dispose_segment_list(&segments);
Ryusuke Konishi85655482010-05-23 19:46:44 +0900901 sr_pseg_start = pseg_start;
902 nilfs->ns_pseg_offset = pseg_start + nblocks - seg_start;
Ryusuke Konishi0f3e1c72009-04-06 19:01:38 -0700903 nilfs->ns_seg_seq = seg_seq;
904 nilfs->ns_segnum = segnum;
905 nilfs->ns_cno = cno; /* nilfs->ns_cno = ri->ri_cno + 1 */
Ryusuke Konishi85655482010-05-23 19:46:44 +0900906 nilfs->ns_ctime = le64_to_cpu(sum->ss_create);
Ryusuke Konishi0f3e1c72009-04-06 19:01:38 -0700907 nilfs->ns_nextnum = nextnum;
908
909 if (scan_newer)
910 ri->ri_need_recovery = NILFS_RECOVERY_SR_UPDATED;
Ryusuke Konishi2c2e52f2009-04-06 19:01:54 -0700911 else {
Ryusuke Konishi2c2e52f2009-04-06 19:01:54 -0700912 if (nilfs->ns_mount_state & NILFS_VALID_FS)
913 goto super_root_found;
914 scan_newer = 1;
915 }
Ryusuke Konishi0f3e1c72009-04-06 19:01:38 -0700916
Ryusuke Konishi0f3e1c72009-04-06 19:01:38 -0700917 try_next_pseg:
918 /* Standing on a course, or met an inconsistent state */
Ryusuke Konishi85655482010-05-23 19:46:44 +0900919 pseg_start += nblocks;
Ryusuke Konishi0f3e1c72009-04-06 19:01:38 -0700920 if (pseg_start < seg_end)
921 continue;
922 goto feed_segment;
923
924 strayed:
925 /* Off the trail */
926 if (!scan_newer)
927 /*
928 * This can happen if a checkpoint was written without
929 * barriers, or as a result of an I/O failure.
930 */
931 goto failed;
932
933 feed_segment:
934 /* Looking to the next full segment */
935 if (empty_seg++)
936 goto super_root_found; /* found a valid super root */
937
Ryusuke Konishi654137d2009-05-17 19:07:21 +0900938 ret = nilfs_segment_list_add(&segments, segnum);
939 if (unlikely(ret))
Ryusuke Konishi0f3e1c72009-04-06 19:01:38 -0700940 goto failed;
Ryusuke Konishi0f3e1c72009-04-06 19:01:38 -0700941
942 seg_seq++;
943 segnum = nextnum;
944 nilfs_get_segment_range(nilfs, segnum, &seg_start, &seg_end);
945 pseg_start = seg_start;
946 }
947
948 super_root_found:
949 /* Updating pointers relating to the latest checkpoint */
Ryusuke Konishi354fa8b2010-05-23 19:21:49 +0900950 brelse(bh_sum);
Ryusuke Konishi0935db72009-11-29 02:39:11 +0900951 list_splice_tail(&segments, &ri->ri_used_segments);
Ryusuke Konishi0f3e1c72009-04-06 19:01:38 -0700952 nilfs->ns_last_pseg = sr_pseg_start;
953 nilfs->ns_last_seq = nilfs->ns_seg_seq;
954 nilfs->ns_last_cno = ri->ri_cno;
955 return 0;
956
957 failed:
Ryusuke Konishi354fa8b2010-05-23 19:21:49 +0900958 brelse(bh_sum);
Ryusuke Konishi0f3e1c72009-04-06 19:01:38 -0700959 nilfs_dispose_segment_list(&segments);
960 return (ret < 0) ? ret : nilfs_warn_segment_error(ret);
961}