2 * recovery.c - NILFS recovery logic
4 * Copyright (C) 2005-2008 Nippon Telegraph and Telephone Corporation.
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.
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.
16 * Written by Ryusuke Konishi.
19 #include <linux/buffer_head.h>
20 #include <linux/blkdev.h>
21 #include <linux/swap.h>
22 #include <linux/slab.h>
23 #include <linux/crc32.h>
31 * Segment check result
35 NILFS_SEG_NO_SUPER_ROOT
,
39 NILFS_SEG_FAIL_CHECKSUM_SUPER_ROOT
,
40 NILFS_SEG_FAIL_CHECKSUM_FULL
,
41 NILFS_SEG_FAIL_CONSISTENCY
,
44 /* work structure for recovery */
45 struct nilfs_recovery_block
{
47 * Inode number of the file that this block
50 sector_t blocknr
; /* block number */
51 __u64 vblocknr
; /* virtual block number */
52 unsigned long blkoff
; /* File offset of the data block (per block) */
53 struct list_head list
;
57 static int nilfs_warn_segment_error(struct super_block
*sb
, int err
)
59 const char *msg
= NULL
;
62 case NILFS_SEG_FAIL_IO
:
63 nilfs_msg(sb
, KERN_ERR
, "I/O error reading segment");
65 case NILFS_SEG_FAIL_MAGIC
:
66 msg
= "Magic number mismatch";
68 case NILFS_SEG_FAIL_SEQ
:
69 msg
= "Sequence number mismatch";
71 case NILFS_SEG_FAIL_CHECKSUM_SUPER_ROOT
:
72 msg
= "Checksum error in super root";
74 case NILFS_SEG_FAIL_CHECKSUM_FULL
:
75 msg
= "Checksum error in segment payload";
77 case NILFS_SEG_FAIL_CONSISTENCY
:
78 msg
= "Inconsistency found";
80 case NILFS_SEG_NO_SUPER_ROOT
:
81 msg
= "No super root in the last segment";
84 nilfs_msg(sb
, KERN_ERR
, "unrecognized segment error %d", err
);
87 nilfs_msg(sb
, KERN_WARNING
, "invalid segment: %s", msg
);
92 * nilfs_compute_checksum - compute checksum of blocks continuously
93 * @nilfs: nilfs object
94 * @bhs: buffer head of start block
95 * @sum: place to store result
96 * @offset: offset bytes in the first block
97 * @check_bytes: number of bytes to be checked
98 * @start: DBN of start block
99 * @nblock: number of blocks to be checked
101 static int nilfs_compute_checksum(struct the_nilfs
*nilfs
,
102 struct buffer_head
*bhs
, u32
*sum
,
103 unsigned long offset
, u64 check_bytes
,
104 sector_t start
, unsigned long nblock
)
106 unsigned int blocksize
= nilfs
->ns_blocksize
;
110 BUG_ON(offset
>= blocksize
);
111 check_bytes
-= offset
;
112 size
= min_t(u64
, check_bytes
, blocksize
- offset
);
113 crc
= crc32_le(nilfs
->ns_crc_seed
,
114 (unsigned char *)bhs
->b_data
+ offset
, size
);
117 struct buffer_head
*bh
;
119 bh
= __bread(nilfs
->ns_bdev
, ++start
, blocksize
);
123 size
= min_t(u64
, check_bytes
, blocksize
);
124 crc
= crc32_le(crc
, bh
->b_data
, size
);
126 } while (--nblock
> 0);
133 * nilfs_read_super_root_block - read super root block
134 * @nilfs: nilfs object
135 * @sr_block: disk block number of the super root block
136 * @pbh: address of a buffer_head pointer to return super root buffer
137 * @check: CRC check flag
139 int nilfs_read_super_root_block(struct the_nilfs
*nilfs
, sector_t sr_block
,
140 struct buffer_head
**pbh
, int check
)
142 struct buffer_head
*bh_sr
;
143 struct nilfs_super_root
*sr
;
148 bh_sr
= __bread(nilfs
->ns_bdev
, sr_block
, nilfs
->ns_blocksize
);
149 if (unlikely(!bh_sr
)) {
150 ret
= NILFS_SEG_FAIL_IO
;
154 sr
= (struct nilfs_super_root
*)bh_sr
->b_data
;
156 unsigned int bytes
= le16_to_cpu(sr
->sr_bytes
);
158 if (bytes
== 0 || bytes
> nilfs
->ns_blocksize
) {
159 ret
= NILFS_SEG_FAIL_CHECKSUM_SUPER_ROOT
;
162 if (nilfs_compute_checksum(
163 nilfs
, bh_sr
, &crc
, sizeof(sr
->sr_sum
), bytes
,
165 ret
= NILFS_SEG_FAIL_IO
;
168 if (crc
!= le32_to_cpu(sr
->sr_sum
)) {
169 ret
= NILFS_SEG_FAIL_CHECKSUM_SUPER_ROOT
;
180 return nilfs_warn_segment_error(nilfs
->ns_sb
, ret
);
184 * nilfs_read_log_header - read summary header of the specified log
185 * @nilfs: nilfs object
186 * @start_blocknr: start block number of the log
187 * @sum: pointer to return segment summary structure
189 static struct buffer_head
*
190 nilfs_read_log_header(struct the_nilfs
*nilfs
, sector_t start_blocknr
,
191 struct nilfs_segment_summary
**sum
)
193 struct buffer_head
*bh_sum
;
195 bh_sum
= __bread(nilfs
->ns_bdev
, start_blocknr
, nilfs
->ns_blocksize
);
197 *sum
= (struct nilfs_segment_summary
*)bh_sum
->b_data
;
202 * nilfs_validate_log - verify consistency of log
203 * @nilfs: nilfs object
204 * @seg_seq: sequence number of segment
205 * @bh_sum: buffer head of summary block
206 * @sum: segment summary struct
208 static int nilfs_validate_log(struct the_nilfs
*nilfs
, u64 seg_seq
,
209 struct buffer_head
*bh_sum
,
210 struct nilfs_segment_summary
*sum
)
212 unsigned long nblock
;
216 ret
= NILFS_SEG_FAIL_MAGIC
;
217 if (le32_to_cpu(sum
->ss_magic
) != NILFS_SEGSUM_MAGIC
)
220 ret
= NILFS_SEG_FAIL_SEQ
;
221 if (le64_to_cpu(sum
->ss_seq
) != seg_seq
)
224 nblock
= le32_to_cpu(sum
->ss_nblocks
);
225 ret
= NILFS_SEG_FAIL_CONSISTENCY
;
226 if (unlikely(nblock
== 0 || nblock
> nilfs
->ns_blocks_per_segment
))
227 /* This limits the number of blocks read in the CRC check */
230 ret
= NILFS_SEG_FAIL_IO
;
231 if (nilfs_compute_checksum(nilfs
, bh_sum
, &crc
, sizeof(sum
->ss_datasum
),
232 ((u64
)nblock
<< nilfs
->ns_blocksize_bits
),
233 bh_sum
->b_blocknr
, nblock
))
236 ret
= NILFS_SEG_FAIL_CHECKSUM_FULL
;
237 if (crc
!= le32_to_cpu(sum
->ss_datasum
))
245 * nilfs_read_summary_info - read an item on summary blocks of a log
246 * @nilfs: nilfs object
247 * @pbh: the current buffer head on summary blocks [in, out]
248 * @offset: the current byte offset on summary blocks [in, out]
249 * @bytes: byte size of the item to be read
251 static void *nilfs_read_summary_info(struct the_nilfs
*nilfs
,
252 struct buffer_head
**pbh
,
253 unsigned int *offset
, unsigned int bytes
)
258 BUG_ON((*pbh
)->b_size
< *offset
);
259 if (bytes
> (*pbh
)->b_size
- *offset
) {
260 blocknr
= (*pbh
)->b_blocknr
;
262 *pbh
= __bread(nilfs
->ns_bdev
, blocknr
+ 1,
263 nilfs
->ns_blocksize
);
268 ptr
= (*pbh
)->b_data
+ *offset
;
274 * nilfs_skip_summary_info - skip items on summary blocks of a log
275 * @nilfs: nilfs object
276 * @pbh: the current buffer head on summary blocks [in, out]
277 * @offset: the current byte offset on summary blocks [in, out]
278 * @bytes: byte size of the item to be skipped
279 * @count: number of items to be skipped
281 static void nilfs_skip_summary_info(struct the_nilfs
*nilfs
,
282 struct buffer_head
**pbh
,
283 unsigned int *offset
, unsigned int bytes
,
286 unsigned int rest_item_in_current_block
287 = ((*pbh
)->b_size
- *offset
) / bytes
;
289 if (count
<= rest_item_in_current_block
) {
290 *offset
+= bytes
* count
;
292 sector_t blocknr
= (*pbh
)->b_blocknr
;
293 unsigned int nitem_per_block
= (*pbh
)->b_size
/ bytes
;
296 count
-= rest_item_in_current_block
;
297 bcnt
= DIV_ROUND_UP(count
, nitem_per_block
);
298 *offset
= bytes
* (count
- (bcnt
- 1) * nitem_per_block
);
301 *pbh
= __bread(nilfs
->ns_bdev
, blocknr
+ bcnt
,
302 nilfs
->ns_blocksize
);
307 * nilfs_scan_dsync_log - get block information of a log written for data sync
308 * @nilfs: nilfs object
309 * @start_blocknr: start block number of the log
310 * @sum: log summary information
311 * @head: list head to add nilfs_recovery_block struct
313 static int nilfs_scan_dsync_log(struct the_nilfs
*nilfs
, sector_t start_blocknr
,
314 struct nilfs_segment_summary
*sum
,
315 struct list_head
*head
)
317 struct buffer_head
*bh
;
319 u32 nfinfo
, sumbytes
;
324 nfinfo
= le32_to_cpu(sum
->ss_nfinfo
);
328 sumbytes
= le32_to_cpu(sum
->ss_sumbytes
);
329 blocknr
= start_blocknr
+ DIV_ROUND_UP(sumbytes
, nilfs
->ns_blocksize
);
330 bh
= __bread(nilfs
->ns_bdev
, start_blocknr
, nilfs
->ns_blocksize
);
334 offset
= le16_to_cpu(sum
->ss_bytes
);
336 unsigned long nblocks
, ndatablk
, nnodeblk
;
337 struct nilfs_finfo
*finfo
;
339 finfo
= nilfs_read_summary_info(nilfs
, &bh
, &offset
,
341 if (unlikely(!finfo
))
344 ino
= le64_to_cpu(finfo
->fi_ino
);
345 nblocks
= le32_to_cpu(finfo
->fi_nblocks
);
346 ndatablk
= le32_to_cpu(finfo
->fi_ndatablk
);
347 nnodeblk
= nblocks
- ndatablk
;
349 while (ndatablk
-- > 0) {
350 struct nilfs_recovery_block
*rb
;
351 struct nilfs_binfo_v
*binfo
;
353 binfo
= nilfs_read_summary_info(nilfs
, &bh
, &offset
,
355 if (unlikely(!binfo
))
358 rb
= kmalloc(sizeof(*rb
), GFP_NOFS
);
364 rb
->blocknr
= blocknr
++;
365 rb
->vblocknr
= le64_to_cpu(binfo
->bi_vblocknr
);
366 rb
->blkoff
= le64_to_cpu(binfo
->bi_blkoff
);
367 /* INIT_LIST_HEAD(&rb->list); */
368 list_add_tail(&rb
->list
, head
);
372 blocknr
+= nnodeblk
; /* always 0 for data sync logs */
373 nilfs_skip_summary_info(nilfs
, &bh
, &offset
, sizeof(__le64
),
380 brelse(bh
); /* brelse(NULL) is just ignored */
384 static void dispose_recovery_list(struct list_head
*head
)
386 while (!list_empty(head
)) {
387 struct nilfs_recovery_block
*rb
;
389 rb
= list_first_entry(head
, struct nilfs_recovery_block
, list
);
395 struct nilfs_segment_entry
{
396 struct list_head list
;
400 static int nilfs_segment_list_add(struct list_head
*head
, __u64 segnum
)
402 struct nilfs_segment_entry
*ent
= kmalloc(sizeof(*ent
), GFP_NOFS
);
407 ent
->segnum
= segnum
;
408 INIT_LIST_HEAD(&ent
->list
);
409 list_add_tail(&ent
->list
, head
);
413 void nilfs_dispose_segment_list(struct list_head
*head
)
415 while (!list_empty(head
)) {
416 struct nilfs_segment_entry
*ent
;
418 ent
= list_first_entry(head
, struct nilfs_segment_entry
, list
);
419 list_del(&ent
->list
);
424 static int nilfs_prepare_segment_for_recovery(struct the_nilfs
*nilfs
,
425 struct super_block
*sb
,
426 struct nilfs_recovery_info
*ri
)
428 struct list_head
*head
= &ri
->ri_used_segments
;
429 struct nilfs_segment_entry
*ent
, *n
;
430 struct inode
*sufile
= nilfs
->ns_sufile
;
435 segnum
[0] = nilfs
->ns_segnum
;
436 segnum
[1] = nilfs
->ns_nextnum
;
437 segnum
[2] = ri
->ri_segnum
;
438 segnum
[3] = ri
->ri_nextnum
;
441 * Releasing the next segment of the latest super root.
442 * The next segment is invalidated by this recovery.
444 err
= nilfs_sufile_free(sufile
, segnum
[1]);
448 for (i
= 1; i
< 4; i
++) {
449 err
= nilfs_segment_list_add(head
, segnum
[i
]);
455 * Collecting segments written after the latest super root.
456 * These are marked dirty to avoid being reallocated in the next write.
458 list_for_each_entry_safe(ent
, n
, head
, list
) {
459 if (ent
->segnum
!= segnum
[0]) {
460 err
= nilfs_sufile_scrap(sufile
, ent
->segnum
);
464 list_del(&ent
->list
);
468 /* Allocate new segments for recovery */
469 err
= nilfs_sufile_alloc(sufile
, &segnum
[0]);
473 nilfs
->ns_pseg_offset
= 0;
474 nilfs
->ns_seg_seq
= ri
->ri_seq
+ 2;
475 nilfs
->ns_nextnum
= nilfs
->ns_segnum
= segnum
[0];
478 /* No need to recover sufile because it will be destroyed on error */
482 static int nilfs_recovery_copy_block(struct the_nilfs
*nilfs
,
483 struct nilfs_recovery_block
*rb
,
486 struct buffer_head
*bh_org
;
489 bh_org
= __bread(nilfs
->ns_bdev
, rb
->blocknr
, nilfs
->ns_blocksize
);
490 if (unlikely(!bh_org
))
493 kaddr
= kmap_atomic(page
);
494 memcpy(kaddr
+ bh_offset(bh_org
), bh_org
->b_data
, bh_org
->b_size
);
495 kunmap_atomic(kaddr
);
500 static int nilfs_recover_dsync_blocks(struct the_nilfs
*nilfs
,
501 struct super_block
*sb
,
502 struct nilfs_root
*root
,
503 struct list_head
*head
,
504 unsigned long *nr_salvaged_blocks
)
507 struct nilfs_recovery_block
*rb
, *n
;
508 unsigned int blocksize
= nilfs
->ns_blocksize
;
511 int err
= 0, err2
= 0;
513 list_for_each_entry_safe(rb
, n
, head
, list
) {
514 inode
= nilfs_iget(sb
, root
, rb
->ino
);
516 err
= PTR_ERR(inode
);
521 pos
= rb
->blkoff
<< inode
->i_blkbits
;
522 err
= block_write_begin(inode
->i_mapping
, pos
, blocksize
,
523 0, &page
, nilfs_get_block
);
525 loff_t isize
= inode
->i_size
;
527 if (pos
+ blocksize
> isize
)
528 nilfs_write_failed(inode
->i_mapping
,
533 err
= nilfs_recovery_copy_block(nilfs
, rb
, page
);
537 err
= nilfs_set_file_dirty(inode
, 1);
541 block_write_end(NULL
, inode
->i_mapping
, pos
, blocksize
,
542 blocksize
, page
, NULL
);
547 (*nr_salvaged_blocks
)++;
555 nilfs_msg(sb
, KERN_WARNING
,
556 "error %d recovering data block (ino=%lu, block-offset=%llu)",
557 err
, (unsigned long)rb
->ino
,
558 (unsigned long long)rb
->blkoff
);
562 iput(inode
); /* iput(NULL) is just ignored */
563 list_del_init(&rb
->list
);
570 * nilfs_do_roll_forward - salvage logical segments newer than the latest
572 * @nilfs: nilfs object
573 * @sb: super block instance
574 * @ri: pointer to a nilfs_recovery_info
576 static int nilfs_do_roll_forward(struct the_nilfs
*nilfs
,
577 struct super_block
*sb
,
578 struct nilfs_root
*root
,
579 struct nilfs_recovery_info
*ri
)
581 struct buffer_head
*bh_sum
= NULL
;
582 struct nilfs_segment_summary
*sum
= NULL
;
584 sector_t seg_start
, seg_end
; /* Starting/ending DBN of full segment */
585 unsigned long nsalvaged_blocks
= 0;
588 __u64 segnum
, nextnum
= 0;
591 LIST_HEAD(dsync_blocks
); /* list of data blocks to be recovered */
594 RF_DSYNC_ST
, /* scanning data-sync segments */
596 int state
= RF_INIT_ST
;
598 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
);
603 while (segnum
!= ri
->ri_segnum
|| pseg_start
<= ri
->ri_pseg_start
) {
605 bh_sum
= nilfs_read_log_header(nilfs
, pseg_start
, &sum
);
611 ret
= nilfs_validate_log(nilfs
, seg_seq
, bh_sum
, sum
);
613 if (ret
== NILFS_SEG_FAIL_IO
) {
620 flags
= le16_to_cpu(sum
->ss_flags
);
621 if (flags
& NILFS_SS_SR
)
624 /* Found a valid partial segment; do recovery actions */
625 nextnum
= nilfs_get_segnum_of_block(nilfs
,
626 le64_to_cpu(sum
->ss_next
));
628 nilfs
->ns_ctime
= le64_to_cpu(sum
->ss_create
);
629 if (!(flags
& NILFS_SS_GC
))
630 nilfs
->ns_nongc_ctime
= nilfs
->ns_ctime
;
634 if (!(flags
& NILFS_SS_LOGBGN
) ||
635 !(flags
& NILFS_SS_SYNDT
))
640 if (!(flags
& NILFS_SS_SYNDT
))
643 err
= nilfs_scan_dsync_log(nilfs
, pseg_start
, sum
,
647 if (flags
& NILFS_SS_LOGEND
) {
648 err
= nilfs_recover_dsync_blocks(
649 nilfs
, sb
, root
, &dsync_blocks
,
655 break; /* Fall through to try_next_pseg */
659 if (pseg_start
== ri
->ri_lsegs_end
)
661 pseg_start
+= le32_to_cpu(sum
->ss_nblocks
);
662 if (pseg_start
< seg_end
)
667 if (pseg_start
== ri
->ri_lsegs_end
)
671 /* Looking to the next full segment */
676 nilfs_get_segment_range(nilfs
, segnum
, &seg_start
, &seg_end
);
677 pseg_start
= seg_start
;
680 if (nsalvaged_blocks
) {
681 nilfs_msg(sb
, KERN_INFO
, "salvaged %lu blocks",
683 ri
->ri_need_recovery
= NILFS_RECOVERY_ROLLFORWARD_DONE
;
687 dispose_recovery_list(&dsync_blocks
);
693 nilfs_msg(sb
, KERN_ERR
,
694 "error %d roll-forwarding partial segment at blocknr = %llu",
695 err
, (unsigned long long)pseg_start
);
699 static void nilfs_finish_roll_forward(struct the_nilfs
*nilfs
,
700 struct nilfs_recovery_info
*ri
)
702 struct buffer_head
*bh
;
705 if (nilfs_get_segnum_of_block(nilfs
, ri
->ri_lsegs_start
) !=
706 nilfs_get_segnum_of_block(nilfs
, ri
->ri_super_root
))
709 bh
= __getblk(nilfs
->ns_bdev
, ri
->ri_lsegs_start
, nilfs
->ns_blocksize
);
711 memset(bh
->b_data
, 0, bh
->b_size
);
712 set_buffer_dirty(bh
);
713 err
= sync_dirty_buffer(bh
);
715 nilfs_msg(nilfs
->ns_sb
, KERN_WARNING
,
716 "buffer sync write failed during post-cleaning of recovery.");
721 * nilfs_salvage_orphan_logs - salvage logs written after the latest checkpoint
722 * @nilfs: nilfs object
723 * @sb: super block instance
724 * @ri: pointer to a nilfs_recovery_info struct to store search results.
726 * Return Value: On success, 0 is returned. On error, one of the following
727 * negative error code is returned.
729 * %-EINVAL - Inconsistent filesystem state.
733 * %-ENOSPC - No space left on device (only in a panic state).
735 * %-ERESTARTSYS - Interrupted.
737 * %-ENOMEM - Insufficient memory available.
739 int nilfs_salvage_orphan_logs(struct the_nilfs
*nilfs
,
740 struct super_block
*sb
,
741 struct nilfs_recovery_info
*ri
)
743 struct nilfs_root
*root
;
746 if (ri
->ri_lsegs_start
== 0 || ri
->ri_lsegs_end
== 0)
749 err
= nilfs_attach_checkpoint(sb
, ri
->ri_cno
, true, &root
);
751 nilfs_msg(sb
, KERN_ERR
,
752 "error %d loading the latest checkpoint", err
);
756 err
= nilfs_do_roll_forward(nilfs
, sb
, root
, ri
);
760 if (ri
->ri_need_recovery
== NILFS_RECOVERY_ROLLFORWARD_DONE
) {
761 err
= nilfs_prepare_segment_for_recovery(nilfs
, sb
, ri
);
763 nilfs_msg(sb
, KERN_ERR
,
764 "error %d preparing segment for recovery",
769 err
= nilfs_attach_log_writer(sb
, root
);
773 set_nilfs_discontinued(nilfs
);
774 err
= nilfs_construct_segment(sb
);
775 nilfs_detach_log_writer(sb
);
778 nilfs_msg(sb
, KERN_ERR
,
779 "error %d writing segment for recovery",
784 nilfs_finish_roll_forward(nilfs
, ri
);
788 nilfs_put_root(root
);
793 * nilfs_search_super_root - search the latest valid super root
795 * @ri: pointer to a nilfs_recovery_info struct to store search results.
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.
801 * Return Value: On success, 0 is returned. On error, one of the following
802 * negative error code is returned.
804 * %-EINVAL - No valid segment found
808 * %-ENOMEM - Insufficient memory available.
810 int nilfs_search_super_root(struct the_nilfs
*nilfs
,
811 struct nilfs_recovery_info
*ri
)
813 struct buffer_head
*bh_sum
= NULL
;
814 struct nilfs_segment_summary
*sum
= NULL
;
815 sector_t pseg_start
, pseg_end
, sr_pseg_start
= 0;
816 sector_t seg_start
, seg_end
; /* range of full segment (block number) */
818 unsigned long nblocks
;
821 __u64 segnum
, nextnum
= 0;
824 int empty_seg
= 0, scan_newer
= 0;
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
);
832 /* Calculate range of segment */
833 nilfs_get_segment_range(nilfs
, segnum
, &seg_start
, &seg_end
);
835 /* Read ahead segment */
838 __breadahead(nilfs
->ns_bdev
, b
++, nilfs
->ns_blocksize
);
842 ret
= NILFS_SEG_FAIL_IO
;
843 bh_sum
= nilfs_read_log_header(nilfs
, pseg_start
, &sum
);
847 ret
= nilfs_validate_log(nilfs
, seg_seq
, bh_sum
, sum
);
849 if (ret
== NILFS_SEG_FAIL_IO
)
854 nblocks
= le32_to_cpu(sum
->ss_nblocks
);
855 pseg_end
= pseg_start
+ nblocks
- 1;
856 if (unlikely(pseg_end
> seg_end
)) {
857 ret
= NILFS_SEG_FAIL_CONSISTENCY
;
861 /* A valid partial segment */
862 ri
->ri_pseg_start
= pseg_start
;
863 ri
->ri_seq
= seg_seq
;
864 ri
->ri_segnum
= segnum
;
865 nextnum
= nilfs_get_segnum_of_block(nilfs
,
866 le64_to_cpu(sum
->ss_next
));
867 ri
->ri_nextnum
= nextnum
;
870 flags
= le16_to_cpu(sum
->ss_flags
);
871 if (!(flags
& NILFS_SS_SR
) && !scan_newer
) {
873 * This will never happen because a superblock
874 * (last_segment) always points to a pseg with
877 ret
= NILFS_SEG_FAIL_CONSISTENCY
;
881 if (pseg_start
== seg_start
) {
882 nilfs_get_segment_range(nilfs
, nextnum
, &b
, &end
);
884 __breadahead(nilfs
->ns_bdev
, b
++,
885 nilfs
->ns_blocksize
);
887 if (!(flags
& NILFS_SS_SR
)) {
888 if (!ri
->ri_lsegs_start
&& (flags
& NILFS_SS_LOGBGN
)) {
889 ri
->ri_lsegs_start
= pseg_start
;
890 ri
->ri_lsegs_start_seq
= seg_seq
;
892 if (flags
& NILFS_SS_LOGEND
)
893 ri
->ri_lsegs_end
= pseg_start
;
897 /* A valid super root was found. */
899 ri
->ri_super_root
= pseg_end
;
900 ri
->ri_lsegs_start
= ri
->ri_lsegs_end
= 0;
902 nilfs_dispose_segment_list(&segments
);
903 sr_pseg_start
= pseg_start
;
904 nilfs
->ns_pseg_offset
= pseg_start
+ nblocks
- seg_start
;
905 nilfs
->ns_seg_seq
= seg_seq
;
906 nilfs
->ns_segnum
= segnum
;
907 nilfs
->ns_cno
= cno
; /* nilfs->ns_cno = ri->ri_cno + 1 */
908 nilfs
->ns_ctime
= le64_to_cpu(sum
->ss_create
);
909 nilfs
->ns_nextnum
= nextnum
;
912 ri
->ri_need_recovery
= NILFS_RECOVERY_SR_UPDATED
;
914 if (nilfs
->ns_mount_state
& NILFS_VALID_FS
)
915 goto super_root_found
;
920 /* Standing on a course, or met an inconsistent state */
921 pseg_start
+= nblocks
;
922 if (pseg_start
< seg_end
)
930 * This can happen if a checkpoint was written without
931 * barriers, or as a result of an I/O failure.
936 /* Looking to the next full segment */
938 goto super_root_found
; /* found a valid super root */
940 ret
= nilfs_segment_list_add(&segments
, segnum
);
946 nilfs_get_segment_range(nilfs
, segnum
, &seg_start
, &seg_end
);
947 pseg_start
= seg_start
;
951 /* Updating pointers relating to the latest checkpoint */
953 list_splice_tail(&segments
, &ri
->ri_used_segments
);
954 nilfs
->ns_last_pseg
= sr_pseg_start
;
955 nilfs
->ns_last_seq
= nilfs
->ns_seg_seq
;
956 nilfs
->ns_last_cno
= ri
->ri_cno
;
961 nilfs_dispose_segment_list(&segments
);
962 return ret
< 0 ? ret
: nilfs_warn_segment_error(nilfs
->ns_sb
, ret
);