blob: c1a03354a22ff1b5a787251b422afcb5225ca2c9 [file] [log] [blame]
Dave Kleikamp470decc2006-10-11 01:20:57 -07001/*
Uwe Kleine-König58862692007-05-09 07:51:49 +02002 * linux/fs/jbd2/recovery.c
Dave Kleikamp470decc2006-10-11 01:20:57 -07003 *
4 * Written by Stephen C. Tweedie <sct@redhat.com>, 1999
5 *
6 * Copyright 1999-2000 Red Hat Software --- All Rights Reserved
7 *
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.
11 *
12 * Journal recovery routines for the generic filesystem journaling code;
13 * part of the ext2fs journaling system.
14 */
15
16#ifndef __KERNEL__
17#include "jfs_user.h"
18#else
19#include <linux/time.h>
20#include <linux/fs.h>
Mingming Caof7f4bcc2006-10-11 01:20:59 -070021#include <linux/jbd2.h>
Dave Kleikamp470decc2006-10-11 01:20:57 -070022#include <linux/errno.h>
Girish Shilamkar818d2762008-01-28 23:58:27 -050023#include <linux/crc32.h>
Jan Kara79feb522012-03-13 22:22:54 -040024#include <linux/blkdev.h>
Dave Kleikamp470decc2006-10-11 01:20:57 -070025#endif
26
27/*
28 * Maintain information about the progress of the recovery job, so that
29 * the different passes can carry information between them.
30 */
31struct recovery_info
32{
33 tid_t start_transaction;
34 tid_t end_transaction;
35
36 int nr_replays;
37 int nr_revokes;
38 int nr_revoke_hits;
39};
40
41enum passtype {PASS_SCAN, PASS_REVOKE, PASS_REPLAY};
42static int do_one_pass(journal_t *journal,
43 struct recovery_info *info, enum passtype pass);
44static int scan_revoke_records(journal_t *, struct buffer_head *,
45 tid_t, struct recovery_info *);
46
47#ifdef __KERNEL__
48
49/* Release readahead buffers after use */
50static void journal_brelse_array(struct buffer_head *b[], int n)
51{
52 while (--n >= 0)
53 brelse (b[n]);
54}
55
56
57/*
58 * When reading from the journal, we are going through the block device
59 * layer directly and so there is no readahead being done for us. We
60 * need to implement any readahead ourselves if we want it to happen at
61 * all. Recovery is basically one long sequential read, so make sure we
62 * do the IO in reasonably large chunks.
63 *
64 * This is not so critical that we need to be enormously clever about
65 * the readahead size, though. 128K is a purely arbitrary, good-enough
66 * fixed value.
67 */
68
69#define MAXBUF 8
70static int do_readahead(journal_t *journal, unsigned int start)
71{
72 int err;
73 unsigned int max, nbufs, next;
Mingming Cao18eba7a2006-10-11 01:21:13 -070074 unsigned long long blocknr;
Dave Kleikamp470decc2006-10-11 01:20:57 -070075 struct buffer_head *bh;
76
77 struct buffer_head * bufs[MAXBUF];
78
79 /* Do up to 128K of readahead */
80 max = start + (128 * 1024 / journal->j_blocksize);
81 if (max > journal->j_maxlen)
82 max = journal->j_maxlen;
83
84 /* Do the readahead itself. We'll submit MAXBUF buffer_heads at
85 * a time to the block device IO layer. */
86
87 nbufs = 0;
88
89 for (next = start; next < max; next++) {
Mingming Caof7f4bcc2006-10-11 01:20:59 -070090 err = jbd2_journal_bmap(journal, next, &blocknr);
Dave Kleikamp470decc2006-10-11 01:20:57 -070091
92 if (err) {
Eryu Guanf2a44522011-11-01 19:09:18 -040093 printk(KERN_ERR "JBD2: bad block at offset %u\n",
Dave Kleikamp470decc2006-10-11 01:20:57 -070094 next);
95 goto failed;
96 }
97
98 bh = __getblk(journal->j_dev, blocknr, journal->j_blocksize);
99 if (!bh) {
100 err = -ENOMEM;
101 goto failed;
102 }
103
104 if (!buffer_uptodate(bh) && !buffer_locked(bh)) {
105 bufs[nbufs++] = bh;
106 if (nbufs == MAXBUF) {
107 ll_rw_block(READ, nbufs, bufs);
108 journal_brelse_array(bufs, nbufs);
109 nbufs = 0;
110 }
111 } else
112 brelse(bh);
113 }
114
115 if (nbufs)
116 ll_rw_block(READ, nbufs, bufs);
117 err = 0;
118
119failed:
120 if (nbufs)
121 journal_brelse_array(bufs, nbufs);
122 return err;
123}
124
125#endif /* __KERNEL__ */
126
127
128/*
129 * Read a block from the journal
130 */
131
132static int jread(struct buffer_head **bhp, journal_t *journal,
133 unsigned int offset)
134{
135 int err;
Mingming Cao18eba7a2006-10-11 01:21:13 -0700136 unsigned long long blocknr;
Dave Kleikamp470decc2006-10-11 01:20:57 -0700137 struct buffer_head *bh;
138
139 *bhp = NULL;
140
141 if (offset >= journal->j_maxlen) {
Eryu Guanf2a44522011-11-01 19:09:18 -0400142 printk(KERN_ERR "JBD2: corrupted journal superblock\n");
Dave Kleikamp470decc2006-10-11 01:20:57 -0700143 return -EIO;
144 }
145
Mingming Caof7f4bcc2006-10-11 01:20:59 -0700146 err = jbd2_journal_bmap(journal, offset, &blocknr);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700147
148 if (err) {
Eryu Guanf2a44522011-11-01 19:09:18 -0400149 printk(KERN_ERR "JBD2: bad block at offset %u\n",
Dave Kleikamp470decc2006-10-11 01:20:57 -0700150 offset);
151 return err;
152 }
153
154 bh = __getblk(journal->j_dev, blocknr, journal->j_blocksize);
155 if (!bh)
156 return -ENOMEM;
157
158 if (!buffer_uptodate(bh)) {
159 /* If this is a brand new buffer, start readahead.
160 Otherwise, we assume we are already reading it. */
161 if (!buffer_req(bh))
162 do_readahead(journal, offset);
163 wait_on_buffer(bh);
164 }
165
166 if (!buffer_uptodate(bh)) {
Eryu Guanf2a44522011-11-01 19:09:18 -0400167 printk(KERN_ERR "JBD2: Failed to read block at offset %u\n",
Dave Kleikamp470decc2006-10-11 01:20:57 -0700168 offset);
169 brelse(bh);
170 return -EIO;
171 }
172
173 *bhp = bh;
174 return 0;
175}
176
177
178/*
179 * Count the number of in-use tags in a journal descriptor block.
180 */
181
Zach Brownb517bea2006-10-11 01:21:08 -0700182static int count_tags(journal_t *journal, struct buffer_head *bh)
Dave Kleikamp470decc2006-10-11 01:20:57 -0700183{
184 char * tagp;
185 journal_block_tag_t * tag;
Zach Brownb517bea2006-10-11 01:21:08 -0700186 int nr = 0, size = journal->j_blocksize;
187 int tag_bytes = journal_tag_bytes(journal);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700188
189 tagp = &bh->b_data[sizeof(journal_header_t)];
190
Zach Brownb517bea2006-10-11 01:21:08 -0700191 while ((tagp - bh->b_data + tag_bytes) <= size) {
Dave Kleikamp470decc2006-10-11 01:20:57 -0700192 tag = (journal_block_tag_t *) tagp;
193
194 nr++;
Zach Brownb517bea2006-10-11 01:21:08 -0700195 tagp += tag_bytes;
Mingming Caof7f4bcc2006-10-11 01:20:59 -0700196 if (!(tag->t_flags & cpu_to_be32(JBD2_FLAG_SAME_UUID)))
Dave Kleikamp470decc2006-10-11 01:20:57 -0700197 tagp += 16;
198
Mingming Caof7f4bcc2006-10-11 01:20:59 -0700199 if (tag->t_flags & cpu_to_be32(JBD2_FLAG_LAST_TAG))
Dave Kleikamp470decc2006-10-11 01:20:57 -0700200 break;
201 }
202
203 return nr;
204}
205
206
207/* Make sure we wrap around the log correctly! */
208#define wrap(journal, var) \
209do { \
210 if (var >= (journal)->j_last) \
211 var -= ((journal)->j_last - (journal)->j_first); \
212} while (0)
213
214/**
Mingming Caof7f4bcc2006-10-11 01:20:59 -0700215 * jbd2_journal_recover - recovers a on-disk journal
Dave Kleikamp470decc2006-10-11 01:20:57 -0700216 * @journal: the journal to recover
217 *
218 * The primary function for recovering the log contents when mounting a
219 * journaled device.
220 *
221 * Recovery is done in three passes. In the first pass, we look for the
222 * end of the log. In the second, we assemble the list of revoke
223 * blocks. In the third and final pass, we replay any un-revoked blocks
224 * in the log.
225 */
Mingming Caof7f4bcc2006-10-11 01:20:59 -0700226int jbd2_journal_recover(journal_t *journal)
Dave Kleikamp470decc2006-10-11 01:20:57 -0700227{
Hidehiro Kawai44519fa2008-10-10 20:29:13 -0400228 int err, err2;
Dave Kleikamp470decc2006-10-11 01:20:57 -0700229 journal_superblock_t * sb;
230
231 struct recovery_info info;
232
233 memset(&info, 0, sizeof(info));
234 sb = journal->j_superblock;
235
236 /*
237 * The journal superblock's s_start field (the current log head)
238 * is always zero if, and only if, the journal was cleanly
239 * unmounted.
240 */
241
242 if (!sb->s_start) {
243 jbd_debug(1, "No recovery required, last transaction %d\n",
244 be32_to_cpu(sb->s_sequence));
245 journal->j_transaction_sequence = be32_to_cpu(sb->s_sequence) + 1;
246 return 0;
247 }
248
249 err = do_one_pass(journal, &info, PASS_SCAN);
250 if (!err)
251 err = do_one_pass(journal, &info, PASS_REVOKE);
252 if (!err)
253 err = do_one_pass(journal, &info, PASS_REPLAY);
254
Eryu Guanf2a44522011-11-01 19:09:18 -0400255 jbd_debug(1, "JBD2: recovery, exit status %d, "
Dave Kleikamp470decc2006-10-11 01:20:57 -0700256 "recovered transactions %u to %u\n",
257 err, info.start_transaction, info.end_transaction);
Eryu Guanf2a44522011-11-01 19:09:18 -0400258 jbd_debug(1, "JBD2: Replayed %d and revoked %d/%d blocks\n",
Dave Kleikamp470decc2006-10-11 01:20:57 -0700259 info.nr_replays, info.nr_revoke_hits, info.nr_revokes);
260
261 /* Restart the log at the next transaction ID, thus invalidating
262 * any existing commit records in the log. */
263 journal->j_transaction_sequence = ++info.end_transaction;
264
Mingming Caof7f4bcc2006-10-11 01:20:59 -0700265 jbd2_journal_clear_revoke(journal);
Hidehiro Kawai44519fa2008-10-10 20:29:13 -0400266 err2 = sync_blockdev(journal->j_fs_dev);
267 if (!err)
268 err = err2;
Jan Kara79feb522012-03-13 22:22:54 -0400269 /* Make sure all replayed data is on permanent storage */
270 if (journal->j_flags & JBD2_BARRIER)
271 blkdev_issue_flush(journal->j_fs_dev, GFP_KERNEL, NULL);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700272 return err;
273}
274
275/**
Mingming Caof7f4bcc2006-10-11 01:20:59 -0700276 * jbd2_journal_skip_recovery - Start journal and wipe exiting records
Dave Kleikamp470decc2006-10-11 01:20:57 -0700277 * @journal: journal to startup
278 *
279 * Locate any valid recovery information from the journal and set up the
280 * journal structures in memory to ignore it (presumably because the
281 * caller has evidence that it is out of date).
282 * This function does'nt appear to be exorted..
283 *
284 * We perform one pass over the journal to allow us to tell the user how
285 * much recovery information is being erased, and to let us initialise
286 * the journal transaction sequence numbers to the next unused ID.
287 */
Mingming Caof7f4bcc2006-10-11 01:20:59 -0700288int jbd2_journal_skip_recovery(journal_t *journal)
Dave Kleikamp470decc2006-10-11 01:20:57 -0700289{
290 int err;
Dave Kleikamp470decc2006-10-11 01:20:57 -0700291
292 struct recovery_info info;
293
294 memset (&info, 0, sizeof(info));
Dave Kleikamp470decc2006-10-11 01:20:57 -0700295
296 err = do_one_pass(journal, &info, PASS_SCAN);
297
298 if (err) {
Eryu Guanf2a44522011-11-01 19:09:18 -0400299 printk(KERN_ERR "JBD2: error %d scanning journal\n", err);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700300 ++journal->j_transaction_sequence;
301 } else {
Jose R. Santose23291b2007-07-18 08:57:06 -0400302#ifdef CONFIG_JBD2_DEBUG
Andi Kleen5a0790c2010-06-14 13:28:03 -0400303 int dropped = info.end_transaction -
304 be32_to_cpu(journal->j_superblock->s_sequence);
Mingming Caob38bd332007-07-19 01:48:35 -0700305 jbd_debug(1,
Eryu Guanf2a44522011-11-01 19:09:18 -0400306 "JBD2: ignoring %d transaction%s from the journal.\n",
Dave Kleikamp470decc2006-10-11 01:20:57 -0700307 dropped, (dropped == 1) ? "" : "s");
Theodore Ts'o9a4f6272010-12-18 13:36:33 -0500308#endif
Dave Kleikamp470decc2006-10-11 01:20:57 -0700309 journal->j_transaction_sequence = ++info.end_transaction;
310 }
311
312 journal->j_tail = 0;
313 return err;
314}
315
Mingming Cao18eba7a2006-10-11 01:21:13 -0700316static inline unsigned long long read_tag_block(int tag_bytes, journal_block_tag_t *tag)
Zach Brownb517bea2006-10-11 01:21:08 -0700317{
Mingming Cao18eba7a2006-10-11 01:21:13 -0700318 unsigned long long block = be32_to_cpu(tag->t_blocknr);
Mingming Caocd02ff02007-10-16 18:38:25 -0400319 if (tag_bytes > JBD2_TAG_SIZE32)
Zach Brownb517bea2006-10-11 01:21:08 -0700320 block |= (u64)be32_to_cpu(tag->t_blocknr_high) << 32;
321 return block;
322}
323
Girish Shilamkar818d2762008-01-28 23:58:27 -0500324/*
325 * calc_chksums calculates the checksums for the blocks described in the
326 * descriptor block.
327 */
328static int calc_chksums(journal_t *journal, struct buffer_head *bh,
329 unsigned long *next_log_block, __u32 *crc32_sum)
330{
331 int i, num_blks, err;
332 unsigned long io_block;
333 struct buffer_head *obh;
334
335 num_blks = count_tags(journal, bh);
336 /* Calculate checksum of the descriptor block. */
337 *crc32_sum = crc32_be(*crc32_sum, (void *)bh->b_data, bh->b_size);
338
339 for (i = 0; i < num_blks; i++) {
340 io_block = (*next_log_block)++;
341 wrap(journal, *next_log_block);
342 err = jread(&obh, journal, io_block);
343 if (err) {
Eryu Guanf2a44522011-11-01 19:09:18 -0400344 printk(KERN_ERR "JBD2: IO error %d recovering block "
Girish Shilamkar818d2762008-01-28 23:58:27 -0500345 "%lu in log\n", err, io_block);
346 return 1;
347 } else {
348 *crc32_sum = crc32_be(*crc32_sum, (void *)obh->b_data,
349 obh->b_size);
350 }
Theodore Ts'o8ea76902008-05-26 10:28:09 -0400351 put_bh(obh);
Girish Shilamkar818d2762008-01-28 23:58:27 -0500352 }
353 return 0;
354}
355
Dave Kleikamp470decc2006-10-11 01:20:57 -0700356static int do_one_pass(journal_t *journal,
357 struct recovery_info *info, enum passtype pass)
358{
359 unsigned int first_commit_ID, next_commit_ID;
360 unsigned long next_log_block;
361 int err, success = 0;
362 journal_superblock_t * sb;
363 journal_header_t * tmp;
364 struct buffer_head * bh;
365 unsigned int sequence;
366 int blocktype;
Zach Brownb517bea2006-10-11 01:21:08 -0700367 int tag_bytes = journal_tag_bytes(journal);
Girish Shilamkar818d2762008-01-28 23:58:27 -0500368 __u32 crc32_sum = ~0; /* Transactional Checksums */
Dave Kleikamp470decc2006-10-11 01:20:57 -0700369
Dave Kleikamp470decc2006-10-11 01:20:57 -0700370 /*
371 * First thing is to establish what we expect to find in the log
372 * (in terms of transaction IDs), and where (in terms of log
373 * block offsets): query the superblock.
374 */
375
376 sb = journal->j_superblock;
377 next_commit_ID = be32_to_cpu(sb->s_sequence);
378 next_log_block = be32_to_cpu(sb->s_start);
379
380 first_commit_ID = next_commit_ID;
381 if (pass == PASS_SCAN)
382 info->start_transaction = first_commit_ID;
383
384 jbd_debug(1, "Starting recovery pass %d\n", pass);
385
386 /*
387 * Now we walk through the log, transaction by transaction,
388 * making sure that each transaction has a commit block in the
389 * expected place. Each complete transaction gets replayed back
390 * into the main filesystem.
391 */
392
393 while (1) {
394 int flags;
395 char * tagp;
396 journal_block_tag_t * tag;
397 struct buffer_head * obh;
398 struct buffer_head * nbh;
399
Andi Kleene86e1432008-02-06 01:40:11 -0800400 cond_resched();
Dave Kleikamp470decc2006-10-11 01:20:57 -0700401
402 /* If we already know where to stop the log traversal,
403 * check right now that we haven't gone past the end of
404 * the log. */
405
406 if (pass != PASS_SCAN)
407 if (tid_geq(next_commit_ID, info->end_transaction))
408 break;
409
410 jbd_debug(2, "Scanning for sequence ID %u at %lu/%lu\n",
411 next_commit_ID, next_log_block, journal->j_last);
412
413 /* Skip over each chunk of the transaction looking
414 * either the next descriptor block or the final commit
415 * record. */
416
Eryu Guanf2a44522011-11-01 19:09:18 -0400417 jbd_debug(3, "JBD2: checking block %ld\n", next_log_block);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700418 err = jread(&bh, journal, next_log_block);
419 if (err)
420 goto failed;
421
422 next_log_block++;
423 wrap(journal, next_log_block);
424
425 /* What kind of buffer is it?
426 *
427 * If it is a descriptor block, check that it has the
428 * expected sequence number. Otherwise, we're all done
429 * here. */
430
431 tmp = (journal_header_t *)bh->b_data;
432
Mingming Caof7f4bcc2006-10-11 01:20:59 -0700433 if (tmp->h_magic != cpu_to_be32(JBD2_MAGIC_NUMBER)) {
Dave Kleikamp470decc2006-10-11 01:20:57 -0700434 brelse(bh);
435 break;
436 }
437
438 blocktype = be32_to_cpu(tmp->h_blocktype);
439 sequence = be32_to_cpu(tmp->h_sequence);
440 jbd_debug(3, "Found magic %d, sequence %d\n",
441 blocktype, sequence);
442
443 if (sequence != next_commit_ID) {
444 brelse(bh);
445 break;
446 }
447
448 /* OK, we have a valid descriptor block which matches
449 * all of the sequence number checks. What are we going
450 * to do with it? That depends on the pass... */
451
452 switch(blocktype) {
Mingming Caof7f4bcc2006-10-11 01:20:59 -0700453 case JBD2_DESCRIPTOR_BLOCK:
Dave Kleikamp470decc2006-10-11 01:20:57 -0700454 /* If it is a valid descriptor block, replay it
Girish Shilamkar818d2762008-01-28 23:58:27 -0500455 * in pass REPLAY; if journal_checksums enabled, then
456 * calculate checksums in PASS_SCAN, otherwise,
457 * just skip over the blocks it describes. */
Dave Kleikamp470decc2006-10-11 01:20:57 -0700458 if (pass != PASS_REPLAY) {
Girish Shilamkar818d2762008-01-28 23:58:27 -0500459 if (pass == PASS_SCAN &&
460 JBD2_HAS_COMPAT_FEATURE(journal,
461 JBD2_FEATURE_COMPAT_CHECKSUM) &&
462 !info->end_transaction) {
463 if (calc_chksums(journal, bh,
464 &next_log_block,
465 &crc32_sum)) {
466 put_bh(bh);
467 break;
468 }
469 put_bh(bh);
470 continue;
471 }
Zach Brownb517bea2006-10-11 01:21:08 -0700472 next_log_block += count_tags(journal, bh);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700473 wrap(journal, next_log_block);
Girish Shilamkar818d2762008-01-28 23:58:27 -0500474 put_bh(bh);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700475 continue;
476 }
477
478 /* A descriptor block: we can now write all of
479 * the data blocks. Yay, useful work is finally
480 * getting done here! */
481
482 tagp = &bh->b_data[sizeof(journal_header_t)];
Zach Brownb517bea2006-10-11 01:21:08 -0700483 while ((tagp - bh->b_data + tag_bytes)
Dave Kleikamp470decc2006-10-11 01:20:57 -0700484 <= journal->j_blocksize) {
485 unsigned long io_block;
486
487 tag = (journal_block_tag_t *) tagp;
488 flags = be32_to_cpu(tag->t_flags);
489
490 io_block = next_log_block++;
491 wrap(journal, next_log_block);
492 err = jread(&obh, journal, io_block);
493 if (err) {
494 /* Recover what we can, but
495 * report failure at the end. */
496 success = err;
Eryu Guanf2a44522011-11-01 19:09:18 -0400497 printk(KERN_ERR
498 "JBD2: IO error %d recovering "
Dave Kleikamp470decc2006-10-11 01:20:57 -0700499 "block %ld in log\n",
500 err, io_block);
501 } else {
Mingming Cao18eba7a2006-10-11 01:21:13 -0700502 unsigned long long blocknr;
Dave Kleikamp470decc2006-10-11 01:20:57 -0700503
504 J_ASSERT(obh != NULL);
Zach Brownb517bea2006-10-11 01:21:08 -0700505 blocknr = read_tag_block(tag_bytes,
506 tag);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700507
508 /* If the block has been
509 * revoked, then we're all done
510 * here. */
Mingming Caof7f4bcc2006-10-11 01:20:59 -0700511 if (jbd2_journal_test_revoke
Dave Kleikamp470decc2006-10-11 01:20:57 -0700512 (journal, blocknr,
513 next_commit_ID)) {
514 brelse(obh);
515 ++info->nr_revoke_hits;
516 goto skip_write;
517 }
518
519 /* Find a buffer for the new
520 * data being restored */
521 nbh = __getblk(journal->j_fs_dev,
522 blocknr,
523 journal->j_blocksize);
524 if (nbh == NULL) {
525 printk(KERN_ERR
Eryu Guanf2a44522011-11-01 19:09:18 -0400526 "JBD2: Out of memory "
Dave Kleikamp470decc2006-10-11 01:20:57 -0700527 "during recovery.\n");
528 err = -ENOMEM;
529 brelse(bh);
530 brelse(obh);
531 goto failed;
532 }
533
534 lock_buffer(nbh);
535 memcpy(nbh->b_data, obh->b_data,
536 journal->j_blocksize);
Mingming Caof7f4bcc2006-10-11 01:20:59 -0700537 if (flags & JBD2_FLAG_ESCAPE) {
Duane Griffind0025672008-03-19 17:00:54 -0700538 *((__be32 *)nbh->b_data) =
Mingming Caof7f4bcc2006-10-11 01:20:59 -0700539 cpu_to_be32(JBD2_MAGIC_NUMBER);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700540 }
541
542 BUFFER_TRACE(nbh, "marking dirty");
543 set_buffer_uptodate(nbh);
544 mark_buffer_dirty(nbh);
545 BUFFER_TRACE(nbh, "marking uptodate");
546 ++info->nr_replays;
547 /* ll_rw_block(WRITE, 1, &nbh); */
548 unlock_buffer(nbh);
549 brelse(obh);
550 brelse(nbh);
551 }
552
553 skip_write:
Zach Brownb517bea2006-10-11 01:21:08 -0700554 tagp += tag_bytes;
Mingming Caof7f4bcc2006-10-11 01:20:59 -0700555 if (!(flags & JBD2_FLAG_SAME_UUID))
Dave Kleikamp470decc2006-10-11 01:20:57 -0700556 tagp += 16;
557
Mingming Caof7f4bcc2006-10-11 01:20:59 -0700558 if (flags & JBD2_FLAG_LAST_TAG)
Dave Kleikamp470decc2006-10-11 01:20:57 -0700559 break;
560 }
561
562 brelse(bh);
563 continue;
564
Mingming Caof7f4bcc2006-10-11 01:20:59 -0700565 case JBD2_COMMIT_BLOCK:
Girish Shilamkar818d2762008-01-28 23:58:27 -0500566 /* How to differentiate between interrupted commit
567 * and journal corruption ?
568 *
569 * {nth transaction}
570 * Checksum Verification Failed
571 * |
572 * ____________________
573 * | |
574 * async_commit sync_commit
575 * | |
576 * | GO TO NEXT "Journal Corruption"
577 * | TRANSACTION
578 * |
579 * {(n+1)th transanction}
580 * |
581 * _______|______________
582 * | |
583 * Commit block found Commit block not found
584 * | |
585 * "Journal Corruption" |
586 * _____________|_________
587 * | |
588 * nth trans corrupt OR nth trans
589 * and (n+1)th interrupted interrupted
590 * before commit block
591 * could reach the disk.
592 * (Cannot find the difference in above
593 * mentioned conditions. Hence assume
594 * "Interrupted Commit".)
595 */
596
597 /* Found an expected commit block: if checksums
598 * are present verify them in PASS_SCAN; else not
599 * much to do other than move on to the next sequence
Dave Kleikamp470decc2006-10-11 01:20:57 -0700600 * number. */
Girish Shilamkar818d2762008-01-28 23:58:27 -0500601 if (pass == PASS_SCAN &&
602 JBD2_HAS_COMPAT_FEATURE(journal,
603 JBD2_FEATURE_COMPAT_CHECKSUM)) {
604 int chksum_err, chksum_seen;
605 struct commit_header *cbh =
606 (struct commit_header *)bh->b_data;
607 unsigned found_chksum =
608 be32_to_cpu(cbh->h_chksum[0]);
609
610 chksum_err = chksum_seen = 0;
611
612 if (info->end_transaction) {
Theodore Ts'o624080e2008-06-06 17:50:40 -0400613 journal->j_failed_commit =
614 info->end_transaction;
Girish Shilamkar818d2762008-01-28 23:58:27 -0500615 brelse(bh);
616 break;
617 }
618
619 if (crc32_sum == found_chksum &&
620 cbh->h_chksum_type == JBD2_CRC32_CHKSUM &&
621 cbh->h_chksum_size ==
622 JBD2_CRC32_CHKSUM_SIZE)
623 chksum_seen = 1;
624 else if (!(cbh->h_chksum_type == 0 &&
625 cbh->h_chksum_size == 0 &&
626 found_chksum == 0 &&
627 !chksum_seen))
628 /*
629 * If fs is mounted using an old kernel and then
630 * kernel with journal_chksum is used then we
631 * get a situation where the journal flag has
632 * checksum flag set but checksums are not
633 * present i.e chksum = 0, in the individual
634 * commit blocks.
635 * Hence to avoid checksum failures, in this
636 * situation, this extra check is added.
637 */
638 chksum_err = 1;
639
640 if (chksum_err) {
641 info->end_transaction = next_commit_ID;
642
Aneesh Kumar K.V4d605172008-02-05 10:56:15 -0500643 if (!JBD2_HAS_INCOMPAT_FEATURE(journal,
Girish Shilamkar818d2762008-01-28 23:58:27 -0500644 JBD2_FEATURE_INCOMPAT_ASYNC_COMMIT)){
Theodore Ts'o624080e2008-06-06 17:50:40 -0400645 journal->j_failed_commit =
646 next_commit_ID;
Girish Shilamkar818d2762008-01-28 23:58:27 -0500647 brelse(bh);
648 break;
649 }
650 }
651 crc32_sum = ~0;
652 }
Dave Kleikamp470decc2006-10-11 01:20:57 -0700653 brelse(bh);
654 next_commit_ID++;
655 continue;
656
Mingming Caof7f4bcc2006-10-11 01:20:59 -0700657 case JBD2_REVOKE_BLOCK:
Dave Kleikamp470decc2006-10-11 01:20:57 -0700658 /* If we aren't in the REVOKE pass, then we can
659 * just skip over this block. */
660 if (pass != PASS_REVOKE) {
661 brelse(bh);
662 continue;
663 }
664
665 err = scan_revoke_records(journal, bh,
666 next_commit_ID, info);
667 brelse(bh);
668 if (err)
669 goto failed;
670 continue;
671
672 default:
673 jbd_debug(3, "Unrecognised magic %d, end of scan.\n",
674 blocktype);
675 brelse(bh);
676 goto done;
677 }
678 }
679
680 done:
681 /*
682 * We broke out of the log scan loop: either we came to the
683 * known end of the log or we found an unexpected block in the
684 * log. If the latter happened, then we know that the "current"
685 * transaction marks the end of the valid log.
686 */
687
Girish Shilamkar818d2762008-01-28 23:58:27 -0500688 if (pass == PASS_SCAN) {
689 if (!info->end_transaction)
690 info->end_transaction = next_commit_ID;
691 } else {
Dave Kleikamp470decc2006-10-11 01:20:57 -0700692 /* It's really bad news if different passes end up at
693 * different places (but possible due to IO errors). */
694 if (info->end_transaction != next_commit_ID) {
Eryu Guanf2a44522011-11-01 19:09:18 -0400695 printk(KERN_ERR "JBD2: recovery pass %d ended at "
Dave Kleikamp470decc2006-10-11 01:20:57 -0700696 "transaction %u, expected %u\n",
697 pass, next_commit_ID, info->end_transaction);
698 if (!success)
699 success = -EIO;
700 }
701 }
702
703 return success;
704
705 failed:
706 return err;
707}
708
709
710/* Scan a revoke record, marking all blocks mentioned as revoked. */
711
712static int scan_revoke_records(journal_t *journal, struct buffer_head *bh,
713 tid_t sequence, struct recovery_info *info)
714{
Mingming Caof7f4bcc2006-10-11 01:20:59 -0700715 jbd2_journal_revoke_header_t *header;
Dave Kleikamp470decc2006-10-11 01:20:57 -0700716 int offset, max;
Zach Brownb517bea2006-10-11 01:21:08 -0700717 int record_len = 4;
Dave Kleikamp470decc2006-10-11 01:20:57 -0700718
Mingming Caof7f4bcc2006-10-11 01:20:59 -0700719 header = (jbd2_journal_revoke_header_t *) bh->b_data;
720 offset = sizeof(jbd2_journal_revoke_header_t);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700721 max = be32_to_cpu(header->r_count);
722
Zach Brownb517bea2006-10-11 01:21:08 -0700723 if (JBD2_HAS_INCOMPAT_FEATURE(journal, JBD2_FEATURE_INCOMPAT_64BIT))
724 record_len = 8;
725
726 while (offset + record_len <= max) {
Mingming Cao18eba7a2006-10-11 01:21:13 -0700727 unsigned long long blocknr;
Dave Kleikamp470decc2006-10-11 01:20:57 -0700728 int err;
729
Zach Brownb517bea2006-10-11 01:21:08 -0700730 if (record_len == 4)
731 blocknr = be32_to_cpu(* ((__be32 *) (bh->b_data+offset)));
732 else
733 blocknr = be64_to_cpu(* ((__be64 *) (bh->b_data+offset)));
734 offset += record_len;
Mingming Caof7f4bcc2006-10-11 01:20:59 -0700735 err = jbd2_journal_set_revoke(journal, blocknr, sequence);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700736 if (err)
737 return err;
738 ++info->nr_revokes;
739 }
740 return 0;
741}