blob: b7d4e4550880d18519a489be80aa196d1989c7c1 [file] [log] [blame]
Thomas Gleixner7336d0e2019-05-31 01:09:56 -07001// SPDX-License-Identifier: GPL-2.0-only
David Teiglandb3b94fa2006-01-16 16:50:04 +00002/*
3 * Copyright (C) Sistina Software, Inc. 1997-2003 All rights reserved.
Steven Whitehouse3a8a9a12006-05-18 15:09:15 -04004 * Copyright (C) 2004-2006 Red Hat, Inc. All rights reserved.
David Teiglandb3b94fa2006-01-16 16:50:04 +00005 */
6
Joe Perchesd77d1b52014-03-06 12:10:45 -08007#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
8
David Teiglandb3b94fa2006-01-16 16:50:04 +00009#include <linux/spinlock.h>
10#include <linux/completion.h>
11#include <linux/buffer_head.h>
12#include <linux/crc32.h>
Steven Whitehouse5c676f62006-02-27 17:23:27 -050013#include <linux/gfs2_ondisk.h>
Bob Peterson601ef0d2020-01-28 20:23:45 +010014#include <linux/delay.h>
Linus Torvalds7c0f6ba2016-12-24 11:46:01 -080015#include <linux/uaccess.h>
David Teiglandb3b94fa2006-01-16 16:50:04 +000016
17#include "gfs2.h"
Steven Whitehouse5c676f62006-02-27 17:23:27 -050018#include "incore.h"
David Teiglandb3b94fa2006-01-16 16:50:04 +000019#include "glock.h"
Bob Peterson601ef0d2020-01-28 20:23:45 +010020#include "glops.h"
21#include "log.h"
Bob Peterson0d910612019-02-18 08:37:25 -070022#include "lops.h"
23#include "recovery.h"
Bob Peterson72244b62018-08-15 12:09:49 -050024#include "rgrp.h"
Bob Peterson0d910612019-02-18 08:37:25 -070025#include "super.h"
Steven Whitehouse5c676f62006-02-27 17:23:27 -050026#include "util.h"
David Teiglandb3b94fa2006-01-16 16:50:04 +000027
Christoph Lametere18b8902006-12-06 20:33:20 -080028struct kmem_cache *gfs2_glock_cachep __read_mostly;
Steven Whitehouse009d8512009-12-08 12:12:13 +000029struct kmem_cache *gfs2_glock_aspace_cachep __read_mostly;
Christoph Lametere18b8902006-12-06 20:33:20 -080030struct kmem_cache *gfs2_inode_cachep __read_mostly;
31struct kmem_cache *gfs2_bufdata_cachep __read_mostly;
Bob Peterson6bdd9be2008-01-28 17:20:26 -060032struct kmem_cache *gfs2_rgrpd_cachep __read_mostly;
Steven Whitehouse37b2c832008-11-17 14:25:37 +000033struct kmem_cache *gfs2_quotad_cachep __read_mostly;
Bob Petersonb54e9a02015-10-26 10:40:28 -050034struct kmem_cache *gfs2_qadata_cachep __read_mostly;
Bob Petersonb839dad2019-04-17 12:04:27 -060035struct kmem_cache *gfs2_trans_cachep __read_mostly;
Steven Whitehousee8c92ed2012-04-16 09:28:31 +010036mempool_t *gfs2_page_pool __read_mostly;
David Teiglandb3b94fa2006-01-16 16:50:04 +000037
David Teiglandb3b94fa2006-01-16 16:50:04 +000038void gfs2_assert_i(struct gfs2_sbd *sdp)
39{
Joe Perches8382e262014-03-06 12:10:46 -080040 fs_emerg(sdp, "fatal assertion failed\n");
David Teiglandb3b94fa2006-01-16 16:50:04 +000041}
42
Bob Peterson0d910612019-02-18 08:37:25 -070043/**
44 * check_journal_clean - Make sure a journal is clean for a spectator mount
45 * @sdp: The GFS2 superblock
46 * @jd: The journal descriptor
47 *
48 * Returns: 0 if the journal is clean or locked, else an error
49 */
Bob Peterson7d9f9242019-02-18 13:04:13 -070050int check_journal_clean(struct gfs2_sbd *sdp, struct gfs2_jdesc *jd,
51 bool verbose)
Bob Peterson0d910612019-02-18 08:37:25 -070052{
53 int error;
54 struct gfs2_holder j_gh;
55 struct gfs2_log_header_host head;
56 struct gfs2_inode *ip;
57
58 ip = GFS2_I(jd->jd_inode);
59 error = gfs2_glock_nq_init(ip->i_gl, LM_ST_SHARED, LM_FLAG_NOEXP |
60 GL_EXACT | GL_NOCACHE, &j_gh);
61 if (error) {
Bob Peterson7d9f9242019-02-18 13:04:13 -070062 if (verbose)
63 fs_err(sdp, "Error %d locking journal for spectator "
64 "mount.\n", error);
Bob Peterson0d910612019-02-18 08:37:25 -070065 return -EPERM;
66 }
67 error = gfs2_jdesc_check(jd);
68 if (error) {
Bob Peterson7d9f9242019-02-18 13:04:13 -070069 if (verbose)
70 fs_err(sdp, "Error checking journal for spectator "
71 "mount.\n");
Bob Peterson0d910612019-02-18 08:37:25 -070072 goto out_unlock;
73 }
74 error = gfs2_find_jhead(jd, &head, false);
75 if (error) {
Bob Peterson7d9f9242019-02-18 13:04:13 -070076 if (verbose)
77 fs_err(sdp, "Error parsing journal for spectator "
78 "mount.\n");
Bob Peterson0d910612019-02-18 08:37:25 -070079 goto out_unlock;
80 }
81 if (!(head.lh_flags & GFS2_LOG_HEAD_UNMOUNT)) {
82 error = -EPERM;
Bob Peterson7d9f9242019-02-18 13:04:13 -070083 if (verbose)
84 fs_err(sdp, "jid=%u: Journal is dirty, so the first "
85 "mounter must not be a spectator.\n",
86 jd->jd_jid);
Bob Peterson0d910612019-02-18 08:37:25 -070087 }
88
89out_unlock:
90 gfs2_glock_dq_uninit(&j_gh);
91 return error;
92}
93
Bob Peterson601ef0d2020-01-28 20:23:45 +010094static void signal_our_withdraw(struct gfs2_sbd *sdp)
95{
Bob Petersonfc82ab42021-01-18 15:18:59 -050096 struct gfs2_glock *live_gl = sdp->sd_live_gh.gh_gl;
Bob Peterson601ef0d2020-01-28 20:23:45 +010097 struct inode *inode = sdp->sd_jdesc->jd_inode;
98 struct gfs2_inode *ip = GFS2_I(inode);
Bob Petersonfc82ab42021-01-18 15:18:59 -050099 struct gfs2_glock *i_gl = ip->i_gl;
Bob Peterson601ef0d2020-01-28 20:23:45 +0100100 u64 no_formal_ino = ip->i_no_formal_ino;
101 int ret = 0;
102 int tries;
103
104 if (test_bit(SDF_NORECOVERY, &sdp->sd_flags))
105 return;
106
107 /* Prevent any glock dq until withdraw recovery is complete */
108 set_bit(SDF_WITHDRAW_RECOVERY, &sdp->sd_flags);
109 /*
110 * Don't tell dlm we're bailing until we have no more buffers in the
111 * wind. If journal had an IO error, the log code should just purge
112 * the outstanding buffers rather than submitting new IO. Making the
113 * file system read-only will flush the journal, etc.
114 *
115 * During a normal unmount, gfs2_make_fs_ro calls gfs2_log_shutdown
116 * which clears SDF_JOURNAL_LIVE. In a withdraw, we must not write
117 * any UNMOUNT log header, so we can't call gfs2_log_shutdown, and
118 * therefore we need to clear SDF_JOURNAL_LIVE manually.
119 */
120 clear_bit(SDF_JOURNAL_LIVE, &sdp->sd_flags);
121 if (!sb_rdonly(sdp->sd_vfs))
122 ret = gfs2_make_fs_ro(sdp);
123
Bob Peterson53af80c2020-04-24 12:15:21 -0500124 if (sdp->sd_lockstruct.ls_ops->lm_lock == NULL) { /* lock_nolock */
125 if (!ret)
126 ret = -EIO;
127 clear_bit(SDF_WITHDRAW_RECOVERY, &sdp->sd_flags);
128 goto skip_recovery;
129 }
Bob Peterson601ef0d2020-01-28 20:23:45 +0100130 /*
131 * Drop the glock for our journal so another node can recover it.
132 */
133 if (gfs2_holder_initialized(&sdp->sd_journal_gh)) {
134 gfs2_glock_dq_wait(&sdp->sd_journal_gh);
135 gfs2_holder_uninit(&sdp->sd_journal_gh);
136 }
137 sdp->sd_jinode_gh.gh_flags |= GL_NOCACHE;
138 gfs2_glock_dq(&sdp->sd_jinode_gh);
139 if (test_bit(SDF_FS_FROZEN, &sdp->sd_flags)) {
140 /* Make sure gfs2_unfreeze works if partially-frozen */
141 flush_workqueue(gfs2_freeze_wq);
142 atomic_set(&sdp->sd_freeze_state, SFS_FROZEN);
143 thaw_super(sdp->sd_vfs);
144 } else {
Bob Petersonfc82ab42021-01-18 15:18:59 -0500145 wait_on_bit(&i_gl->gl_flags, GLF_DEMOTE,
146 TASK_UNINTERRUPTIBLE);
Bob Peterson601ef0d2020-01-28 20:23:45 +0100147 }
148
149 /*
150 * holder_uninit to force glock_put, to force dlm to let go
151 */
152 gfs2_holder_uninit(&sdp->sd_jinode_gh);
153
154 /*
155 * Note: We need to be careful here:
156 * Our iput of jd_inode will evict it. The evict will dequeue its
157 * glock, but the glock dq will wait for the withdraw unless we have
158 * exception code in glock_dq.
159 */
160 iput(inode);
161 /*
162 * Wait until the journal inode's glock is freed. This allows try locks
163 * on other nodes to be successful, otherwise we remain the owner of
164 * the glock as far as dlm is concerned.
165 */
Bob Petersonfc82ab42021-01-18 15:18:59 -0500166 if (i_gl->gl_ops->go_free) {
167 set_bit(GLF_FREEING, &i_gl->gl_flags);
168 wait_on_bit(&i_gl->gl_flags, GLF_FREEING, TASK_UNINTERRUPTIBLE);
Bob Peterson601ef0d2020-01-28 20:23:45 +0100169 }
170
Bob Peterson601ef0d2020-01-28 20:23:45 +0100171 /*
172 * Dequeue the "live" glock, but keep a reference so it's never freed.
173 */
Bob Petersonfc82ab42021-01-18 15:18:59 -0500174 gfs2_glock_hold(live_gl);
Bob Peterson601ef0d2020-01-28 20:23:45 +0100175 gfs2_glock_dq_wait(&sdp->sd_live_gh);
176 /*
177 * We enqueue the "live" glock in EX so that all other nodes
178 * get a demote request and act on it. We don't really want the
179 * lock in EX, so we send a "try" lock with 1CB to produce a callback.
180 */
181 fs_warn(sdp, "Requesting recovery of jid %d.\n",
182 sdp->sd_lockstruct.ls_jid);
183 gfs2_holder_reinit(LM_ST_EXCLUSIVE, LM_FLAG_TRY_1CB | LM_FLAG_NOEXP,
184 &sdp->sd_live_gh);
185 msleep(GL_GLOCK_MAX_HOLD);
186 /*
187 * This will likely fail in a cluster, but succeed standalone:
188 */
189 ret = gfs2_glock_nq(&sdp->sd_live_gh);
190
191 /*
192 * If we actually got the "live" lock in EX mode, there are no other
193 * nodes available to replay our journal. So we try to replay it
194 * ourselves. We hold the "live" glock to prevent other mounters
195 * during recovery, then just dequeue it and reacquire it in our
196 * normal SH mode. Just in case the problem that caused us to
197 * withdraw prevents us from recovering our journal (e.g. io errors
198 * and such) we still check if the journal is clean before proceeding
199 * but we may wait forever until another mounter does the recovery.
200 */
201 if (ret == 0) {
202 fs_warn(sdp, "No other mounters found. Trying to recover our "
203 "own journal jid %d.\n", sdp->sd_lockstruct.ls_jid);
204 if (gfs2_recover_journal(sdp->sd_jdesc, 1))
205 fs_warn(sdp, "Unable to recover our journal jid %d.\n",
206 sdp->sd_lockstruct.ls_jid);
207 gfs2_glock_dq_wait(&sdp->sd_live_gh);
208 gfs2_holder_reinit(LM_ST_SHARED, LM_FLAG_NOEXP | GL_EXACT,
209 &sdp->sd_live_gh);
210 gfs2_glock_nq(&sdp->sd_live_gh);
211 }
212
Bob Petersonfc82ab42021-01-18 15:18:59 -0500213 gfs2_glock_queue_put(live_gl); /* drop extra reference we acquired */
Bob Peterson601ef0d2020-01-28 20:23:45 +0100214 clear_bit(SDF_WITHDRAW_RECOVERY, &sdp->sd_flags);
215
216 /*
217 * At this point our journal is evicted, so we need to get a new inode
218 * for it. Once done, we need to call gfs2_find_jhead which
219 * calls gfs2_map_journal_extents to map it for us again.
220 *
221 * Note that we don't really want it to look up a FREE block. The
222 * GFS2_BLKST_FREE simply overrides a block check in gfs2_inode_lookup
223 * which would otherwise fail because it requires grabbing an rgrp
224 * glock, which would fail with -EIO because we're withdrawing.
225 */
226 inode = gfs2_inode_lookup(sdp->sd_vfs, DT_UNKNOWN,
227 sdp->sd_jdesc->jd_no_addr, no_formal_ino,
228 GFS2_BLKST_FREE);
229 if (IS_ERR(inode)) {
230 fs_warn(sdp, "Reprocessing of jid %d failed with %ld.\n",
231 sdp->sd_lockstruct.ls_jid, PTR_ERR(inode));
232 goto skip_recovery;
233 }
234 sdp->sd_jdesc->jd_inode = inode;
235
236 /*
237 * Now wait until recovery is complete.
238 */
239 for (tries = 0; tries < 10; tries++) {
Bob Peterson7d9f9242019-02-18 13:04:13 -0700240 ret = check_journal_clean(sdp, sdp->sd_jdesc, false);
Bob Peterson601ef0d2020-01-28 20:23:45 +0100241 if (!ret)
242 break;
243 msleep(HZ);
244 fs_warn(sdp, "Waiting for journal recovery jid %d.\n",
245 sdp->sd_lockstruct.ls_jid);
246 }
247skip_recovery:
248 if (!ret)
249 fs_warn(sdp, "Journal recovery complete for jid %d.\n",
250 sdp->sd_lockstruct.ls_jid);
251 else
252 fs_warn(sdp, "Journal recovery skipped for %d until next "
253 "mount.\n", sdp->sd_lockstruct.ls_jid);
254 fs_warn(sdp, "Glock dequeues delayed: %lu\n", sdp->sd_glock_dqs_held);
255 sdp->sd_glock_dqs_held = 0;
256 wake_up_bit(&sdp->sd_flags, SDF_WITHDRAW_RECOVERY);
257}
258
Andreas Gruenbacherbadb55e2020-01-23 18:41:00 +0100259void gfs2_lm(struct gfs2_sbd *sdp, const char *fmt, ...)
260{
261 struct va_format vaf;
262 va_list args;
263
264 if (sdp->sd_args.ar_errors == GFS2_ERRORS_WITHDRAW &&
265 test_bit(SDF_WITHDRAWN, &sdp->sd_flags))
266 return;
267
268 va_start(args, fmt);
269 vaf.fmt = fmt;
270 vaf.va = &args;
271 fs_err(sdp, "%pV", &vaf);
272 va_end(args);
273}
274
275int gfs2_withdraw(struct gfs2_sbd *sdp)
Steven Whitehouseda755fd2008-01-30 15:34:04 +0000276{
Steven Whitehousef057f6c2009-01-12 10:43:39 +0000277 struct lm_lockstruct *ls = &sdp->sd_lockstruct;
278 const struct lm_lockops *lm = ls->ls_ops;
Steven Whitehouseda755fd2008-01-30 15:34:04 +0000279
Bob Petersond34843d2009-08-24 10:44:18 +0100280 if (sdp->sd_args.ar_errors == GFS2_ERRORS_WITHDRAW &&
Bob Peterson601ef0d2020-01-28 20:23:45 +0100281 test_and_set_bit(SDF_WITHDRAWN, &sdp->sd_flags)) {
282 if (!test_bit(SDF_WITHDRAW_IN_PROG, &sdp->sd_flags))
283 return -1;
284
285 wait_on_bit(&sdp->sd_flags, SDF_WITHDRAW_IN_PROG,
286 TASK_UNINTERRUPTIBLE);
287 return -1;
288 }
289
290 set_bit(SDF_WITHDRAW_IN_PROG, &sdp->sd_flags);
Steven Whitehouseda755fd2008-01-30 15:34:04 +0000291
Bob Petersond34843d2009-08-24 10:44:18 +0100292 if (sdp->sd_args.ar_errors == GFS2_ERRORS_WITHDRAW) {
293 fs_err(sdp, "about to withdraw this file system\n");
294 BUG_ON(sdp->sd_args.ar_debug);
Steven Whitehouseda755fd2008-01-30 15:34:04 +0000295
Bob Peterson601ef0d2020-01-28 20:23:45 +0100296 signal_our_withdraw(sdp);
297
Bob Petersond34843d2009-08-24 10:44:18 +0100298 kobject_uevent(&sdp->sd_kobj, KOBJ_OFFLINE);
Steven Whitehousef057f6c2009-01-12 10:43:39 +0000299
Steven Whitehousefd95e812013-02-13 12:21:40 +0000300 if (!strcmp(sdp->sd_lockstruct.ls_ops->lm_proto_name, "lock_dlm"))
301 wait_for_completion(&sdp->sd_wdack);
302
Bob Petersond34843d2009-08-24 10:44:18 +0100303 if (lm->lm_unmount) {
304 fs_err(sdp, "telling LM to unmount\n");
305 lm->lm_unmount(sdp);
306 }
Benjamin Marzinski3e11e5302016-03-23 14:29:59 -0400307 set_bit(SDF_SKIP_DLM_UNLOCK, &sdp->sd_flags);
Bob Peterson601ef0d2020-01-28 20:23:45 +0100308 fs_err(sdp, "File system withdrawn\n");
Bob Petersond34843d2009-08-24 10:44:18 +0100309 dump_stack();
Bob Peterson601ef0d2020-01-28 20:23:45 +0100310 clear_bit(SDF_WITHDRAW_IN_PROG, &sdp->sd_flags);
311 smp_mb__after_atomic();
312 wake_up_bit(&sdp->sd_flags, SDF_WITHDRAW_IN_PROG);
Steven Whitehousef057f6c2009-01-12 10:43:39 +0000313 }
Bob Petersond34843d2009-08-24 10:44:18 +0100314
315 if (sdp->sd_args.ar_errors == GFS2_ERRORS_PANIC)
Joe Perchesd77d1b52014-03-06 12:10:45 -0800316 panic("GFS2: fsid=%s: panic requested\n", sdp->sd_fsname);
Steven Whitehouseda755fd2008-01-30 15:34:04 +0000317
318 return -1;
319}
320
David Teiglandb3b94fa2006-01-16 16:50:04 +0000321/**
322 * gfs2_assert_withdraw_i - Cause the machine to withdraw if @assertion is false
David Teiglandb3b94fa2006-01-16 16:50:04 +0000323 */
324
Andreas Gruenbacher8e28ef12020-01-23 19:36:21 +0100325void gfs2_assert_withdraw_i(struct gfs2_sbd *sdp, char *assertion,
Bob Petersonca399c962020-01-08 11:37:30 -0600326 const char *function, char *file, unsigned int line,
327 bool delayed)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000328{
Bob Petersonca399c962020-01-08 11:37:30 -0600329 if (gfs2_withdrawn(sdp))
330 return;
331
332 fs_err(sdp,
333 "fatal: assertion \"%s\" failed\n"
334 " function = %s, file = %s, line = %u\n",
335 assertion, function, file, line);
336
337 /*
338 * If errors=panic was specified on mount, it won't help to delay the
339 * withdraw.
340 */
341 if (sdp->sd_args.ar_errors == GFS2_ERRORS_PANIC)
342 delayed = false;
343
344 if (delayed)
345 gfs2_withdraw_delayed(sdp);
346 else
347 gfs2_withdraw(sdp);
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000348 dump_stack();
David Teiglandb3b94fa2006-01-16 16:50:04 +0000349}
350
351/**
352 * gfs2_assert_warn_i - Print a message to the console if @assertion is false
David Teiglandb3b94fa2006-01-16 16:50:04 +0000353 */
354
Andreas Gruenbacher8e28ef12020-01-23 19:36:21 +0100355void gfs2_assert_warn_i(struct gfs2_sbd *sdp, char *assertion,
356 const char *function, char *file, unsigned int line)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000357{
358 if (time_before(jiffies,
359 sdp->sd_last_warning +
360 gfs2_tune_get(sdp, gt_complain_secs) * HZ))
Andreas Gruenbacher8e28ef12020-01-23 19:36:21 +0100361 return;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000362
Bob Petersond34843d2009-08-24 10:44:18 +0100363 if (sdp->sd_args.ar_errors == GFS2_ERRORS_WITHDRAW)
Joe Perches8382e262014-03-06 12:10:46 -0800364 fs_warn(sdp, "warning: assertion \"%s\" failed at function = %s, file = %s, line = %u\n",
365 assertion, function, file, line);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000366
367 if (sdp->sd_args.ar_debug)
368 BUG();
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000369 else
370 dump_stack();
David Teiglandb3b94fa2006-01-16 16:50:04 +0000371
Bob Petersond34843d2009-08-24 10:44:18 +0100372 if (sdp->sd_args.ar_errors == GFS2_ERRORS_PANIC)
373 panic("GFS2: fsid=%s: warning: assertion \"%s\" failed\n"
374 "GFS2: fsid=%s: function = %s, file = %s, line = %u\n",
375 sdp->sd_fsname, assertion,
376 sdp->sd_fsname, function, file, line);
377
David Teiglandb3b94fa2006-01-16 16:50:04 +0000378 sdp->sd_last_warning = jiffies;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000379}
380
381/**
382 * gfs2_consist_i - Flag a filesystem consistency error and withdraw
David Teiglandb3b94fa2006-01-16 16:50:04 +0000383 */
384
Andreas Gruenbachera5ca2f12020-01-23 19:31:06 +0100385void gfs2_consist_i(struct gfs2_sbd *sdp, const char *function,
386 char *file, unsigned int line)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000387{
Andreas Gruenbacherbadb55e2020-01-23 18:41:00 +0100388 gfs2_lm(sdp,
389 "fatal: filesystem consistency error - function = %s, file = %s, line = %u\n",
390 function, file, line);
Andreas Gruenbachera5ca2f12020-01-23 19:31:06 +0100391 gfs2_withdraw(sdp);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000392}
393
394/**
395 * gfs2_consist_inode_i - Flag an inode consistency error and withdraw
David Teiglandb3b94fa2006-01-16 16:50:04 +0000396 */
397
Andreas Gruenbachera5ca2f12020-01-23 19:31:06 +0100398void gfs2_consist_inode_i(struct gfs2_inode *ip,
399 const char *function, char *file, unsigned int line)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000400{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400401 struct gfs2_sbd *sdp = GFS2_SB(&ip->i_inode);
Andreas Gruenbacherbadb55e2020-01-23 18:41:00 +0100402
403 gfs2_lm(sdp,
404 "fatal: filesystem consistency error\n"
405 " inode = %llu %llu\n"
406 " function = %s, file = %s, line = %u\n",
407 (unsigned long long)ip->i_no_formal_ino,
408 (unsigned long long)ip->i_no_addr,
409 function, file, line);
Andreas Gruenbachera5ca2f12020-01-23 19:31:06 +0100410 gfs2_withdraw(sdp);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000411}
412
413/**
414 * gfs2_consist_rgrpd_i - Flag a RG consistency error and withdraw
David Teiglandb3b94fa2006-01-16 16:50:04 +0000415 */
416
Andreas Gruenbachera5ca2f12020-01-23 19:31:06 +0100417void gfs2_consist_rgrpd_i(struct gfs2_rgrpd *rgd,
418 const char *function, char *file, unsigned int line)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000419{
420 struct gfs2_sbd *sdp = rgd->rd_sbd;
Bob Peterson98fb0572019-08-13 09:25:15 -0400421 char fs_id_buf[sizeof(sdp->sd_fsname) + 7];
Bob Peterson72244b62018-08-15 12:09:49 -0500422
Bob Peterson3792ce92019-05-09 09:21:48 -0500423 sprintf(fs_id_buf, "fsid=%s: ", sdp->sd_fsname);
Andrew Price0e539ca2020-10-07 12:30:58 +0100424 gfs2_rgrp_dump(NULL, rgd, fs_id_buf);
Andreas Gruenbacherbadb55e2020-01-23 18:41:00 +0100425 gfs2_lm(sdp,
426 "fatal: filesystem consistency error\n"
427 " RG = %llu\n"
428 " function = %s, file = %s, line = %u\n",
429 (unsigned long long)rgd->rd_addr,
430 function, file, line);
Andreas Gruenbachera5ca2f12020-01-23 19:31:06 +0100431 gfs2_withdraw(sdp);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000432}
433
434/**
435 * gfs2_meta_check_ii - Flag a magic number consistency error and withdraw
436 * Returns: -1 if this call withdrew the machine,
437 * -2 if it was already withdrawn
438 */
439
440int gfs2_meta_check_ii(struct gfs2_sbd *sdp, struct buffer_head *bh,
441 const char *type, const char *function, char *file,
442 unsigned int line)
443{
444 int me;
Andreas Gruenbacherbadb55e2020-01-23 18:41:00 +0100445
446 gfs2_lm(sdp,
447 "fatal: invalid metadata block\n"
448 " bh = %llu (%s)\n"
449 " function = %s, file = %s, line = %u\n",
450 (unsigned long long)bh->b_blocknr, type,
451 function, file, line);
452 me = gfs2_withdraw(sdp);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000453 return (me) ? -1 : -2;
454}
455
456/**
457 * gfs2_metatype_check_ii - Flag a metadata type consistency error and withdraw
458 * Returns: -1 if this call withdrew the machine,
459 * -2 if it was already withdrawn
460 */
461
462int gfs2_metatype_check_ii(struct gfs2_sbd *sdp, struct buffer_head *bh,
Steven Whitehousecd915492006-09-04 12:49:07 -0400463 u16 type, u16 t, const char *function,
David Teiglandb3b94fa2006-01-16 16:50:04 +0000464 char *file, unsigned int line)
465{
466 int me;
Andreas Gruenbacherbadb55e2020-01-23 18:41:00 +0100467
468 gfs2_lm(sdp,
469 "fatal: invalid metadata block\n"
470 " bh = %llu (type: exp=%u, found=%u)\n"
471 " function = %s, file = %s, line = %u\n",
472 (unsigned long long)bh->b_blocknr, type, t,
473 function, file, line);
474 me = gfs2_withdraw(sdp);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000475 return (me) ? -1 : -2;
476}
477
478/**
479 * gfs2_io_error_i - Flag an I/O error and withdraw
480 * Returns: -1 if this call withdrew the machine,
481 * 0 if it was already withdrawn
482 */
483
484int gfs2_io_error_i(struct gfs2_sbd *sdp, const char *function, char *file,
485 unsigned int line)
486{
Andreas Gruenbacherbadb55e2020-01-23 18:41:00 +0100487 gfs2_lm(sdp,
488 "fatal: I/O error\n"
489 " function = %s, file = %s, line = %u\n",
490 function, file, line);
491 return gfs2_withdraw(sdp);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000492}
493
494/**
Andreas Gruenbacher9e1a9ec2018-06-07 11:56:46 +0100495 * gfs2_io_error_bh_i - Flag a buffer I/O error
496 * @withdraw: withdraw the filesystem
David Teiglandb3b94fa2006-01-16 16:50:04 +0000497 */
498
Andreas Gruenbacher9e1a9ec2018-06-07 11:56:46 +0100499void gfs2_io_error_bh_i(struct gfs2_sbd *sdp, struct buffer_head *bh,
500 const char *function, char *file, unsigned int line,
501 bool withdraw)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000502{
Bob Peterson69511082019-02-12 13:43:55 -0700503 if (gfs2_withdrawn(sdp))
504 return;
505
506 fs_err(sdp, "fatal: I/O error\n"
507 " block = %llu\n"
508 " function = %s, file = %s, line = %u\n",
509 (unsigned long long)bh->b_blocknr, function, file, line);
Andreas Gruenbacher9e1a9ec2018-06-07 11:56:46 +0100510 if (withdraw)
Andreas Gruenbacherbadb55e2020-01-23 18:41:00 +0100511 gfs2_withdraw(sdp);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000512}
513