1 // SPDX-License-Identifier: GPL-2.0+
3 * linux/fs/jbd2/recovery.c
7 * Copyright 1999-2000 Red Hat Software --- All Rights Reserved
9 * Journal recovery routines for the generic filesystem journaling code;
10 * part of the ext2fs journaling system.
16 #include <linux/time.h>
18 #include <linux/jbd2.h>
19 #include <linux/errno.h>
20 #include <linux/crc32.h>
21 #include <linux/blkdev.h>
25 * Maintain information about the progress of the recovery job, so that
26 * the different passes can carry information between them.
30 tid_t start_transaction;
31 tid_t end_transaction;
32 unsigned long head_block;
39 static int do_one_pass(journal_t *journal,
40 struct recovery_info *info, enum passtype pass);
41 static int scan_revoke_records(journal_t *, struct buffer_head *,
42 tid_t, struct recovery_info *);
46 /* Release readahead buffers after use */
47 static void journal_brelse_array(struct buffer_head *b[], int n)
55 * When reading from the journal, we are going through the block device
56 * layer directly and so there is no readahead being done for us. We
57 * need to implement any readahead ourselves if we want it to happen at
58 * all. Recovery is basically one long sequential read, so make sure we
59 * do the IO in reasonably large chunks.
61 * This is not so critical that we need to be enormously clever about
62 * the readahead size, though. 128K is a purely arbitrary, good-enough
67 static int do_readahead(journal_t *journal, unsigned int start)
70 unsigned int max, nbufs, next;
71 unsigned long long blocknr;
72 struct buffer_head *bh;
74 struct buffer_head * bufs[MAXBUF];
76 /* Do up to 128K of readahead */
77 max = start + (128 * 1024 / journal->j_blocksize);
78 if (max > journal->j_total_len)
79 max = journal->j_total_len;
81 /* Do the readahead itself. We'll submit MAXBUF buffer_heads at
82 * a time to the block device IO layer. */
86 for (next = start; next < max; next++) {
87 err = jbd2_journal_bmap(journal, next, &blocknr);
90 printk(KERN_ERR "JBD2: bad block at offset %u\n",
95 bh = __getblk(journal->j_dev, blocknr, journal->j_blocksize);
101 if (!buffer_uptodate(bh) && !buffer_locked(bh)) {
103 if (nbufs == MAXBUF) {
104 bh_readahead_batch(nbufs, bufs, 0);
105 journal_brelse_array(bufs, nbufs);
113 bh_readahead_batch(nbufs, bufs, 0);
118 journal_brelse_array(bufs, nbufs);
122 #endif /* __KERNEL__ */
126 * Read a block from the journal
129 static int jread(struct buffer_head **bhp, journal_t *journal,
133 unsigned long long blocknr;
134 struct buffer_head *bh;
138 if (offset >= journal->j_total_len) {
139 printk(KERN_ERR "JBD2: corrupted journal superblock\n");
140 return -EFSCORRUPTED;
143 err = jbd2_journal_bmap(journal, offset, &blocknr);
146 printk(KERN_ERR "JBD2: bad block at offset %u\n",
151 bh = __getblk(journal->j_dev, blocknr, journal->j_blocksize);
155 if (!buffer_uptodate(bh)) {
157 * If this is a brand new buffer, start readahead.
158 * Otherwise, we assume we are already reading it.
160 bool need_readahead = !buffer_req(bh);
162 bh_read_nowait(bh, 0);
164 do_readahead(journal, offset);
168 if (!buffer_uptodate(bh)) {
169 printk(KERN_ERR "JBD2: Failed to read block at offset %u\n",
179 static int jbd2_descriptor_block_csum_verify(journal_t *j, void *buf)
181 struct jbd2_journal_block_tail *tail;
185 if (!jbd2_journal_has_csum_v2or3(j))
188 tail = (struct jbd2_journal_block_tail *)((char *)buf +
189 j->j_blocksize - sizeof(struct jbd2_journal_block_tail));
190 provided = tail->t_checksum;
191 tail->t_checksum = 0;
192 calculated = jbd2_chksum(j, j->j_csum_seed, buf, j->j_blocksize);
193 tail->t_checksum = provided;
195 return provided == cpu_to_be32(calculated);
199 * Count the number of in-use tags in a journal descriptor block.
202 static int count_tags(journal_t *journal, struct buffer_head *bh)
205 journal_block_tag_t tag;
206 int nr = 0, size = journal->j_blocksize;
207 int tag_bytes = journal_tag_bytes(journal);
209 if (jbd2_journal_has_csum_v2or3(journal))
210 size -= sizeof(struct jbd2_journal_block_tail);
212 tagp = &bh->b_data[sizeof(journal_header_t)];
214 while ((tagp - bh->b_data + tag_bytes) <= size) {
215 memcpy(&tag, tagp, sizeof(tag));
219 if (!(tag.t_flags & cpu_to_be16(JBD2_FLAG_SAME_UUID)))
222 if (tag.t_flags & cpu_to_be16(JBD2_FLAG_LAST_TAG))
230 /* Make sure we wrap around the log correctly! */
231 #define wrap(journal, var) \
233 if (var >= (journal)->j_last) \
234 var -= ((journal)->j_last - (journal)->j_first); \
237 static int fc_do_one_pass(journal_t *journal,
238 struct recovery_info *info, enum passtype pass)
240 unsigned int expected_commit_id = info->end_transaction;
241 unsigned long next_fc_block;
242 struct buffer_head *bh;
245 next_fc_block = journal->j_fc_first;
246 if (!journal->j_fc_replay_callback)
249 while (next_fc_block <= journal->j_fc_last) {
250 jbd2_debug(3, "Fast commit replay: next block %ld\n",
252 err = jread(&bh, journal, next_fc_block);
254 jbd2_debug(3, "Fast commit replay: read error\n");
258 err = journal->j_fc_replay_callback(journal, bh, pass,
259 next_fc_block - journal->j_fc_first,
263 if (err < 0 || err == JBD2_FC_REPLAY_STOP)
269 jbd2_debug(3, "Fast commit replay failed, err = %d\n", err);
275 * jbd2_journal_recover - recovers a on-disk journal
276 * @journal: the journal to recover
278 * The primary function for recovering the log contents when mounting a
281 * Recovery is done in three passes. In the first pass, we look for the
282 * end of the log. In the second, we assemble the list of revoke
283 * blocks. In the third and final pass, we replay any un-revoked blocks
286 int jbd2_journal_recover(journal_t *journal)
289 journal_superblock_t * sb;
291 struct recovery_info info;
293 struct address_space *mapping;
295 memset(&info, 0, sizeof(info));
296 sb = journal->j_superblock;
299 * The journal superblock's s_start field (the current log head)
300 * is always zero if, and only if, the journal was cleanly
304 jbd2_debug(1, "No recovery required, last transaction %d, head block %u\n",
305 be32_to_cpu(sb->s_sequence), be32_to_cpu(sb->s_head));
306 journal->j_transaction_sequence = be32_to_cpu(sb->s_sequence) + 1;
307 journal->j_head = be32_to_cpu(sb->s_head);
312 mapping = journal->j_fs_dev->bd_inode->i_mapping;
313 errseq_check_and_advance(&mapping->wb_err, &wb_err);
314 err = do_one_pass(journal, &info, PASS_SCAN);
316 err = do_one_pass(journal, &info, PASS_REVOKE);
318 err = do_one_pass(journal, &info, PASS_REPLAY);
320 jbd2_debug(1, "JBD2: recovery, exit status %d, "
321 "recovered transactions %u to %u\n",
322 err, info.start_transaction, info.end_transaction);
323 jbd2_debug(1, "JBD2: Replayed %d and revoked %d/%d blocks\n",
324 info.nr_replays, info.nr_revoke_hits, info.nr_revokes);
326 /* Restart the log at the next transaction ID, thus invalidating
327 * any existing commit records in the log. */
328 journal->j_transaction_sequence = ++info.end_transaction;
329 journal->j_head = info.head_block;
330 jbd2_debug(1, "JBD2: last transaction %d, head block %lu\n",
331 journal->j_transaction_sequence, journal->j_head);
333 jbd2_journal_clear_revoke(journal);
334 err2 = sync_blockdev(journal->j_fs_dev);
337 err2 = errseq_check_and_advance(&mapping->wb_err, &wb_err);
340 /* Make sure all replayed data is on permanent storage */
341 if (journal->j_flags & JBD2_BARRIER) {
342 err2 = blkdev_issue_flush(journal->j_fs_dev);
350 * jbd2_journal_skip_recovery - Start journal and wipe exiting records
351 * @journal: journal to startup
353 * Locate any valid recovery information from the journal and set up the
354 * journal structures in memory to ignore it (presumably because the
355 * caller has evidence that it is out of date).
356 * This function doesn't appear to be exported..
358 * We perform one pass over the journal to allow us to tell the user how
359 * much recovery information is being erased, and to let us initialise
360 * the journal transaction sequence numbers to the next unused ID.
362 int jbd2_journal_skip_recovery(journal_t *journal)
366 struct recovery_info info;
368 memset (&info, 0, sizeof(info));
370 err = do_one_pass(journal, &info, PASS_SCAN);
373 printk(KERN_ERR "JBD2: error %d scanning journal\n", err);
374 ++journal->j_transaction_sequence;
375 journal->j_head = journal->j_first;
377 #ifdef CONFIG_JBD2_DEBUG
378 int dropped = info.end_transaction -
379 be32_to_cpu(journal->j_superblock->s_sequence);
381 "JBD2: ignoring %d transaction%s from the journal.\n",
382 dropped, (dropped == 1) ? "" : "s");
384 journal->j_transaction_sequence = ++info.end_transaction;
385 journal->j_head = info.head_block;
392 static inline unsigned long long read_tag_block(journal_t *journal,
393 journal_block_tag_t *tag)
395 unsigned long long block = be32_to_cpu(tag->t_blocknr);
396 if (jbd2_has_feature_64bit(journal))
397 block |= (u64)be32_to_cpu(tag->t_blocknr_high) << 32;
402 * calc_chksums calculates the checksums for the blocks described in the
405 static int calc_chksums(journal_t *journal, struct buffer_head *bh,
406 unsigned long *next_log_block, __u32 *crc32_sum)
408 int i, num_blks, err;
409 unsigned long io_block;
410 struct buffer_head *obh;
412 num_blks = count_tags(journal, bh);
413 /* Calculate checksum of the descriptor block. */
414 *crc32_sum = crc32_be(*crc32_sum, (void *)bh->b_data, bh->b_size);
416 for (i = 0; i < num_blks; i++) {
417 io_block = (*next_log_block)++;
418 wrap(journal, *next_log_block);
419 err = jread(&obh, journal, io_block);
421 printk(KERN_ERR "JBD2: IO error %d recovering block "
422 "%lu in log\n", err, io_block);
425 *crc32_sum = crc32_be(*crc32_sum, (void *)obh->b_data,
433 static int jbd2_commit_block_csum_verify(journal_t *j, void *buf)
435 struct commit_header *h;
439 if (!jbd2_journal_has_csum_v2or3(j))
443 provided = h->h_chksum[0];
445 calculated = jbd2_chksum(j, j->j_csum_seed, buf, j->j_blocksize);
446 h->h_chksum[0] = provided;
448 return provided == cpu_to_be32(calculated);
451 static int jbd2_block_tag_csum_verify(journal_t *j, journal_block_tag_t *tag,
452 journal_block_tag3_t *tag3,
453 void *buf, __u32 sequence)
458 if (!jbd2_journal_has_csum_v2or3(j))
461 seq = cpu_to_be32(sequence);
462 csum32 = jbd2_chksum(j, j->j_csum_seed, (__u8 *)&seq, sizeof(seq));
463 csum32 = jbd2_chksum(j, csum32, buf, j->j_blocksize);
465 if (jbd2_has_feature_csum3(j))
466 return tag3->t_checksum == cpu_to_be32(csum32);
468 return tag->t_checksum == cpu_to_be16(csum32);
471 static int do_one_pass(journal_t *journal,
472 struct recovery_info *info, enum passtype pass)
474 unsigned int first_commit_ID, next_commit_ID;
475 unsigned long next_log_block, head_block;
476 int err, success = 0;
477 journal_superblock_t * sb;
478 journal_header_t * tmp;
479 struct buffer_head * bh;
480 unsigned int sequence;
482 int tag_bytes = journal_tag_bytes(journal);
483 __u32 crc32_sum = ~0; /* Transactional Checksums */
484 int descr_csum_size = 0;
486 bool need_check_commit_time = false;
487 __u64 last_trans_commit_time = 0, commit_time;
490 * First thing is to establish what we expect to find in the log
491 * (in terms of transaction IDs), and where (in terms of log
492 * block offsets): query the superblock.
495 sb = journal->j_superblock;
496 next_commit_ID = be32_to_cpu(sb->s_sequence);
497 next_log_block = be32_to_cpu(sb->s_start);
498 head_block = next_log_block;
500 first_commit_ID = next_commit_ID;
501 if (pass == PASS_SCAN)
502 info->start_transaction = first_commit_ID;
504 jbd2_debug(1, "Starting recovery pass %d\n", pass);
507 * Now we walk through the log, transaction by transaction,
508 * making sure that each transaction has a commit block in the
509 * expected place. Each complete transaction gets replayed back
510 * into the main filesystem.
516 journal_block_tag_t tag;
517 struct buffer_head * obh;
518 struct buffer_head * nbh;
522 /* If we already know where to stop the log traversal,
523 * check right now that we haven't gone past the end of
526 if (pass != PASS_SCAN)
527 if (tid_geq(next_commit_ID, info->end_transaction))
530 jbd2_debug(2, "Scanning for sequence ID %u at %lu/%lu\n",
531 next_commit_ID, next_log_block, journal->j_last);
533 /* Skip over each chunk of the transaction looking
534 * either the next descriptor block or the final commit
537 jbd2_debug(3, "JBD2: checking block %ld\n", next_log_block);
538 err = jread(&bh, journal, next_log_block);
543 wrap(journal, next_log_block);
545 /* What kind of buffer is it?
547 * If it is a descriptor block, check that it has the
548 * expected sequence number. Otherwise, we're all done
551 tmp = (journal_header_t *)bh->b_data;
553 if (tmp->h_magic != cpu_to_be32(JBD2_MAGIC_NUMBER)) {
558 blocktype = be32_to_cpu(tmp->h_blocktype);
559 sequence = be32_to_cpu(tmp->h_sequence);
560 jbd2_debug(3, "Found magic %d, sequence %d\n",
561 blocktype, sequence);
563 if (sequence != next_commit_ID) {
568 /* OK, we have a valid descriptor block which matches
569 * all of the sequence number checks. What are we going
570 * to do with it? That depends on the pass... */
573 case JBD2_DESCRIPTOR_BLOCK:
574 /* Verify checksum first */
575 if (jbd2_journal_has_csum_v2or3(journal))
577 sizeof(struct jbd2_journal_block_tail);
578 if (descr_csum_size > 0 &&
579 !jbd2_descriptor_block_csum_verify(journal,
582 * PASS_SCAN can see stale blocks due to lazy
583 * journal init. Don't error out on those yet.
585 if (pass != PASS_SCAN) {
586 pr_err("JBD2: Invalid checksum recovering block %lu in log\n",
592 need_check_commit_time = true;
594 "invalid descriptor block found in %lu\n",
598 /* If it is a valid descriptor block, replay it
599 * in pass REPLAY; if journal_checksums enabled, then
600 * calculate checksums in PASS_SCAN, otherwise,
601 * just skip over the blocks it describes. */
602 if (pass != PASS_REPLAY) {
603 if (pass == PASS_SCAN &&
604 jbd2_has_feature_checksum(journal) &&
605 !need_check_commit_time &&
606 !info->end_transaction) {
607 if (calc_chksums(journal, bh,
616 next_log_block += count_tags(journal, bh);
617 wrap(journal, next_log_block);
622 /* A descriptor block: we can now write all of
623 * the data blocks. Yay, useful work is finally
624 * getting done here! */
626 tagp = &bh->b_data[sizeof(journal_header_t)];
627 while ((tagp - bh->b_data + tag_bytes)
628 <= journal->j_blocksize - descr_csum_size) {
629 unsigned long io_block;
631 memcpy(&tag, tagp, sizeof(tag));
632 flags = be16_to_cpu(tag.t_flags);
634 io_block = next_log_block++;
635 wrap(journal, next_log_block);
636 err = jread(&obh, journal, io_block);
638 /* Recover what we can, but
639 * report failure at the end. */
642 "JBD2: IO error %d recovering "
643 "block %lu in log\n",
646 unsigned long long blocknr;
648 J_ASSERT(obh != NULL);
649 blocknr = read_tag_block(journal,
652 /* If the block has been
653 * revoked, then we're all done
655 if (jbd2_journal_test_revoke
659 ++info->nr_revoke_hits;
663 /* Look for block corruption */
664 if (!jbd2_block_tag_csum_verify(
665 journal, &tag, (journal_block_tag3_t *)tagp,
666 obh->b_data, be32_to_cpu(tmp->h_sequence))) {
668 success = -EFSBADCRC;
669 printk(KERN_ERR "JBD2: Invalid "
670 "checksum recovering "
671 "data block %llu in "
672 "journal block %lu\n",
678 /* Find a buffer for the new
679 * data being restored */
680 nbh = __getblk(journal->j_fs_dev,
682 journal->j_blocksize);
685 "JBD2: Out of memory "
686 "during recovery.\n");
694 memcpy(nbh->b_data, obh->b_data,
695 journal->j_blocksize);
696 if (flags & JBD2_FLAG_ESCAPE) {
697 *((__be32 *)nbh->b_data) =
698 cpu_to_be32(JBD2_MAGIC_NUMBER);
701 BUFFER_TRACE(nbh, "marking dirty");
702 set_buffer_uptodate(nbh);
703 mark_buffer_dirty(nbh);
704 BUFFER_TRACE(nbh, "marking uptodate");
713 if (!(flags & JBD2_FLAG_SAME_UUID))
716 if (flags & JBD2_FLAG_LAST_TAG)
723 case JBD2_COMMIT_BLOCK:
724 /* How to differentiate between interrupted commit
725 * and journal corruption ?
728 * Checksum Verification Failed
730 * ____________________
732 * async_commit sync_commit
734 * | GO TO NEXT "Journal Corruption"
737 * {(n+1)th transanction}
739 * _______|______________
741 * Commit block found Commit block not found
743 * "Journal Corruption" |
744 * _____________|_________
746 * nth trans corrupt OR nth trans
747 * and (n+1)th interrupted interrupted
748 * before commit block
749 * could reach the disk.
750 * (Cannot find the difference in above
751 * mentioned conditions. Hence assume
752 * "Interrupted Commit".)
754 commit_time = be64_to_cpu(
755 ((struct commit_header *)bh->b_data)->h_commit_sec);
757 * If need_check_commit_time is set, it means we are in
758 * PASS_SCAN and csum verify failed before. If
759 * commit_time is increasing, it's the same journal,
760 * otherwise it is stale journal block, just end this
763 if (need_check_commit_time) {
764 if (commit_time >= last_trans_commit_time) {
765 pr_err("JBD2: Invalid checksum found in transaction %u\n",
773 * It likely does not belong to same journal,
774 * just end this recovery with success.
776 jbd2_debug(1, "JBD2: Invalid checksum ignored in transaction %u, likely stale data\n",
783 * Found an expected commit block: if checksums
784 * are present, verify them in PASS_SCAN; else not
785 * much to do other than move on to the next sequence
788 if (pass == PASS_SCAN &&
789 jbd2_has_feature_checksum(journal)) {
790 struct commit_header *cbh =
791 (struct commit_header *)bh->b_data;
792 unsigned found_chksum =
793 be32_to_cpu(cbh->h_chksum[0]);
795 if (info->end_transaction) {
796 journal->j_failed_commit =
797 info->end_transaction;
802 /* Neither checksum match nor unused? */
803 if (!((crc32_sum == found_chksum &&
804 cbh->h_chksum_type ==
806 cbh->h_chksum_size ==
807 JBD2_CRC32_CHKSUM_SIZE) ||
808 (cbh->h_chksum_type == 0 &&
809 cbh->h_chksum_size == 0 &&
815 if (pass == PASS_SCAN &&
816 !jbd2_commit_block_csum_verify(journal,
819 if (commit_time < last_trans_commit_time)
820 goto ignore_crc_mismatch;
821 info->end_transaction = next_commit_ID;
822 info->head_block = head_block;
824 if (!jbd2_has_feature_async_commit(journal)) {
825 journal->j_failed_commit =
831 if (pass == PASS_SCAN) {
832 last_trans_commit_time = commit_time;
833 head_block = next_log_block;
839 case JBD2_REVOKE_BLOCK:
841 * Check revoke block crc in pass_scan, if csum verify
842 * failed, check commit block time later.
844 if (pass == PASS_SCAN &&
845 !jbd2_descriptor_block_csum_verify(journal,
847 jbd2_debug(1, "JBD2: invalid revoke block found in %lu\n",
849 need_check_commit_time = true;
851 /* If we aren't in the REVOKE pass, then we can
852 * just skip over this block. */
853 if (pass != PASS_REVOKE) {
858 err = scan_revoke_records(journal, bh,
859 next_commit_ID, info);
866 jbd2_debug(3, "Unrecognised magic %d, end of scan.\n",
875 * We broke out of the log scan loop: either we came to the
876 * known end of the log or we found an unexpected block in the
877 * log. If the latter happened, then we know that the "current"
878 * transaction marks the end of the valid log.
881 if (pass == PASS_SCAN) {
882 if (!info->end_transaction)
883 info->end_transaction = next_commit_ID;
884 if (!info->head_block)
885 info->head_block = head_block;
887 /* It's really bad news if different passes end up at
888 * different places (but possible due to IO errors). */
889 if (info->end_transaction != next_commit_ID) {
890 printk(KERN_ERR "JBD2: recovery pass %d ended at "
891 "transaction %u, expected %u\n",
892 pass, next_commit_ID, info->end_transaction);
898 if (jbd2_has_feature_fast_commit(journal) && pass != PASS_REVOKE) {
899 err = fc_do_one_pass(journal, info, pass);
904 if (block_error && success == 0)
912 /* Scan a revoke record, marking all blocks mentioned as revoked. */
914 static int scan_revoke_records(journal_t *journal, struct buffer_head *bh,
915 tid_t sequence, struct recovery_info *info)
917 jbd2_journal_revoke_header_t *header;
919 unsigned csum_size = 0;
923 header = (jbd2_journal_revoke_header_t *) bh->b_data;
924 offset = sizeof(jbd2_journal_revoke_header_t);
925 rcount = be32_to_cpu(header->r_count);
927 if (jbd2_journal_has_csum_v2or3(journal))
928 csum_size = sizeof(struct jbd2_journal_block_tail);
929 if (rcount > journal->j_blocksize - csum_size)
933 if (jbd2_has_feature_64bit(journal))
936 while (offset + record_len <= max) {
937 unsigned long long blocknr;
941 blocknr = be32_to_cpu(* ((__be32 *) (bh->b_data+offset)));
943 blocknr = be64_to_cpu(* ((__be64 *) (bh->b_data+offset)));
944 offset += record_len;
945 err = jbd2_journal_set_revoke(journal, blocknr, sequence);