Theodore Ts'o | 3b5386d | 2000-08-14 14:25:19 +0000 | [diff] [blame] | 1 | /* |
Theodore Ts'o | e5ea6b1 | 2008-05-20 14:51:14 -0400 | [diff] [blame] | 2 | * linux/fs/jbd/recovery.c |
| 3 | * |
Theodore Ts'o | 3b5386d | 2000-08-14 14:25:19 +0000 | [diff] [blame] | 4 | * Written by Stephen C. Tweedie <sct@redhat.com>, 1999 |
| 5 | * |
Theodore Ts'o | 0e8a956 | 2000-12-09 06:41:25 +0000 | [diff] [blame] | 6 | * Copyright 1999-2000 Red Hat Software --- All Rights Reserved |
Theodore Ts'o | 3b5386d | 2000-08-14 14:25:19 +0000 | [diff] [blame] | 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; |
Theodore Ts'o | e5ea6b1 | 2008-05-20 14:51:14 -0400 | [diff] [blame] | 13 | * part of the ext2fs journaling system. |
Theodore Ts'o | 3b5386d | 2000-08-14 14:25:19 +0000 | [diff] [blame] | 14 | */ |
| 15 | |
| 16 | #ifndef __KERNEL__ |
Theodore Ts'o | 0e8a956 | 2000-12-09 06:41:25 +0000 | [diff] [blame] | 17 | #include "jfs_user.h" |
Theodore Ts'o | 3b5386d | 2000-08-14 14:25:19 +0000 | [diff] [blame] | 18 | #else |
Theodore Ts'o | 3de085d | 2003-12-07 01:00:02 -0500 | [diff] [blame] | 19 | #include <linux/time.h> |
Theodore Ts'o | 3b5386d | 2000-08-14 14:25:19 +0000 | [diff] [blame] | 20 | #include <linux/fs.h> |
Theodore Ts'o | 8cf9333 | 2001-12-16 02:23:36 -0500 | [diff] [blame] | 21 | #include <linux/jbd.h> |
Theodore Ts'o | 3b5386d | 2000-08-14 14:25:19 +0000 | [diff] [blame] | 22 | #include <linux/errno.h> |
Theodore Ts'o | 8cf9333 | 2001-12-16 02:23:36 -0500 | [diff] [blame] | 23 | #include <linux/slab.h> |
Theodore Ts'o | 0e8a956 | 2000-12-09 06:41:25 +0000 | [diff] [blame] | 24 | #endif |
Theodore Ts'o | 3b5386d | 2000-08-14 14:25:19 +0000 | [diff] [blame] | 25 | |
Theodore Ts'o | 0e8a956 | 2000-12-09 06:41:25 +0000 | [diff] [blame] | 26 | /* |
| 27 | * Maintain information about the progress of the recovery job, so that |
Theodore Ts'o | e5ea6b1 | 2008-05-20 14:51:14 -0400 | [diff] [blame] | 28 | * the different passes can carry information between them. |
Theodore Ts'o | 0e8a956 | 2000-12-09 06:41:25 +0000 | [diff] [blame] | 29 | */ |
Theodore Ts'o | e5ea6b1 | 2008-05-20 14:51:14 -0400 | [diff] [blame] | 30 | struct recovery_info |
Theodore Ts'o | 0e8a956 | 2000-12-09 06:41:25 +0000 | [diff] [blame] | 31 | { |
Theodore Ts'o | e5ea6b1 | 2008-05-20 14:51:14 -0400 | [diff] [blame] | 32 | tid_t start_transaction; |
Theodore Ts'o | 0e8a956 | 2000-12-09 06:41:25 +0000 | [diff] [blame] | 33 | tid_t end_transaction; |
Theodore Ts'o | e5ea6b1 | 2008-05-20 14:51:14 -0400 | [diff] [blame] | 34 | |
Theodore Ts'o | 0e8a956 | 2000-12-09 06:41:25 +0000 | [diff] [blame] | 35 | int nr_replays; |
| 36 | int nr_revokes; |
| 37 | int nr_revoke_hits; |
| 38 | }; |
| 39 | |
| 40 | enum passtype {PASS_SCAN, PASS_REVOKE, PASS_REPLAY}; |
Theodore Ts'o | 8cf9333 | 2001-12-16 02:23:36 -0500 | [diff] [blame] | 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 *); |
Theodore Ts'o | 0e8a956 | 2000-12-09 06:41:25 +0000 | [diff] [blame] | 45 | |
| 46 | #ifdef __KERNEL__ |
Theodore Ts'o | 3b5386d | 2000-08-14 14:25:19 +0000 | [diff] [blame] | 47 | |
| 48 | /* Release readahead buffers after use */ |
Theodore Ts'o | e5ea6b1 | 2008-05-20 14:51:14 -0400 | [diff] [blame] | 49 | static void journal_brelse_array(struct buffer_head *b[], int n) |
Theodore Ts'o | 3b5386d | 2000-08-14 14:25:19 +0000 | [diff] [blame] | 50 | { |
| 51 | while (--n >= 0) |
| 52 | brelse (b[n]); |
| 53 | } |
| 54 | |
| 55 | |
| 56 | /* |
| 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. |
| 62 | * |
| 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 |
| 65 | * fixed value. |
| 66 | */ |
| 67 | |
Theodore Ts'o | 1f73503 | 2001-03-29 19:00:50 +0000 | [diff] [blame] | 68 | #define MAXBUF 8 |
Theodore Ts'o | 3b5386d | 2000-08-14 14:25:19 +0000 | [diff] [blame] | 69 | static int do_readahead(journal_t *journal, unsigned int start) |
| 70 | { |
| 71 | int err; |
Theodore Ts'o | 8cf9333 | 2001-12-16 02:23:36 -0500 | [diff] [blame] | 72 | unsigned int max, nbufs, next; |
JP Abgrall | e0ed740 | 2014-03-19 19:08:39 -0700 | [diff] [blame] | 73 | unsigned long long blocknr; |
Theodore Ts'o | 3b5386d | 2000-08-14 14:25:19 +0000 | [diff] [blame] | 74 | struct buffer_head *bh; |
Theodore Ts'o | e5ea6b1 | 2008-05-20 14:51:14 -0400 | [diff] [blame] | 75 | |
Theodore Ts'o | 3b5386d | 2000-08-14 14:25:19 +0000 | [diff] [blame] | 76 | struct buffer_head * bufs[MAXBUF]; |
Theodore Ts'o | e5ea6b1 | 2008-05-20 14:51:14 -0400 | [diff] [blame] | 77 | |
Theodore Ts'o | 3b5386d | 2000-08-14 14:25:19 +0000 | [diff] [blame] | 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; |
| 82 | |
| 83 | /* Do the readahead itself. We'll submit MAXBUF buffer_heads at |
| 84 | * a time to the block device IO layer. */ |
Theodore Ts'o | e5ea6b1 | 2008-05-20 14:51:14 -0400 | [diff] [blame] | 85 | |
Theodore Ts'o | 3b5386d | 2000-08-14 14:25:19 +0000 | [diff] [blame] | 86 | nbufs = 0; |
Theodore Ts'o | e5ea6b1 | 2008-05-20 14:51:14 -0400 | [diff] [blame] | 87 | |
Theodore Ts'o | 3b5386d | 2000-08-14 14:25:19 +0000 | [diff] [blame] | 88 | for (next = start; next < max; next++) { |
Theodore Ts'o | 8cf9333 | 2001-12-16 02:23:36 -0500 | [diff] [blame] | 89 | err = journal_bmap(journal, next, &blocknr); |
| 90 | |
| 91 | if (err) { |
| 92 | printk (KERN_ERR "JBD: bad block at offset %u\n", |
Theodore Ts'o | 3b5386d | 2000-08-14 14:25:19 +0000 | [diff] [blame] | 93 | next); |
Theodore Ts'o | 3b5386d | 2000-08-14 14:25:19 +0000 | [diff] [blame] | 94 | goto failed; |
| 95 | } |
Theodore Ts'o | 8cf9333 | 2001-12-16 02:23:36 -0500 | [diff] [blame] | 96 | |
Theodore Ts'o | 3de085d | 2003-12-07 01:00:02 -0500 | [diff] [blame] | 97 | bh = __getblk(journal->j_dev, blocknr, journal->j_blocksize); |
Theodore Ts'o | 3b5386d | 2000-08-14 14:25:19 +0000 | [diff] [blame] | 98 | if (!bh) { |
Theodore Ts'o | 3b5386d | 2000-08-14 14:25:19 +0000 | [diff] [blame] | 99 | err = -ENOMEM; |
| 100 | goto failed; |
| 101 | } |
| 102 | |
| 103 | if (!buffer_uptodate(bh) && !buffer_locked(bh)) { |
| 104 | bufs[nbufs++] = bh; |
| 105 | if (nbufs == MAXBUF) { |
| 106 | ll_rw_block(READ, nbufs, bufs); |
Theodore Ts'o | 8cf9333 | 2001-12-16 02:23:36 -0500 | [diff] [blame] | 107 | journal_brelse_array(bufs, nbufs); |
Theodore Ts'o | 3b5386d | 2000-08-14 14:25:19 +0000 | [diff] [blame] | 108 | nbufs = 0; |
| 109 | } |
| 110 | } else |
| 111 | brelse(bh); |
| 112 | } |
| 113 | |
| 114 | if (nbufs) |
| 115 | ll_rw_block(READ, nbufs, bufs); |
| 116 | err = 0; |
Theodore Ts'o | 8cf9333 | 2001-12-16 02:23:36 -0500 | [diff] [blame] | 117 | |
Theodore Ts'o | e5ea6b1 | 2008-05-20 14:51:14 -0400 | [diff] [blame] | 118 | failed: |
| 119 | if (nbufs) |
Theodore Ts'o | 8cf9333 | 2001-12-16 02:23:36 -0500 | [diff] [blame] | 120 | journal_brelse_array(bufs, nbufs); |
Theodore Ts'o | 3b5386d | 2000-08-14 14:25:19 +0000 | [diff] [blame] | 121 | return err; |
| 122 | } |
Theodore Ts'o | 0e8a956 | 2000-12-09 06:41:25 +0000 | [diff] [blame] | 123 | |
| 124 | #endif /* __KERNEL__ */ |
| 125 | |
Theodore Ts'o | 3b5386d | 2000-08-14 14:25:19 +0000 | [diff] [blame] | 126 | |
| 127 | /* |
| 128 | * Read a block from the journal |
| 129 | */ |
| 130 | |
Theodore Ts'o | e5ea6b1 | 2008-05-20 14:51:14 -0400 | [diff] [blame] | 131 | static int jread(struct buffer_head **bhp, journal_t *journal, |
Theodore Ts'o | 3b5386d | 2000-08-14 14:25:19 +0000 | [diff] [blame] | 132 | unsigned int offset) |
| 133 | { |
Theodore Ts'o | 8cf9333 | 2001-12-16 02:23:36 -0500 | [diff] [blame] | 134 | int err; |
JP Abgrall | e0ed740 | 2014-03-19 19:08:39 -0700 | [diff] [blame] | 135 | unsigned long long blocknr; |
Theodore Ts'o | 3b5386d | 2000-08-14 14:25:19 +0000 | [diff] [blame] | 136 | struct buffer_head *bh; |
| 137 | |
| 138 | *bhp = NULL; |
| 139 | |
Theodore Ts'o | e5ea6b1 | 2008-05-20 14:51:14 -0400 | [diff] [blame] | 140 | if (offset >= journal->j_maxlen) { |
| 141 | printk(KERN_ERR "JBD: corrupted journal superblock\n"); |
| 142 | return -EIO; |
| 143 | } |
| 144 | |
Theodore Ts'o | 8cf9333 | 2001-12-16 02:23:36 -0500 | [diff] [blame] | 145 | err = journal_bmap(journal, offset, &blocknr); |
| 146 | |
| 147 | if (err) { |
| 148 | printk (KERN_ERR "JBD: bad block at offset %u\n", |
Theodore Ts'o | 3b5386d | 2000-08-14 14:25:19 +0000 | [diff] [blame] | 149 | offset); |
Theodore Ts'o | 8cf9333 | 2001-12-16 02:23:36 -0500 | [diff] [blame] | 150 | return err; |
Theodore Ts'o | 3b5386d | 2000-08-14 14:25:19 +0000 | [diff] [blame] | 151 | } |
Theodore Ts'o | 8cf9333 | 2001-12-16 02:23:36 -0500 | [diff] [blame] | 152 | |
Theodore Ts'o | 3de085d | 2003-12-07 01:00:02 -0500 | [diff] [blame] | 153 | bh = __getblk(journal->j_dev, blocknr, journal->j_blocksize); |
Theodore Ts'o | 3b5386d | 2000-08-14 14:25:19 +0000 | [diff] [blame] | 154 | if (!bh) |
| 155 | return -ENOMEM; |
Theodore Ts'o | 8cf9333 | 2001-12-16 02:23:36 -0500 | [diff] [blame] | 156 | |
Theodore Ts'o | 3b5386d | 2000-08-14 14:25:19 +0000 | [diff] [blame] | 157 | if (!buffer_uptodate(bh)) { |
| 158 | /* If this is a brand new buffer, start readahead. |
| 159 | Otherwise, we assume we are already reading it. */ |
| 160 | if (!buffer_req(bh)) |
| 161 | do_readahead(journal, offset); |
| 162 | wait_on_buffer(bh); |
| 163 | } |
Theodore Ts'o | 8cf9333 | 2001-12-16 02:23:36 -0500 | [diff] [blame] | 164 | |
Theodore Ts'o | 3b5386d | 2000-08-14 14:25:19 +0000 | [diff] [blame] | 165 | if (!buffer_uptodate(bh)) { |
Theodore Ts'o | 8cf9333 | 2001-12-16 02:23:36 -0500 | [diff] [blame] | 166 | printk (KERN_ERR "JBD: Failed to read block at offset %u\n", |
Theodore Ts'o | 3b5386d | 2000-08-14 14:25:19 +0000 | [diff] [blame] | 167 | offset); |
| 168 | brelse(bh); |
| 169 | return -EIO; |
| 170 | } |
Theodore Ts'o | 8cf9333 | 2001-12-16 02:23:36 -0500 | [diff] [blame] | 171 | |
Theodore Ts'o | 3b5386d | 2000-08-14 14:25:19 +0000 | [diff] [blame] | 172 | *bhp = bh; |
| 173 | return 0; |
| 174 | } |
| 175 | |
| 176 | |
| 177 | /* |
| 178 | * Count the number of in-use tags in a journal descriptor block. |
| 179 | */ |
| 180 | |
Theodore Ts'o | 185c4ae | 2008-05-23 01:00:19 -0400 | [diff] [blame] | 181 | static int count_tags(journal_t *journal, struct buffer_head *bh) |
Theodore Ts'o | 3b5386d | 2000-08-14 14:25:19 +0000 | [diff] [blame] | 182 | { |
| 183 | char * tagp; |
| 184 | journal_block_tag_t * tag; |
Theodore Ts'o | 185c4ae | 2008-05-23 01:00:19 -0400 | [diff] [blame] | 185 | int nr = 0, size = journal->j_blocksize; |
| 186 | int tag_bytes = journal_tag_bytes(journal); |
Theodore Ts'o | 8cf9333 | 2001-12-16 02:23:36 -0500 | [diff] [blame] | 187 | |
Theodore Ts'o | 3b5386d | 2000-08-14 14:25:19 +0000 | [diff] [blame] | 188 | tagp = &bh->b_data[sizeof(journal_header_t)]; |
Theodore Ts'o | 8cf9333 | 2001-12-16 02:23:36 -0500 | [diff] [blame] | 189 | |
Theodore Ts'o | 185c4ae | 2008-05-23 01:00:19 -0400 | [diff] [blame] | 190 | while ((tagp - bh->b_data + tag_bytes) <= size) { |
Theodore Ts'o | 3b5386d | 2000-08-14 14:25:19 +0000 | [diff] [blame] | 191 | tag = (journal_block_tag_t *) tagp; |
Theodore Ts'o | 8cf9333 | 2001-12-16 02:23:36 -0500 | [diff] [blame] | 192 | |
Theodore Ts'o | 3b5386d | 2000-08-14 14:25:19 +0000 | [diff] [blame] | 193 | nr++; |
Theodore Ts'o | 185c4ae | 2008-05-23 01:00:19 -0400 | [diff] [blame] | 194 | tagp += tag_bytes; |
Theodore Ts'o | e5ea6b1 | 2008-05-20 14:51:14 -0400 | [diff] [blame] | 195 | if (!(tag->t_flags & cpu_to_be32(JFS_FLAG_SAME_UUID))) |
Theodore Ts'o | 3b5386d | 2000-08-14 14:25:19 +0000 | [diff] [blame] | 196 | tagp += 16; |
| 197 | |
Theodore Ts'o | e5ea6b1 | 2008-05-20 14:51:14 -0400 | [diff] [blame] | 198 | if (tag->t_flags & cpu_to_be32(JFS_FLAG_LAST_TAG)) |
Theodore Ts'o | 3b5386d | 2000-08-14 14:25:19 +0000 | [diff] [blame] | 199 | break; |
| 200 | } |
Theodore Ts'o | 8cf9333 | 2001-12-16 02:23:36 -0500 | [diff] [blame] | 201 | |
Theodore Ts'o | 3b5386d | 2000-08-14 14:25:19 +0000 | [diff] [blame] | 202 | return nr; |
| 203 | } |
| 204 | |
| 205 | |
| 206 | /* Make sure we wrap around the log correctly! */ |
| 207 | #define wrap(journal, var) \ |
| 208 | do { \ |
| 209 | if (var >= (journal)->j_last) \ |
| 210 | var -= ((journal)->j_last - (journal)->j_first); \ |
| 211 | } while (0) |
| 212 | |
Theodore Ts'o | 3de085d | 2003-12-07 01:00:02 -0500 | [diff] [blame] | 213 | /** |
Theodore Ts'o | e5ea6b1 | 2008-05-20 14:51:14 -0400 | [diff] [blame] | 214 | * journal_recover - recovers a on-disk journal |
Theodore Ts'o | 3de085d | 2003-12-07 01:00:02 -0500 | [diff] [blame] | 215 | * @journal: the journal to recover |
Theodore Ts'o | 3b5386d | 2000-08-14 14:25:19 +0000 | [diff] [blame] | 216 | * |
| 217 | * The primary function for recovering the log contents when mounting a |
Theodore Ts'o | e5ea6b1 | 2008-05-20 14:51:14 -0400 | [diff] [blame] | 218 | * journaled device. |
| 219 | * |
Theodore Ts'o | 0e8a956 | 2000-12-09 06:41:25 +0000 | [diff] [blame] | 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 |
Theodore Ts'o | e5ea6b1 | 2008-05-20 14:51:14 -0400 | [diff] [blame] | 223 | * in the log. |
Theodore Ts'o | 3b5386d | 2000-08-14 14:25:19 +0000 | [diff] [blame] | 224 | */ |
Theodore Ts'o | 3b5386d | 2000-08-14 14:25:19 +0000 | [diff] [blame] | 225 | int journal_recover(journal_t *journal) |
| 226 | { |
Theodore Ts'o | 0e8a956 | 2000-12-09 06:41:25 +0000 | [diff] [blame] | 227 | int err; |
| 228 | journal_superblock_t * sb; |
| 229 | |
Theodore Ts'o | 53ef44c | 2001-01-06 05:55:58 +0000 | [diff] [blame] | 230 | struct recovery_info info; |
Theodore Ts'o | e5ea6b1 | 2008-05-20 14:51:14 -0400 | [diff] [blame] | 231 | |
Theodore Ts'o | 1f73503 | 2001-03-29 19:00:50 +0000 | [diff] [blame] | 232 | memset(&info, 0, sizeof(info)); |
Theodore Ts'o | 0e8a956 | 2000-12-09 06:41:25 +0000 | [diff] [blame] | 233 | sb = journal->j_superblock; |
Theodore Ts'o | e5ea6b1 | 2008-05-20 14:51:14 -0400 | [diff] [blame] | 234 | |
| 235 | /* |
Theodore Ts'o | 0e8a956 | 2000-12-09 06:41:25 +0000 | [diff] [blame] | 236 | * The journal superblock's s_start field (the current log head) |
| 237 | * is always zero if, and only if, the journal was cleanly |
Theodore Ts'o | e5ea6b1 | 2008-05-20 14:51:14 -0400 | [diff] [blame] | 238 | * unmounted. |
Theodore Ts'o | 0e8a956 | 2000-12-09 06:41:25 +0000 | [diff] [blame] | 239 | */ |
| 240 | |
| 241 | if (!sb->s_start) { |
Theodore Ts'o | 8cf9333 | 2001-12-16 02:23:36 -0500 | [diff] [blame] | 242 | jbd_debug(1, "No recovery required, last transaction %d\n", |
Theodore Ts'o | e5ea6b1 | 2008-05-20 14:51:14 -0400 | [diff] [blame] | 243 | be32_to_cpu(sb->s_sequence)); |
| 244 | journal->j_transaction_sequence = be32_to_cpu(sb->s_sequence) + 1; |
Theodore Ts'o | 0e8a956 | 2000-12-09 06:41:25 +0000 | [diff] [blame] | 245 | return 0; |
| 246 | } |
Theodore Ts'o | e5ea6b1 | 2008-05-20 14:51:14 -0400 | [diff] [blame] | 247 | |
Theodore Ts'o | 0e8a956 | 2000-12-09 06:41:25 +0000 | [diff] [blame] | 248 | err = do_one_pass(journal, &info, PASS_SCAN); |
| 249 | if (!err) |
| 250 | err = do_one_pass(journal, &info, PASS_REVOKE); |
| 251 | if (!err) |
| 252 | err = do_one_pass(journal, &info, PASS_REPLAY); |
| 253 | |
Theodore Ts'o | e5ea6b1 | 2008-05-20 14:51:14 -0400 | [diff] [blame] | 254 | jbd_debug(1, "JBD: recovery, exit status %d, " |
Theodore Ts'o | 0e8a956 | 2000-12-09 06:41:25 +0000 | [diff] [blame] | 255 | "recovered transactions %u to %u\n", |
| 256 | err, info.start_transaction, info.end_transaction); |
Theodore Ts'o | e5ea6b1 | 2008-05-20 14:51:14 -0400 | [diff] [blame] | 257 | jbd_debug(1, "JBD: Replayed %d and revoked %d/%d blocks\n", |
Theodore Ts'o | 0e8a956 | 2000-12-09 06:41:25 +0000 | [diff] [blame] | 258 | info.nr_replays, info.nr_revoke_hits, info.nr_revokes); |
| 259 | |
| 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; |
Theodore Ts'o | e5ea6b1 | 2008-05-20 14:51:14 -0400 | [diff] [blame] | 263 | |
Theodore Ts'o | 0e8a956 | 2000-12-09 06:41:25 +0000 | [diff] [blame] | 264 | journal_clear_revoke(journal); |
Theodore Ts'o | 3de085d | 2003-12-07 01:00:02 -0500 | [diff] [blame] | 265 | sync_blockdev(journal->j_fs_dev); |
Theodore Ts'o | 0e8a956 | 2000-12-09 06:41:25 +0000 | [diff] [blame] | 266 | return err; |
| 267 | } |
| 268 | |
Theodore Ts'o | 3de085d | 2003-12-07 01:00:02 -0500 | [diff] [blame] | 269 | /** |
Theodore Ts'o | e5ea6b1 | 2008-05-20 14:51:14 -0400 | [diff] [blame] | 270 | * journal_skip_recovery - Start journal and wipe exiting records |
Theodore Ts'o | 3de085d | 2003-12-07 01:00:02 -0500 | [diff] [blame] | 271 | * @journal: journal to startup |
Theodore Ts'o | 1f73503 | 2001-03-29 19:00:50 +0000 | [diff] [blame] | 272 | * |
| 273 | * Locate any valid recovery information from the journal and set up the |
| 274 | * journal structures in memory to ignore it (presumably because the |
Theodore Ts'o | e5ea6b1 | 2008-05-20 14:51:14 -0400 | [diff] [blame] | 275 | * caller has evidence that it is out of date). |
Theodore Ts'o | 3de085d | 2003-12-07 01:00:02 -0500 | [diff] [blame] | 276 | * This function does'nt appear to be exorted.. |
Theodore Ts'o | 1f73503 | 2001-03-29 19:00:50 +0000 | [diff] [blame] | 277 | * |
| 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 |
Theodore Ts'o | e5ea6b1 | 2008-05-20 14:51:14 -0400 | [diff] [blame] | 280 | * the journal transaction sequence numbers to the next unused ID. |
Theodore Ts'o | 1f73503 | 2001-03-29 19:00:50 +0000 | [diff] [blame] | 281 | */ |
Theodore Ts'o | 1f73503 | 2001-03-29 19:00:50 +0000 | [diff] [blame] | 282 | int journal_skip_recovery(journal_t *journal) |
| 283 | { |
| 284 | int err; |
Theodore Ts'o | 1f73503 | 2001-03-29 19:00:50 +0000 | [diff] [blame] | 285 | struct recovery_info info; |
Theodore Ts'o | e5ea6b1 | 2008-05-20 14:51:14 -0400 | [diff] [blame] | 286 | |
Theodore Ts'o | 8cf9333 | 2001-12-16 02:23:36 -0500 | [diff] [blame] | 287 | memset (&info, 0, sizeof(info)); |
Theodore Ts'o | e5ea6b1 | 2008-05-20 14:51:14 -0400 | [diff] [blame] | 288 | |
Theodore Ts'o | 1f73503 | 2001-03-29 19:00:50 +0000 | [diff] [blame] | 289 | err = do_one_pass(journal, &info, PASS_SCAN); |
| 290 | |
| 291 | if (err) { |
Theodore Ts'o | 8cf9333 | 2001-12-16 02:23:36 -0500 | [diff] [blame] | 292 | printk(KERN_ERR "JBD: error %d scanning journal\n", err); |
Theodore Ts'o | 1f73503 | 2001-03-29 19:00:50 +0000 | [diff] [blame] | 293 | ++journal->j_transaction_sequence; |
| 294 | } else { |
Theodore Ts'o | 8cf9333 | 2001-12-16 02:23:36 -0500 | [diff] [blame] | 295 | #ifdef CONFIG_JBD_DEBUG |
JP Abgrall | e0ed740 | 2014-03-19 19:08:39 -0700 | [diff] [blame] | 296 | journal_superblock_t *sb = journal->j_superblock; |
| 297 | |
Theodore Ts'o | e5ea6b1 | 2008-05-20 14:51:14 -0400 | [diff] [blame] | 298 | int dropped = info.end_transaction - be32_to_cpu(sb->s_sequence); |
Theodore Ts'o | 8cf9333 | 2001-12-16 02:23:36 -0500 | [diff] [blame] | 299 | #endif |
Theodore Ts'o | e5ea6b1 | 2008-05-20 14:51:14 -0400 | [diff] [blame] | 300 | jbd_debug(1, |
Theodore Ts'o | 8cf9333 | 2001-12-16 02:23:36 -0500 | [diff] [blame] | 301 | "JBD: ignoring %d transaction%s from the journal.\n", |
Theodore Ts'o | 1f73503 | 2001-03-29 19:00:50 +0000 | [diff] [blame] | 302 | dropped, (dropped == 1) ? "" : "s"); |
| 303 | journal->j_transaction_sequence = ++info.end_transaction; |
| 304 | } |
| 305 | |
| 306 | journal->j_tail = 0; |
Theodore Ts'o | 1f73503 | 2001-03-29 19:00:50 +0000 | [diff] [blame] | 307 | return err; |
| 308 | } |
| 309 | |
Theodore Ts'o | 185c4ae | 2008-05-23 01:00:19 -0400 | [diff] [blame] | 310 | static inline unsigned long long read_tag_block(int tag_bytes, journal_block_tag_t *tag) |
| 311 | { |
| 312 | unsigned long long block = be32_to_cpu(tag->t_blocknr); |
| 313 | if (tag_bytes > JBD_TAG_SIZE32) |
| 314 | block |= (__u64)be32_to_cpu(tag->t_blocknr_high) << 32; |
| 315 | return block; |
| 316 | } |
| 317 | |
| 318 | /* |
| 319 | * calc_chksums calculates the checksums for the blocks described in the |
| 320 | * descriptor block. |
| 321 | */ |
| 322 | static int calc_chksums(journal_t *journal, struct buffer_head *bh, |
JP Abgrall | e0ed740 | 2014-03-19 19:08:39 -0700 | [diff] [blame] | 323 | unsigned long long *next_log_block, __u32 *crc32_sum) |
Theodore Ts'o | 185c4ae | 2008-05-23 01:00:19 -0400 | [diff] [blame] | 324 | { |
| 325 | int i, num_blks, err; |
JP Abgrall | e0ed740 | 2014-03-19 19:08:39 -0700 | [diff] [blame] | 326 | unsigned long long io_block; |
Theodore Ts'o | 185c4ae | 2008-05-23 01:00:19 -0400 | [diff] [blame] | 327 | struct buffer_head *obh; |
| 328 | |
| 329 | num_blks = count_tags(journal, bh); |
| 330 | /* Calculate checksum of the descriptor block. */ |
| 331 | *crc32_sum = crc32_be(*crc32_sum, (void *)bh->b_data, bh->b_size); |
| 332 | |
| 333 | for (i = 0; i < num_blks; i++) { |
| 334 | io_block = (*next_log_block)++; |
| 335 | wrap(journal, *next_log_block); |
| 336 | err = jread(&obh, journal, io_block); |
| 337 | if (err) { |
| 338 | printk(KERN_ERR "JBD: IO error %d recovering block " |
JP Abgrall | e0ed740 | 2014-03-19 19:08:39 -0700 | [diff] [blame] | 339 | "%llu in log\n", err, io_block); |
Theodore Ts'o | 185c4ae | 2008-05-23 01:00:19 -0400 | [diff] [blame] | 340 | return 1; |
| 341 | } else { |
| 342 | *crc32_sum = crc32_be(*crc32_sum, (void *)obh->b_data, |
| 343 | obh->b_size); |
| 344 | } |
| 345 | brelse(obh); |
| 346 | } |
| 347 | return 0; |
| 348 | } |
| 349 | |
Theodore Ts'o | 8cf9333 | 2001-12-16 02:23:36 -0500 | [diff] [blame] | 350 | static int do_one_pass(journal_t *journal, |
| 351 | struct recovery_info *info, enum passtype pass) |
Theodore Ts'o | 0e8a956 | 2000-12-09 06:41:25 +0000 | [diff] [blame] | 352 | { |
Theodore Ts'o | 3b5386d | 2000-08-14 14:25:19 +0000 | [diff] [blame] | 353 | unsigned int first_commit_ID, next_commit_ID; |
JP Abgrall | e0ed740 | 2014-03-19 19:08:39 -0700 | [diff] [blame] | 354 | unsigned long long next_log_block; |
Theodore Ts'o | 3b5386d | 2000-08-14 14:25:19 +0000 | [diff] [blame] | 355 | int err, success = 0; |
Theodore Ts'o | 0e8a956 | 2000-12-09 06:41:25 +0000 | [diff] [blame] | 356 | journal_superblock_t * sb; |
Theodore Ts'o | e5ea6b1 | 2008-05-20 14:51:14 -0400 | [diff] [blame] | 357 | journal_header_t * tmp; |
Theodore Ts'o | 3b5386d | 2000-08-14 14:25:19 +0000 | [diff] [blame] | 358 | struct buffer_head * bh; |
Theodore Ts'o | 0e8a956 | 2000-12-09 06:41:25 +0000 | [diff] [blame] | 359 | unsigned int sequence; |
| 360 | int blocktype; |
Theodore Ts'o | 185c4ae | 2008-05-23 01:00:19 -0400 | [diff] [blame] | 361 | int tag_bytes = journal_tag_bytes(journal); |
| 362 | __u32 crc32_sum = ~0; /* Transactional Checksums */ |
Theodore Ts'o | e5ea6b1 | 2008-05-20 14:51:14 -0400 | [diff] [blame] | 363 | |
Theodore Ts'o | e5ea6b1 | 2008-05-20 14:51:14 -0400 | [diff] [blame] | 364 | /* |
Theodore Ts'o | 3b5386d | 2000-08-14 14:25:19 +0000 | [diff] [blame] | 365 | * First thing is to establish what we expect to find in the log |
| 366 | * (in terms of transaction IDs), and where (in terms of log |
Theodore Ts'o | e5ea6b1 | 2008-05-20 14:51:14 -0400 | [diff] [blame] | 367 | * block offsets): query the superblock. |
Theodore Ts'o | 3b5386d | 2000-08-14 14:25:19 +0000 | [diff] [blame] | 368 | */ |
| 369 | |
Theodore Ts'o | 0e8a956 | 2000-12-09 06:41:25 +0000 | [diff] [blame] | 370 | sb = journal->j_superblock; |
Theodore Ts'o | e5ea6b1 | 2008-05-20 14:51:14 -0400 | [diff] [blame] | 371 | next_commit_ID = be32_to_cpu(sb->s_sequence); |
| 372 | next_log_block = be32_to_cpu(sb->s_start); |
Theodore Ts'o | 3b5386d | 2000-08-14 14:25:19 +0000 | [diff] [blame] | 373 | |
| 374 | first_commit_ID = next_commit_ID; |
Theodore Ts'o | 0e8a956 | 2000-12-09 06:41:25 +0000 | [diff] [blame] | 375 | if (pass == PASS_SCAN) |
| 376 | info->start_transaction = first_commit_ID; |
Theodore Ts'o | 8cf9333 | 2001-12-16 02:23:36 -0500 | [diff] [blame] | 377 | |
| 378 | jbd_debug(1, "Starting recovery pass %d\n", pass); |
| 379 | |
Theodore Ts'o | 3b5386d | 2000-08-14 14:25:19 +0000 | [diff] [blame] | 380 | /* |
| 381 | * Now we walk through the log, transaction by transaction, |
| 382 | * making sure that each transaction has a commit block in the |
| 383 | * expected place. Each complete transaction gets replayed back |
Theodore Ts'o | e5ea6b1 | 2008-05-20 14:51:14 -0400 | [diff] [blame] | 384 | * into the main filesystem. |
Theodore Ts'o | 3b5386d | 2000-08-14 14:25:19 +0000 | [diff] [blame] | 385 | */ |
| 386 | |
Theodore Ts'o | 0e8a956 | 2000-12-09 06:41:25 +0000 | [diff] [blame] | 387 | while (1) { |
| 388 | int flags; |
| 389 | char * tagp; |
| 390 | journal_block_tag_t * tag; |
| 391 | struct buffer_head * obh; |
| 392 | struct buffer_head * nbh; |
Theodore Ts'o | e5ea6b1 | 2008-05-20 14:51:14 -0400 | [diff] [blame] | 393 | |
| 394 | cond_resched(); |
| 395 | |
Theodore Ts'o | 0e8a956 | 2000-12-09 06:41:25 +0000 | [diff] [blame] | 396 | /* If we already know where to stop the log traversal, |
| 397 | * check right now that we haven't gone past the end of |
| 398 | * the log. */ |
Theodore Ts'o | e5ea6b1 | 2008-05-20 14:51:14 -0400 | [diff] [blame] | 399 | |
Theodore Ts'o | 0e8a956 | 2000-12-09 06:41:25 +0000 | [diff] [blame] | 400 | if (pass != PASS_SCAN) |
| 401 | if (tid_geq(next_commit_ID, info->end_transaction)) |
| 402 | break; |
Theodore Ts'o | 8cf9333 | 2001-12-16 02:23:36 -0500 | [diff] [blame] | 403 | |
JP Abgrall | e0ed740 | 2014-03-19 19:08:39 -0700 | [diff] [blame] | 404 | jbd_debug(2, "Scanning for sequence ID %u at %llu/%lu\n", |
Theodore Ts'o | 0e8a956 | 2000-12-09 06:41:25 +0000 | [diff] [blame] | 405 | next_commit_ID, next_log_block, journal->j_last); |
Theodore Ts'o | 3b5386d | 2000-08-14 14:25:19 +0000 | [diff] [blame] | 406 | |
Theodore Ts'o | 0e8a956 | 2000-12-09 06:41:25 +0000 | [diff] [blame] | 407 | /* Skip over each chunk of the transaction looking |
| 408 | * either the next descriptor block or the final commit |
| 409 | * record. */ |
Theodore Ts'o | e5ea6b1 | 2008-05-20 14:51:14 -0400 | [diff] [blame] | 410 | |
JP Abgrall | e0ed740 | 2014-03-19 19:08:39 -0700 | [diff] [blame] | 411 | jbd_debug(3, "JBD: checking block %llu\n", next_log_block); |
Theodore Ts'o | 0e8a956 | 2000-12-09 06:41:25 +0000 | [diff] [blame] | 412 | err = jread(&bh, journal, next_log_block); |
| 413 | if (err) |
| 414 | goto failed; |
Theodore Ts'o | 8cf9333 | 2001-12-16 02:23:36 -0500 | [diff] [blame] | 415 | |
Theodore Ts'o | 0e8a956 | 2000-12-09 06:41:25 +0000 | [diff] [blame] | 416 | next_log_block++; |
| 417 | wrap(journal, next_log_block); |
Theodore Ts'o | e5ea6b1 | 2008-05-20 14:51:14 -0400 | [diff] [blame] | 418 | |
| 419 | /* What kind of buffer is it? |
| 420 | * |
Theodore Ts'o | 0e8a956 | 2000-12-09 06:41:25 +0000 | [diff] [blame] | 421 | * If it is a descriptor block, check that it has the |
| 422 | * expected sequence number. Otherwise, we're all done |
| 423 | * here. */ |
| 424 | |
Theodore Ts'o | 8cf9333 | 2001-12-16 02:23:36 -0500 | [diff] [blame] | 425 | tmp = (journal_header_t *)bh->b_data; |
Theodore Ts'o | e5ea6b1 | 2008-05-20 14:51:14 -0400 | [diff] [blame] | 426 | |
| 427 | if (tmp->h_magic != cpu_to_be32(JFS_MAGIC_NUMBER)) { |
Theodore Ts'o | 3b5386d | 2000-08-14 14:25:19 +0000 | [diff] [blame] | 428 | brelse(bh); |
| 429 | break; |
| 430 | } |
Theodore Ts'o | 8cf9333 | 2001-12-16 02:23:36 -0500 | [diff] [blame] | 431 | |
Theodore Ts'o | e5ea6b1 | 2008-05-20 14:51:14 -0400 | [diff] [blame] | 432 | blocktype = be32_to_cpu(tmp->h_blocktype); |
| 433 | sequence = be32_to_cpu(tmp->h_sequence); |
| 434 | jbd_debug(3, "Found magic %d, sequence %d\n", |
Theodore Ts'o | 0e8a956 | 2000-12-09 06:41:25 +0000 | [diff] [blame] | 435 | blocktype, sequence); |
Theodore Ts'o | e5ea6b1 | 2008-05-20 14:51:14 -0400 | [diff] [blame] | 436 | |
Theodore Ts'o | 0e8a956 | 2000-12-09 06:41:25 +0000 | [diff] [blame] | 437 | if (sequence != next_commit_ID) { |
| 438 | brelse(bh); |
| 439 | break; |
| 440 | } |
Theodore Ts'o | e5ea6b1 | 2008-05-20 14:51:14 -0400 | [diff] [blame] | 441 | |
Theodore Ts'o | 0e8a956 | 2000-12-09 06:41:25 +0000 | [diff] [blame] | 442 | /* OK, we have a valid descriptor block which matches |
| 443 | * all of the sequence number checks. What are we going |
| 444 | * to do with it? That depends on the pass... */ |
Theodore Ts'o | 8cf9333 | 2001-12-16 02:23:36 -0500 | [diff] [blame] | 445 | |
Theodore Ts'o | 0e8a956 | 2000-12-09 06:41:25 +0000 | [diff] [blame] | 446 | switch(blocktype) { |
| 447 | case JFS_DESCRIPTOR_BLOCK: |
| 448 | /* If it is a valid descriptor block, replay it |
Theodore Ts'o | 185c4ae | 2008-05-23 01:00:19 -0400 | [diff] [blame] | 449 | * in pass REPLAY; if journal_checksums enabled, then |
| 450 | * calculate checksums in PASS_SCAN, otherwise, |
| 451 | * just skip over the blocks it describes. */ |
Theodore Ts'o | 0e8a956 | 2000-12-09 06:41:25 +0000 | [diff] [blame] | 452 | if (pass != PASS_REPLAY) { |
Theodore Ts'o | 185c4ae | 2008-05-23 01:00:19 -0400 | [diff] [blame] | 453 | if (pass == PASS_SCAN && |
| 454 | JFS_HAS_COMPAT_FEATURE(journal, |
| 455 | JFS_FEATURE_COMPAT_CHECKSUM) && |
| 456 | !info->end_transaction) { |
| 457 | if (calc_chksums(journal, bh, |
| 458 | &next_log_block, |
| 459 | &crc32_sum)) { |
| 460 | brelse(bh); |
| 461 | break; |
| 462 | } |
| 463 | brelse(bh); |
| 464 | continue; |
| 465 | } |
| 466 | next_log_block += count_tags(journal, bh); |
Theodore Ts'o | 0e8a956 | 2000-12-09 06:41:25 +0000 | [diff] [blame] | 467 | wrap(journal, next_log_block); |
Theodore Ts'o | 3b5386d | 2000-08-14 14:25:19 +0000 | [diff] [blame] | 468 | brelse(bh); |
Theodore Ts'o | 0e8a956 | 2000-12-09 06:41:25 +0000 | [diff] [blame] | 469 | continue; |
Theodore Ts'o | 3b5386d | 2000-08-14 14:25:19 +0000 | [diff] [blame] | 470 | } |
Theodore Ts'o | 0e8a956 | 2000-12-09 06:41:25 +0000 | [diff] [blame] | 471 | |
Theodore Ts'o | 3b5386d | 2000-08-14 14:25:19 +0000 | [diff] [blame] | 472 | /* A descriptor block: we can now write all of |
| 473 | * the data blocks. Yay, useful work is finally |
| 474 | * getting done here! */ |
| 475 | |
| 476 | tagp = &bh->b_data[sizeof(journal_header_t)]; |
Theodore Ts'o | 185c4ae | 2008-05-23 01:00:19 -0400 | [diff] [blame] | 477 | while ((tagp - bh->b_data + tag_bytes) |
Theodore Ts'o | 3b5386d | 2000-08-14 14:25:19 +0000 | [diff] [blame] | 478 | <= journal->j_blocksize) { |
JP Abgrall | e0ed740 | 2014-03-19 19:08:39 -0700 | [diff] [blame] | 479 | unsigned long long io_block; |
Theodore Ts'o | 8cf9333 | 2001-12-16 02:23:36 -0500 | [diff] [blame] | 480 | |
Theodore Ts'o | 3b5386d | 2000-08-14 14:25:19 +0000 | [diff] [blame] | 481 | tag = (journal_block_tag_t *) tagp; |
Theodore Ts'o | e5ea6b1 | 2008-05-20 14:51:14 -0400 | [diff] [blame] | 482 | flags = be32_to_cpu(tag->t_flags); |
| 483 | |
Theodore Ts'o | 0e8a956 | 2000-12-09 06:41:25 +0000 | [diff] [blame] | 484 | io_block = next_log_block++; |
Theodore Ts'o | 3b5386d | 2000-08-14 14:25:19 +0000 | [diff] [blame] | 485 | wrap(journal, next_log_block); |
Theodore Ts'o | 0e8a956 | 2000-12-09 06:41:25 +0000 | [diff] [blame] | 486 | err = jread(&obh, journal, io_block); |
Theodore Ts'o | 3b5386d | 2000-08-14 14:25:19 +0000 | [diff] [blame] | 487 | if (err) { |
| 488 | /* Recover what we can, but |
| 489 | * report failure at the end. */ |
| 490 | success = err; |
Theodore Ts'o | e5ea6b1 | 2008-05-20 14:51:14 -0400 | [diff] [blame] | 491 | printk (KERN_ERR |
Theodore Ts'o | 8cf9333 | 2001-12-16 02:23:36 -0500 | [diff] [blame] | 492 | "JBD: IO error %d recovering " |
JP Abgrall | e0ed740 | 2014-03-19 19:08:39 -0700 | [diff] [blame] | 493 | "block %llu in log\n", |
Theodore Ts'o | 0e8a956 | 2000-12-09 06:41:25 +0000 | [diff] [blame] | 494 | err, io_block); |
Theodore Ts'o | 3b5386d | 2000-08-14 14:25:19 +0000 | [diff] [blame] | 495 | } else { |
JP Abgrall | e0ed740 | 2014-03-19 19:08:39 -0700 | [diff] [blame] | 496 | unsigned long long blocknr; |
Theodore Ts'o | e5ea6b1 | 2008-05-20 14:51:14 -0400 | [diff] [blame] | 497 | |
Theodore Ts'o | 3b5386d | 2000-08-14 14:25:19 +0000 | [diff] [blame] | 498 | J_ASSERT(obh != NULL); |
JP Abgrall | e0ed740 | 2014-03-19 19:08:39 -0700 | [diff] [blame] | 499 | blocknr = read_tag_block(tag_bytes, |
| 500 | tag); |
Theodore Ts'o | 3b5386d | 2000-08-14 14:25:19 +0000 | [diff] [blame] | 501 | |
Theodore Ts'o | 0e8a956 | 2000-12-09 06:41:25 +0000 | [diff] [blame] | 502 | /* If the block has been |
| 503 | * revoked, then we're all done |
| 504 | * here. */ |
| 505 | if (journal_test_revoke |
Theodore Ts'o | e5ea6b1 | 2008-05-20 14:51:14 -0400 | [diff] [blame] | 506 | (journal, blocknr, |
Theodore Ts'o | 0e8a956 | 2000-12-09 06:41:25 +0000 | [diff] [blame] | 507 | next_commit_ID)) { |
| 508 | brelse(obh); |
| 509 | ++info->nr_revoke_hits; |
| 510 | goto skip_write; |
| 511 | } |
Theodore Ts'o | e5ea6b1 | 2008-05-20 14:51:14 -0400 | [diff] [blame] | 512 | |
Theodore Ts'o | 0e8a956 | 2000-12-09 06:41:25 +0000 | [diff] [blame] | 513 | /* Find a buffer for the new |
| 514 | * data being restored */ |
Theodore Ts'o | e5ea6b1 | 2008-05-20 14:51:14 -0400 | [diff] [blame] | 515 | nbh = __getblk(journal->j_fs_dev, |
| 516 | blocknr, |
| 517 | journal->j_blocksize); |
Theodore Ts'o | 3b5386d | 2000-08-14 14:25:19 +0000 | [diff] [blame] | 518 | if (nbh == NULL) { |
Theodore Ts'o | e5ea6b1 | 2008-05-20 14:51:14 -0400 | [diff] [blame] | 519 | printk(KERN_ERR |
Theodore Ts'o | 8cf9333 | 2001-12-16 02:23:36 -0500 | [diff] [blame] | 520 | "JBD: Out of memory " |
Theodore Ts'o | 3b5386d | 2000-08-14 14:25:19 +0000 | [diff] [blame] | 521 | "during recovery.\n"); |
| 522 | err = -ENOMEM; |
| 523 | brelse(bh); |
| 524 | brelse(obh); |
| 525 | goto failed; |
| 526 | } |
| 527 | |
Theodore Ts'o | 3de085d | 2003-12-07 01:00:02 -0500 | [diff] [blame] | 528 | lock_buffer(nbh); |
Theodore Ts'o | 8cf9333 | 2001-12-16 02:23:36 -0500 | [diff] [blame] | 529 | memcpy(nbh->b_data, obh->b_data, |
| 530 | journal->j_blocksize); |
Theodore Ts'o | 3b5386d | 2000-08-14 14:25:19 +0000 | [diff] [blame] | 531 | if (flags & JFS_FLAG_ESCAPE) { |
Eric Sandeen | c816ecb | 2010-12-14 13:00:01 -0600 | [diff] [blame] | 532 | journal_header_t *header; |
| 533 | |
| 534 | header = (journal_header_t *) &nbh->b_data[0]; |
| 535 | header->h_magic = cpu_to_be32(JFS_MAGIC_NUMBER); |
Theodore Ts'o | 3b5386d | 2000-08-14 14:25:19 +0000 | [diff] [blame] | 536 | } |
Theodore Ts'o | 8cf9333 | 2001-12-16 02:23:36 -0500 | [diff] [blame] | 537 | |
| 538 | BUFFER_TRACE(nbh, "marking dirty"); |
Theodore Ts'o | 3de085d | 2003-12-07 01:00:02 -0500 | [diff] [blame] | 539 | set_buffer_uptodate(nbh); |
Theodore Ts'o | 8cf9333 | 2001-12-16 02:23:36 -0500 | [diff] [blame] | 540 | mark_buffer_dirty(nbh); |
| 541 | BUFFER_TRACE(nbh, "marking uptodate"); |
Theodore Ts'o | 0e8a956 | 2000-12-09 06:41:25 +0000 | [diff] [blame] | 542 | ++info->nr_replays; |
Theodore Ts'o | 53ef44c | 2001-01-06 05:55:58 +0000 | [diff] [blame] | 543 | /* ll_rw_block(WRITE, 1, &nbh); */ |
Theodore Ts'o | 3de085d | 2003-12-07 01:00:02 -0500 | [diff] [blame] | 544 | unlock_buffer(nbh); |
Theodore Ts'o | 3b5386d | 2000-08-14 14:25:19 +0000 | [diff] [blame] | 545 | brelse(obh); |
| 546 | brelse(nbh); |
| 547 | } |
Theodore Ts'o | e5ea6b1 | 2008-05-20 14:51:14 -0400 | [diff] [blame] | 548 | |
Theodore Ts'o | 0e8a956 | 2000-12-09 06:41:25 +0000 | [diff] [blame] | 549 | skip_write: |
Theodore Ts'o | 185c4ae | 2008-05-23 01:00:19 -0400 | [diff] [blame] | 550 | tagp += tag_bytes; |
Theodore Ts'o | 3b5386d | 2000-08-14 14:25:19 +0000 | [diff] [blame] | 551 | if (!(flags & JFS_FLAG_SAME_UUID)) |
| 552 | tagp += 16; |
| 553 | |
| 554 | if (flags & JFS_FLAG_LAST_TAG) |
| 555 | break; |
Theodore Ts'o | 0e8a956 | 2000-12-09 06:41:25 +0000 | [diff] [blame] | 556 | } |
Theodore Ts'o | e5ea6b1 | 2008-05-20 14:51:14 -0400 | [diff] [blame] | 557 | |
Theodore Ts'o | 3b5386d | 2000-08-14 14:25:19 +0000 | [diff] [blame] | 558 | brelse(bh); |
Theodore Ts'o | 0e8a956 | 2000-12-09 06:41:25 +0000 | [diff] [blame] | 559 | continue; |
Theodore Ts'o | 8cf9333 | 2001-12-16 02:23:36 -0500 | [diff] [blame] | 560 | |
Theodore Ts'o | 0e8a956 | 2000-12-09 06:41:25 +0000 | [diff] [blame] | 561 | case JFS_COMMIT_BLOCK: |
Theodore Ts'o | 185c4ae | 2008-05-23 01:00:19 -0400 | [diff] [blame] | 562 | jbd_debug(3, "Commit block for #%u found\n", |
| 563 | next_commit_ID); |
| 564 | /* How to differentiate between interrupted commit |
| 565 | * and journal corruption ? |
| 566 | * |
| 567 | * {nth transaction} |
| 568 | * Checksum Verification Failed |
| 569 | * | |
| 570 | * ____________________ |
| 571 | * | | |
| 572 | * async_commit sync_commit |
| 573 | * | | |
| 574 | * | GO TO NEXT "Journal Corruption" |
| 575 | * | TRANSACTION |
| 576 | * | |
| 577 | * {(n+1)th transanction} |
| 578 | * | |
| 579 | * _______|______________ |
| 580 | * | | |
| 581 | * Commit block found Commit block not found |
| 582 | * | | |
| 583 | * "Journal Corruption" | |
| 584 | * _____________|_________ |
| 585 | * | | |
| 586 | * nth trans corrupt OR nth trans |
| 587 | * and (n+1)th interrupted interrupted |
| 588 | * before commit block |
| 589 | * could reach the disk. |
| 590 | * (Cannot find the difference in above |
| 591 | * mentioned conditions. Hence assume |
| 592 | * "Interrupted Commit".) |
| 593 | */ |
| 594 | |
| 595 | /* Found an expected commit block: if checksums |
| 596 | * are present verify them in PASS_SCAN; else not |
| 597 | * much to do other than move on to the next sequence |
Theodore Ts'o | 0e8a956 | 2000-12-09 06:41:25 +0000 | [diff] [blame] | 598 | * number. */ |
Theodore Ts'o | 185c4ae | 2008-05-23 01:00:19 -0400 | [diff] [blame] | 599 | if (pass == PASS_SCAN && |
| 600 | JFS_HAS_COMPAT_FEATURE(journal, |
| 601 | JFS_FEATURE_COMPAT_CHECKSUM)) { |
| 602 | int chksum_err, chksum_seen; |
| 603 | struct commit_header *cbh = |
| 604 | (struct commit_header *)bh->b_data; |
| 605 | unsigned found_chksum = |
| 606 | be32_to_cpu(cbh->h_chksum[0]); |
| 607 | |
| 608 | chksum_err = chksum_seen = 0; |
| 609 | |
| 610 | jbd_debug(3, "Checksums %x %x\n", |
| 611 | crc32_sum, found_chksum); |
| 612 | if (info->end_transaction) { |
| 613 | journal->j_failed_commit = |
| 614 | info->end_transaction; |
| 615 | 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; |
Theodore Ts'o | 2acad6b | 2008-06-07 11:04:10 -0400 | [diff] [blame] | 642 | jbd_debug(1, "Checksum_err %x %x\n", |
| 643 | crc32_sum, found_chksum); |
Theodore Ts'o | 185c4ae | 2008-05-23 01:00:19 -0400 | [diff] [blame] | 644 | if (!JFS_HAS_INCOMPAT_FEATURE(journal, |
| 645 | JFS_FEATURE_INCOMPAT_ASYNC_COMMIT)){ |
| 646 | journal->j_failed_commit = |
| 647 | next_commit_ID; |
| 648 | brelse(bh); |
| 649 | break; |
| 650 | } |
| 651 | } |
| 652 | crc32_sum = ~0; |
| 653 | } |
Theodore Ts'o | 0e8a956 | 2000-12-09 06:41:25 +0000 | [diff] [blame] | 654 | brelse(bh); |
| 655 | next_commit_ID++; |
| 656 | continue; |
| 657 | |
| 658 | case JFS_REVOKE_BLOCK: |
| 659 | /* If we aren't in the REVOKE pass, then we can |
| 660 | * just skip over this block. */ |
| 661 | if (pass != PASS_REVOKE) { |
| 662 | brelse(bh); |
| 663 | continue; |
| 664 | } |
| 665 | |
Theodore Ts'o | 8cf9333 | 2001-12-16 02:23:36 -0500 | [diff] [blame] | 666 | err = scan_revoke_records(journal, bh, |
Theodore Ts'o | 0e8a956 | 2000-12-09 06:41:25 +0000 | [diff] [blame] | 667 | next_commit_ID, info); |
| 668 | brelse(bh); |
| 669 | if (err) |
| 670 | goto failed; |
| 671 | continue; |
| 672 | |
| 673 | default: |
Theodore Ts'o | 8cf9333 | 2001-12-16 02:23:36 -0500 | [diff] [blame] | 674 | jbd_debug(3, "Unrecognised magic %d, end of scan.\n", |
Theodore Ts'o | 0e8a956 | 2000-12-09 06:41:25 +0000 | [diff] [blame] | 675 | blocktype); |
Theodore Ts'o | 2aa362f | 2006-05-14 17:16:29 -0400 | [diff] [blame] | 676 | brelse(bh); |
Theodore Ts'o | 0e8a956 | 2000-12-09 06:41:25 +0000 | [diff] [blame] | 677 | goto done; |
| 678 | } |
Theodore Ts'o | 3b5386d | 2000-08-14 14:25:19 +0000 | [diff] [blame] | 679 | } |
Theodore Ts'o | 0e8a956 | 2000-12-09 06:41:25 +0000 | [diff] [blame] | 680 | |
| 681 | done: |
Theodore Ts'o | e5ea6b1 | 2008-05-20 14:51:14 -0400 | [diff] [blame] | 682 | /* |
Theodore Ts'o | 0e8a956 | 2000-12-09 06:41:25 +0000 | [diff] [blame] | 683 | * We broke out of the log scan loop: either we came to the |
| 684 | * known end of the log or we found an unexpected block in the |
| 685 | * log. If the latter happened, then we know that the "current" |
| 686 | * transaction marks the end of the valid log. |
| 687 | */ |
Theodore Ts'o | e5ea6b1 | 2008-05-20 14:51:14 -0400 | [diff] [blame] | 688 | |
Theodore Ts'o | 185c4ae | 2008-05-23 01:00:19 -0400 | [diff] [blame] | 689 | if (pass == PASS_SCAN) { |
| 690 | if (!info->end_transaction) |
| 691 | info->end_transaction = next_commit_ID; |
| 692 | } else { |
Theodore Ts'o | 0e8a956 | 2000-12-09 06:41:25 +0000 | [diff] [blame] | 693 | /* It's really bad news if different passes end up at |
| 694 | * different places (but possible due to IO errors). */ |
| 695 | if (info->end_transaction != next_commit_ID) { |
Theodore Ts'o | 8cf9333 | 2001-12-16 02:23:36 -0500 | [diff] [blame] | 696 | printk (KERN_ERR "JBD: recovery pass %d ended at " |
Theodore Ts'o | 0e8a956 | 2000-12-09 06:41:25 +0000 | [diff] [blame] | 697 | "transaction %u, expected %u\n", |
| 698 | pass, next_commit_ID, info->end_transaction); |
| 699 | if (!success) |
| 700 | success = -EIO; |
| 701 | } |
| 702 | } |
| 703 | |
| 704 | return success; |
Theodore Ts'o | 3b5386d | 2000-08-14 14:25:19 +0000 | [diff] [blame] | 705 | |
| 706 | failed: |
Theodore Ts'o | 3b5386d | 2000-08-14 14:25:19 +0000 | [diff] [blame] | 707 | return err; |
| 708 | } |
Theodore Ts'o | 0e8a956 | 2000-12-09 06:41:25 +0000 | [diff] [blame] | 709 | |
| 710 | |
| 711 | /* Scan a revoke record, marking all blocks mentioned as revoked. */ |
| 712 | |
Theodore Ts'o | e5ea6b1 | 2008-05-20 14:51:14 -0400 | [diff] [blame] | 713 | static int scan_revoke_records(journal_t *journal, struct buffer_head *bh, |
Theodore Ts'o | 0e8a956 | 2000-12-09 06:41:25 +0000 | [diff] [blame] | 714 | tid_t sequence, struct recovery_info *info) |
| 715 | { |
| 716 | journal_revoke_header_t *header; |
| 717 | int offset, max; |
JP Abgrall | e0ed740 | 2014-03-19 19:08:39 -0700 | [diff] [blame] | 718 | int record_len = 4; |
Theodore Ts'o | 8cf9333 | 2001-12-16 02:23:36 -0500 | [diff] [blame] | 719 | |
Theodore Ts'o | 0e8a956 | 2000-12-09 06:41:25 +0000 | [diff] [blame] | 720 | header = (journal_revoke_header_t *) bh->b_data; |
| 721 | offset = sizeof(journal_revoke_header_t); |
Theodore Ts'o | e5ea6b1 | 2008-05-20 14:51:14 -0400 | [diff] [blame] | 722 | max = be32_to_cpu(header->r_count); |
| 723 | |
JP Abgrall | e0ed740 | 2014-03-19 19:08:39 -0700 | [diff] [blame] | 724 | if (JFS_HAS_INCOMPAT_FEATURE(journal, JFS_FEATURE_INCOMPAT_64BIT)) |
| 725 | record_len = 8; |
| 726 | |
Theodore Ts'o | 0e8a956 | 2000-12-09 06:41:25 +0000 | [diff] [blame] | 727 | while (offset < max) { |
JP Abgrall | e0ed740 | 2014-03-19 19:08:39 -0700 | [diff] [blame] | 728 | unsigned long long blocknr; |
Theodore Ts'o | 0e8a956 | 2000-12-09 06:41:25 +0000 | [diff] [blame] | 729 | int err; |
Theodore Ts'o | e5ea6b1 | 2008-05-20 14:51:14 -0400 | [diff] [blame] | 730 | |
JP Abgrall | e0ed740 | 2014-03-19 19:08:39 -0700 | [diff] [blame] | 731 | if (record_len == 4) { |
| 732 | __be32 b; |
| 733 | memcpy(&b, bh->b_data + offset, sizeof(__be32)); |
| 734 | blocknr = ext2fs_be32_to_cpu(b); |
| 735 | } else { |
| 736 | __be64 b; |
| 737 | memcpy(&b, bh->b_data + offset, sizeof(__be64)); |
| 738 | blocknr = ext2fs_be64_to_cpu(b); |
| 739 | } |
| 740 | |
| 741 | offset += record_len; |
Theodore Ts'o | 0e8a956 | 2000-12-09 06:41:25 +0000 | [diff] [blame] | 742 | err = journal_set_revoke(journal, blocknr, sequence); |
| 743 | if (err) |
| 744 | return err; |
| 745 | ++info->nr_revokes; |
| 746 | } |
| 747 | return 0; |
| 748 | } |