blob: b6b258998bcda40d15a9c601d5cd1d71dfe10528 [file] [log] [blame]
David Teiglandb3b94fa2006-01-16 16:50:04 +00001/*
2 * Copyright (C) Sistina Software, Inc. 1997-2003 All rights reserved.
Steven Whitehouse3a8a9a12006-05-18 15:09:15 -04003 * Copyright (C) 2004-2006 Red Hat, Inc. All rights reserved.
David Teiglandb3b94fa2006-01-16 16:50:04 +00004 *
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 Whitehousee9fc2aa2006-09-01 11:05:15 -04007 * of the GNU General Public License version 2.
David Teiglandb3b94fa2006-01-16 16:50:04 +00008 */
9
David Howells1c2ea8a2009-11-20 21:50:40 +000010#include <linux/module.h>
David Teiglandb3b94fa2006-01-16 16:50:04 +000011#include <linux/slab.h>
12#include <linux/spinlock.h>
13#include <linux/completion.h>
14#include <linux/buffer_head.h>
Steven Whitehouse5c676f62006-02-27 17:23:27 -050015#include <linux/gfs2_ondisk.h>
Steven Whitehouse71b86f52006-03-28 14:14:04 -050016#include <linux/crc32.h>
Bob Petersonc1696fb2018-01-17 00:01:33 +010017#include <linux/crc32c.h>
David Teiglandb3b94fa2006-01-16 16:50:04 +000018
19#include "gfs2.h"
Steven Whitehouse5c676f62006-02-27 17:23:27 -050020#include "incore.h"
David Teiglandb3b94fa2006-01-16 16:50:04 +000021#include "bmap.h"
22#include "glock.h"
23#include "glops.h"
Bob Peterson588bff92017-12-18 12:48:29 -060024#include "log.h"
David Teiglandb3b94fa2006-01-16 16:50:04 +000025#include "lops.h"
26#include "meta_io.h"
27#include "recovery.h"
28#include "super.h"
Steven Whitehouse5c676f62006-02-27 17:23:27 -050029#include "util.h"
Steven Whitehouse71b86f52006-03-28 14:14:04 -050030#include "dir.h"
David Teiglandb3b94fa2006-01-16 16:50:04 +000031
Tejun Heo6ecd7c22010-07-20 22:09:02 +020032struct workqueue_struct *gfs_recovery_wq;
33
David Teiglandb3b94fa2006-01-16 16:50:04 +000034int gfs2_replay_read_block(struct gfs2_jdesc *jd, unsigned int blk,
35 struct buffer_head **bh)
36{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -040037 struct gfs2_inode *ip = GFS2_I(jd->jd_inode);
Steven Whitehouse5c676f62006-02-27 17:23:27 -050038 struct gfs2_glock *gl = ip->i_gl;
David Teiglandb3b94fa2006-01-16 16:50:04 +000039 int new = 0;
Steven Whitehousecd915492006-09-04 12:49:07 -040040 u64 dblock;
41 u32 extlen;
David Teiglandb3b94fa2006-01-16 16:50:04 +000042 int error;
43
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -040044 error = gfs2_extent_map(&ip->i_inode, blk, &new, &dblock, &extlen);
David Teiglandb3b94fa2006-01-16 16:50:04 +000045 if (error)
46 return error;
47 if (!dblock) {
Steven Whitehouse5c676f62006-02-27 17:23:27 -050048 gfs2_consist_inode(ip);
David Teiglandb3b94fa2006-01-16 16:50:04 +000049 return -EIO;
50 }
51
Steven Whitehouse7276b3b2006-09-21 17:05:23 -040052 *bh = gfs2_meta_ra(gl, dblock, extlen);
David Teiglandb3b94fa2006-01-16 16:50:04 +000053
54 return error;
55}
56
Bob Petersona17d7582014-03-06 17:19:15 -050057int gfs2_revoke_add(struct gfs2_jdesc *jd, u64 blkno, unsigned int where)
David Teiglandb3b94fa2006-01-16 16:50:04 +000058{
Bob Petersona17d7582014-03-06 17:19:15 -050059 struct list_head *head = &jd->jd_revoke_list;
David Teiglandb3b94fa2006-01-16 16:50:04 +000060 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 Bacik16c5f062008-04-09 09:33:41 -040075 rr = kmalloc(sizeof(struct gfs2_revoke_replay), GFP_NOFS);
David Teiglandb3b94fa2006-01-16 16:50:04 +000076 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 Petersona17d7582014-03-06 17:19:15 -050086int gfs2_revoke_check(struct gfs2_jdesc *jd, u64 blkno, unsigned int where)
David Teiglandb3b94fa2006-01-16 16:50:04 +000087{
88 struct gfs2_revoke_replay *rr;
89 int wrap, a, b, revoke;
90 int found = 0;
91
Bob Petersona17d7582014-03-06 17:19:15 -050092 list_for_each_entry(rr, &jd->jd_revoke_list, rr_list) {
David Teiglandb3b94fa2006-01-16 16:50:04 +000093 if (rr->rr_blkno == blkno) {
94 found = 1;
95 break;
96 }
97 }
98
99 if (!found)
100 return 0;
101
Bob Petersona17d7582014-03-06 17:19:15 -0500102 wrap = (rr->rr_where < jd->jd_replay_tail);
103 a = (jd->jd_replay_tail < where);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000104 b = (where < rr->rr_where);
105 revoke = (wrap) ? (a || b) : (a && b);
106
107 return revoke;
108}
109
Bob Petersona17d7582014-03-06 17:19:15 -0500110void gfs2_revoke_clean(struct gfs2_jdesc *jd)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000111{
Bob Petersona17d7582014-03-06 17:19:15 -0500112 struct list_head *head = &jd->jd_revoke_list;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000113 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
136static int get_log_header(struct gfs2_jdesc *jd, unsigned int blk,
Al Viro55167622006-10-13 21:47:13 -0400137 struct gfs2_log_header_host *head)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000138{
Andreas Gruenbacher0ff59162018-01-16 23:07:57 +0100139 struct gfs2_log_header *lh;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000140 struct buffer_head *bh;
Bob Petersonc1696fb2018-01-17 00:01:33 +0100141 u32 hash, crc;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000142 int error;
143
144 error = gfs2_replay_read_block(jd, blk, &bh);
145 if (error)
146 return error;
Andreas Gruenbacher0ff59162018-01-16 23:07:57 +0100147 lh = (void *)bh->b_data;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000148
Bob Petersonc1696fb2018-01-17 00:01:33 +0100149 hash = crc32(~0, lh, LH_V1_SIZE - 4);
Andreas Gruenbacher0ff59162018-01-16 23:07:57 +0100150 hash = ~crc32_le_shift(hash, 4); /* assume lh_hash is zero */
151
Bob Petersonc1696fb2018-01-17 00:01:33 +0100152 crc = crc32c(~0, (void *)lh + LH_V1_SIZE + 4,
153 bh->b_size - LH_V1_SIZE - 4);
154
Andreas Gruenbacher0ff59162018-01-16 23:07:57 +0100155 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 Petersonc1696fb2018-01-17 00:01:33 +0100158 be32_to_cpu(lh->lh_hash) != hash ||
159 (lh->lh_crc != 0 && be32_to_cpu(lh->lh_crc) != crc);
Andreas Gruenbacher0ff59162018-01-16 23:07:57 +0100160
David Teiglandb3b94fa2006-01-16 16:50:04 +0000161 brelse(bh);
162
Andreas Gruenbacher0ff59162018-01-16 23:07:57 +0100163 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 Teiglandb3b94fa2006-01-16 16:50:04 +0000170}
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
185static int find_good_lh(struct gfs2_jdesc *jd, unsigned int *blk,
Al Viro55167622006-10-13 21:47:13 -0400186 struct gfs2_log_header_host *head)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000187{
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 Whitehousefeaa7bb2006-06-14 15:32:57 -0400200 gfs2_consist_inode(GFS2_I(jd->jd_inode));
David Teiglandb3b94fa2006-01-16 16:50:04 +0000201 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 Viro55167622006-10-13 21:47:13 -0400217static int jhead_scan(struct gfs2_jdesc *jd, struct gfs2_log_header_host *head)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000218{
219 unsigned int blk = head->lh_blkno;
Al Viro55167622006-10-13 21:47:13 -0400220 struct gfs2_log_header_host lh;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000221 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 Whitehousefeaa7bb2006-06-14 15:32:57 -0400234 gfs2_consist_inode(GFS2_I(jd->jd_inode));
David Teiglandb3b94fa2006-01-16 16:50:04 +0000235 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 Viro55167622006-10-13 21:47:13 -0400257int gfs2_find_jhead(struct gfs2_jdesc *jd, struct gfs2_log_header_host *head)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000258{
Al Viro55167622006-10-13 21:47:13 -0400259 struct gfs2_log_header_host lh_1, lh_m;
Steven Whitehousecd915492006-09-04 12:49:07 -0400260 u32 blk_1, blk_2, blk_m;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000261 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
307static int foreach_descriptor(struct gfs2_jdesc *jd, unsigned int start,
308 unsigned int end, int pass)
309{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400310 struct gfs2_sbd *sdp = GFS2_SB(jd->jd_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000311 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 Whitehousea67cdbd2006-09-05 14:41:30 -0400317 offset += sizeof(__be64) - 1;
318 offset &= ~(sizeof(__be64) - 1);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000319
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 Whitehousee3167de2006-03-30 15:46:23 -0500331 if (be32_to_cpu(ld->ld_header.mh_type) == GFS2_METATYPE_LH) {
Al Viro55167622006-10-13 21:47:13 -0400332 struct gfs2_log_header_host lh;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000333 error = get_log_header(jd, start, &lh);
334 if (!error) {
Bob Petersone1cb6be2016-07-21 13:02:44 -0500335 gfs2_replay_incr_blk(jd, &start);
Russell Cattelan88721872006-08-10 11:08:40 -0500336 brelse(bh);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000337 continue;
338 }
339 if (error == 1) {
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400340 gfs2_consist_inode(GFS2_I(jd->jd_inode));
David Teiglandb3b94fa2006-01-16 16:50:04 +0000341 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 Petersone1cb6be2016-07-21 13:02:44 -0500357 gfs2_replay_incr_blk(jd, &start);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000358
359 brelse(bh);
360 }
361
362 return 0;
363}
364
365/**
366 * clean_journal - mark a dirty journal as being clean
David Teiglandb3b94fa2006-01-16 16:50:04 +0000367 * @jd: the journal
David Teiglandb3b94fa2006-01-16 16:50:04 +0000368 * @head: the head journal to start from
369 *
370 * Returns: errno
371 */
372
Bob Peterson588bff92017-12-18 12:48:29 -0600373static void clean_journal(struct gfs2_jdesc *jd,
374 struct gfs2_log_header_host *head)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000375{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400376 struct gfs2_sbd *sdp = GFS2_SB(jd->jd_inode);
Steven Whitehousefd88de562006-05-05 16:59:11 -0400377
Bob Peterson588bff92017-12-18 12:48:29 -0600378 sdp->sd_log_flush_head = head->lh_blkno;
379 gfs2_replay_incr_blk(jd, &sdp->sd_log_flush_head);
Bob Petersonc1696fb2018-01-17 00:01:33 +0100380 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 Teiglandb3b94fa2006-01-16 16:50:04 +0000383}
384
Steven Whitehouseda755fd2008-01-30 15:34:04 +0000385
Steven Whitehousef057f6c2009-01-12 10:43:39 +0000386static void gfs2_recovery_done(struct gfs2_sbd *sdp, unsigned int jid,
387 unsigned int message)
Steven Whitehouseda755fd2008-01-30 15:34:04 +0000388{
Steven Whitehousef057f6c2009-01-12 10:43:39 +0000389 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 Teiglande0c2a9a2012-01-09 17:18:05 -0500393
Steven Whitehousef057f6c2009-01-12 10:43:39 +0000394 ls->ls_recover_jid_done = jid;
395 ls->ls_recover_jid_status = message;
alex chen3566c962015-01-12 19:01:03 +0800396 sprintf(env_jid, "JID=%u", jid);
Steven Whitehousef057f6c2009-01-12 10:43:39 +0000397 sprintf(env_status, "RECOVERY=%s",
398 message == LM_RD_SUCCESS ? "Done" : "Failed");
399 kobject_uevent_env(&sdp->sd_kobj, KOBJ_CHANGE, envp);
David Teiglande0c2a9a2012-01-09 17:18:05 -0500400
401 if (sdp->sd_lockstruct.ls_ops->lm_recovery_result)
402 sdp->sd_lockstruct.ls_ops->lm_recovery_result(sdp, jid, message);
Steven Whitehouseda755fd2008-01-30 15:34:04 +0000403}
404
Tejun Heo6ecd7c22010-07-20 22:09:02 +0200405void gfs2_recover_func(struct work_struct *work)
Steven Whitehousefe64d512009-05-19 10:01:18 +0100406{
407 struct gfs2_jdesc *jd = container_of(work, struct gfs2_jdesc, jd_work);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400408 struct gfs2_inode *ip = GFS2_I(jd->jd_inode);
409 struct gfs2_sbd *sdp = GFS2_SB(jd->jd_inode);
Al Viro55167622006-10-13 21:47:13 -0400410 struct gfs2_log_header_host head;
Benjamin Marzinski24972552014-05-01 22:26:55 -0500411 struct gfs2_holder j_gh, ji_gh, thaw_gh;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000412 unsigned long t;
413 int ro = 0;
414 unsigned int pass;
415 int error;
Steven Whitehousec741c452010-09-29 14:20:52 +0100416 int jlocked = 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000417
Steven Whitehoused0795f92010-09-27 15:58:11 +0100418 if (sdp->sd_args.ar_spectator ||
419 (jd->jd_jid != sdp->sd_lockstruct.ls_jid)) {
Steven Whitehouse5965b1f2006-04-26 13:21:55 -0400420 fs_info(sdp, "jid=%u: Trying to acquire journal lock...\n",
421 jd->jd_jid);
Steven Whitehousec741c452010-09-29 14:20:52 +0100422 jlocked = 1;
Joe Perchesc78bad12008-02-03 17:33:42 +0200423 /* Acquire the journal lock so we can do recovery */
David Teiglandb3b94fa2006-01-16 16:50:04 +0000424
Steven Whitehouse5965b1f2006-04-26 13:21:55 -0400425 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 Whitehouse907b9bc2006-09-25 09:26:04 -0400432
Steven Whitehouse5965b1f2006-04-26 13:21:55 -0400433 case GLR_TRYFAILED:
434 fs_info(sdp, "jid=%u: Busy\n", jd->jd_jid);
435 error = 0;
Steven Whitehouse907b9bc2006-09-25 09:26:04 -0400436
Steven Whitehouse5965b1f2006-04-26 13:21:55 -0400437 default:
438 goto fail;
439 };
David Teiglandb3b94fa2006-01-16 16:50:04 +0000440
Steven Whitehouse5965b1f2006-04-26 13:21:55 -0400441 error = gfs2_glock_nq_init(ip->i_gl, LM_ST_SHARED,
Bob Peterson75be73a2007-08-08 17:08:14 -0500442 LM_FLAG_NOEXP | GL_NOCACHE, &ji_gh);
Steven Whitehouse5965b1f2006-04-26 13:21:55 -0400443 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 Teiglandb3b94fa2006-01-16 16:50:04 +0000448
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 Marzinski24972552014-05-01 22:26:55 -0500465 /* Acquire a shared hold on the freeze lock */
David Teiglandb3b94fa2006-01-16 16:50:04 +0000466
Benjamin Marzinski24972552014-05-01 22:26:55 -0500467 error = gfs2_glock_nq_init(sdp->sd_freeze_gl, LM_ST_SHARED,
468 LM_FLAG_NOEXP | LM_FLAG_PRIORITY,
469 &thaw_gh);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000470 if (error)
471 goto fail_gunlock_ji;
472
David Teiglande8ca5cc2012-01-09 14:40:06 -0500473 if (test_bit(SDF_RORECOVERY, &sdp->sd_flags)) {
474 ro = 1;
475 } else if (test_bit(SDF_JOURNAL_CHECKED, &sdp->sd_flags)) {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000476 if (!test_bit(SDF_JOURNAL_LIVE, &sdp->sd_flags))
477 ro = 1;
478 } else {
David Howellsbc98a422017-07-17 08:45:34 +0100479 if (sb_rdonly(sdp->sd_vfs)) {
Abhijith Das7bc5c412008-01-18 14:06:37 -0600480 /* 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 Teiglandb3b94fa2006-01-16 16:50:04 +0000489 }
490
491 if (ro) {
Abhijith Das7bc5c412008-01-18 14:06:37 -0600492 fs_warn(sdp, "jid=%u: Can't replay: read-only block "
493 "device\n", jd->jd_jid);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000494 error = -EROFS;
Benjamin Marzinski24972552014-05-01 22:26:55 -0500495 goto fail_gunlock_thaw;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000496 }
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 Marzinski24972552014-05-01 22:26:55 -0500506 goto fail_gunlock_thaw;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000507 }
508
Bob Peterson588bff92017-12-18 12:48:29 -0600509 clean_journal(jd, &head);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000510
Benjamin Marzinski24972552014-05-01 22:26:55 -0500511 gfs2_glock_dq_uninit(&thaw_gh);
Steven Whitehouse5c676f62006-02-27 17:23:27 -0500512 t = DIV_ROUND_UP(jiffies - t, HZ);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000513 fs_info(sdp, "jid=%u: Journal replayed in %lus\n",
514 jd->jd_jid, t);
515 }
516
Steven Whitehousef057f6c2009-01-12 10:43:39 +0000517 gfs2_recovery_done(sdp, jd->jd_jid, LM_RD_SUCCESS);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000518
Steven Whitehousec741c452010-09-29 14:20:52 +0100519 if (jlocked) {
520 gfs2_glock_dq_uninit(&ji_gh);
Steven Whitehouse5965b1f2006-04-26 13:21:55 -0400521 gfs2_glock_dq_uninit(&j_gh);
Steven Whitehousec741c452010-09-29 14:20:52 +0100522 }
David Teiglandb3b94fa2006-01-16 16:50:04 +0000523
524 fs_info(sdp, "jid=%u: Done\n", jd->jd_jid);
Tejun Heo6ecd7c22010-07-20 22:09:02 +0200525 goto done;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000526
Benjamin Marzinski24972552014-05-01 22:26:55 -0500527fail_gunlock_thaw:
528 gfs2_glock_dq_uninit(&thaw_gh);
Steven Whitehouse5965b1f2006-04-26 13:21:55 -0400529fail_gunlock_ji:
Steven Whitehousec741c452010-09-29 14:20:52 +0100530 if (jlocked) {
Steven Whitehouse5965b1f2006-04-26 13:21:55 -0400531 gfs2_glock_dq_uninit(&ji_gh);
532fail_gunlock_j:
533 gfs2_glock_dq_uninit(&j_gh);
534 }
David Teiglandb3b94fa2006-01-16 16:50:04 +0000535
536 fs_info(sdp, "jid=%u: %s\n", jd->jd_jid, (error) ? "Failed" : "Done");
Steven Whitehouse5965b1f2006-04-26 13:21:55 -0400537fail:
David Teigland376d3772012-01-09 15:29:20 -0500538 jd->jd_recover_error = error;
Steven Whitehousef057f6c2009-01-12 10:43:39 +0000539 gfs2_recovery_done(sdp, jd->jd_jid, LM_RD_GAVEUP);
Tejun Heo6ecd7c22010-07-20 22:09:02 +0200540done:
541 clear_bit(JDF_RECOVERY, &jd->jd_flags);
Peter Zijlstra4e857c52014-03-17 18:06:10 +0100542 smp_mb__after_atomic();
Tejun Heo6ecd7c22010-07-20 22:09:02 +0200543 wake_up_bit(&jd->jd_flags, JDF_RECOVERY);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000544}
545
Tejun Heo6ecd7c22010-07-20 22:09:02 +0200546int gfs2_recover_journal(struct gfs2_jdesc *jd, bool wait)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000547{
Steven Whitehousefe64d512009-05-19 10:01:18 +0100548 int rv;
Tejun Heo6ecd7c22010-07-20 22:09:02 +0200549
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)
NeilBrown74316202014-07-07 15:16:04 +1000558 wait_on_bit(&jd->jd_flags, JDF_RECOVERY,
Tejun Heo6ecd7c22010-07-20 22:09:02 +0200559 TASK_UNINTERRUPTIBLE);
560
David Teigland376d3772012-01-09 15:29:20 -0500561 return wait ? jd->jd_recover_error : 0;
Steven Whitehouse9ac1b4d2008-11-19 10:08:22 +0000562}
563