2 * linux/fs/jbd2/recovery.c
4 * Written by Stephen C. Tweedie <sct@redhat.com>, 1999
6 * Copyright 1999-2000 Red Hat Software --- All Rights Reserved
8 * This file is part of the Linux kernel and is made available under
9 * the terms of the GNU General Public License, version 2, or at your
10 * option, any later version, incorporated herein by reference.
12 * Journal recovery routines for the generic filesystem journaling code;
13 * part of the ext2fs journaling system.
19 #include <linux/time.h>
21 #include <linux/jbd2.h>
22 #include <linux/errno.h>
23 #include <linux/slab.h>
27 * Maintain information about the progress of the recovery job, so that
28 * the different passes can carry information between them.
32 tid_t start_transaction
;
33 tid_t end_transaction
;
40 enum passtype
{PASS_SCAN
, PASS_REVOKE
, PASS_REPLAY
};
41 static int do_one_pass(journal_t
*journal
,
42 struct recovery_info
*info
, enum passtype pass
);
43 static int scan_revoke_records(journal_t
*, struct buffer_head
*,
44 tid_t
, struct recovery_info
*);
48 /* Release readahead buffers after use */
49 static void journal_brelse_array(struct buffer_head
*b
[], int n
)
57 * When reading from the journal, we are going through the block device
58 * layer directly and so there is no readahead being done for us. We
59 * need to implement any readahead ourselves if we want it to happen at
60 * all. Recovery is basically one long sequential read, so make sure we
61 * do the IO in reasonably large chunks.
63 * This is not so critical that we need to be enormously clever about
64 * the readahead size, though. 128K is a purely arbitrary, good-enough
69 static int do_readahead(journal_t
*journal
, unsigned int start
)
72 unsigned int max
, nbufs
, next
;
73 unsigned long long blocknr
;
74 struct buffer_head
*bh
;
76 struct buffer_head
* bufs
[MAXBUF
];
78 /* Do up to 128K of readahead */
79 max
= start
+ (128 * 1024 / journal
->j_blocksize
);
80 if (max
> journal
->j_maxlen
)
81 max
= journal
->j_maxlen
;
83 /* Do the readahead itself. We'll submit MAXBUF buffer_heads at
84 * a time to the block device IO layer. */
88 for (next
= start
; next
< max
; next
++) {
89 err
= jbd2_journal_bmap(journal
, next
, &blocknr
);
92 printk (KERN_ERR
"JBD: bad block at offset %u\n",
97 bh
= __getblk(journal
->j_dev
, blocknr
, journal
->j_blocksize
);
103 if (!buffer_uptodate(bh
) && !buffer_locked(bh
)) {
105 if (nbufs
== MAXBUF
) {
106 ll_rw_block(READ
, nbufs
, bufs
);
107 journal_brelse_array(bufs
, nbufs
);
115 ll_rw_block(READ
, nbufs
, bufs
);
120 journal_brelse_array(bufs
, nbufs
);
124 #endif /* __KERNEL__ */
128 * Read a block from the journal
131 static int jread(struct buffer_head
**bhp
, journal_t
*journal
,
135 unsigned long long blocknr
;
136 struct buffer_head
*bh
;
140 if (offset
>= journal
->j_maxlen
) {
141 printk(KERN_ERR
"JBD: corrupted journal superblock\n");
145 err
= jbd2_journal_bmap(journal
, offset
, &blocknr
);
148 printk (KERN_ERR
"JBD: bad block at offset %u\n",
153 bh
= __getblk(journal
->j_dev
, blocknr
, journal
->j_blocksize
);
157 if (!buffer_uptodate(bh
)) {
158 /* If this is a brand new buffer, start readahead.
159 Otherwise, we assume we are already reading it. */
161 do_readahead(journal
, offset
);
165 if (!buffer_uptodate(bh
)) {
166 printk (KERN_ERR
"JBD: Failed to read block at offset %u\n",
178 * Count the number of in-use tags in a journal descriptor block.
181 static int count_tags(journal_t
*journal
, struct buffer_head
*bh
)
184 journal_block_tag_t
* tag
;
185 int nr
= 0, size
= journal
->j_blocksize
;
186 int tag_bytes
= journal_tag_bytes(journal
);
188 tagp
= &bh
->b_data
[sizeof(journal_header_t
)];
190 while ((tagp
- bh
->b_data
+ tag_bytes
) <= size
) {
191 tag
= (journal_block_tag_t
*) tagp
;
195 if (!(tag
->t_flags
& cpu_to_be32(JBD2_FLAG_SAME_UUID
)))
198 if (tag
->t_flags
& cpu_to_be32(JBD2_FLAG_LAST_TAG
))
206 /* Make sure we wrap around the log correctly! */
207 #define wrap(journal, var) \
209 if (var >= (journal)->j_last) \
210 var -= ((journal)->j_last - (journal)->j_first); \
214 * jbd2_journal_recover - recovers a on-disk journal
215 * @journal: the journal to recover
217 * The primary function for recovering the log contents when mounting a
220 * Recovery is done in three passes. In the first pass, we look for the
221 * end of the log. In the second, we assemble the list of revoke
222 * blocks. In the third and final pass, we replay any un-revoked blocks
225 int jbd2_journal_recover(journal_t
*journal
)
228 journal_superblock_t
* sb
;
230 struct recovery_info info
;
232 memset(&info
, 0, sizeof(info
));
233 sb
= journal
->j_superblock
;
236 * The journal superblock's s_start field (the current log head)
237 * is always zero if, and only if, the journal was cleanly
242 jbd_debug(1, "No recovery required, last transaction %d\n",
243 be32_to_cpu(sb
->s_sequence
));
244 journal
->j_transaction_sequence
= be32_to_cpu(sb
->s_sequence
) + 1;
248 err
= do_one_pass(journal
, &info
, PASS_SCAN
);
250 err
= do_one_pass(journal
, &info
, PASS_REVOKE
);
252 err
= do_one_pass(journal
, &info
, PASS_REPLAY
);
254 jbd_debug(1, "JBD: recovery, exit status %d, "
255 "recovered transactions %u to %u\n",
256 err
, info
.start_transaction
, info
.end_transaction
);
257 jbd_debug(1, "JBD: Replayed %d and revoked %d/%d blocks\n",
258 info
.nr_replays
, info
.nr_revoke_hits
, info
.nr_revokes
);
260 /* Restart the log at the next transaction ID, thus invalidating
261 * any existing commit records in the log. */
262 journal
->j_transaction_sequence
= ++info
.end_transaction
;
264 jbd2_journal_clear_revoke(journal
);
265 sync_blockdev(journal
->j_fs_dev
);
270 * jbd2_journal_skip_recovery - Start journal and wipe exiting records
271 * @journal: journal to startup
273 * Locate any valid recovery information from the journal and set up the
274 * journal structures in memory to ignore it (presumably because the
275 * caller has evidence that it is out of date).
276 * This function does'nt appear to be exorted..
278 * We perform one pass over the journal to allow us to tell the user how
279 * much recovery information is being erased, and to let us initialise
280 * the journal transaction sequence numbers to the next unused ID.
282 int jbd2_journal_skip_recovery(journal_t
*journal
)
285 journal_superblock_t
* sb
;
287 struct recovery_info info
;
289 memset (&info
, 0, sizeof(info
));
290 sb
= journal
->j_superblock
;
292 err
= do_one_pass(journal
, &info
, PASS_SCAN
);
295 printk(KERN_ERR
"JBD: error %d scanning journal\n", err
);
296 ++journal
->j_transaction_sequence
;
298 #ifdef CONFIG_JBD2_DEBUG
299 int dropped
= info
.end_transaction
- be32_to_cpu(sb
->s_sequence
);
302 "JBD: ignoring %d transaction%s from the journal.\n",
303 dropped
, (dropped
== 1) ? "" : "s");
304 journal
->j_transaction_sequence
= ++info
.end_transaction
;
311 static inline unsigned long long read_tag_block(int tag_bytes
, journal_block_tag_t
*tag
)
313 unsigned long long block
= be32_to_cpu(tag
->t_blocknr
);
314 if (tag_bytes
> JBD_TAG_SIZE32
)
315 block
|= (u64
)be32_to_cpu(tag
->t_blocknr_high
) << 32;
319 static int do_one_pass(journal_t
*journal
,
320 struct recovery_info
*info
, enum passtype pass
)
322 unsigned int first_commit_ID
, next_commit_ID
;
323 unsigned long next_log_block
;
324 int err
, success
= 0;
325 journal_superblock_t
* sb
;
326 journal_header_t
* tmp
;
327 struct buffer_head
* bh
;
328 unsigned int sequence
;
330 int tag_bytes
= journal_tag_bytes(journal
);
332 /* Precompute the maximum metadata descriptors in a descriptor block */
333 int MAX_BLOCKS_PER_DESC
;
334 MAX_BLOCKS_PER_DESC
= ((journal
->j_blocksize
-sizeof(journal_header_t
))
338 * First thing is to establish what we expect to find in the log
339 * (in terms of transaction IDs), and where (in terms of log
340 * block offsets): query the superblock.
343 sb
= journal
->j_superblock
;
344 next_commit_ID
= be32_to_cpu(sb
->s_sequence
);
345 next_log_block
= be32_to_cpu(sb
->s_start
);
347 first_commit_ID
= next_commit_ID
;
348 if (pass
== PASS_SCAN
)
349 info
->start_transaction
= first_commit_ID
;
351 jbd_debug(1, "Starting recovery pass %d\n", pass
);
354 * Now we walk through the log, transaction by transaction,
355 * making sure that each transaction has a commit block in the
356 * expected place. Each complete transaction gets replayed back
357 * into the main filesystem.
363 journal_block_tag_t
* tag
;
364 struct buffer_head
* obh
;
365 struct buffer_head
* nbh
;
367 cond_resched(); /* We're under lock_kernel() */
369 /* If we already know where to stop the log traversal,
370 * check right now that we haven't gone past the end of
373 if (pass
!= PASS_SCAN
)
374 if (tid_geq(next_commit_ID
, info
->end_transaction
))
377 jbd_debug(2, "Scanning for sequence ID %u at %lu/%lu\n",
378 next_commit_ID
, next_log_block
, journal
->j_last
);
380 /* Skip over each chunk of the transaction looking
381 * either the next descriptor block or the final commit
384 jbd_debug(3, "JBD: checking block %ld\n", next_log_block
);
385 err
= jread(&bh
, journal
, next_log_block
);
390 wrap(journal
, next_log_block
);
392 /* What kind of buffer is it?
394 * If it is a descriptor block, check that it has the
395 * expected sequence number. Otherwise, we're all done
398 tmp
= (journal_header_t
*)bh
->b_data
;
400 if (tmp
->h_magic
!= cpu_to_be32(JBD2_MAGIC_NUMBER
)) {
405 blocktype
= be32_to_cpu(tmp
->h_blocktype
);
406 sequence
= be32_to_cpu(tmp
->h_sequence
);
407 jbd_debug(3, "Found magic %d, sequence %d\n",
408 blocktype
, sequence
);
410 if (sequence
!= next_commit_ID
) {
415 /* OK, we have a valid descriptor block which matches
416 * all of the sequence number checks. What are we going
417 * to do with it? That depends on the pass... */
420 case JBD2_DESCRIPTOR_BLOCK
:
421 /* If it is a valid descriptor block, replay it
422 * in pass REPLAY; otherwise, just skip over the
423 * blocks it describes. */
424 if (pass
!= PASS_REPLAY
) {
425 next_log_block
+= count_tags(journal
, bh
);
426 wrap(journal
, next_log_block
);
431 /* A descriptor block: we can now write all of
432 * the data blocks. Yay, useful work is finally
433 * getting done here! */
435 tagp
= &bh
->b_data
[sizeof(journal_header_t
)];
436 while ((tagp
- bh
->b_data
+ tag_bytes
)
437 <= journal
->j_blocksize
) {
438 unsigned long io_block
;
440 tag
= (journal_block_tag_t
*) tagp
;
441 flags
= be32_to_cpu(tag
->t_flags
);
443 io_block
= next_log_block
++;
444 wrap(journal
, next_log_block
);
445 err
= jread(&obh
, journal
, io_block
);
447 /* Recover what we can, but
448 * report failure at the end. */
451 "JBD: IO error %d recovering "
452 "block %ld in log\n",
455 unsigned long long blocknr
;
457 J_ASSERT(obh
!= NULL
);
458 blocknr
= read_tag_block(tag_bytes
,
461 /* If the block has been
462 * revoked, then we're all done
464 if (jbd2_journal_test_revoke
468 ++info
->nr_revoke_hits
;
472 /* Find a buffer for the new
473 * data being restored */
474 nbh
= __getblk(journal
->j_fs_dev
,
476 journal
->j_blocksize
);
479 "JBD: Out of memory "
480 "during recovery.\n");
488 memcpy(nbh
->b_data
, obh
->b_data
,
489 journal
->j_blocksize
);
490 if (flags
& JBD2_FLAG_ESCAPE
) {
491 *((__be32
*)bh
->b_data
) =
492 cpu_to_be32(JBD2_MAGIC_NUMBER
);
495 BUFFER_TRACE(nbh
, "marking dirty");
496 set_buffer_uptodate(nbh
);
497 mark_buffer_dirty(nbh
);
498 BUFFER_TRACE(nbh
, "marking uptodate");
500 /* ll_rw_block(WRITE, 1, &nbh); */
508 if (!(flags
& JBD2_FLAG_SAME_UUID
))
511 if (flags
& JBD2_FLAG_LAST_TAG
)
518 case JBD2_COMMIT_BLOCK
:
519 /* Found an expected commit block: not much to
520 * do other than move on to the next sequence
526 case JBD2_REVOKE_BLOCK
:
527 /* If we aren't in the REVOKE pass, then we can
528 * just skip over this block. */
529 if (pass
!= PASS_REVOKE
) {
534 err
= scan_revoke_records(journal
, bh
,
535 next_commit_ID
, info
);
542 jbd_debug(3, "Unrecognised magic %d, end of scan.\n",
551 * We broke out of the log scan loop: either we came to the
552 * known end of the log or we found an unexpected block in the
553 * log. If the latter happened, then we know that the "current"
554 * transaction marks the end of the valid log.
557 if (pass
== PASS_SCAN
)
558 info
->end_transaction
= next_commit_ID
;
560 /* It's really bad news if different passes end up at
561 * different places (but possible due to IO errors). */
562 if (info
->end_transaction
!= next_commit_ID
) {
563 printk (KERN_ERR
"JBD: recovery pass %d ended at "
564 "transaction %u, expected %u\n",
565 pass
, next_commit_ID
, info
->end_transaction
);
578 /* Scan a revoke record, marking all blocks mentioned as revoked. */
580 static int scan_revoke_records(journal_t
*journal
, struct buffer_head
*bh
,
581 tid_t sequence
, struct recovery_info
*info
)
583 jbd2_journal_revoke_header_t
*header
;
587 header
= (jbd2_journal_revoke_header_t
*) bh
->b_data
;
588 offset
= sizeof(jbd2_journal_revoke_header_t
);
589 max
= be32_to_cpu(header
->r_count
);
591 if (JBD2_HAS_INCOMPAT_FEATURE(journal
, JBD2_FEATURE_INCOMPAT_64BIT
))
594 while (offset
+ record_len
<= max
) {
595 unsigned long long blocknr
;
599 blocknr
= be32_to_cpu(* ((__be32
*) (bh
->b_data
+offset
)));
601 blocknr
= be64_to_cpu(* ((__be64
*) (bh
->b_data
+offset
)));
602 offset
+= record_len
;
603 err
= jbd2_journal_set_revoke(journal
, blocknr
, sequence
);