David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) Sistina Software, Inc. 1997-2003 All rights reserved. |
Steven Whitehouse | 3a8a9a1 | 2006-05-18 15:09:15 -0400 | [diff] [blame] | 3 | * Copyright (C) 2004-2006 Red Hat, Inc. All rights reserved. |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 4 | * |
| 5 | * This copyrighted material is made available to anyone wishing to use, |
| 6 | * modify, copy, or redistribute it subject to the terms and conditions |
Steven Whitehouse | e9fc2aa | 2006-09-01 11:05:15 -0400 | [diff] [blame] | 7 | * of the GNU General Public License version 2. |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 8 | */ |
| 9 | |
David Howells | 1c2ea8a | 2009-11-20 21:50:40 +0000 | [diff] [blame] | 10 | #include <linux/module.h> |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 11 | #include <linux/slab.h> |
| 12 | #include <linux/spinlock.h> |
| 13 | #include <linux/completion.h> |
| 14 | #include <linux/buffer_head.h> |
Steven Whitehouse | 5c676f6 | 2006-02-27 17:23:27 -0500 | [diff] [blame] | 15 | #include <linux/gfs2_ondisk.h> |
Steven Whitehouse | 71b86f5 | 2006-03-28 14:14:04 -0500 | [diff] [blame] | 16 | #include <linux/crc32.h> |
Bob Peterson | c1696fb | 2018-01-17 00:01:33 +0100 | [diff] [blame] | 17 | #include <linux/crc32c.h> |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 18 | |
| 19 | #include "gfs2.h" |
Steven Whitehouse | 5c676f6 | 2006-02-27 17:23:27 -0500 | [diff] [blame] | 20 | #include "incore.h" |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 21 | #include "bmap.h" |
| 22 | #include "glock.h" |
| 23 | #include "glops.h" |
Bob Peterson | 588bff9 | 2017-12-18 12:48:29 -0600 | [diff] [blame] | 24 | #include "log.h" |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 25 | #include "lops.h" |
| 26 | #include "meta_io.h" |
| 27 | #include "recovery.h" |
| 28 | #include "super.h" |
Steven Whitehouse | 5c676f6 | 2006-02-27 17:23:27 -0500 | [diff] [blame] | 29 | #include "util.h" |
Steven Whitehouse | 71b86f5 | 2006-03-28 14:14:04 -0500 | [diff] [blame] | 30 | #include "dir.h" |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 31 | |
Tejun Heo | 6ecd7c2 | 2010-07-20 22:09:02 +0200 | [diff] [blame] | 32 | struct workqueue_struct *gfs_recovery_wq; |
| 33 | |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 34 | int gfs2_replay_read_block(struct gfs2_jdesc *jd, unsigned int blk, |
| 35 | struct buffer_head **bh) |
| 36 | { |
Steven Whitehouse | feaa7bb | 2006-06-14 15:32:57 -0400 | [diff] [blame] | 37 | struct gfs2_inode *ip = GFS2_I(jd->jd_inode); |
Steven Whitehouse | 5c676f6 | 2006-02-27 17:23:27 -0500 | [diff] [blame] | 38 | struct gfs2_glock *gl = ip->i_gl; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 39 | int new = 0; |
Steven Whitehouse | cd91549 | 2006-09-04 12:49:07 -0400 | [diff] [blame] | 40 | u64 dblock; |
| 41 | u32 extlen; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 42 | int error; |
| 43 | |
Steven Whitehouse | feaa7bb | 2006-06-14 15:32:57 -0400 | [diff] [blame] | 44 | error = gfs2_extent_map(&ip->i_inode, blk, &new, &dblock, &extlen); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 45 | if (error) |
| 46 | return error; |
| 47 | if (!dblock) { |
Steven Whitehouse | 5c676f6 | 2006-02-27 17:23:27 -0500 | [diff] [blame] | 48 | gfs2_consist_inode(ip); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 49 | return -EIO; |
| 50 | } |
| 51 | |
Steven Whitehouse | 7276b3b | 2006-09-21 17:05:23 -0400 | [diff] [blame] | 52 | *bh = gfs2_meta_ra(gl, dblock, extlen); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 53 | |
| 54 | return error; |
| 55 | } |
| 56 | |
Bob Peterson | a17d758 | 2014-03-06 17:19:15 -0500 | [diff] [blame] | 57 | int gfs2_revoke_add(struct gfs2_jdesc *jd, u64 blkno, unsigned int where) |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 58 | { |
Bob Peterson | a17d758 | 2014-03-06 17:19:15 -0500 | [diff] [blame] | 59 | struct list_head *head = &jd->jd_revoke_list; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 60 | struct gfs2_revoke_replay *rr; |
| 61 | int found = 0; |
| 62 | |
| 63 | list_for_each_entry(rr, head, rr_list) { |
| 64 | if (rr->rr_blkno == blkno) { |
| 65 | found = 1; |
| 66 | break; |
| 67 | } |
| 68 | } |
| 69 | |
| 70 | if (found) { |
| 71 | rr->rr_where = where; |
| 72 | return 0; |
| 73 | } |
| 74 | |
Josef Bacik | 16c5f06 | 2008-04-09 09:33:41 -0400 | [diff] [blame] | 75 | rr = kmalloc(sizeof(struct gfs2_revoke_replay), GFP_NOFS); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 76 | if (!rr) |
| 77 | return -ENOMEM; |
| 78 | |
| 79 | rr->rr_blkno = blkno; |
| 80 | rr->rr_where = where; |
| 81 | list_add(&rr->rr_list, head); |
| 82 | |
| 83 | return 1; |
| 84 | } |
| 85 | |
Bob Peterson | a17d758 | 2014-03-06 17:19:15 -0500 | [diff] [blame] | 86 | int gfs2_revoke_check(struct gfs2_jdesc *jd, u64 blkno, unsigned int where) |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 87 | { |
| 88 | struct gfs2_revoke_replay *rr; |
| 89 | int wrap, a, b, revoke; |
| 90 | int found = 0; |
| 91 | |
Bob Peterson | a17d758 | 2014-03-06 17:19:15 -0500 | [diff] [blame] | 92 | list_for_each_entry(rr, &jd->jd_revoke_list, rr_list) { |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 93 | if (rr->rr_blkno == blkno) { |
| 94 | found = 1; |
| 95 | break; |
| 96 | } |
| 97 | } |
| 98 | |
| 99 | if (!found) |
| 100 | return 0; |
| 101 | |
Bob Peterson | a17d758 | 2014-03-06 17:19:15 -0500 | [diff] [blame] | 102 | wrap = (rr->rr_where < jd->jd_replay_tail); |
| 103 | a = (jd->jd_replay_tail < where); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 104 | b = (where < rr->rr_where); |
| 105 | revoke = (wrap) ? (a || b) : (a && b); |
| 106 | |
| 107 | return revoke; |
| 108 | } |
| 109 | |
Bob Peterson | a17d758 | 2014-03-06 17:19:15 -0500 | [diff] [blame] | 110 | void gfs2_revoke_clean(struct gfs2_jdesc *jd) |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 111 | { |
Bob Peterson | a17d758 | 2014-03-06 17:19:15 -0500 | [diff] [blame] | 112 | struct list_head *head = &jd->jd_revoke_list; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 113 | struct gfs2_revoke_replay *rr; |
| 114 | |
| 115 | while (!list_empty(head)) { |
| 116 | rr = list_entry(head->next, struct gfs2_revoke_replay, rr_list); |
| 117 | list_del(&rr->rr_list); |
| 118 | kfree(rr); |
| 119 | } |
| 120 | } |
| 121 | |
| 122 | /** |
| 123 | * get_log_header - read the log header for a given segment |
| 124 | * @jd: the journal |
| 125 | * @blk: the block to look at |
| 126 | * @lh: the log header to return |
| 127 | * |
| 128 | * Read the log header for a given segement in a given journal. Do a few |
| 129 | * sanity checks on it. |
| 130 | * |
| 131 | * Returns: 0 on success, |
| 132 | * 1 if the header was invalid or incomplete, |
| 133 | * errno on error |
| 134 | */ |
| 135 | |
| 136 | static int get_log_header(struct gfs2_jdesc *jd, unsigned int blk, |
Al Viro | 5516762 | 2006-10-13 21:47:13 -0400 | [diff] [blame] | 137 | struct gfs2_log_header_host *head) |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 138 | { |
Andreas Gruenbacher | 0ff5916 | 2018-01-16 23:07:57 +0100 | [diff] [blame] | 139 | struct gfs2_log_header *lh; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 140 | struct buffer_head *bh; |
Bob Peterson | c1696fb | 2018-01-17 00:01:33 +0100 | [diff] [blame] | 141 | u32 hash, crc; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 142 | int error; |
| 143 | |
| 144 | error = gfs2_replay_read_block(jd, blk, &bh); |
| 145 | if (error) |
| 146 | return error; |
Andreas Gruenbacher | 0ff5916 | 2018-01-16 23:07:57 +0100 | [diff] [blame] | 147 | lh = (void *)bh->b_data; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 148 | |
Bob Peterson | c1696fb | 2018-01-17 00:01:33 +0100 | [diff] [blame] | 149 | hash = crc32(~0, lh, LH_V1_SIZE - 4); |
Andreas Gruenbacher | 0ff5916 | 2018-01-16 23:07:57 +0100 | [diff] [blame] | 150 | hash = ~crc32_le_shift(hash, 4); /* assume lh_hash is zero */ |
| 151 | |
Bob Peterson | c1696fb | 2018-01-17 00:01:33 +0100 | [diff] [blame] | 152 | crc = crc32c(~0, (void *)lh + LH_V1_SIZE + 4, |
| 153 | bh->b_size - LH_V1_SIZE - 4); |
| 154 | |
Andreas Gruenbacher | 0ff5916 | 2018-01-16 23:07:57 +0100 | [diff] [blame] | 155 | error = lh->lh_header.mh_magic != cpu_to_be32(GFS2_MAGIC) || |
| 156 | lh->lh_header.mh_type != cpu_to_be32(GFS2_METATYPE_LH) || |
| 157 | be32_to_cpu(lh->lh_blkno) != blk || |
Bob Peterson | c1696fb | 2018-01-17 00:01:33 +0100 | [diff] [blame] | 158 | be32_to_cpu(lh->lh_hash) != hash || |
| 159 | (lh->lh_crc != 0 && be32_to_cpu(lh->lh_crc) != crc); |
Andreas Gruenbacher | 0ff5916 | 2018-01-16 23:07:57 +0100 | [diff] [blame] | 160 | |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 161 | brelse(bh); |
| 162 | |
Andreas Gruenbacher | 0ff5916 | 2018-01-16 23:07:57 +0100 | [diff] [blame] | 163 | if (!error) { |
| 164 | head->lh_sequence = be64_to_cpu(lh->lh_sequence); |
| 165 | head->lh_flags = be32_to_cpu(lh->lh_flags); |
| 166 | head->lh_tail = be32_to_cpu(lh->lh_tail); |
| 167 | head->lh_blkno = be32_to_cpu(lh->lh_blkno); |
| 168 | } |
| 169 | return error; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 170 | } |
| 171 | |
| 172 | /** |
| 173 | * find_good_lh - find a good log header |
| 174 | * @jd: the journal |
| 175 | * @blk: the segment to start searching from |
| 176 | * @lh: the log header to fill in |
| 177 | * @forward: if true search forward in the log, else search backward |
| 178 | * |
| 179 | * Call get_log_header() to get a log header for a segment, but if the |
| 180 | * segment is bad, either scan forward or backward until we find a good one. |
| 181 | * |
| 182 | * Returns: errno |
| 183 | */ |
| 184 | |
| 185 | static int find_good_lh(struct gfs2_jdesc *jd, unsigned int *blk, |
Al Viro | 5516762 | 2006-10-13 21:47:13 -0400 | [diff] [blame] | 186 | struct gfs2_log_header_host *head) |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 187 | { |
| 188 | unsigned int orig_blk = *blk; |
| 189 | int error; |
| 190 | |
| 191 | for (;;) { |
| 192 | error = get_log_header(jd, *blk, head); |
| 193 | if (error <= 0) |
| 194 | return error; |
| 195 | |
| 196 | if (++*blk == jd->jd_blocks) |
| 197 | *blk = 0; |
| 198 | |
| 199 | if (*blk == orig_blk) { |
Steven Whitehouse | feaa7bb | 2006-06-14 15:32:57 -0400 | [diff] [blame] | 200 | gfs2_consist_inode(GFS2_I(jd->jd_inode)); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 201 | return -EIO; |
| 202 | } |
| 203 | } |
| 204 | } |
| 205 | |
| 206 | /** |
| 207 | * jhead_scan - make sure we've found the head of the log |
| 208 | * @jd: the journal |
| 209 | * @head: this is filled in with the log descriptor of the head |
| 210 | * |
| 211 | * At this point, seg and lh should be either the head of the log or just |
| 212 | * before. Scan forward until we find the head. |
| 213 | * |
| 214 | * Returns: errno |
| 215 | */ |
| 216 | |
Al Viro | 5516762 | 2006-10-13 21:47:13 -0400 | [diff] [blame] | 217 | static int jhead_scan(struct gfs2_jdesc *jd, struct gfs2_log_header_host *head) |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 218 | { |
| 219 | unsigned int blk = head->lh_blkno; |
Al Viro | 5516762 | 2006-10-13 21:47:13 -0400 | [diff] [blame] | 220 | struct gfs2_log_header_host lh; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 221 | int error; |
| 222 | |
| 223 | for (;;) { |
| 224 | if (++blk == jd->jd_blocks) |
| 225 | blk = 0; |
| 226 | |
| 227 | error = get_log_header(jd, blk, &lh); |
| 228 | if (error < 0) |
| 229 | return error; |
| 230 | if (error == 1) |
| 231 | continue; |
| 232 | |
| 233 | if (lh.lh_sequence == head->lh_sequence) { |
Steven Whitehouse | feaa7bb | 2006-06-14 15:32:57 -0400 | [diff] [blame] | 234 | gfs2_consist_inode(GFS2_I(jd->jd_inode)); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 235 | return -EIO; |
| 236 | } |
| 237 | if (lh.lh_sequence < head->lh_sequence) |
| 238 | break; |
| 239 | |
| 240 | *head = lh; |
| 241 | } |
| 242 | |
| 243 | return 0; |
| 244 | } |
| 245 | |
| 246 | /** |
| 247 | * gfs2_find_jhead - find the head of a log |
| 248 | * @jd: the journal |
| 249 | * @head: the log descriptor for the head of the log is returned here |
| 250 | * |
| 251 | * Do a binary search of a journal and find the valid log entry with the |
| 252 | * highest sequence number. (i.e. the log head) |
| 253 | * |
| 254 | * Returns: errno |
| 255 | */ |
| 256 | |
Al Viro | 5516762 | 2006-10-13 21:47:13 -0400 | [diff] [blame] | 257 | int gfs2_find_jhead(struct gfs2_jdesc *jd, struct gfs2_log_header_host *head) |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 258 | { |
Al Viro | 5516762 | 2006-10-13 21:47:13 -0400 | [diff] [blame] | 259 | struct gfs2_log_header_host lh_1, lh_m; |
Steven Whitehouse | cd91549 | 2006-09-04 12:49:07 -0400 | [diff] [blame] | 260 | u32 blk_1, blk_2, blk_m; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 261 | int error; |
| 262 | |
| 263 | blk_1 = 0; |
| 264 | blk_2 = jd->jd_blocks - 1; |
| 265 | |
| 266 | for (;;) { |
| 267 | blk_m = (blk_1 + blk_2) / 2; |
| 268 | |
| 269 | error = find_good_lh(jd, &blk_1, &lh_1); |
| 270 | if (error) |
| 271 | return error; |
| 272 | |
| 273 | error = find_good_lh(jd, &blk_m, &lh_m); |
| 274 | if (error) |
| 275 | return error; |
| 276 | |
| 277 | if (blk_1 == blk_m || blk_m == blk_2) |
| 278 | break; |
| 279 | |
| 280 | if (lh_1.lh_sequence <= lh_m.lh_sequence) |
| 281 | blk_1 = blk_m; |
| 282 | else |
| 283 | blk_2 = blk_m; |
| 284 | } |
| 285 | |
| 286 | error = jhead_scan(jd, &lh_1); |
| 287 | if (error) |
| 288 | return error; |
| 289 | |
| 290 | *head = lh_1; |
| 291 | |
| 292 | return error; |
| 293 | } |
| 294 | |
| 295 | /** |
| 296 | * foreach_descriptor - go through the active part of the log |
| 297 | * @jd: the journal |
| 298 | * @start: the first log header in the active region |
| 299 | * @end: the last log header (don't process the contents of this entry)) |
| 300 | * |
| 301 | * Call a given function once for every log descriptor in the active |
| 302 | * portion of the log. |
| 303 | * |
| 304 | * Returns: errno |
| 305 | */ |
| 306 | |
| 307 | static int foreach_descriptor(struct gfs2_jdesc *jd, unsigned int start, |
| 308 | unsigned int end, int pass) |
| 309 | { |
Steven Whitehouse | feaa7bb | 2006-06-14 15:32:57 -0400 | [diff] [blame] | 310 | struct gfs2_sbd *sdp = GFS2_SB(jd->jd_inode); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 311 | struct buffer_head *bh; |
| 312 | struct gfs2_log_descriptor *ld; |
| 313 | int error = 0; |
| 314 | u32 length; |
| 315 | __be64 *ptr; |
| 316 | unsigned int offset = sizeof(struct gfs2_log_descriptor); |
Steven Whitehouse | a67cdbd | 2006-09-05 14:41:30 -0400 | [diff] [blame] | 317 | offset += sizeof(__be64) - 1; |
| 318 | offset &= ~(sizeof(__be64) - 1); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 319 | |
| 320 | while (start != end) { |
| 321 | error = gfs2_replay_read_block(jd, start, &bh); |
| 322 | if (error) |
| 323 | return error; |
| 324 | if (gfs2_meta_check(sdp, bh)) { |
| 325 | brelse(bh); |
| 326 | return -EIO; |
| 327 | } |
| 328 | ld = (struct gfs2_log_descriptor *)bh->b_data; |
| 329 | length = be32_to_cpu(ld->ld_length); |
| 330 | |
Steven Whitehouse | e3167de | 2006-03-30 15:46:23 -0500 | [diff] [blame] | 331 | if (be32_to_cpu(ld->ld_header.mh_type) == GFS2_METATYPE_LH) { |
Al Viro | 5516762 | 2006-10-13 21:47:13 -0400 | [diff] [blame] | 332 | struct gfs2_log_header_host lh; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 333 | error = get_log_header(jd, start, &lh); |
| 334 | if (!error) { |
Bob Peterson | e1cb6be | 2016-07-21 13:02:44 -0500 | [diff] [blame] | 335 | gfs2_replay_incr_blk(jd, &start); |
Russell Cattelan | 8872187 | 2006-08-10 11:08:40 -0500 | [diff] [blame] | 336 | brelse(bh); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 337 | continue; |
| 338 | } |
| 339 | if (error == 1) { |
Steven Whitehouse | feaa7bb | 2006-06-14 15:32:57 -0400 | [diff] [blame] | 340 | gfs2_consist_inode(GFS2_I(jd->jd_inode)); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 341 | error = -EIO; |
| 342 | } |
| 343 | brelse(bh); |
| 344 | return error; |
| 345 | } else if (gfs2_metatype_check(sdp, bh, GFS2_METATYPE_LD)) { |
| 346 | brelse(bh); |
| 347 | return -EIO; |
| 348 | } |
| 349 | ptr = (__be64 *)(bh->b_data + offset); |
| 350 | error = lops_scan_elements(jd, start, ld, ptr, pass); |
| 351 | if (error) { |
| 352 | brelse(bh); |
| 353 | return error; |
| 354 | } |
| 355 | |
| 356 | while (length--) |
Bob Peterson | e1cb6be | 2016-07-21 13:02:44 -0500 | [diff] [blame] | 357 | gfs2_replay_incr_blk(jd, &start); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 358 | |
| 359 | brelse(bh); |
| 360 | } |
| 361 | |
| 362 | return 0; |
| 363 | } |
| 364 | |
| 365 | /** |
| 366 | * clean_journal - mark a dirty journal as being clean |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 367 | * @jd: the journal |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 368 | * @head: the head journal to start from |
| 369 | * |
| 370 | * Returns: errno |
| 371 | */ |
| 372 | |
Bob Peterson | 588bff9 | 2017-12-18 12:48:29 -0600 | [diff] [blame] | 373 | static void clean_journal(struct gfs2_jdesc *jd, |
| 374 | struct gfs2_log_header_host *head) |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 375 | { |
Steven Whitehouse | feaa7bb | 2006-06-14 15:32:57 -0400 | [diff] [blame] | 376 | struct gfs2_sbd *sdp = GFS2_SB(jd->jd_inode); |
Steven Whitehouse | fd88de56 | 2006-05-05 16:59:11 -0400 | [diff] [blame] | 377 | |
Bob Peterson | 588bff9 | 2017-12-18 12:48:29 -0600 | [diff] [blame] | 378 | sdp->sd_log_flush_head = head->lh_blkno; |
| 379 | gfs2_replay_incr_blk(jd, &sdp->sd_log_flush_head); |
Bob Peterson | c1696fb | 2018-01-17 00:01:33 +0100 | [diff] [blame] | 380 | gfs2_write_log_header(sdp, jd, head->lh_sequence + 1, 0, |
| 381 | GFS2_LOG_HEAD_UNMOUNT | GFS2_LOG_HEAD_RECOVERY, |
| 382 | REQ_PREFLUSH | REQ_FUA | REQ_META | REQ_SYNC); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 383 | } |
| 384 | |
Steven Whitehouse | da755fd | 2008-01-30 15:34:04 +0000 | [diff] [blame] | 385 | |
Steven Whitehouse | f057f6c | 2009-01-12 10:43:39 +0000 | [diff] [blame] | 386 | static void gfs2_recovery_done(struct gfs2_sbd *sdp, unsigned int jid, |
| 387 | unsigned int message) |
Steven Whitehouse | da755fd | 2008-01-30 15:34:04 +0000 | [diff] [blame] | 388 | { |
Steven Whitehouse | f057f6c | 2009-01-12 10:43:39 +0000 | [diff] [blame] | 389 | char env_jid[20]; |
| 390 | char env_status[20]; |
| 391 | char *envp[] = { env_jid, env_status, NULL }; |
| 392 | struct lm_lockstruct *ls = &sdp->sd_lockstruct; |
David Teigland | e0c2a9a | 2012-01-09 17:18:05 -0500 | [diff] [blame] | 393 | |
Steven Whitehouse | f057f6c | 2009-01-12 10:43:39 +0000 | [diff] [blame] | 394 | ls->ls_recover_jid_done = jid; |
| 395 | ls->ls_recover_jid_status = message; |
alex chen | 3566c96 | 2015-01-12 19:01:03 +0800 | [diff] [blame] | 396 | sprintf(env_jid, "JID=%u", jid); |
Steven Whitehouse | f057f6c | 2009-01-12 10:43:39 +0000 | [diff] [blame] | 397 | sprintf(env_status, "RECOVERY=%s", |
| 398 | message == LM_RD_SUCCESS ? "Done" : "Failed"); |
| 399 | kobject_uevent_env(&sdp->sd_kobj, KOBJ_CHANGE, envp); |
David Teigland | e0c2a9a | 2012-01-09 17:18:05 -0500 | [diff] [blame] | 400 | |
| 401 | if (sdp->sd_lockstruct.ls_ops->lm_recovery_result) |
| 402 | sdp->sd_lockstruct.ls_ops->lm_recovery_result(sdp, jid, message); |
Steven Whitehouse | da755fd | 2008-01-30 15:34:04 +0000 | [diff] [blame] | 403 | } |
| 404 | |
Tejun Heo | 6ecd7c2 | 2010-07-20 22:09:02 +0200 | [diff] [blame] | 405 | void gfs2_recover_func(struct work_struct *work) |
Steven Whitehouse | fe64d51 | 2009-05-19 10:01:18 +0100 | [diff] [blame] | 406 | { |
| 407 | struct gfs2_jdesc *jd = container_of(work, struct gfs2_jdesc, jd_work); |
Steven Whitehouse | feaa7bb | 2006-06-14 15:32:57 -0400 | [diff] [blame] | 408 | struct gfs2_inode *ip = GFS2_I(jd->jd_inode); |
| 409 | struct gfs2_sbd *sdp = GFS2_SB(jd->jd_inode); |
Al Viro | 5516762 | 2006-10-13 21:47:13 -0400 | [diff] [blame] | 410 | struct gfs2_log_header_host head; |
Benjamin Marzinski | 2497255 | 2014-05-01 22:26:55 -0500 | [diff] [blame] | 411 | struct gfs2_holder j_gh, ji_gh, thaw_gh; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 412 | unsigned long t; |
| 413 | int ro = 0; |
| 414 | unsigned int pass; |
| 415 | int error; |
Steven Whitehouse | c741c45 | 2010-09-29 14:20:52 +0100 | [diff] [blame] | 416 | int jlocked = 0; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 417 | |
Steven Whitehouse | d0795f9 | 2010-09-27 15:58:11 +0100 | [diff] [blame] | 418 | if (sdp->sd_args.ar_spectator || |
| 419 | (jd->jd_jid != sdp->sd_lockstruct.ls_jid)) { |
Steven Whitehouse | 5965b1f | 2006-04-26 13:21:55 -0400 | [diff] [blame] | 420 | fs_info(sdp, "jid=%u: Trying to acquire journal lock...\n", |
| 421 | jd->jd_jid); |
Steven Whitehouse | c741c45 | 2010-09-29 14:20:52 +0100 | [diff] [blame] | 422 | jlocked = 1; |
Joe Perches | c78bad1 | 2008-02-03 17:33:42 +0200 | [diff] [blame] | 423 | /* Acquire the journal lock so we can do recovery */ |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 424 | |
Steven Whitehouse | 5965b1f | 2006-04-26 13:21:55 -0400 | [diff] [blame] | 425 | error = gfs2_glock_nq_num(sdp, jd->jd_jid, &gfs2_journal_glops, |
| 426 | LM_ST_EXCLUSIVE, |
| 427 | LM_FLAG_NOEXP | LM_FLAG_TRY | GL_NOCACHE, |
| 428 | &j_gh); |
| 429 | switch (error) { |
| 430 | case 0: |
| 431 | break; |
Steven Whitehouse | 907b9bc | 2006-09-25 09:26:04 -0400 | [diff] [blame] | 432 | |
Steven Whitehouse | 5965b1f | 2006-04-26 13:21:55 -0400 | [diff] [blame] | 433 | case GLR_TRYFAILED: |
| 434 | fs_info(sdp, "jid=%u: Busy\n", jd->jd_jid); |
| 435 | error = 0; |
Steven Whitehouse | 907b9bc | 2006-09-25 09:26:04 -0400 | [diff] [blame] | 436 | |
Steven Whitehouse | 5965b1f | 2006-04-26 13:21:55 -0400 | [diff] [blame] | 437 | default: |
| 438 | goto fail; |
| 439 | }; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 440 | |
Steven Whitehouse | 5965b1f | 2006-04-26 13:21:55 -0400 | [diff] [blame] | 441 | error = gfs2_glock_nq_init(ip->i_gl, LM_ST_SHARED, |
Bob Peterson | 75be73a | 2007-08-08 17:08:14 -0500 | [diff] [blame] | 442 | LM_FLAG_NOEXP | GL_NOCACHE, &ji_gh); |
Steven Whitehouse | 5965b1f | 2006-04-26 13:21:55 -0400 | [diff] [blame] | 443 | if (error) |
| 444 | goto fail_gunlock_j; |
| 445 | } else { |
| 446 | fs_info(sdp, "jid=%u, already locked for use\n", jd->jd_jid); |
| 447 | } |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 448 | |
| 449 | fs_info(sdp, "jid=%u: Looking at journal...\n", jd->jd_jid); |
| 450 | |
| 451 | error = gfs2_jdesc_check(jd); |
| 452 | if (error) |
| 453 | goto fail_gunlock_ji; |
| 454 | |
| 455 | error = gfs2_find_jhead(jd, &head); |
| 456 | if (error) |
| 457 | goto fail_gunlock_ji; |
| 458 | |
| 459 | if (!(head.lh_flags & GFS2_LOG_HEAD_UNMOUNT)) { |
| 460 | fs_info(sdp, "jid=%u: Acquiring the transaction lock...\n", |
| 461 | jd->jd_jid); |
| 462 | |
| 463 | t = jiffies; |
| 464 | |
Benjamin Marzinski | 2497255 | 2014-05-01 22:26:55 -0500 | [diff] [blame] | 465 | /* Acquire a shared hold on the freeze lock */ |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 466 | |
Benjamin Marzinski | 2497255 | 2014-05-01 22:26:55 -0500 | [diff] [blame] | 467 | error = gfs2_glock_nq_init(sdp->sd_freeze_gl, LM_ST_SHARED, |
| 468 | LM_FLAG_NOEXP | LM_FLAG_PRIORITY, |
| 469 | &thaw_gh); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 470 | if (error) |
| 471 | goto fail_gunlock_ji; |
| 472 | |
David Teigland | e8ca5cc | 2012-01-09 14:40:06 -0500 | [diff] [blame] | 473 | if (test_bit(SDF_RORECOVERY, &sdp->sd_flags)) { |
| 474 | ro = 1; |
| 475 | } else if (test_bit(SDF_JOURNAL_CHECKED, &sdp->sd_flags)) { |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 476 | if (!test_bit(SDF_JOURNAL_LIVE, &sdp->sd_flags)) |
| 477 | ro = 1; |
| 478 | } else { |
David Howells | bc98a42 | 2017-07-17 08:45:34 +0100 | [diff] [blame] | 479 | if (sb_rdonly(sdp->sd_vfs)) { |
Abhijith Das | 7bc5c41 | 2008-01-18 14:06:37 -0600 | [diff] [blame] | 480 | /* check if device itself is read-only */ |
| 481 | ro = bdev_read_only(sdp->sd_vfs->s_bdev); |
| 482 | if (!ro) { |
| 483 | fs_info(sdp, "recovery required on " |
| 484 | "read-only filesystem.\n"); |
| 485 | fs_info(sdp, "write access will be " |
| 486 | "enabled during recovery.\n"); |
| 487 | } |
| 488 | } |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 489 | } |
| 490 | |
| 491 | if (ro) { |
Abhijith Das | 7bc5c41 | 2008-01-18 14:06:37 -0600 | [diff] [blame] | 492 | fs_warn(sdp, "jid=%u: Can't replay: read-only block " |
| 493 | "device\n", jd->jd_jid); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 494 | error = -EROFS; |
Benjamin Marzinski | 2497255 | 2014-05-01 22:26:55 -0500 | [diff] [blame] | 495 | goto fail_gunlock_thaw; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 496 | } |
| 497 | |
| 498 | fs_info(sdp, "jid=%u: Replaying journal...\n", jd->jd_jid); |
| 499 | |
| 500 | for (pass = 0; pass < 2; pass++) { |
| 501 | lops_before_scan(jd, &head, pass); |
| 502 | error = foreach_descriptor(jd, head.lh_tail, |
| 503 | head.lh_blkno, pass); |
| 504 | lops_after_scan(jd, error, pass); |
| 505 | if (error) |
Benjamin Marzinski | 2497255 | 2014-05-01 22:26:55 -0500 | [diff] [blame] | 506 | goto fail_gunlock_thaw; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 507 | } |
| 508 | |
Bob Peterson | 588bff9 | 2017-12-18 12:48:29 -0600 | [diff] [blame] | 509 | clean_journal(jd, &head); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 510 | |
Benjamin Marzinski | 2497255 | 2014-05-01 22:26:55 -0500 | [diff] [blame] | 511 | gfs2_glock_dq_uninit(&thaw_gh); |
Steven Whitehouse | 5c676f6 | 2006-02-27 17:23:27 -0500 | [diff] [blame] | 512 | t = DIV_ROUND_UP(jiffies - t, HZ); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 513 | fs_info(sdp, "jid=%u: Journal replayed in %lus\n", |
| 514 | jd->jd_jid, t); |
| 515 | } |
| 516 | |
Steven Whitehouse | f057f6c | 2009-01-12 10:43:39 +0000 | [diff] [blame] | 517 | gfs2_recovery_done(sdp, jd->jd_jid, LM_RD_SUCCESS); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 518 | |
Steven Whitehouse | c741c45 | 2010-09-29 14:20:52 +0100 | [diff] [blame] | 519 | if (jlocked) { |
| 520 | gfs2_glock_dq_uninit(&ji_gh); |
Steven Whitehouse | 5965b1f | 2006-04-26 13:21:55 -0400 | [diff] [blame] | 521 | gfs2_glock_dq_uninit(&j_gh); |
Steven Whitehouse | c741c45 | 2010-09-29 14:20:52 +0100 | [diff] [blame] | 522 | } |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 523 | |
| 524 | fs_info(sdp, "jid=%u: Done\n", jd->jd_jid); |
Tejun Heo | 6ecd7c2 | 2010-07-20 22:09:02 +0200 | [diff] [blame] | 525 | goto done; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 526 | |
Benjamin Marzinski | 2497255 | 2014-05-01 22:26:55 -0500 | [diff] [blame] | 527 | fail_gunlock_thaw: |
| 528 | gfs2_glock_dq_uninit(&thaw_gh); |
Steven Whitehouse | 5965b1f | 2006-04-26 13:21:55 -0400 | [diff] [blame] | 529 | fail_gunlock_ji: |
Steven Whitehouse | c741c45 | 2010-09-29 14:20:52 +0100 | [diff] [blame] | 530 | if (jlocked) { |
Steven Whitehouse | 5965b1f | 2006-04-26 13:21:55 -0400 | [diff] [blame] | 531 | gfs2_glock_dq_uninit(&ji_gh); |
| 532 | fail_gunlock_j: |
| 533 | gfs2_glock_dq_uninit(&j_gh); |
| 534 | } |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 535 | |
| 536 | fs_info(sdp, "jid=%u: %s\n", jd->jd_jid, (error) ? "Failed" : "Done"); |
Steven Whitehouse | 5965b1f | 2006-04-26 13:21:55 -0400 | [diff] [blame] | 537 | fail: |
David Teigland | 376d377 | 2012-01-09 15:29:20 -0500 | [diff] [blame] | 538 | jd->jd_recover_error = error; |
Steven Whitehouse | f057f6c | 2009-01-12 10:43:39 +0000 | [diff] [blame] | 539 | gfs2_recovery_done(sdp, jd->jd_jid, LM_RD_GAVEUP); |
Tejun Heo | 6ecd7c2 | 2010-07-20 22:09:02 +0200 | [diff] [blame] | 540 | done: |
| 541 | clear_bit(JDF_RECOVERY, &jd->jd_flags); |
Peter Zijlstra | 4e857c5 | 2014-03-17 18:06:10 +0100 | [diff] [blame] | 542 | smp_mb__after_atomic(); |
Tejun Heo | 6ecd7c2 | 2010-07-20 22:09:02 +0200 | [diff] [blame] | 543 | wake_up_bit(&jd->jd_flags, JDF_RECOVERY); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 544 | } |
| 545 | |
Tejun Heo | 6ecd7c2 | 2010-07-20 22:09:02 +0200 | [diff] [blame] | 546 | int gfs2_recover_journal(struct gfs2_jdesc *jd, bool wait) |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 547 | { |
Steven Whitehouse | fe64d51 | 2009-05-19 10:01:18 +0100 | [diff] [blame] | 548 | int rv; |
Tejun Heo | 6ecd7c2 | 2010-07-20 22:09:02 +0200 | [diff] [blame] | 549 | |
| 550 | if (test_and_set_bit(JDF_RECOVERY, &jd->jd_flags)) |
| 551 | return -EBUSY; |
| 552 | |
| 553 | /* we have JDF_RECOVERY, queue should always succeed */ |
| 554 | rv = queue_work(gfs_recovery_wq, &jd->jd_work); |
| 555 | BUG_ON(!rv); |
| 556 | |
| 557 | if (wait) |
NeilBrown | 7431620 | 2014-07-07 15:16:04 +1000 | [diff] [blame] | 558 | wait_on_bit(&jd->jd_flags, JDF_RECOVERY, |
Tejun Heo | 6ecd7c2 | 2010-07-20 22:09:02 +0200 | [diff] [blame] | 559 | TASK_UNINTERRUPTIBLE); |
| 560 | |
David Teigland | 376d377 | 2012-01-09 15:29:20 -0500 | [diff] [blame] | 561 | return wait ? jd->jd_recover_error : 0; |
Steven Whitehouse | 9ac1b4d | 2008-11-19 10:08:22 +0000 | [diff] [blame] | 562 | } |
| 563 | |