1 // SPDX-License-Identifier: GPL-2.0-only
3 * Copyright (C) Sistina Software, Inc. 1997-2003 All rights reserved.
4 * Copyright (C) 2004-2006 Red Hat, Inc. All rights reserved.
7 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
9 #include <linux/spinlock.h>
10 #include <linux/completion.h>
11 #include <linux/buffer_head.h>
12 #include <linux/crc32.h>
13 #include <linux/gfs2_ondisk.h>
14 #include <linux/delay.h>
15 #include <linux/uaccess.h>
28 struct kmem_cache *gfs2_glock_cachep __read_mostly;
29 struct kmem_cache *gfs2_glock_aspace_cachep __read_mostly;
30 struct kmem_cache *gfs2_inode_cachep __read_mostly;
31 struct kmem_cache *gfs2_bufdata_cachep __read_mostly;
32 struct kmem_cache *gfs2_rgrpd_cachep __read_mostly;
33 struct kmem_cache *gfs2_quotad_cachep __read_mostly;
34 struct kmem_cache *gfs2_qadata_cachep __read_mostly;
35 struct kmem_cache *gfs2_trans_cachep __read_mostly;
36 mempool_t *gfs2_page_pool __read_mostly;
38 void gfs2_assert_i(struct gfs2_sbd *sdp)
40 fs_emerg(sdp, "fatal assertion failed\n");
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 * @verbose: Show more prints in the log
49 * Returns: 0 if the journal is clean or locked, else an error
51 int check_journal_clean(struct gfs2_sbd *sdp, struct gfs2_jdesc *jd,
55 struct gfs2_holder j_gh;
56 struct gfs2_log_header_host head;
57 struct gfs2_inode *ip;
59 ip = GFS2_I(jd->jd_inode);
60 error = gfs2_glock_nq_init(ip->i_gl, LM_ST_SHARED, LM_FLAG_NOEXP |
61 GL_EXACT | GL_NOCACHE, &j_gh);
64 fs_err(sdp, "Error %d locking journal for spectator "
68 error = gfs2_jdesc_check(jd);
71 fs_err(sdp, "Error checking journal for spectator "
75 error = gfs2_find_jhead(jd, &head, false);
78 fs_err(sdp, "Error parsing journal for spectator "
82 if (!(head.lh_flags & GFS2_LOG_HEAD_UNMOUNT)) {
85 fs_err(sdp, "jid=%u: Journal is dirty, so the first "
86 "mounter must not be a spectator.\n",
91 gfs2_glock_dq_uninit(&j_gh);
96 * gfs2_freeze_lock_shared - hold the freeze glock
97 * @sdp: the superblock
99 int gfs2_freeze_lock_shared(struct gfs2_sbd *sdp)
103 error = gfs2_glock_nq_init(sdp->sd_freeze_gl, LM_ST_SHARED,
104 LM_FLAG_NOEXP | GL_EXACT,
107 fs_err(sdp, "can't lock the freeze glock: %d\n", error);
111 void gfs2_freeze_unlock(struct gfs2_holder *freeze_gh)
113 if (gfs2_holder_initialized(freeze_gh))
114 gfs2_glock_dq_uninit(freeze_gh);
117 static void signal_our_withdraw(struct gfs2_sbd *sdp)
119 struct gfs2_glock *live_gl = sdp->sd_live_gh.gh_gl;
121 struct gfs2_inode *ip;
122 struct gfs2_glock *i_gl;
127 if (test_bit(SDF_NORECOVERY, &sdp->sd_flags) || !sdp->sd_jdesc)
130 gfs2_ail_drain(sdp); /* frees all transactions */
131 inode = sdp->sd_jdesc->jd_inode;
134 no_formal_ino = ip->i_no_formal_ino;
136 /* Prevent any glock dq until withdraw recovery is complete */
137 set_bit(SDF_WITHDRAW_RECOVERY, &sdp->sd_flags);
139 * Don't tell dlm we're bailing until we have no more buffers in the
140 * wind. If journal had an IO error, the log code should just purge
141 * the outstanding buffers rather than submitting new IO. Making the
142 * file system read-only will flush the journal, etc.
144 * During a normal unmount, gfs2_make_fs_ro calls gfs2_log_shutdown
145 * which clears SDF_JOURNAL_LIVE. In a withdraw, we must not write
146 * any UNMOUNT log header, so we can't call gfs2_log_shutdown, and
147 * therefore we need to clear SDF_JOURNAL_LIVE manually.
149 clear_bit(SDF_JOURNAL_LIVE, &sdp->sd_flags);
150 if (!sb_rdonly(sdp->sd_vfs)) {
151 bool locked = mutex_trylock(&sdp->sd_freeze_mutex);
153 gfs2_make_fs_ro(sdp);
156 mutex_unlock(&sdp->sd_freeze_mutex);
159 * Dequeue any pending non-system glock holders that can no
160 * longer be granted because the file system is withdrawn.
162 gfs2_gl_dq_holders(sdp);
165 if (sdp->sd_lockstruct.ls_ops->lm_lock == NULL) { /* lock_nolock */
168 clear_bit(SDF_WITHDRAW_RECOVERY, &sdp->sd_flags);
172 * Drop the glock for our journal so another node can recover it.
174 if (gfs2_holder_initialized(&sdp->sd_journal_gh)) {
175 gfs2_glock_dq_wait(&sdp->sd_journal_gh);
176 gfs2_holder_uninit(&sdp->sd_journal_gh);
178 sdp->sd_jinode_gh.gh_flags |= GL_NOCACHE;
179 gfs2_glock_dq(&sdp->sd_jinode_gh);
180 gfs2_thaw_freeze_initiator(sdp->sd_vfs);
181 wait_on_bit(&i_gl->gl_flags, GLF_DEMOTE, TASK_UNINTERRUPTIBLE);
184 * holder_uninit to force glock_put, to force dlm to let go
186 gfs2_holder_uninit(&sdp->sd_jinode_gh);
189 * Note: We need to be careful here:
190 * Our iput of jd_inode will evict it. The evict will dequeue its
191 * glock, but the glock dq will wait for the withdraw unless we have
192 * exception code in glock_dq.
195 sdp->sd_jdesc->jd_inode = NULL;
197 * Wait until the journal inode's glock is freed. This allows try locks
198 * on other nodes to be successful, otherwise we remain the owner of
199 * the glock as far as dlm is concerned.
201 if (i_gl->gl_ops->go_free) {
202 set_bit(GLF_FREEING, &i_gl->gl_flags);
203 wait_on_bit(&i_gl->gl_flags, GLF_FREEING, TASK_UNINTERRUPTIBLE);
207 * Dequeue the "live" glock, but keep a reference so it's never freed.
209 gfs2_glock_hold(live_gl);
210 gfs2_glock_dq_wait(&sdp->sd_live_gh);
212 * We enqueue the "live" glock in EX so that all other nodes
213 * get a demote request and act on it. We don't really want the
214 * lock in EX, so we send a "try" lock with 1CB to produce a callback.
216 fs_warn(sdp, "Requesting recovery of jid %d.\n",
217 sdp->sd_lockstruct.ls_jid);
218 gfs2_holder_reinit(LM_ST_EXCLUSIVE,
219 LM_FLAG_TRY_1CB | LM_FLAG_NOEXP | GL_NOPID,
221 msleep(GL_GLOCK_MAX_HOLD);
223 * This will likely fail in a cluster, but succeed standalone:
225 ret = gfs2_glock_nq(&sdp->sd_live_gh);
228 * If we actually got the "live" lock in EX mode, there are no other
229 * nodes available to replay our journal. So we try to replay it
230 * ourselves. We hold the "live" glock to prevent other mounters
231 * during recovery, then just dequeue it and reacquire it in our
232 * normal SH mode. Just in case the problem that caused us to
233 * withdraw prevents us from recovering our journal (e.g. io errors
234 * and such) we still check if the journal is clean before proceeding
235 * but we may wait forever until another mounter does the recovery.
238 fs_warn(sdp, "No other mounters found. Trying to recover our "
239 "own journal jid %d.\n", sdp->sd_lockstruct.ls_jid);
240 if (gfs2_recover_journal(sdp->sd_jdesc, 1))
241 fs_warn(sdp, "Unable to recover our journal jid %d.\n",
242 sdp->sd_lockstruct.ls_jid);
243 gfs2_glock_dq_wait(&sdp->sd_live_gh);
244 gfs2_holder_reinit(LM_ST_SHARED,
245 LM_FLAG_NOEXP | GL_EXACT | GL_NOPID,
247 gfs2_glock_nq(&sdp->sd_live_gh);
250 gfs2_glock_queue_put(live_gl); /* drop extra reference we acquired */
251 clear_bit(SDF_WITHDRAW_RECOVERY, &sdp->sd_flags);
254 * At this point our journal is evicted, so we need to get a new inode
255 * for it. Once done, we need to call gfs2_find_jhead which
256 * calls gfs2_map_journal_extents to map it for us again.
258 * Note that we don't really want it to look up a FREE block. The
259 * GFS2_BLKST_FREE simply overrides a block check in gfs2_inode_lookup
260 * which would otherwise fail because it requires grabbing an rgrp
261 * glock, which would fail with -EIO because we're withdrawing.
263 inode = gfs2_inode_lookup(sdp->sd_vfs, DT_UNKNOWN,
264 sdp->sd_jdesc->jd_no_addr, no_formal_ino,
267 fs_warn(sdp, "Reprocessing of jid %d failed with %ld.\n",
268 sdp->sd_lockstruct.ls_jid, PTR_ERR(inode));
271 sdp->sd_jdesc->jd_inode = inode;
272 d_mark_dontcache(inode);
275 * Now wait until recovery is complete.
277 for (tries = 0; tries < 10; tries++) {
278 ret = check_journal_clean(sdp, sdp->sd_jdesc, false);
282 fs_warn(sdp, "Waiting for journal recovery jid %d.\n",
283 sdp->sd_lockstruct.ls_jid);
287 fs_warn(sdp, "Journal recovery complete for jid %d.\n",
288 sdp->sd_lockstruct.ls_jid);
290 fs_warn(sdp, "Journal recovery skipped for jid %d until next "
291 "mount.\n", sdp->sd_lockstruct.ls_jid);
292 fs_warn(sdp, "Glock dequeues delayed: %lu\n", sdp->sd_glock_dqs_held);
293 sdp->sd_glock_dqs_held = 0;
294 wake_up_bit(&sdp->sd_flags, SDF_WITHDRAW_RECOVERY);
297 void gfs2_lm(struct gfs2_sbd *sdp, const char *fmt, ...)
299 struct va_format vaf;
302 if (sdp->sd_args.ar_errors == GFS2_ERRORS_WITHDRAW &&
303 test_bit(SDF_WITHDRAWN, &sdp->sd_flags))
309 fs_err(sdp, "%pV", &vaf);
313 int gfs2_withdraw(struct gfs2_sbd *sdp)
315 struct lm_lockstruct *ls = &sdp->sd_lockstruct;
316 const struct lm_lockops *lm = ls->ls_ops;
318 if (sdp->sd_args.ar_errors == GFS2_ERRORS_WITHDRAW &&
319 test_and_set_bit(SDF_WITHDRAWN, &sdp->sd_flags)) {
320 if (!test_bit(SDF_WITHDRAW_IN_PROG, &sdp->sd_flags))
323 wait_on_bit(&sdp->sd_flags, SDF_WITHDRAW_IN_PROG,
324 TASK_UNINTERRUPTIBLE);
328 set_bit(SDF_WITHDRAW_IN_PROG, &sdp->sd_flags);
330 if (sdp->sd_args.ar_errors == GFS2_ERRORS_WITHDRAW) {
331 fs_err(sdp, "about to withdraw this file system\n");
332 BUG_ON(sdp->sd_args.ar_debug);
334 signal_our_withdraw(sdp);
336 kobject_uevent(&sdp->sd_kobj, KOBJ_OFFLINE);
338 if (!strcmp(sdp->sd_lockstruct.ls_ops->lm_proto_name, "lock_dlm"))
339 wait_for_completion(&sdp->sd_wdack);
341 if (lm->lm_unmount) {
342 fs_err(sdp, "telling LM to unmount\n");
345 set_bit(SDF_SKIP_DLM_UNLOCK, &sdp->sd_flags);
346 fs_err(sdp, "File system withdrawn\n");
348 clear_bit(SDF_WITHDRAW_IN_PROG, &sdp->sd_flags);
349 smp_mb__after_atomic();
350 wake_up_bit(&sdp->sd_flags, SDF_WITHDRAW_IN_PROG);
353 if (sdp->sd_args.ar_errors == GFS2_ERRORS_PANIC)
354 panic("GFS2: fsid=%s: panic requested\n", sdp->sd_fsname);
360 * gfs2_assert_withdraw_i - Cause the machine to withdraw if @assertion is false
363 void gfs2_assert_withdraw_i(struct gfs2_sbd *sdp, char *assertion,
364 const char *function, char *file, unsigned int line,
367 if (gfs2_withdrawn(sdp))
371 "fatal: assertion \"%s\" failed\n"
372 " function = %s, file = %s, line = %u\n",
373 assertion, function, file, line);
376 * If errors=panic was specified on mount, it won't help to delay the
379 if (sdp->sd_args.ar_errors == GFS2_ERRORS_PANIC)
383 gfs2_withdraw_delayed(sdp);
390 * gfs2_assert_warn_i - Print a message to the console if @assertion is false
393 void gfs2_assert_warn_i(struct gfs2_sbd *sdp, char *assertion,
394 const char *function, char *file, unsigned int line)
396 if (time_before(jiffies,
397 sdp->sd_last_warning +
398 gfs2_tune_get(sdp, gt_complain_secs) * HZ))
401 if (sdp->sd_args.ar_errors == GFS2_ERRORS_WITHDRAW)
402 fs_warn(sdp, "warning: assertion \"%s\" failed at function = %s, file = %s, line = %u\n",
403 assertion, function, file, line);
405 if (sdp->sd_args.ar_debug)
410 if (sdp->sd_args.ar_errors == GFS2_ERRORS_PANIC)
411 panic("GFS2: fsid=%s: warning: assertion \"%s\" failed\n"
412 "GFS2: fsid=%s: function = %s, file = %s, line = %u\n",
413 sdp->sd_fsname, assertion,
414 sdp->sd_fsname, function, file, line);
416 sdp->sd_last_warning = jiffies;
420 * gfs2_consist_i - Flag a filesystem consistency error and withdraw
423 void gfs2_consist_i(struct gfs2_sbd *sdp, const char *function,
424 char *file, unsigned int line)
427 "fatal: filesystem consistency error - function = %s, file = %s, line = %u\n",
428 function, file, line);
433 * gfs2_consist_inode_i - Flag an inode consistency error and withdraw
436 void gfs2_consist_inode_i(struct gfs2_inode *ip,
437 const char *function, char *file, unsigned int line)
439 struct gfs2_sbd *sdp = GFS2_SB(&ip->i_inode);
442 "fatal: filesystem consistency error\n"
443 " inode = %llu %llu\n"
444 " function = %s, file = %s, line = %u\n",
445 (unsigned long long)ip->i_no_formal_ino,
446 (unsigned long long)ip->i_no_addr,
447 function, file, line);
448 gfs2_dump_glock(NULL, ip->i_gl, 1);
453 * gfs2_consist_rgrpd_i - Flag a RG consistency error and withdraw
456 void gfs2_consist_rgrpd_i(struct gfs2_rgrpd *rgd,
457 const char *function, char *file, unsigned int line)
459 struct gfs2_sbd *sdp = rgd->rd_sbd;
460 char fs_id_buf[sizeof(sdp->sd_fsname) + 7];
462 sprintf(fs_id_buf, "fsid=%s: ", sdp->sd_fsname);
463 gfs2_rgrp_dump(NULL, rgd, fs_id_buf);
465 "fatal: filesystem consistency error\n"
467 " function = %s, file = %s, line = %u\n",
468 (unsigned long long)rgd->rd_addr,
469 function, file, line);
470 gfs2_dump_glock(NULL, rgd->rd_gl, 1);
475 * gfs2_meta_check_ii - Flag a magic number consistency error and withdraw
476 * Returns: -1 if this call withdrew the machine,
477 * -2 if it was already withdrawn
480 int gfs2_meta_check_ii(struct gfs2_sbd *sdp, struct buffer_head *bh,
481 const char *type, const char *function, char *file,
487 "fatal: invalid metadata block\n"
489 " function = %s, file = %s, line = %u\n",
490 (unsigned long long)bh->b_blocknr, type,
491 function, file, line);
492 me = gfs2_withdraw(sdp);
493 return (me) ? -1 : -2;
497 * gfs2_metatype_check_ii - Flag a metadata type consistency error and withdraw
498 * Returns: -1 if this call withdrew the machine,
499 * -2 if it was already withdrawn
502 int gfs2_metatype_check_ii(struct gfs2_sbd *sdp, struct buffer_head *bh,
503 u16 type, u16 t, const char *function,
504 char *file, unsigned int line)
509 "fatal: invalid metadata block\n"
510 " bh = %llu (type: exp=%u, found=%u)\n"
511 " function = %s, file = %s, line = %u\n",
512 (unsigned long long)bh->b_blocknr, type, t,
513 function, file, line);
514 me = gfs2_withdraw(sdp);
515 return (me) ? -1 : -2;
519 * gfs2_io_error_i - Flag an I/O error and withdraw
520 * Returns: -1 if this call withdrew the machine,
521 * 0 if it was already withdrawn
524 int gfs2_io_error_i(struct gfs2_sbd *sdp, const char *function, char *file,
529 " function = %s, file = %s, line = %u\n",
530 function, file, line);
531 return gfs2_withdraw(sdp);
535 * gfs2_io_error_bh_i - Flag a buffer I/O error
536 * @withdraw: withdraw the filesystem
539 void gfs2_io_error_bh_i(struct gfs2_sbd *sdp, struct buffer_head *bh,
540 const char *function, char *file, unsigned int line,
543 if (gfs2_withdrawn(sdp))
546 fs_err(sdp, "fatal: I/O error\n"
548 " function = %s, file = %s, line = %u\n",
549 (unsigned long long)bh->b_blocknr, function, file, line);