Theodore Ts'o | f516676 | 2017-12-17 22:00:59 -0500 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 2 | /* |
Uwe Kleine-König | 5886269 | 2007-05-09 07:51:49 +0200 | [diff] [blame] | 3 | * linux/fs/jbd2/recovery.c |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 4 | * |
| 5 | * Written by Stephen C. Tweedie <sct@redhat.com>, 1999 |
| 6 | * |
| 7 | * Copyright 1999-2000 Red Hat Software --- All Rights Reserved |
| 8 | * |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 9 | * Journal recovery routines for the generic filesystem journaling code; |
| 10 | * part of the ext2fs journaling system. |
| 11 | */ |
| 12 | |
| 13 | #ifndef __KERNEL__ |
| 14 | #include "jfs_user.h" |
| 15 | #else |
| 16 | #include <linux/time.h> |
| 17 | #include <linux/fs.h> |
Mingming Cao | f7f4bcc | 2006-10-11 01:20:59 -0700 | [diff] [blame] | 18 | #include <linux/jbd2.h> |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 19 | #include <linux/errno.h> |
Girish Shilamkar | 818d276 | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 20 | #include <linux/crc32.h> |
Jan Kara | 79feb52 | 2012-03-13 22:22:54 -0400 | [diff] [blame] | 21 | #include <linux/blkdev.h> |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 22 | #endif |
| 23 | |
| 24 | /* |
| 25 | * Maintain information about the progress of the recovery job, so that |
| 26 | * the different passes can carry information between them. |
| 27 | */ |
| 28 | struct recovery_info |
| 29 | { |
| 30 | tid_t start_transaction; |
| 31 | tid_t end_transaction; |
| 32 | |
| 33 | int nr_replays; |
| 34 | int nr_revokes; |
| 35 | int nr_revoke_hits; |
| 36 | }; |
| 37 | |
| 38 | enum passtype {PASS_SCAN, PASS_REVOKE, PASS_REPLAY}; |
| 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 *); |
| 43 | |
| 44 | #ifdef __KERNEL__ |
| 45 | |
| 46 | /* Release readahead buffers after use */ |
| 47 | static void journal_brelse_array(struct buffer_head *b[], int n) |
| 48 | { |
| 49 | while (--n >= 0) |
| 50 | brelse (b[n]); |
| 51 | } |
| 52 | |
| 53 | |
| 54 | /* |
| 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. |
| 60 | * |
| 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 |
| 63 | * fixed value. |
| 64 | */ |
| 65 | |
| 66 | #define MAXBUF 8 |
| 67 | static int do_readahead(journal_t *journal, unsigned int start) |
| 68 | { |
| 69 | int err; |
| 70 | unsigned int max, nbufs, next; |
Mingming Cao | 18eba7a | 2006-10-11 01:21:13 -0700 | [diff] [blame] | 71 | unsigned long long blocknr; |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 72 | struct buffer_head *bh; |
| 73 | |
| 74 | struct buffer_head * bufs[MAXBUF]; |
| 75 | |
| 76 | /* Do up to 128K of readahead */ |
| 77 | max = start + (128 * 1024 / journal->j_blocksize); |
| 78 | if (max > journal->j_maxlen) |
| 79 | max = journal->j_maxlen; |
| 80 | |
| 81 | /* Do the readahead itself. We'll submit MAXBUF buffer_heads at |
| 82 | * a time to the block device IO layer. */ |
| 83 | |
| 84 | nbufs = 0; |
| 85 | |
| 86 | for (next = start; next < max; next++) { |
Mingming Cao | f7f4bcc | 2006-10-11 01:20:59 -0700 | [diff] [blame] | 87 | err = jbd2_journal_bmap(journal, next, &blocknr); |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 88 | |
| 89 | if (err) { |
Eryu Guan | f2a4452 | 2011-11-01 19:09:18 -0400 | [diff] [blame] | 90 | printk(KERN_ERR "JBD2: bad block at offset %u\n", |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 91 | next); |
| 92 | goto failed; |
| 93 | } |
| 94 | |
| 95 | bh = __getblk(journal->j_dev, blocknr, journal->j_blocksize); |
| 96 | if (!bh) { |
| 97 | err = -ENOMEM; |
| 98 | goto failed; |
| 99 | } |
| 100 | |
| 101 | if (!buffer_uptodate(bh) && !buffer_locked(bh)) { |
| 102 | bufs[nbufs++] = bh; |
| 103 | if (nbufs == MAXBUF) { |
Mike Christie | dfec8a1 | 2016-06-05 14:31:44 -0500 | [diff] [blame] | 104 | ll_rw_block(REQ_OP_READ, 0, nbufs, bufs); |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 105 | journal_brelse_array(bufs, nbufs); |
| 106 | nbufs = 0; |
| 107 | } |
| 108 | } else |
| 109 | brelse(bh); |
| 110 | } |
| 111 | |
| 112 | if (nbufs) |
Mike Christie | dfec8a1 | 2016-06-05 14:31:44 -0500 | [diff] [blame] | 113 | ll_rw_block(REQ_OP_READ, 0, nbufs, bufs); |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 114 | err = 0; |
| 115 | |
| 116 | failed: |
| 117 | if (nbufs) |
| 118 | journal_brelse_array(bufs, nbufs); |
| 119 | return err; |
| 120 | } |
| 121 | |
| 122 | #endif /* __KERNEL__ */ |
| 123 | |
| 124 | |
| 125 | /* |
| 126 | * Read a block from the journal |
| 127 | */ |
| 128 | |
| 129 | static int jread(struct buffer_head **bhp, journal_t *journal, |
| 130 | unsigned int offset) |
| 131 | { |
| 132 | int err; |
Mingming Cao | 18eba7a | 2006-10-11 01:21:13 -0700 | [diff] [blame] | 133 | unsigned long long blocknr; |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 134 | struct buffer_head *bh; |
| 135 | |
| 136 | *bhp = NULL; |
| 137 | |
| 138 | if (offset >= journal->j_maxlen) { |
Eryu Guan | f2a4452 | 2011-11-01 19:09:18 -0400 | [diff] [blame] | 139 | printk(KERN_ERR "JBD2: corrupted journal superblock\n"); |
Darrick J. Wong | 6a797d2 | 2015-10-17 16:16:04 -0400 | [diff] [blame] | 140 | return -EFSCORRUPTED; |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 141 | } |
| 142 | |
Mingming Cao | f7f4bcc | 2006-10-11 01:20:59 -0700 | [diff] [blame] | 143 | err = jbd2_journal_bmap(journal, offset, &blocknr); |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 144 | |
| 145 | if (err) { |
Eryu Guan | f2a4452 | 2011-11-01 19:09:18 -0400 | [diff] [blame] | 146 | printk(KERN_ERR "JBD2: bad block at offset %u\n", |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 147 | offset); |
| 148 | return err; |
| 149 | } |
| 150 | |
| 151 | bh = __getblk(journal->j_dev, blocknr, journal->j_blocksize); |
| 152 | if (!bh) |
| 153 | return -ENOMEM; |
| 154 | |
| 155 | if (!buffer_uptodate(bh)) { |
| 156 | /* If this is a brand new buffer, start readahead. |
| 157 | Otherwise, we assume we are already reading it. */ |
| 158 | if (!buffer_req(bh)) |
| 159 | do_readahead(journal, offset); |
| 160 | wait_on_buffer(bh); |
| 161 | } |
| 162 | |
| 163 | if (!buffer_uptodate(bh)) { |
Eryu Guan | f2a4452 | 2011-11-01 19:09:18 -0400 | [diff] [blame] | 164 | printk(KERN_ERR "JBD2: Failed to read block at offset %u\n", |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 165 | offset); |
| 166 | brelse(bh); |
| 167 | return -EIO; |
| 168 | } |
| 169 | |
| 170 | *bhp = bh; |
| 171 | return 0; |
| 172 | } |
| 173 | |
Jan Kara | 1101cd4 | 2016-02-22 23:19:09 -0500 | [diff] [blame] | 174 | static int jbd2_descriptor_block_csum_verify(journal_t *j, void *buf) |
Darrick J. Wong | 3caa487 | 2012-05-27 08:10:22 -0400 | [diff] [blame] | 175 | { |
| 176 | struct jbd2_journal_block_tail *tail; |
Darrick J. Wong | 18a6ea1 | 2013-08-28 14:59:58 -0400 | [diff] [blame] | 177 | __be32 provided; |
| 178 | __u32 calculated; |
Darrick J. Wong | 3caa487 | 2012-05-27 08:10:22 -0400 | [diff] [blame] | 179 | |
Darrick J. Wong | db9ee22 | 2014-08-27 18:40:07 -0400 | [diff] [blame] | 180 | if (!jbd2_journal_has_csum_v2or3(j)) |
Darrick J. Wong | 3caa487 | 2012-05-27 08:10:22 -0400 | [diff] [blame] | 181 | return 1; |
| 182 | |
| 183 | tail = (struct jbd2_journal_block_tail *)(buf + j->j_blocksize - |
| 184 | sizeof(struct jbd2_journal_block_tail)); |
| 185 | provided = tail->t_checksum; |
| 186 | tail->t_checksum = 0; |
| 187 | calculated = jbd2_chksum(j, j->j_csum_seed, buf, j->j_blocksize); |
| 188 | tail->t_checksum = provided; |
| 189 | |
Darrick J. Wong | 18a6ea1 | 2013-08-28 14:59:58 -0400 | [diff] [blame] | 190 | return provided == cpu_to_be32(calculated); |
Darrick J. Wong | 3caa487 | 2012-05-27 08:10:22 -0400 | [diff] [blame] | 191 | } |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 192 | |
| 193 | /* |
| 194 | * Count the number of in-use tags in a journal descriptor block. |
| 195 | */ |
| 196 | |
Zach Brown | b517bea | 2006-10-11 01:21:08 -0700 | [diff] [blame] | 197 | static int count_tags(journal_t *journal, struct buffer_head *bh) |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 198 | { |
| 199 | char * tagp; |
| 200 | journal_block_tag_t * tag; |
Zach Brown | b517bea | 2006-10-11 01:21:08 -0700 | [diff] [blame] | 201 | int nr = 0, size = journal->j_blocksize; |
| 202 | int tag_bytes = journal_tag_bytes(journal); |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 203 | |
Darrick J. Wong | db9ee22 | 2014-08-27 18:40:07 -0400 | [diff] [blame] | 204 | if (jbd2_journal_has_csum_v2or3(journal)) |
Darrick J. Wong | 3caa487 | 2012-05-27 08:10:22 -0400 | [diff] [blame] | 205 | size -= sizeof(struct jbd2_journal_block_tail); |
| 206 | |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 207 | tagp = &bh->b_data[sizeof(journal_header_t)]; |
| 208 | |
Zach Brown | b517bea | 2006-10-11 01:21:08 -0700 | [diff] [blame] | 209 | while ((tagp - bh->b_data + tag_bytes) <= size) { |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 210 | tag = (journal_block_tag_t *) tagp; |
| 211 | |
| 212 | nr++; |
Zach Brown | b517bea | 2006-10-11 01:21:08 -0700 | [diff] [blame] | 213 | tagp += tag_bytes; |
Darrick J. Wong | 8f888ef | 2012-05-22 22:43:41 -0400 | [diff] [blame] | 214 | if (!(tag->t_flags & cpu_to_be16(JBD2_FLAG_SAME_UUID))) |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 215 | tagp += 16; |
| 216 | |
Darrick J. Wong | 8f888ef | 2012-05-22 22:43:41 -0400 | [diff] [blame] | 217 | if (tag->t_flags & cpu_to_be16(JBD2_FLAG_LAST_TAG)) |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 218 | break; |
| 219 | } |
| 220 | |
| 221 | return nr; |
| 222 | } |
| 223 | |
| 224 | |
| 225 | /* Make sure we wrap around the log correctly! */ |
| 226 | #define wrap(journal, var) \ |
| 227 | do { \ |
| 228 | if (var >= (journal)->j_last) \ |
| 229 | var -= ((journal)->j_last - (journal)->j_first); \ |
| 230 | } while (0) |
| 231 | |
| 232 | /** |
Mingming Cao | f7f4bcc | 2006-10-11 01:20:59 -0700 | [diff] [blame] | 233 | * jbd2_journal_recover - recovers a on-disk journal |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 234 | * @journal: the journal to recover |
| 235 | * |
| 236 | * The primary function for recovering the log contents when mounting a |
| 237 | * journaled device. |
| 238 | * |
| 239 | * Recovery is done in three passes. In the first pass, we look for the |
| 240 | * end of the log. In the second, we assemble the list of revoke |
| 241 | * blocks. In the third and final pass, we replay any un-revoked blocks |
| 242 | * in the log. |
| 243 | */ |
Mingming Cao | f7f4bcc | 2006-10-11 01:20:59 -0700 | [diff] [blame] | 244 | int jbd2_journal_recover(journal_t *journal) |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 245 | { |
Hidehiro Kawai | 44519fa | 2008-10-10 20:29:13 -0400 | [diff] [blame] | 246 | int err, err2; |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 247 | journal_superblock_t * sb; |
| 248 | |
| 249 | struct recovery_info info; |
| 250 | |
| 251 | memset(&info, 0, sizeof(info)); |
| 252 | sb = journal->j_superblock; |
| 253 | |
| 254 | /* |
| 255 | * The journal superblock's s_start field (the current log head) |
| 256 | * is always zero if, and only if, the journal was cleanly |
| 257 | * unmounted. |
| 258 | */ |
| 259 | |
| 260 | if (!sb->s_start) { |
| 261 | jbd_debug(1, "No recovery required, last transaction %d\n", |
| 262 | be32_to_cpu(sb->s_sequence)); |
| 263 | journal->j_transaction_sequence = be32_to_cpu(sb->s_sequence) + 1; |
| 264 | return 0; |
| 265 | } |
| 266 | |
| 267 | err = do_one_pass(journal, &info, PASS_SCAN); |
| 268 | if (!err) |
| 269 | err = do_one_pass(journal, &info, PASS_REVOKE); |
| 270 | if (!err) |
| 271 | err = do_one_pass(journal, &info, PASS_REPLAY); |
| 272 | |
Eryu Guan | f2a4452 | 2011-11-01 19:09:18 -0400 | [diff] [blame] | 273 | jbd_debug(1, "JBD2: recovery, exit status %d, " |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 274 | "recovered transactions %u to %u\n", |
| 275 | err, info.start_transaction, info.end_transaction); |
Eryu Guan | f2a4452 | 2011-11-01 19:09:18 -0400 | [diff] [blame] | 276 | jbd_debug(1, "JBD2: Replayed %d and revoked %d/%d blocks\n", |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 277 | info.nr_replays, info.nr_revoke_hits, info.nr_revokes); |
| 278 | |
| 279 | /* Restart the log at the next transaction ID, thus invalidating |
| 280 | * any existing commit records in the log. */ |
| 281 | journal->j_transaction_sequence = ++info.end_transaction; |
| 282 | |
Mingming Cao | f7f4bcc | 2006-10-11 01:20:59 -0700 | [diff] [blame] | 283 | jbd2_journal_clear_revoke(journal); |
Hidehiro Kawai | 44519fa | 2008-10-10 20:29:13 -0400 | [diff] [blame] | 284 | err2 = sync_blockdev(journal->j_fs_dev); |
| 285 | if (!err) |
| 286 | err = err2; |
Jan Kara | 79feb52 | 2012-03-13 22:22:54 -0400 | [diff] [blame] | 287 | /* Make sure all replayed data is on permanent storage */ |
Theodore Ts'o | 316e4cf | 2012-08-17 09:56:17 -0400 | [diff] [blame] | 288 | if (journal->j_flags & JBD2_BARRIER) { |
Christoph Hellwig | 9398554 | 2020-05-13 14:36:00 +0200 | [diff] [blame] | 289 | err2 = blkdev_issue_flush(journal->j_fs_dev, GFP_KERNEL); |
Theodore Ts'o | 316e4cf | 2012-08-17 09:56:17 -0400 | [diff] [blame] | 290 | if (!err) |
| 291 | err = err2; |
| 292 | } |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 293 | return err; |
| 294 | } |
| 295 | |
| 296 | /** |
Mingming Cao | f7f4bcc | 2006-10-11 01:20:59 -0700 | [diff] [blame] | 297 | * jbd2_journal_skip_recovery - Start journal and wipe exiting records |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 298 | * @journal: journal to startup |
| 299 | * |
| 300 | * Locate any valid recovery information from the journal and set up the |
| 301 | * journal structures in memory to ignore it (presumably because the |
| 302 | * caller has evidence that it is out of date). |
Masanari Iida | bd7ced9 | 2016-02-02 22:31:06 +0900 | [diff] [blame] | 303 | * This function doesn't appear to be exported.. |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 304 | * |
| 305 | * We perform one pass over the journal to allow us to tell the user how |
| 306 | * much recovery information is being erased, and to let us initialise |
| 307 | * the journal transaction sequence numbers to the next unused ID. |
| 308 | */ |
Mingming Cao | f7f4bcc | 2006-10-11 01:20:59 -0700 | [diff] [blame] | 309 | int jbd2_journal_skip_recovery(journal_t *journal) |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 310 | { |
| 311 | int err; |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 312 | |
| 313 | struct recovery_info info; |
| 314 | |
| 315 | memset (&info, 0, sizeof(info)); |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 316 | |
| 317 | err = do_one_pass(journal, &info, PASS_SCAN); |
| 318 | |
| 319 | if (err) { |
Eryu Guan | f2a4452 | 2011-11-01 19:09:18 -0400 | [diff] [blame] | 320 | printk(KERN_ERR "JBD2: error %d scanning journal\n", err); |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 321 | ++journal->j_transaction_sequence; |
| 322 | } else { |
Jose R. Santos | e23291b | 2007-07-18 08:57:06 -0400 | [diff] [blame] | 323 | #ifdef CONFIG_JBD2_DEBUG |
Andi Kleen | 5a0790c | 2010-06-14 13:28:03 -0400 | [diff] [blame] | 324 | int dropped = info.end_transaction - |
| 325 | be32_to_cpu(journal->j_superblock->s_sequence); |
Mingming Cao | b38bd33 | 2007-07-19 01:48:35 -0700 | [diff] [blame] | 326 | jbd_debug(1, |
Eryu Guan | f2a4452 | 2011-11-01 19:09:18 -0400 | [diff] [blame] | 327 | "JBD2: ignoring %d transaction%s from the journal.\n", |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 328 | dropped, (dropped == 1) ? "" : "s"); |
Theodore Ts'o | 9a4f627 | 2010-12-18 13:36:33 -0500 | [diff] [blame] | 329 | #endif |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 330 | journal->j_transaction_sequence = ++info.end_transaction; |
| 331 | } |
| 332 | |
| 333 | journal->j_tail = 0; |
| 334 | return err; |
| 335 | } |
| 336 | |
Darrick J. Wong | db9ee22 | 2014-08-27 18:40:07 -0400 | [diff] [blame] | 337 | static inline unsigned long long read_tag_block(journal_t *journal, |
| 338 | journal_block_tag_t *tag) |
Zach Brown | b517bea | 2006-10-11 01:21:08 -0700 | [diff] [blame] | 339 | { |
Mingming Cao | 18eba7a | 2006-10-11 01:21:13 -0700 | [diff] [blame] | 340 | unsigned long long block = be32_to_cpu(tag->t_blocknr); |
Darrick J. Wong | 56316a0 | 2015-10-17 16:18:45 -0400 | [diff] [blame] | 341 | if (jbd2_has_feature_64bit(journal)) |
Zach Brown | b517bea | 2006-10-11 01:21:08 -0700 | [diff] [blame] | 342 | block |= (u64)be32_to_cpu(tag->t_blocknr_high) << 32; |
| 343 | return block; |
| 344 | } |
| 345 | |
Girish Shilamkar | 818d276 | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 346 | /* |
| 347 | * calc_chksums calculates the checksums for the blocks described in the |
| 348 | * descriptor block. |
| 349 | */ |
| 350 | static int calc_chksums(journal_t *journal, struct buffer_head *bh, |
| 351 | unsigned long *next_log_block, __u32 *crc32_sum) |
| 352 | { |
| 353 | int i, num_blks, err; |
| 354 | unsigned long io_block; |
| 355 | struct buffer_head *obh; |
| 356 | |
| 357 | num_blks = count_tags(journal, bh); |
| 358 | /* Calculate checksum of the descriptor block. */ |
| 359 | *crc32_sum = crc32_be(*crc32_sum, (void *)bh->b_data, bh->b_size); |
| 360 | |
| 361 | for (i = 0; i < num_blks; i++) { |
| 362 | io_block = (*next_log_block)++; |
| 363 | wrap(journal, *next_log_block); |
| 364 | err = jread(&obh, journal, io_block); |
| 365 | if (err) { |
Eryu Guan | f2a4452 | 2011-11-01 19:09:18 -0400 | [diff] [blame] | 366 | printk(KERN_ERR "JBD2: IO error %d recovering block " |
Girish Shilamkar | 818d276 | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 367 | "%lu in log\n", err, io_block); |
| 368 | return 1; |
| 369 | } else { |
| 370 | *crc32_sum = crc32_be(*crc32_sum, (void *)obh->b_data, |
| 371 | obh->b_size); |
| 372 | } |
Theodore Ts'o | 8ea7690 | 2008-05-26 10:28:09 -0400 | [diff] [blame] | 373 | put_bh(obh); |
Girish Shilamkar | 818d276 | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 374 | } |
| 375 | return 0; |
| 376 | } |
| 377 | |
Darrick J. Wong | 1f56c58 | 2012-05-27 08:10:25 -0400 | [diff] [blame] | 378 | static int jbd2_commit_block_csum_verify(journal_t *j, void *buf) |
| 379 | { |
| 380 | struct commit_header *h; |
Darrick J. Wong | 18a6ea1 | 2013-08-28 14:59:58 -0400 | [diff] [blame] | 381 | __be32 provided; |
| 382 | __u32 calculated; |
Darrick J. Wong | 1f56c58 | 2012-05-27 08:10:25 -0400 | [diff] [blame] | 383 | |
Darrick J. Wong | db9ee22 | 2014-08-27 18:40:07 -0400 | [diff] [blame] | 384 | if (!jbd2_journal_has_csum_v2or3(j)) |
Darrick J. Wong | 1f56c58 | 2012-05-27 08:10:25 -0400 | [diff] [blame] | 385 | return 1; |
| 386 | |
| 387 | h = buf; |
| 388 | provided = h->h_chksum[0]; |
| 389 | h->h_chksum[0] = 0; |
| 390 | calculated = jbd2_chksum(j, j->j_csum_seed, buf, j->j_blocksize); |
| 391 | h->h_chksum[0] = provided; |
| 392 | |
Darrick J. Wong | 18a6ea1 | 2013-08-28 14:59:58 -0400 | [diff] [blame] | 393 | return provided == cpu_to_be32(calculated); |
Darrick J. Wong | 1f56c58 | 2012-05-27 08:10:25 -0400 | [diff] [blame] | 394 | } |
| 395 | |
Darrick J. Wong | c390087 | 2012-05-27 08:12:12 -0400 | [diff] [blame] | 396 | static int jbd2_block_tag_csum_verify(journal_t *j, journal_block_tag_t *tag, |
| 397 | void *buf, __u32 sequence) |
| 398 | { |
Darrick J. Wong | db9ee22 | 2014-08-27 18:40:07 -0400 | [diff] [blame] | 399 | journal_block_tag3_t *tag3 = (journal_block_tag3_t *)tag; |
Darrick J. Wong | eee06c5 | 2013-05-28 07:31:59 -0400 | [diff] [blame] | 400 | __u32 csum32; |
Darrick J. Wong | 18a6ea1 | 2013-08-28 14:59:58 -0400 | [diff] [blame] | 401 | __be32 seq; |
Darrick J. Wong | c390087 | 2012-05-27 08:12:12 -0400 | [diff] [blame] | 402 | |
Darrick J. Wong | db9ee22 | 2014-08-27 18:40:07 -0400 | [diff] [blame] | 403 | if (!jbd2_journal_has_csum_v2or3(j)) |
Darrick J. Wong | c390087 | 2012-05-27 08:12:12 -0400 | [diff] [blame] | 404 | return 1; |
| 405 | |
Darrick J. Wong | 18a6ea1 | 2013-08-28 14:59:58 -0400 | [diff] [blame] | 406 | seq = cpu_to_be32(sequence); |
| 407 | csum32 = jbd2_chksum(j, j->j_csum_seed, (__u8 *)&seq, sizeof(seq)); |
Darrick J. Wong | eee06c5 | 2013-05-28 07:31:59 -0400 | [diff] [blame] | 408 | csum32 = jbd2_chksum(j, csum32, buf, j->j_blocksize); |
Darrick J. Wong | c390087 | 2012-05-27 08:12:12 -0400 | [diff] [blame] | 409 | |
Darrick J. Wong | 56316a0 | 2015-10-17 16:18:45 -0400 | [diff] [blame] | 410 | if (jbd2_has_feature_csum3(j)) |
Darrick J. Wong | db9ee22 | 2014-08-27 18:40:07 -0400 | [diff] [blame] | 411 | return tag3->t_checksum == cpu_to_be32(csum32); |
| 412 | else |
| 413 | return tag->t_checksum == cpu_to_be16(csum32); |
Darrick J. Wong | c390087 | 2012-05-27 08:12:12 -0400 | [diff] [blame] | 414 | } |
| 415 | |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 416 | static int do_one_pass(journal_t *journal, |
| 417 | struct recovery_info *info, enum passtype pass) |
| 418 | { |
| 419 | unsigned int first_commit_ID, next_commit_ID; |
| 420 | unsigned long next_log_block; |
| 421 | int err, success = 0; |
| 422 | journal_superblock_t * sb; |
| 423 | journal_header_t * tmp; |
| 424 | struct buffer_head * bh; |
| 425 | unsigned int sequence; |
| 426 | int blocktype; |
Zach Brown | b517bea | 2006-10-11 01:21:08 -0700 | [diff] [blame] | 427 | int tag_bytes = journal_tag_bytes(journal); |
Girish Shilamkar | 818d276 | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 428 | __u32 crc32_sum = ~0; /* Transactional Checksums */ |
Darrick J. Wong | 3caa487 | 2012-05-27 08:10:22 -0400 | [diff] [blame] | 429 | int descr_csum_size = 0; |
Darrick J. Wong | 022eaa7 | 2014-08-27 18:40:05 -0400 | [diff] [blame] | 430 | int block_error = 0; |
changfengnan | fc750a3b | 2020-10-12 18:49:00 +0200 | [diff] [blame^] | 431 | bool need_check_commit_time = false; |
| 432 | __u64 last_trans_commit_time = 0, commit_time; |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 433 | |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 434 | /* |
| 435 | * First thing is to establish what we expect to find in the log |
| 436 | * (in terms of transaction IDs), and where (in terms of log |
| 437 | * block offsets): query the superblock. |
| 438 | */ |
| 439 | |
| 440 | sb = journal->j_superblock; |
| 441 | next_commit_ID = be32_to_cpu(sb->s_sequence); |
| 442 | next_log_block = be32_to_cpu(sb->s_start); |
| 443 | |
| 444 | first_commit_ID = next_commit_ID; |
| 445 | if (pass == PASS_SCAN) |
| 446 | info->start_transaction = first_commit_ID; |
| 447 | |
| 448 | jbd_debug(1, "Starting recovery pass %d\n", pass); |
| 449 | |
| 450 | /* |
| 451 | * Now we walk through the log, transaction by transaction, |
| 452 | * making sure that each transaction has a commit block in the |
| 453 | * expected place. Each complete transaction gets replayed back |
| 454 | * into the main filesystem. |
| 455 | */ |
| 456 | |
| 457 | while (1) { |
| 458 | int flags; |
| 459 | char * tagp; |
| 460 | journal_block_tag_t * tag; |
| 461 | struct buffer_head * obh; |
| 462 | struct buffer_head * nbh; |
| 463 | |
Andi Kleen | e86e143 | 2008-02-06 01:40:11 -0800 | [diff] [blame] | 464 | cond_resched(); |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 465 | |
| 466 | /* If we already know where to stop the log traversal, |
| 467 | * check right now that we haven't gone past the end of |
| 468 | * the log. */ |
| 469 | |
| 470 | if (pass != PASS_SCAN) |
| 471 | if (tid_geq(next_commit_ID, info->end_transaction)) |
| 472 | break; |
| 473 | |
| 474 | jbd_debug(2, "Scanning for sequence ID %u at %lu/%lu\n", |
| 475 | next_commit_ID, next_log_block, journal->j_last); |
| 476 | |
| 477 | /* Skip over each chunk of the transaction looking |
| 478 | * either the next descriptor block or the final commit |
| 479 | * record. */ |
| 480 | |
Eryu Guan | f2a4452 | 2011-11-01 19:09:18 -0400 | [diff] [blame] | 481 | jbd_debug(3, "JBD2: checking block %ld\n", next_log_block); |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 482 | err = jread(&bh, journal, next_log_block); |
| 483 | if (err) |
| 484 | goto failed; |
| 485 | |
| 486 | next_log_block++; |
| 487 | wrap(journal, next_log_block); |
| 488 | |
| 489 | /* What kind of buffer is it? |
| 490 | * |
| 491 | * If it is a descriptor block, check that it has the |
| 492 | * expected sequence number. Otherwise, we're all done |
| 493 | * here. */ |
| 494 | |
| 495 | tmp = (journal_header_t *)bh->b_data; |
| 496 | |
Mingming Cao | f7f4bcc | 2006-10-11 01:20:59 -0700 | [diff] [blame] | 497 | if (tmp->h_magic != cpu_to_be32(JBD2_MAGIC_NUMBER)) { |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 498 | brelse(bh); |
| 499 | break; |
| 500 | } |
| 501 | |
| 502 | blocktype = be32_to_cpu(tmp->h_blocktype); |
| 503 | sequence = be32_to_cpu(tmp->h_sequence); |
| 504 | jbd_debug(3, "Found magic %d, sequence %d\n", |
| 505 | blocktype, sequence); |
| 506 | |
| 507 | if (sequence != next_commit_ID) { |
| 508 | brelse(bh); |
| 509 | break; |
| 510 | } |
| 511 | |
| 512 | /* OK, we have a valid descriptor block which matches |
| 513 | * all of the sequence number checks. What are we going |
| 514 | * to do with it? That depends on the pass... */ |
| 515 | |
| 516 | switch(blocktype) { |
Mingming Cao | f7f4bcc | 2006-10-11 01:20:59 -0700 | [diff] [blame] | 517 | case JBD2_DESCRIPTOR_BLOCK: |
Darrick J. Wong | 3caa487 | 2012-05-27 08:10:22 -0400 | [diff] [blame] | 518 | /* Verify checksum first */ |
Darrick J. Wong | db9ee22 | 2014-08-27 18:40:07 -0400 | [diff] [blame] | 519 | if (jbd2_journal_has_csum_v2or3(journal)) |
Darrick J. Wong | 3caa487 | 2012-05-27 08:10:22 -0400 | [diff] [blame] | 520 | descr_csum_size = |
| 521 | sizeof(struct jbd2_journal_block_tail); |
| 522 | if (descr_csum_size > 0 && |
Jan Kara | 1101cd4 | 2016-02-22 23:19:09 -0500 | [diff] [blame] | 523 | !jbd2_descriptor_block_csum_verify(journal, |
| 524 | bh->b_data)) { |
changfengnan | fc750a3b | 2020-10-12 18:49:00 +0200 | [diff] [blame^] | 525 | /* |
| 526 | * PASS_SCAN can see stale blocks due to lazy |
| 527 | * journal init. Don't error out on those yet. |
| 528 | */ |
| 529 | if (pass != PASS_SCAN) { |
| 530 | pr_err("JBD2: Invalid checksum recovering block %lu in log\n", |
| 531 | next_log_block); |
| 532 | err = -EFSBADCRC; |
| 533 | brelse(bh); |
| 534 | goto failed; |
| 535 | } |
| 536 | need_check_commit_time = true; |
| 537 | jbd_debug(1, |
| 538 | "invalid descriptor block found in %lu\n", |
| 539 | next_log_block); |
Darrick J. Wong | 3caa487 | 2012-05-27 08:10:22 -0400 | [diff] [blame] | 540 | } |
| 541 | |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 542 | /* If it is a valid descriptor block, replay it |
Girish Shilamkar | 818d276 | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 543 | * in pass REPLAY; if journal_checksums enabled, then |
| 544 | * calculate checksums in PASS_SCAN, otherwise, |
| 545 | * just skip over the blocks it describes. */ |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 546 | if (pass != PASS_REPLAY) { |
Girish Shilamkar | 818d276 | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 547 | if (pass == PASS_SCAN && |
Darrick J. Wong | 56316a0 | 2015-10-17 16:18:45 -0400 | [diff] [blame] | 548 | jbd2_has_feature_checksum(journal) && |
changfengnan | fc750a3b | 2020-10-12 18:49:00 +0200 | [diff] [blame^] | 549 | !need_check_commit_time && |
Girish Shilamkar | 818d276 | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 550 | !info->end_transaction) { |
| 551 | if (calc_chksums(journal, bh, |
| 552 | &next_log_block, |
| 553 | &crc32_sum)) { |
| 554 | put_bh(bh); |
| 555 | break; |
| 556 | } |
| 557 | put_bh(bh); |
| 558 | continue; |
| 559 | } |
Zach Brown | b517bea | 2006-10-11 01:21:08 -0700 | [diff] [blame] | 560 | next_log_block += count_tags(journal, bh); |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 561 | wrap(journal, next_log_block); |
Girish Shilamkar | 818d276 | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 562 | put_bh(bh); |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 563 | continue; |
| 564 | } |
| 565 | |
| 566 | /* A descriptor block: we can now write all of |
| 567 | * the data blocks. Yay, useful work is finally |
| 568 | * getting done here! */ |
| 569 | |
| 570 | tagp = &bh->b_data[sizeof(journal_header_t)]; |
Zach Brown | b517bea | 2006-10-11 01:21:08 -0700 | [diff] [blame] | 571 | while ((tagp - bh->b_data + tag_bytes) |
Darrick J. Wong | 3caa487 | 2012-05-27 08:10:22 -0400 | [diff] [blame] | 572 | <= journal->j_blocksize - descr_csum_size) { |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 573 | unsigned long io_block; |
| 574 | |
| 575 | tag = (journal_block_tag_t *) tagp; |
Darrick J. Wong | 8f888ef | 2012-05-22 22:43:41 -0400 | [diff] [blame] | 576 | flags = be16_to_cpu(tag->t_flags); |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 577 | |
| 578 | io_block = next_log_block++; |
| 579 | wrap(journal, next_log_block); |
| 580 | err = jread(&obh, journal, io_block); |
| 581 | if (err) { |
| 582 | /* Recover what we can, but |
| 583 | * report failure at the end. */ |
| 584 | success = err; |
Eryu Guan | f2a4452 | 2011-11-01 19:09:18 -0400 | [diff] [blame] | 585 | printk(KERN_ERR |
| 586 | "JBD2: IO error %d recovering " |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 587 | "block %ld in log\n", |
| 588 | err, io_block); |
| 589 | } else { |
Mingming Cao | 18eba7a | 2006-10-11 01:21:13 -0700 | [diff] [blame] | 590 | unsigned long long blocknr; |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 591 | |
| 592 | J_ASSERT(obh != NULL); |
Darrick J. Wong | db9ee22 | 2014-08-27 18:40:07 -0400 | [diff] [blame] | 593 | blocknr = read_tag_block(journal, |
Zach Brown | b517bea | 2006-10-11 01:21:08 -0700 | [diff] [blame] | 594 | tag); |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 595 | |
| 596 | /* If the block has been |
| 597 | * revoked, then we're all done |
| 598 | * here. */ |
Mingming Cao | f7f4bcc | 2006-10-11 01:20:59 -0700 | [diff] [blame] | 599 | if (jbd2_journal_test_revoke |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 600 | (journal, blocknr, |
| 601 | next_commit_ID)) { |
| 602 | brelse(obh); |
| 603 | ++info->nr_revoke_hits; |
| 604 | goto skip_write; |
| 605 | } |
| 606 | |
Darrick J. Wong | c390087 | 2012-05-27 08:12:12 -0400 | [diff] [blame] | 607 | /* Look for block corruption */ |
| 608 | if (!jbd2_block_tag_csum_verify( |
| 609 | journal, tag, obh->b_data, |
| 610 | be32_to_cpu(tmp->h_sequence))) { |
| 611 | brelse(obh); |
Darrick J. Wong | 6a797d2 | 2015-10-17 16:16:04 -0400 | [diff] [blame] | 612 | success = -EFSBADCRC; |
Dmitry Monakhov | a67c848 | 2013-12-08 21:14:59 -0500 | [diff] [blame] | 613 | printk(KERN_ERR "JBD2: Invalid " |
Darrick J. Wong | c390087 | 2012-05-27 08:12:12 -0400 | [diff] [blame] | 614 | "checksum recovering " |
Theodore Ts'o | ed65b00 | 2018-02-18 21:33:13 -0500 | [diff] [blame] | 615 | "data block %llu in " |
| 616 | "log\n", blocknr); |
Darrick J. Wong | 022eaa7 | 2014-08-27 18:40:05 -0400 | [diff] [blame] | 617 | block_error = 1; |
| 618 | goto skip_write; |
Darrick J. Wong | c390087 | 2012-05-27 08:12:12 -0400 | [diff] [blame] | 619 | } |
| 620 | |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 621 | /* Find a buffer for the new |
| 622 | * data being restored */ |
| 623 | nbh = __getblk(journal->j_fs_dev, |
| 624 | blocknr, |
| 625 | journal->j_blocksize); |
| 626 | if (nbh == NULL) { |
| 627 | printk(KERN_ERR |
Eryu Guan | f2a4452 | 2011-11-01 19:09:18 -0400 | [diff] [blame] | 628 | "JBD2: Out of memory " |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 629 | "during recovery.\n"); |
| 630 | err = -ENOMEM; |
| 631 | brelse(bh); |
| 632 | brelse(obh); |
| 633 | goto failed; |
| 634 | } |
| 635 | |
| 636 | lock_buffer(nbh); |
| 637 | memcpy(nbh->b_data, obh->b_data, |
| 638 | journal->j_blocksize); |
Mingming Cao | f7f4bcc | 2006-10-11 01:20:59 -0700 | [diff] [blame] | 639 | if (flags & JBD2_FLAG_ESCAPE) { |
Duane Griffin | d002567 | 2008-03-19 17:00:54 -0700 | [diff] [blame] | 640 | *((__be32 *)nbh->b_data) = |
Mingming Cao | f7f4bcc | 2006-10-11 01:20:59 -0700 | [diff] [blame] | 641 | cpu_to_be32(JBD2_MAGIC_NUMBER); |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 642 | } |
| 643 | |
| 644 | BUFFER_TRACE(nbh, "marking dirty"); |
| 645 | set_buffer_uptodate(nbh); |
| 646 | mark_buffer_dirty(nbh); |
| 647 | BUFFER_TRACE(nbh, "marking uptodate"); |
| 648 | ++info->nr_replays; |
| 649 | /* ll_rw_block(WRITE, 1, &nbh); */ |
| 650 | unlock_buffer(nbh); |
| 651 | brelse(obh); |
| 652 | brelse(nbh); |
| 653 | } |
| 654 | |
| 655 | skip_write: |
Zach Brown | b517bea | 2006-10-11 01:21:08 -0700 | [diff] [blame] | 656 | tagp += tag_bytes; |
Mingming Cao | f7f4bcc | 2006-10-11 01:20:59 -0700 | [diff] [blame] | 657 | if (!(flags & JBD2_FLAG_SAME_UUID)) |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 658 | tagp += 16; |
| 659 | |
Mingming Cao | f7f4bcc | 2006-10-11 01:20:59 -0700 | [diff] [blame] | 660 | if (flags & JBD2_FLAG_LAST_TAG) |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 661 | break; |
| 662 | } |
| 663 | |
| 664 | brelse(bh); |
| 665 | continue; |
| 666 | |
Mingming Cao | f7f4bcc | 2006-10-11 01:20:59 -0700 | [diff] [blame] | 667 | case JBD2_COMMIT_BLOCK: |
Girish Shilamkar | 818d276 | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 668 | /* How to differentiate between interrupted commit |
| 669 | * and journal corruption ? |
| 670 | * |
| 671 | * {nth transaction} |
| 672 | * Checksum Verification Failed |
| 673 | * | |
| 674 | * ____________________ |
| 675 | * | | |
| 676 | * async_commit sync_commit |
| 677 | * | | |
| 678 | * | GO TO NEXT "Journal Corruption" |
| 679 | * | TRANSACTION |
| 680 | * | |
| 681 | * {(n+1)th transanction} |
| 682 | * | |
| 683 | * _______|______________ |
| 684 | * | | |
| 685 | * Commit block found Commit block not found |
| 686 | * | | |
| 687 | * "Journal Corruption" | |
| 688 | * _____________|_________ |
| 689 | * | | |
| 690 | * nth trans corrupt OR nth trans |
| 691 | * and (n+1)th interrupted interrupted |
| 692 | * before commit block |
| 693 | * could reach the disk. |
| 694 | * (Cannot find the difference in above |
| 695 | * mentioned conditions. Hence assume |
| 696 | * "Interrupted Commit".) |
| 697 | */ |
changfengnan | fc750a3b | 2020-10-12 18:49:00 +0200 | [diff] [blame^] | 698 | commit_time = be64_to_cpu( |
| 699 | ((struct commit_header *)bh->b_data)->h_commit_sec); |
| 700 | /* |
| 701 | * If need_check_commit_time is set, it means we are in |
| 702 | * PASS_SCAN and csum verify failed before. If |
| 703 | * commit_time is increasing, it's the same journal, |
| 704 | * otherwise it is stale journal block, just end this |
| 705 | * recovery. |
| 706 | */ |
| 707 | if (need_check_commit_time) { |
| 708 | if (commit_time >= last_trans_commit_time) { |
| 709 | pr_err("JBD2: Invalid checksum found in transaction %u\n", |
| 710 | next_commit_ID); |
| 711 | err = -EFSBADCRC; |
| 712 | brelse(bh); |
| 713 | goto failed; |
| 714 | } |
| 715 | ignore_crc_mismatch: |
| 716 | /* |
| 717 | * It likely does not belong to same journal, |
| 718 | * just end this recovery with success. |
| 719 | */ |
| 720 | jbd_debug(1, "JBD2: Invalid checksum ignored in transaction %u, likely stale data\n", |
| 721 | next_commit_ID); |
| 722 | err = 0; |
| 723 | brelse(bh); |
| 724 | goto done; |
| 725 | } |
Girish Shilamkar | 818d276 | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 726 | |
changfengnan | fc750a3b | 2020-10-12 18:49:00 +0200 | [diff] [blame^] | 727 | /* |
| 728 | * Found an expected commit block: if checksums |
| 729 | * are present, verify them in PASS_SCAN; else not |
Girish Shilamkar | 818d276 | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 730 | * much to do other than move on to the next sequence |
changfengnan | fc750a3b | 2020-10-12 18:49:00 +0200 | [diff] [blame^] | 731 | * number. |
| 732 | */ |
Girish Shilamkar | 818d276 | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 733 | if (pass == PASS_SCAN && |
Darrick J. Wong | 56316a0 | 2015-10-17 16:18:45 -0400 | [diff] [blame] | 734 | jbd2_has_feature_checksum(journal)) { |
Girish Shilamkar | 818d276 | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 735 | struct commit_header *cbh = |
| 736 | (struct commit_header *)bh->b_data; |
| 737 | unsigned found_chksum = |
| 738 | be32_to_cpu(cbh->h_chksum[0]); |
| 739 | |
Girish Shilamkar | 818d276 | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 740 | if (info->end_transaction) { |
Theodore Ts'o | 624080e | 2008-06-06 17:50:40 -0400 | [diff] [blame] | 741 | journal->j_failed_commit = |
| 742 | info->end_transaction; |
Girish Shilamkar | 818d276 | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 743 | brelse(bh); |
| 744 | break; |
| 745 | } |
| 746 | |
Shijie Luo | 00a3fff | 2020-08-10 22:21:28 -0400 | [diff] [blame] | 747 | /* Neither checksum match nor unused? */ |
| 748 | if (!((crc32_sum == found_chksum && |
| 749 | cbh->h_chksum_type == |
| 750 | JBD2_CRC32_CHKSUM && |
| 751 | cbh->h_chksum_size == |
| 752 | JBD2_CRC32_CHKSUM_SIZE) || |
| 753 | (cbh->h_chksum_type == 0 && |
| 754 | cbh->h_chksum_size == 0 && |
| 755 | found_chksum == 0))) |
| 756 | goto chksum_error; |
Girish Shilamkar | 818d276 | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 757 | |
Girish Shilamkar | 818d276 | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 758 | crc32_sum = ~0; |
| 759 | } |
Darrick J. Wong | 1f56c58 | 2012-05-27 08:10:25 -0400 | [diff] [blame] | 760 | if (pass == PASS_SCAN && |
| 761 | !jbd2_commit_block_csum_verify(journal, |
| 762 | bh->b_data)) { |
Shijie Luo | 00a3fff | 2020-08-10 22:21:28 -0400 | [diff] [blame] | 763 | chksum_error: |
changfengnan | fc750a3b | 2020-10-12 18:49:00 +0200 | [diff] [blame^] | 764 | if (commit_time < last_trans_commit_time) |
| 765 | goto ignore_crc_mismatch; |
Darrick J. Wong | 1f56c58 | 2012-05-27 08:10:25 -0400 | [diff] [blame] | 766 | info->end_transaction = next_commit_ID; |
| 767 | |
Darrick J. Wong | 56316a0 | 2015-10-17 16:18:45 -0400 | [diff] [blame] | 768 | if (!jbd2_has_feature_async_commit(journal)) { |
Darrick J. Wong | 1f56c58 | 2012-05-27 08:10:25 -0400 | [diff] [blame] | 769 | journal->j_failed_commit = |
| 770 | next_commit_ID; |
| 771 | brelse(bh); |
| 772 | break; |
| 773 | } |
| 774 | } |
changfengnan | fc750a3b | 2020-10-12 18:49:00 +0200 | [diff] [blame^] | 775 | if (pass == PASS_SCAN) |
| 776 | last_trans_commit_time = commit_time; |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 777 | brelse(bh); |
| 778 | next_commit_ID++; |
| 779 | continue; |
| 780 | |
Mingming Cao | f7f4bcc | 2006-10-11 01:20:59 -0700 | [diff] [blame] | 781 | case JBD2_REVOKE_BLOCK: |
changfengnan | fc750a3b | 2020-10-12 18:49:00 +0200 | [diff] [blame^] | 782 | /* |
| 783 | * Check revoke block crc in pass_scan, if csum verify |
| 784 | * failed, check commit block time later. |
| 785 | */ |
| 786 | if (pass == PASS_SCAN && |
| 787 | !jbd2_descriptor_block_csum_verify(journal, |
| 788 | bh->b_data)) { |
| 789 | jbd_debug(1, "JBD2: invalid revoke block found in %lu\n", |
| 790 | next_log_block); |
| 791 | need_check_commit_time = true; |
| 792 | } |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 793 | /* If we aren't in the REVOKE pass, then we can |
| 794 | * just skip over this block. */ |
| 795 | if (pass != PASS_REVOKE) { |
| 796 | brelse(bh); |
| 797 | continue; |
| 798 | } |
| 799 | |
| 800 | err = scan_revoke_records(journal, bh, |
| 801 | next_commit_ID, info); |
| 802 | brelse(bh); |
| 803 | if (err) |
| 804 | goto failed; |
| 805 | continue; |
| 806 | |
| 807 | default: |
| 808 | jbd_debug(3, "Unrecognised magic %d, end of scan.\n", |
| 809 | blocktype); |
| 810 | brelse(bh); |
| 811 | goto done; |
| 812 | } |
| 813 | } |
| 814 | |
| 815 | done: |
| 816 | /* |
| 817 | * We broke out of the log scan loop: either we came to the |
| 818 | * known end of the log or we found an unexpected block in the |
| 819 | * log. If the latter happened, then we know that the "current" |
| 820 | * transaction marks the end of the valid log. |
| 821 | */ |
| 822 | |
Girish Shilamkar | 818d276 | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 823 | if (pass == PASS_SCAN) { |
| 824 | if (!info->end_transaction) |
| 825 | info->end_transaction = next_commit_ID; |
| 826 | } else { |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 827 | /* It's really bad news if different passes end up at |
| 828 | * different places (but possible due to IO errors). */ |
| 829 | if (info->end_transaction != next_commit_ID) { |
Eryu Guan | f2a4452 | 2011-11-01 19:09:18 -0400 | [diff] [blame] | 830 | printk(KERN_ERR "JBD2: recovery pass %d ended at " |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 831 | "transaction %u, expected %u\n", |
| 832 | pass, next_commit_ID, info->end_transaction); |
| 833 | if (!success) |
| 834 | success = -EIO; |
| 835 | } |
| 836 | } |
Darrick J. Wong | 022eaa7 | 2014-08-27 18:40:05 -0400 | [diff] [blame] | 837 | if (block_error && success == 0) |
| 838 | success = -EIO; |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 839 | return success; |
| 840 | |
| 841 | failed: |
| 842 | return err; |
| 843 | } |
| 844 | |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 845 | /* Scan a revoke record, marking all blocks mentioned as revoked. */ |
| 846 | |
| 847 | static int scan_revoke_records(journal_t *journal, struct buffer_head *bh, |
| 848 | tid_t sequence, struct recovery_info *info) |
| 849 | { |
Mingming Cao | f7f4bcc | 2006-10-11 01:20:59 -0700 | [diff] [blame] | 850 | jbd2_journal_revoke_header_t *header; |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 851 | int offset, max; |
Darrick J. Wong | e531d0b | 2015-05-14 19:11:50 -0400 | [diff] [blame] | 852 | int csum_size = 0; |
| 853 | __u32 rcount; |
Zach Brown | b517bea | 2006-10-11 01:21:08 -0700 | [diff] [blame] | 854 | int record_len = 4; |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 855 | |
Mingming Cao | f7f4bcc | 2006-10-11 01:20:59 -0700 | [diff] [blame] | 856 | header = (jbd2_journal_revoke_header_t *) bh->b_data; |
| 857 | offset = sizeof(jbd2_journal_revoke_header_t); |
Darrick J. Wong | e531d0b | 2015-05-14 19:11:50 -0400 | [diff] [blame] | 858 | rcount = be32_to_cpu(header->r_count); |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 859 | |
Darrick J. Wong | e531d0b | 2015-05-14 19:11:50 -0400 | [diff] [blame] | 860 | if (jbd2_journal_has_csum_v2or3(journal)) |
Jan Kara | 1101cd4 | 2016-02-22 23:19:09 -0500 | [diff] [blame] | 861 | csum_size = sizeof(struct jbd2_journal_block_tail); |
Darrick J. Wong | e531d0b | 2015-05-14 19:11:50 -0400 | [diff] [blame] | 862 | if (rcount > journal->j_blocksize - csum_size) |
| 863 | return -EINVAL; |
| 864 | max = rcount; |
| 865 | |
Darrick J. Wong | 56316a0 | 2015-10-17 16:18:45 -0400 | [diff] [blame] | 866 | if (jbd2_has_feature_64bit(journal)) |
Zach Brown | b517bea | 2006-10-11 01:21:08 -0700 | [diff] [blame] | 867 | record_len = 8; |
| 868 | |
| 869 | while (offset + record_len <= max) { |
Mingming Cao | 18eba7a | 2006-10-11 01:21:13 -0700 | [diff] [blame] | 870 | unsigned long long blocknr; |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 871 | int err; |
| 872 | |
Zach Brown | b517bea | 2006-10-11 01:21:08 -0700 | [diff] [blame] | 873 | if (record_len == 4) |
| 874 | blocknr = be32_to_cpu(* ((__be32 *) (bh->b_data+offset))); |
| 875 | else |
| 876 | blocknr = be64_to_cpu(* ((__be64 *) (bh->b_data+offset))); |
| 877 | offset += record_len; |
Mingming Cao | f7f4bcc | 2006-10-11 01:20:59 -0700 | [diff] [blame] | 878 | err = jbd2_journal_set_revoke(journal, blocknr, sequence); |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 879 | if (err) |
| 880 | return err; |
| 881 | ++info->nr_revokes; |
| 882 | } |
| 883 | return 0; |
| 884 | } |