blob: d8b622c375ab85951b2f18edd0430d86d9616022 [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>
Abhi Das5e86d9d2018-03-29 10:41:27 -070018#include <linux/ktime.h>
David Teiglandb3b94fa2006-01-16 16:50:04 +000019
20#include "gfs2.h"
Steven Whitehouse5c676f62006-02-27 17:23:27 -050021#include "incore.h"
David Teiglandb3b94fa2006-01-16 16:50:04 +000022#include "bmap.h"
23#include "glock.h"
24#include "glops.h"
Bob Peterson588bff92017-12-18 12:48:29 -060025#include "log.h"
David Teiglandb3b94fa2006-01-16 16:50:04 +000026#include "lops.h"
27#include "meta_io.h"
28#include "recovery.h"
29#include "super.h"
Steven Whitehouse5c676f62006-02-27 17:23:27 -050030#include "util.h"
Steven Whitehouse71b86f52006-03-28 14:14:04 -050031#include "dir.h"
David Teiglandb3b94fa2006-01-16 16:50:04 +000032
Tejun Heo6ecd7c22010-07-20 22:09:02 +020033struct workqueue_struct *gfs_recovery_wq;
34
David Teiglandb3b94fa2006-01-16 16:50:04 +000035int gfs2_replay_read_block(struct gfs2_jdesc *jd, unsigned int blk,
36 struct buffer_head **bh)
37{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -040038 struct gfs2_inode *ip = GFS2_I(jd->jd_inode);
Steven Whitehouse5c676f62006-02-27 17:23:27 -050039 struct gfs2_glock *gl = ip->i_gl;
David Teiglandb3b94fa2006-01-16 16:50:04 +000040 int new = 0;
Steven Whitehousecd915492006-09-04 12:49:07 -040041 u64 dblock;
42 u32 extlen;
David Teiglandb3b94fa2006-01-16 16:50:04 +000043 int error;
44
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -040045 error = gfs2_extent_map(&ip->i_inode, blk, &new, &dblock, &extlen);
David Teiglandb3b94fa2006-01-16 16:50:04 +000046 if (error)
47 return error;
48 if (!dblock) {
Steven Whitehouse5c676f62006-02-27 17:23:27 -050049 gfs2_consist_inode(ip);
David Teiglandb3b94fa2006-01-16 16:50:04 +000050 return -EIO;
51 }
52
Steven Whitehouse7276b3b2006-09-21 17:05:23 -040053 *bh = gfs2_meta_ra(gl, dblock, extlen);
David Teiglandb3b94fa2006-01-16 16:50:04 +000054
55 return error;
56}
57
Bob Petersona17d7582014-03-06 17:19:15 -050058int gfs2_revoke_add(struct gfs2_jdesc *jd, u64 blkno, unsigned int where)
David Teiglandb3b94fa2006-01-16 16:50:04 +000059{
Bob Petersona17d7582014-03-06 17:19:15 -050060 struct list_head *head = &jd->jd_revoke_list;
David Teiglandb3b94fa2006-01-16 16:50:04 +000061 struct gfs2_revoke_replay *rr;
62 int found = 0;
63
64 list_for_each_entry(rr, head, rr_list) {
65 if (rr->rr_blkno == blkno) {
66 found = 1;
67 break;
68 }
69 }
70
71 if (found) {
72 rr->rr_where = where;
73 return 0;
74 }
75
Josef Bacik16c5f062008-04-09 09:33:41 -040076 rr = kmalloc(sizeof(struct gfs2_revoke_replay), GFP_NOFS);
David Teiglandb3b94fa2006-01-16 16:50:04 +000077 if (!rr)
78 return -ENOMEM;
79
80 rr->rr_blkno = blkno;
81 rr->rr_where = where;
82 list_add(&rr->rr_list, head);
83
84 return 1;
85}
86
Bob Petersona17d7582014-03-06 17:19:15 -050087int gfs2_revoke_check(struct gfs2_jdesc *jd, u64 blkno, unsigned int where)
David Teiglandb3b94fa2006-01-16 16:50:04 +000088{
89 struct gfs2_revoke_replay *rr;
90 int wrap, a, b, revoke;
91 int found = 0;
92
Bob Petersona17d7582014-03-06 17:19:15 -050093 list_for_each_entry(rr, &jd->jd_revoke_list, rr_list) {
David Teiglandb3b94fa2006-01-16 16:50:04 +000094 if (rr->rr_blkno == blkno) {
95 found = 1;
96 break;
97 }
98 }
99
100 if (!found)
101 return 0;
102
Bob Petersona17d7582014-03-06 17:19:15 -0500103 wrap = (rr->rr_where < jd->jd_replay_tail);
104 a = (jd->jd_replay_tail < where);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000105 b = (where < rr->rr_where);
106 revoke = (wrap) ? (a || b) : (a && b);
107
108 return revoke;
109}
110
Bob Petersona17d7582014-03-06 17:19:15 -0500111void gfs2_revoke_clean(struct gfs2_jdesc *jd)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000112{
Bob Petersona17d7582014-03-06 17:19:15 -0500113 struct list_head *head = &jd->jd_revoke_list;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000114 struct gfs2_revoke_replay *rr;
115
116 while (!list_empty(head)) {
117 rr = list_entry(head->next, struct gfs2_revoke_replay, rr_list);
118 list_del(&rr->rr_list);
119 kfree(rr);
120 }
121}
122
123/**
124 * get_log_header - read the log header for a given segment
125 * @jd: the journal
126 * @blk: the block to look at
127 * @lh: the log header to return
128 *
129 * Read the log header for a given segement in a given journal. Do a few
130 * sanity checks on it.
131 *
132 * Returns: 0 on success,
133 * 1 if the header was invalid or incomplete,
134 * errno on error
135 */
136
137static int get_log_header(struct gfs2_jdesc *jd, unsigned int blk,
Al Viro55167622006-10-13 21:47:13 -0400138 struct gfs2_log_header_host *head)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000139{
Andreas Gruenbacher0ff59162018-01-16 23:07:57 +0100140 struct gfs2_log_header *lh;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000141 struct buffer_head *bh;
Bob Petersonc1696fb2018-01-17 00:01:33 +0100142 u32 hash, crc;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000143 int error;
144
145 error = gfs2_replay_read_block(jd, blk, &bh);
146 if (error)
147 return error;
Andreas Gruenbacher0ff59162018-01-16 23:07:57 +0100148 lh = (void *)bh->b_data;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000149
Bob Petersonc1696fb2018-01-17 00:01:33 +0100150 hash = crc32(~0, lh, LH_V1_SIZE - 4);
Andreas Gruenbacher0ff59162018-01-16 23:07:57 +0100151 hash = ~crc32_le_shift(hash, 4); /* assume lh_hash is zero */
152
Bob Petersonc1696fb2018-01-17 00:01:33 +0100153 crc = crc32c(~0, (void *)lh + LH_V1_SIZE + 4,
154 bh->b_size - LH_V1_SIZE - 4);
155
Andreas Gruenbacher0ff59162018-01-16 23:07:57 +0100156 error = lh->lh_header.mh_magic != cpu_to_be32(GFS2_MAGIC) ||
157 lh->lh_header.mh_type != cpu_to_be32(GFS2_METATYPE_LH) ||
158 be32_to_cpu(lh->lh_blkno) != blk ||
Bob Petersonc1696fb2018-01-17 00:01:33 +0100159 be32_to_cpu(lh->lh_hash) != hash ||
160 (lh->lh_crc != 0 && be32_to_cpu(lh->lh_crc) != crc);
Andreas Gruenbacher0ff59162018-01-16 23:07:57 +0100161
David Teiglandb3b94fa2006-01-16 16:50:04 +0000162 brelse(bh);
163
Andreas Gruenbacher0ff59162018-01-16 23:07:57 +0100164 if (!error) {
165 head->lh_sequence = be64_to_cpu(lh->lh_sequence);
166 head->lh_flags = be32_to_cpu(lh->lh_flags);
167 head->lh_tail = be32_to_cpu(lh->lh_tail);
168 head->lh_blkno = be32_to_cpu(lh->lh_blkno);
169 }
170 return error;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000171}
172
173/**
174 * find_good_lh - find a good log header
175 * @jd: the journal
176 * @blk: the segment to start searching from
177 * @lh: the log header to fill in
178 * @forward: if true search forward in the log, else search backward
179 *
180 * Call get_log_header() to get a log header for a segment, but if the
181 * segment is bad, either scan forward or backward until we find a good one.
182 *
183 * Returns: errno
184 */
185
186static int find_good_lh(struct gfs2_jdesc *jd, unsigned int *blk,
Al Viro55167622006-10-13 21:47:13 -0400187 struct gfs2_log_header_host *head)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000188{
189 unsigned int orig_blk = *blk;
190 int error;
191
192 for (;;) {
193 error = get_log_header(jd, *blk, head);
194 if (error <= 0)
195 return error;
196
197 if (++*blk == jd->jd_blocks)
198 *blk = 0;
199
200 if (*blk == orig_blk) {
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400201 gfs2_consist_inode(GFS2_I(jd->jd_inode));
David Teiglandb3b94fa2006-01-16 16:50:04 +0000202 return -EIO;
203 }
204 }
205}
206
207/**
208 * jhead_scan - make sure we've found the head of the log
209 * @jd: the journal
210 * @head: this is filled in with the log descriptor of the head
211 *
212 * At this point, seg and lh should be either the head of the log or just
213 * before. Scan forward until we find the head.
214 *
215 * Returns: errno
216 */
217
Al Viro55167622006-10-13 21:47:13 -0400218static int jhead_scan(struct gfs2_jdesc *jd, struct gfs2_log_header_host *head)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000219{
220 unsigned int blk = head->lh_blkno;
Al Viro55167622006-10-13 21:47:13 -0400221 struct gfs2_log_header_host lh;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000222 int error;
223
224 for (;;) {
225 if (++blk == jd->jd_blocks)
226 blk = 0;
227
228 error = get_log_header(jd, blk, &lh);
229 if (error < 0)
230 return error;
231 if (error == 1)
232 continue;
233
234 if (lh.lh_sequence == head->lh_sequence) {
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400235 gfs2_consist_inode(GFS2_I(jd->jd_inode));
David Teiglandb3b94fa2006-01-16 16:50:04 +0000236 return -EIO;
237 }
238 if (lh.lh_sequence < head->lh_sequence)
239 break;
240
241 *head = lh;
242 }
243
244 return 0;
245}
246
247/**
248 * gfs2_find_jhead - find the head of a log
249 * @jd: the journal
250 * @head: the log descriptor for the head of the log is returned here
251 *
252 * Do a binary search of a journal and find the valid log entry with the
253 * highest sequence number. (i.e. the log head)
254 *
255 * Returns: errno
256 */
257
Al Viro55167622006-10-13 21:47:13 -0400258int gfs2_find_jhead(struct gfs2_jdesc *jd, struct gfs2_log_header_host *head)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000259{
Al Viro55167622006-10-13 21:47:13 -0400260 struct gfs2_log_header_host lh_1, lh_m;
Steven Whitehousecd915492006-09-04 12:49:07 -0400261 u32 blk_1, blk_2, blk_m;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000262 int error;
263
264 blk_1 = 0;
265 blk_2 = jd->jd_blocks - 1;
266
267 for (;;) {
268 blk_m = (blk_1 + blk_2) / 2;
269
270 error = find_good_lh(jd, &blk_1, &lh_1);
271 if (error)
272 return error;
273
274 error = find_good_lh(jd, &blk_m, &lh_m);
275 if (error)
276 return error;
277
278 if (blk_1 == blk_m || blk_m == blk_2)
279 break;
280
281 if (lh_1.lh_sequence <= lh_m.lh_sequence)
282 blk_1 = blk_m;
283 else
284 blk_2 = blk_m;
285 }
286
287 error = jhead_scan(jd, &lh_1);
288 if (error)
289 return error;
290
291 *head = lh_1;
292
293 return error;
294}
295
296/**
297 * foreach_descriptor - go through the active part of the log
298 * @jd: the journal
299 * @start: the first log header in the active region
300 * @end: the last log header (don't process the contents of this entry))
301 *
302 * Call a given function once for every log descriptor in the active
303 * portion of the log.
304 *
305 * Returns: errno
306 */
307
308static int foreach_descriptor(struct gfs2_jdesc *jd, unsigned int start,
309 unsigned int end, int pass)
310{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400311 struct gfs2_sbd *sdp = GFS2_SB(jd->jd_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000312 struct buffer_head *bh;
313 struct gfs2_log_descriptor *ld;
314 int error = 0;
315 u32 length;
316 __be64 *ptr;
317 unsigned int offset = sizeof(struct gfs2_log_descriptor);
Steven Whitehousea67cdbd2006-09-05 14:41:30 -0400318 offset += sizeof(__be64) - 1;
319 offset &= ~(sizeof(__be64) - 1);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000320
321 while (start != end) {
322 error = gfs2_replay_read_block(jd, start, &bh);
323 if (error)
324 return error;
325 if (gfs2_meta_check(sdp, bh)) {
326 brelse(bh);
327 return -EIO;
328 }
329 ld = (struct gfs2_log_descriptor *)bh->b_data;
330 length = be32_to_cpu(ld->ld_length);
331
Steven Whitehousee3167de2006-03-30 15:46:23 -0500332 if (be32_to_cpu(ld->ld_header.mh_type) == GFS2_METATYPE_LH) {
Al Viro55167622006-10-13 21:47:13 -0400333 struct gfs2_log_header_host lh;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000334 error = get_log_header(jd, start, &lh);
335 if (!error) {
Bob Petersone1cb6be2016-07-21 13:02:44 -0500336 gfs2_replay_incr_blk(jd, &start);
Russell Cattelan88721872006-08-10 11:08:40 -0500337 brelse(bh);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000338 continue;
339 }
340 if (error == 1) {
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400341 gfs2_consist_inode(GFS2_I(jd->jd_inode));
David Teiglandb3b94fa2006-01-16 16:50:04 +0000342 error = -EIO;
343 }
344 brelse(bh);
345 return error;
346 } else if (gfs2_metatype_check(sdp, bh, GFS2_METATYPE_LD)) {
347 brelse(bh);
348 return -EIO;
349 }
350 ptr = (__be64 *)(bh->b_data + offset);
351 error = lops_scan_elements(jd, start, ld, ptr, pass);
352 if (error) {
353 brelse(bh);
354 return error;
355 }
356
357 while (length--)
Bob Petersone1cb6be2016-07-21 13:02:44 -0500358 gfs2_replay_incr_blk(jd, &start);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000359
360 brelse(bh);
361 }
362
363 return 0;
364}
365
366/**
367 * clean_journal - mark a dirty journal as being clean
David Teiglandb3b94fa2006-01-16 16:50:04 +0000368 * @jd: the journal
David Teiglandb3b94fa2006-01-16 16:50:04 +0000369 * @head: the head journal to start from
370 *
371 * Returns: errno
372 */
373
Bob Peterson588bff92017-12-18 12:48:29 -0600374static void clean_journal(struct gfs2_jdesc *jd,
375 struct gfs2_log_header_host *head)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000376{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400377 struct gfs2_sbd *sdp = GFS2_SB(jd->jd_inode);
Steven Whitehousefd88de562006-05-05 16:59:11 -0400378
Bob Peterson588bff92017-12-18 12:48:29 -0600379 sdp->sd_log_flush_head = head->lh_blkno;
380 gfs2_replay_incr_blk(jd, &sdp->sd_log_flush_head);
Bob Petersonc1696fb2018-01-17 00:01:33 +0100381 gfs2_write_log_header(sdp, jd, head->lh_sequence + 1, 0,
382 GFS2_LOG_HEAD_UNMOUNT | GFS2_LOG_HEAD_RECOVERY,
383 REQ_PREFLUSH | REQ_FUA | REQ_META | REQ_SYNC);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000384}
385
Steven Whitehouseda755fd2008-01-30 15:34:04 +0000386
Steven Whitehousef057f6c2009-01-12 10:43:39 +0000387static void gfs2_recovery_done(struct gfs2_sbd *sdp, unsigned int jid,
388 unsigned int message)
Steven Whitehouseda755fd2008-01-30 15:34:04 +0000389{
Steven Whitehousef057f6c2009-01-12 10:43:39 +0000390 char env_jid[20];
391 char env_status[20];
392 char *envp[] = { env_jid, env_status, NULL };
393 struct lm_lockstruct *ls = &sdp->sd_lockstruct;
David Teiglande0c2a9a2012-01-09 17:18:05 -0500394
Steven Whitehousef057f6c2009-01-12 10:43:39 +0000395 ls->ls_recover_jid_done = jid;
396 ls->ls_recover_jid_status = message;
alex chen3566c962015-01-12 19:01:03 +0800397 sprintf(env_jid, "JID=%u", jid);
Steven Whitehousef057f6c2009-01-12 10:43:39 +0000398 sprintf(env_status, "RECOVERY=%s",
399 message == LM_RD_SUCCESS ? "Done" : "Failed");
400 kobject_uevent_env(&sdp->sd_kobj, KOBJ_CHANGE, envp);
David Teiglande0c2a9a2012-01-09 17:18:05 -0500401
402 if (sdp->sd_lockstruct.ls_ops->lm_recovery_result)
403 sdp->sd_lockstruct.ls_ops->lm_recovery_result(sdp, jid, message);
Steven Whitehouseda755fd2008-01-30 15:34:04 +0000404}
405
Tejun Heo6ecd7c22010-07-20 22:09:02 +0200406void gfs2_recover_func(struct work_struct *work)
Steven Whitehousefe64d512009-05-19 10:01:18 +0100407{
408 struct gfs2_jdesc *jd = container_of(work, struct gfs2_jdesc, jd_work);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400409 struct gfs2_inode *ip = GFS2_I(jd->jd_inode);
410 struct gfs2_sbd *sdp = GFS2_SB(jd->jd_inode);
Al Viro55167622006-10-13 21:47:13 -0400411 struct gfs2_log_header_host head;
Benjamin Marzinski24972552014-05-01 22:26:55 -0500412 struct gfs2_holder j_gh, ji_gh, thaw_gh;
Abhi Das5e86d9d2018-03-29 10:41:27 -0700413 ktime_t t_start, t_jlck, t_jhd, t_tlck, t_rep;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000414 int ro = 0;
415 unsigned int pass;
416 int error;
Steven Whitehousec741c452010-09-29 14:20:52 +0100417 int jlocked = 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000418
Abhi Das5e86d9d2018-03-29 10:41:27 -0700419 t_start = ktime_get();
Steven Whitehoused0795f92010-09-27 15:58:11 +0100420 if (sdp->sd_args.ar_spectator ||
421 (jd->jd_jid != sdp->sd_lockstruct.ls_jid)) {
Steven Whitehouse5965b1f2006-04-26 13:21:55 -0400422 fs_info(sdp, "jid=%u: Trying to acquire journal lock...\n",
423 jd->jd_jid);
Steven Whitehousec741c452010-09-29 14:20:52 +0100424 jlocked = 1;
Joe Perchesc78bad12008-02-03 17:33:42 +0200425 /* Acquire the journal lock so we can do recovery */
David Teiglandb3b94fa2006-01-16 16:50:04 +0000426
Steven Whitehouse5965b1f2006-04-26 13:21:55 -0400427 error = gfs2_glock_nq_num(sdp, jd->jd_jid, &gfs2_journal_glops,
428 LM_ST_EXCLUSIVE,
429 LM_FLAG_NOEXP | LM_FLAG_TRY | GL_NOCACHE,
430 &j_gh);
431 switch (error) {
432 case 0:
433 break;
Steven Whitehouse907b9bc2006-09-25 09:26:04 -0400434
Steven Whitehouse5965b1f2006-04-26 13:21:55 -0400435 case GLR_TRYFAILED:
436 fs_info(sdp, "jid=%u: Busy\n", jd->jd_jid);
437 error = 0;
Steven Whitehouse907b9bc2006-09-25 09:26:04 -0400438
Steven Whitehouse5965b1f2006-04-26 13:21:55 -0400439 default:
440 goto fail;
441 };
David Teiglandb3b94fa2006-01-16 16:50:04 +0000442
Steven Whitehouse5965b1f2006-04-26 13:21:55 -0400443 error = gfs2_glock_nq_init(ip->i_gl, LM_ST_SHARED,
Bob Peterson75be73a2007-08-08 17:08:14 -0500444 LM_FLAG_NOEXP | GL_NOCACHE, &ji_gh);
Steven Whitehouse5965b1f2006-04-26 13:21:55 -0400445 if (error)
446 goto fail_gunlock_j;
447 } else {
448 fs_info(sdp, "jid=%u, already locked for use\n", jd->jd_jid);
449 }
David Teiglandb3b94fa2006-01-16 16:50:04 +0000450
Abhi Das5e86d9d2018-03-29 10:41:27 -0700451 t_jlck = ktime_get();
David Teiglandb3b94fa2006-01-16 16:50:04 +0000452 fs_info(sdp, "jid=%u: Looking at journal...\n", jd->jd_jid);
453
454 error = gfs2_jdesc_check(jd);
455 if (error)
456 goto fail_gunlock_ji;
457
458 error = gfs2_find_jhead(jd, &head);
459 if (error)
460 goto fail_gunlock_ji;
Abhi Das5e86d9d2018-03-29 10:41:27 -0700461 t_jhd = ktime_get();
David Teiglandb3b94fa2006-01-16 16:50:04 +0000462
463 if (!(head.lh_flags & GFS2_LOG_HEAD_UNMOUNT)) {
464 fs_info(sdp, "jid=%u: Acquiring the transaction lock...\n",
465 jd->jd_jid);
466
Benjamin Marzinski24972552014-05-01 22:26:55 -0500467 /* Acquire a shared hold on the freeze lock */
David Teiglandb3b94fa2006-01-16 16:50:04 +0000468
Benjamin Marzinski24972552014-05-01 22:26:55 -0500469 error = gfs2_glock_nq_init(sdp->sd_freeze_gl, LM_ST_SHARED,
470 LM_FLAG_NOEXP | LM_FLAG_PRIORITY,
471 &thaw_gh);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000472 if (error)
473 goto fail_gunlock_ji;
474
David Teiglande8ca5cc2012-01-09 14:40:06 -0500475 if (test_bit(SDF_RORECOVERY, &sdp->sd_flags)) {
476 ro = 1;
477 } else if (test_bit(SDF_JOURNAL_CHECKED, &sdp->sd_flags)) {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000478 if (!test_bit(SDF_JOURNAL_LIVE, &sdp->sd_flags))
479 ro = 1;
480 } else {
David Howellsbc98a422017-07-17 08:45:34 +0100481 if (sb_rdonly(sdp->sd_vfs)) {
Abhijith Das7bc5c412008-01-18 14:06:37 -0600482 /* check if device itself is read-only */
483 ro = bdev_read_only(sdp->sd_vfs->s_bdev);
484 if (!ro) {
485 fs_info(sdp, "recovery required on "
486 "read-only filesystem.\n");
487 fs_info(sdp, "write access will be "
488 "enabled during recovery.\n");
489 }
490 }
David Teiglandb3b94fa2006-01-16 16:50:04 +0000491 }
492
493 if (ro) {
Abhijith Das7bc5c412008-01-18 14:06:37 -0600494 fs_warn(sdp, "jid=%u: Can't replay: read-only block "
495 "device\n", jd->jd_jid);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000496 error = -EROFS;
Benjamin Marzinski24972552014-05-01 22:26:55 -0500497 goto fail_gunlock_thaw;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000498 }
499
Abhi Das5e86d9d2018-03-29 10:41:27 -0700500 t_tlck = ktime_get();
David Teiglandb3b94fa2006-01-16 16:50:04 +0000501 fs_info(sdp, "jid=%u: Replaying journal...\n", jd->jd_jid);
502
503 for (pass = 0; pass < 2; pass++) {
504 lops_before_scan(jd, &head, pass);
505 error = foreach_descriptor(jd, head.lh_tail,
506 head.lh_blkno, pass);
507 lops_after_scan(jd, error, pass);
508 if (error)
Benjamin Marzinski24972552014-05-01 22:26:55 -0500509 goto fail_gunlock_thaw;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000510 }
511
Bob Peterson588bff92017-12-18 12:48:29 -0600512 clean_journal(jd, &head);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000513
Benjamin Marzinski24972552014-05-01 22:26:55 -0500514 gfs2_glock_dq_uninit(&thaw_gh);
Abhi Das5e86d9d2018-03-29 10:41:27 -0700515 t_rep = ktime_get();
516 fs_info(sdp, "jid=%u: Journal replayed in %lldms [jlck:%lldms, "
517 "jhead:%lldms, tlck:%lldms, replay:%lldms]\n",
518 jd->jd_jid, ktime_ms_delta(t_rep, t_start),
519 ktime_ms_delta(t_jlck, t_start),
520 ktime_ms_delta(t_jhd, t_jlck),
521 ktime_ms_delta(t_tlck, t_jhd),
522 ktime_ms_delta(t_rep, t_tlck));
David Teiglandb3b94fa2006-01-16 16:50:04 +0000523 }
524
Steven Whitehousef057f6c2009-01-12 10:43:39 +0000525 gfs2_recovery_done(sdp, jd->jd_jid, LM_RD_SUCCESS);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000526
Steven Whitehousec741c452010-09-29 14:20:52 +0100527 if (jlocked) {
528 gfs2_glock_dq_uninit(&ji_gh);
Steven Whitehouse5965b1f2006-04-26 13:21:55 -0400529 gfs2_glock_dq_uninit(&j_gh);
Steven Whitehousec741c452010-09-29 14:20:52 +0100530 }
David Teiglandb3b94fa2006-01-16 16:50:04 +0000531
532 fs_info(sdp, "jid=%u: Done\n", jd->jd_jid);
Tejun Heo6ecd7c22010-07-20 22:09:02 +0200533 goto done;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000534
Benjamin Marzinski24972552014-05-01 22:26:55 -0500535fail_gunlock_thaw:
536 gfs2_glock_dq_uninit(&thaw_gh);
Steven Whitehouse5965b1f2006-04-26 13:21:55 -0400537fail_gunlock_ji:
Steven Whitehousec741c452010-09-29 14:20:52 +0100538 if (jlocked) {
Steven Whitehouse5965b1f2006-04-26 13:21:55 -0400539 gfs2_glock_dq_uninit(&ji_gh);
540fail_gunlock_j:
541 gfs2_glock_dq_uninit(&j_gh);
542 }
David Teiglandb3b94fa2006-01-16 16:50:04 +0000543
544 fs_info(sdp, "jid=%u: %s\n", jd->jd_jid, (error) ? "Failed" : "Done");
Steven Whitehouse5965b1f2006-04-26 13:21:55 -0400545fail:
David Teigland376d3772012-01-09 15:29:20 -0500546 jd->jd_recover_error = error;
Steven Whitehousef057f6c2009-01-12 10:43:39 +0000547 gfs2_recovery_done(sdp, jd->jd_jid, LM_RD_GAVEUP);
Tejun Heo6ecd7c22010-07-20 22:09:02 +0200548done:
549 clear_bit(JDF_RECOVERY, &jd->jd_flags);
Peter Zijlstra4e857c52014-03-17 18:06:10 +0100550 smp_mb__after_atomic();
Tejun Heo6ecd7c22010-07-20 22:09:02 +0200551 wake_up_bit(&jd->jd_flags, JDF_RECOVERY);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000552}
553
Tejun Heo6ecd7c22010-07-20 22:09:02 +0200554int gfs2_recover_journal(struct gfs2_jdesc *jd, bool wait)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000555{
Steven Whitehousefe64d512009-05-19 10:01:18 +0100556 int rv;
Tejun Heo6ecd7c22010-07-20 22:09:02 +0200557
558 if (test_and_set_bit(JDF_RECOVERY, &jd->jd_flags))
559 return -EBUSY;
560
561 /* we have JDF_RECOVERY, queue should always succeed */
562 rv = queue_work(gfs_recovery_wq, &jd->jd_work);
563 BUG_ON(!rv);
564
565 if (wait)
NeilBrown74316202014-07-07 15:16:04 +1000566 wait_on_bit(&jd->jd_flags, JDF_RECOVERY,
Tejun Heo6ecd7c22010-07-20 22:09:02 +0200567 TASK_UNINTERRUPTIBLE);
568
David Teigland376d3772012-01-09 15:29:20 -0500569 return wait ? jd->jd_recover_error : 0;
Steven Whitehouse9ac1b4d2008-11-19 10:08:22 +0000570}
571