Thomas Gleixner | 7336d0e | 2019-05-31 01:09:56 -0700 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0-only |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 2 | /* |
| 3 | * Copyright (C) Sistina Software, Inc. 1997-2003 All rights reserved. |
Steven Whitehouse | 3a8a9a1 | 2006-05-18 15:09:15 -0400 | [diff] [blame] | 4 | * Copyright (C) 2004-2006 Red Hat, Inc. All rights reserved. |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 5 | */ |
| 6 | |
Joe Perches | d77d1b5 | 2014-03-06 12:10:45 -0800 | [diff] [blame] | 7 | #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt |
| 8 | |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 9 | #include <linux/spinlock.h> |
| 10 | #include <linux/completion.h> |
| 11 | #include <linux/buffer_head.h> |
| 12 | #include <linux/crc32.h> |
Steven Whitehouse | 5c676f6 | 2006-02-27 17:23:27 -0500 | [diff] [blame] | 13 | #include <linux/gfs2_ondisk.h> |
Bob Peterson | 601ef0d | 2020-01-28 20:23:45 +0100 | [diff] [blame] | 14 | #include <linux/delay.h> |
Linus Torvalds | 7c0f6ba | 2016-12-24 11:46:01 -0800 | [diff] [blame] | 15 | #include <linux/uaccess.h> |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 16 | |
| 17 | #include "gfs2.h" |
Steven Whitehouse | 5c676f6 | 2006-02-27 17:23:27 -0500 | [diff] [blame] | 18 | #include "incore.h" |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 19 | #include "glock.h" |
Bob Peterson | 601ef0d | 2020-01-28 20:23:45 +0100 | [diff] [blame] | 20 | #include "glops.h" |
| 21 | #include "log.h" |
Bob Peterson | 0d91061 | 2019-02-18 08:37:25 -0700 | [diff] [blame] | 22 | #include "lops.h" |
| 23 | #include "recovery.h" |
Bob Peterson | 72244b6 | 2018-08-15 12:09:49 -0500 | [diff] [blame] | 24 | #include "rgrp.h" |
Bob Peterson | 0d91061 | 2019-02-18 08:37:25 -0700 | [diff] [blame] | 25 | #include "super.h" |
Steven Whitehouse | 5c676f6 | 2006-02-27 17:23:27 -0500 | [diff] [blame] | 26 | #include "util.h" |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 27 | |
Christoph Lameter | e18b890 | 2006-12-06 20:33:20 -0800 | [diff] [blame] | 28 | struct kmem_cache *gfs2_glock_cachep __read_mostly; |
Steven Whitehouse | 009d851 | 2009-12-08 12:12:13 +0000 | [diff] [blame] | 29 | struct kmem_cache *gfs2_glock_aspace_cachep __read_mostly; |
Christoph Lameter | e18b890 | 2006-12-06 20:33:20 -0800 | [diff] [blame] | 30 | struct kmem_cache *gfs2_inode_cachep __read_mostly; |
| 31 | struct kmem_cache *gfs2_bufdata_cachep __read_mostly; |
Bob Peterson | 6bdd9be | 2008-01-28 17:20:26 -0600 | [diff] [blame] | 32 | struct kmem_cache *gfs2_rgrpd_cachep __read_mostly; |
Steven Whitehouse | 37b2c83 | 2008-11-17 14:25:37 +0000 | [diff] [blame] | 33 | struct kmem_cache *gfs2_quotad_cachep __read_mostly; |
Bob Peterson | b54e9a0 | 2015-10-26 10:40:28 -0500 | [diff] [blame] | 34 | struct kmem_cache *gfs2_qadata_cachep __read_mostly; |
Bob Peterson | b839dad | 2019-04-17 12:04:27 -0600 | [diff] [blame] | 35 | struct kmem_cache *gfs2_trans_cachep __read_mostly; |
Steven Whitehouse | e8c92ed | 2012-04-16 09:28:31 +0100 | [diff] [blame] | 36 | mempool_t *gfs2_page_pool __read_mostly; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 37 | |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 38 | void gfs2_assert_i(struct gfs2_sbd *sdp) |
| 39 | { |
Joe Perches | 8382e26 | 2014-03-06 12:10:46 -0800 | [diff] [blame] | 40 | fs_emerg(sdp, "fatal assertion failed\n"); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 41 | } |
| 42 | |
Bob Peterson | 0d91061 | 2019-02-18 08:37:25 -0700 | [diff] [blame] | 43 | /** |
| 44 | * check_journal_clean - Make sure a journal is clean for a spectator mount |
| 45 | * @sdp: The GFS2 superblock |
| 46 | * @jd: The journal descriptor |
Lee Jones | c551f66 | 2021-03-30 17:44:29 +0100 | [diff] [blame] | 47 | * @verbose: Show more prints in the log |
Bob Peterson | 0d91061 | 2019-02-18 08:37:25 -0700 | [diff] [blame] | 48 | * |
| 49 | * Returns: 0 if the journal is clean or locked, else an error |
| 50 | */ |
Bob Peterson | 7d9f924 | 2019-02-18 13:04:13 -0700 | [diff] [blame] | 51 | int check_journal_clean(struct gfs2_sbd *sdp, struct gfs2_jdesc *jd, |
| 52 | bool verbose) |
Bob Peterson | 0d91061 | 2019-02-18 08:37:25 -0700 | [diff] [blame] | 53 | { |
| 54 | int error; |
| 55 | struct gfs2_holder j_gh; |
| 56 | struct gfs2_log_header_host head; |
| 57 | struct gfs2_inode *ip; |
| 58 | |
| 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); |
| 62 | if (error) { |
Bob Peterson | 7d9f924 | 2019-02-18 13:04:13 -0700 | [diff] [blame] | 63 | if (verbose) |
| 64 | fs_err(sdp, "Error %d locking journal for spectator " |
| 65 | "mount.\n", error); |
Bob Peterson | 0d91061 | 2019-02-18 08:37:25 -0700 | [diff] [blame] | 66 | return -EPERM; |
| 67 | } |
| 68 | error = gfs2_jdesc_check(jd); |
| 69 | if (error) { |
Bob Peterson | 7d9f924 | 2019-02-18 13:04:13 -0700 | [diff] [blame] | 70 | if (verbose) |
| 71 | fs_err(sdp, "Error checking journal for spectator " |
| 72 | "mount.\n"); |
Bob Peterson | 0d91061 | 2019-02-18 08:37:25 -0700 | [diff] [blame] | 73 | goto out_unlock; |
| 74 | } |
| 75 | error = gfs2_find_jhead(jd, &head, false); |
| 76 | if (error) { |
Bob Peterson | 7d9f924 | 2019-02-18 13:04:13 -0700 | [diff] [blame] | 77 | if (verbose) |
| 78 | fs_err(sdp, "Error parsing journal for spectator " |
| 79 | "mount.\n"); |
Bob Peterson | 0d91061 | 2019-02-18 08:37:25 -0700 | [diff] [blame] | 80 | goto out_unlock; |
| 81 | } |
| 82 | if (!(head.lh_flags & GFS2_LOG_HEAD_UNMOUNT)) { |
| 83 | error = -EPERM; |
Bob Peterson | 7d9f924 | 2019-02-18 13:04:13 -0700 | [diff] [blame] | 84 | if (verbose) |
| 85 | fs_err(sdp, "jid=%u: Journal is dirty, so the first " |
| 86 | "mounter must not be a spectator.\n", |
| 87 | jd->jd_jid); |
Bob Peterson | 0d91061 | 2019-02-18 08:37:25 -0700 | [diff] [blame] | 88 | } |
| 89 | |
| 90 | out_unlock: |
| 91 | gfs2_glock_dq_uninit(&j_gh); |
| 92 | return error; |
| 93 | } |
| 94 | |
Bob Peterson | c77b52c | 2020-12-22 14:43:27 -0600 | [diff] [blame] | 95 | /** |
| 96 | * gfs2_freeze_lock - hold the freeze glock |
| 97 | * @sdp: the superblock |
| 98 | * @freeze_gh: pointer to the requested holder |
| 99 | * @caller_flags: any additional flags needed by the caller |
| 100 | */ |
| 101 | int gfs2_freeze_lock(struct gfs2_sbd *sdp, struct gfs2_holder *freeze_gh, |
| 102 | int caller_flags) |
| 103 | { |
| 104 | int flags = LM_FLAG_NOEXP | GL_EXACT | caller_flags; |
| 105 | int error; |
| 106 | |
| 107 | error = gfs2_glock_nq_init(sdp->sd_freeze_gl, LM_ST_SHARED, flags, |
| 108 | freeze_gh); |
| 109 | if (error && error != GLR_TRYFAILED) |
| 110 | fs_err(sdp, "can't lock the freeze lock: %d\n", error); |
| 111 | return error; |
| 112 | } |
| 113 | |
| 114 | void gfs2_freeze_unlock(struct gfs2_holder *freeze_gh) |
| 115 | { |
| 116 | if (gfs2_holder_initialized(freeze_gh)) |
| 117 | gfs2_glock_dq_uninit(freeze_gh); |
| 118 | } |
| 119 | |
Bob Peterson | 601ef0d | 2020-01-28 20:23:45 +0100 | [diff] [blame] | 120 | static void signal_our_withdraw(struct gfs2_sbd *sdp) |
| 121 | { |
Bob Peterson | f5f02fd | 2021-01-18 15:18:59 -0500 | [diff] [blame] | 122 | struct gfs2_glock *live_gl = sdp->sd_live_gh.gh_gl; |
Bob Peterson | d5bf630 | 2021-03-12 07:58:54 -0500 | [diff] [blame] | 123 | struct inode *inode; |
| 124 | struct gfs2_inode *ip; |
| 125 | struct gfs2_glock *i_gl; |
| 126 | u64 no_formal_ino; |
Bob Peterson | 96b1454 | 2020-12-22 14:43:28 -0600 | [diff] [blame] | 127 | int log_write_allowed = test_bit(SDF_JOURNAL_LIVE, &sdp->sd_flags); |
Bob Peterson | 601ef0d | 2020-01-28 20:23:45 +0100 | [diff] [blame] | 128 | int ret = 0; |
| 129 | int tries; |
| 130 | |
Bob Peterson | d5bf630 | 2021-03-12 07:58:54 -0500 | [diff] [blame] | 131 | if (test_bit(SDF_NORECOVERY, &sdp->sd_flags) || !sdp->sd_jdesc) |
Bob Peterson | 601ef0d | 2020-01-28 20:23:45 +0100 | [diff] [blame] | 132 | return; |
| 133 | |
Bob Peterson | f5456b5 | 2021-05-19 14:54:02 -0400 | [diff] [blame] | 134 | gfs2_ail_drain(sdp); /* frees all transactions */ |
Bob Peterson | d5bf630 | 2021-03-12 07:58:54 -0500 | [diff] [blame] | 135 | inode = sdp->sd_jdesc->jd_inode; |
| 136 | ip = GFS2_I(inode); |
| 137 | i_gl = ip->i_gl; |
| 138 | no_formal_ino = ip->i_no_formal_ino; |
| 139 | |
Bob Peterson | 601ef0d | 2020-01-28 20:23:45 +0100 | [diff] [blame] | 140 | /* Prevent any glock dq until withdraw recovery is complete */ |
| 141 | set_bit(SDF_WITHDRAW_RECOVERY, &sdp->sd_flags); |
| 142 | /* |
| 143 | * Don't tell dlm we're bailing until we have no more buffers in the |
| 144 | * wind. If journal had an IO error, the log code should just purge |
| 145 | * the outstanding buffers rather than submitting new IO. Making the |
| 146 | * file system read-only will flush the journal, etc. |
| 147 | * |
| 148 | * During a normal unmount, gfs2_make_fs_ro calls gfs2_log_shutdown |
| 149 | * which clears SDF_JOURNAL_LIVE. In a withdraw, we must not write |
| 150 | * any UNMOUNT log header, so we can't call gfs2_log_shutdown, and |
| 151 | * therefore we need to clear SDF_JOURNAL_LIVE manually. |
| 152 | */ |
| 153 | clear_bit(SDF_JOURNAL_LIVE, &sdp->sd_flags); |
Bob Peterson | 96b1454 | 2020-12-22 14:43:28 -0600 | [diff] [blame] | 154 | if (!sb_rdonly(sdp->sd_vfs)) { |
| 155 | struct gfs2_holder freeze_gh; |
| 156 | |
| 157 | gfs2_holder_mark_uninitialized(&freeze_gh); |
| 158 | if (sdp->sd_freeze_gl && |
| 159 | !gfs2_glock_is_locked_by_me(sdp->sd_freeze_gl)) { |
| 160 | ret = gfs2_freeze_lock(sdp, &freeze_gh, |
| 161 | log_write_allowed ? 0 : LM_FLAG_TRY); |
| 162 | if (ret == GLR_TRYFAILED) |
| 163 | ret = 0; |
| 164 | } |
| 165 | if (!ret) |
Yang Li | eb60252 | 2021-03-04 09:28:57 -0500 | [diff] [blame] | 166 | gfs2_make_fs_ro(sdp); |
Bob Peterson | 96b1454 | 2020-12-22 14:43:28 -0600 | [diff] [blame] | 167 | gfs2_freeze_unlock(&freeze_gh); |
| 168 | } |
Bob Peterson | 601ef0d | 2020-01-28 20:23:45 +0100 | [diff] [blame] | 169 | |
Bob Peterson | 53af80c | 2020-04-24 12:15:21 -0500 | [diff] [blame] | 170 | if (sdp->sd_lockstruct.ls_ops->lm_lock == NULL) { /* lock_nolock */ |
| 171 | if (!ret) |
| 172 | ret = -EIO; |
| 173 | clear_bit(SDF_WITHDRAW_RECOVERY, &sdp->sd_flags); |
| 174 | goto skip_recovery; |
| 175 | } |
Bob Peterson | 601ef0d | 2020-01-28 20:23:45 +0100 | [diff] [blame] | 176 | /* |
| 177 | * Drop the glock for our journal so another node can recover it. |
| 178 | */ |
| 179 | if (gfs2_holder_initialized(&sdp->sd_journal_gh)) { |
| 180 | gfs2_glock_dq_wait(&sdp->sd_journal_gh); |
| 181 | gfs2_holder_uninit(&sdp->sd_journal_gh); |
| 182 | } |
| 183 | sdp->sd_jinode_gh.gh_flags |= GL_NOCACHE; |
| 184 | gfs2_glock_dq(&sdp->sd_jinode_gh); |
| 185 | if (test_bit(SDF_FS_FROZEN, &sdp->sd_flags)) { |
| 186 | /* Make sure gfs2_unfreeze works if partially-frozen */ |
Bob Peterson | 6e5c4ea | 2020-12-03 08:51:41 -0500 | [diff] [blame] | 187 | flush_work(&sdp->sd_freeze_work); |
Bob Peterson | 601ef0d | 2020-01-28 20:23:45 +0100 | [diff] [blame] | 188 | atomic_set(&sdp->sd_freeze_state, SFS_FROZEN); |
| 189 | thaw_super(sdp->sd_vfs); |
| 190 | } else { |
Bob Peterson | f5f02fd | 2021-01-18 15:18:59 -0500 | [diff] [blame] | 191 | wait_on_bit(&i_gl->gl_flags, GLF_DEMOTE, |
| 192 | TASK_UNINTERRUPTIBLE); |
Bob Peterson | 601ef0d | 2020-01-28 20:23:45 +0100 | [diff] [blame] | 193 | } |
| 194 | |
| 195 | /* |
| 196 | * holder_uninit to force glock_put, to force dlm to let go |
| 197 | */ |
| 198 | gfs2_holder_uninit(&sdp->sd_jinode_gh); |
| 199 | |
| 200 | /* |
| 201 | * Note: We need to be careful here: |
| 202 | * Our iput of jd_inode will evict it. The evict will dequeue its |
| 203 | * glock, but the glock dq will wait for the withdraw unless we have |
| 204 | * exception code in glock_dq. |
| 205 | */ |
| 206 | iput(inode); |
| 207 | /* |
| 208 | * Wait until the journal inode's glock is freed. This allows try locks |
| 209 | * on other nodes to be successful, otherwise we remain the owner of |
| 210 | * the glock as far as dlm is concerned. |
| 211 | */ |
Bob Peterson | f5f02fd | 2021-01-18 15:18:59 -0500 | [diff] [blame] | 212 | if (i_gl->gl_ops->go_free) { |
| 213 | set_bit(GLF_FREEING, &i_gl->gl_flags); |
| 214 | wait_on_bit(&i_gl->gl_flags, GLF_FREEING, TASK_UNINTERRUPTIBLE); |
Bob Peterson | 601ef0d | 2020-01-28 20:23:45 +0100 | [diff] [blame] | 215 | } |
| 216 | |
Bob Peterson | 601ef0d | 2020-01-28 20:23:45 +0100 | [diff] [blame] | 217 | /* |
| 218 | * Dequeue the "live" glock, but keep a reference so it's never freed. |
| 219 | */ |
Bob Peterson | f5f02fd | 2021-01-18 15:18:59 -0500 | [diff] [blame] | 220 | gfs2_glock_hold(live_gl); |
Bob Peterson | 601ef0d | 2020-01-28 20:23:45 +0100 | [diff] [blame] | 221 | gfs2_glock_dq_wait(&sdp->sd_live_gh); |
| 222 | /* |
| 223 | * We enqueue the "live" glock in EX so that all other nodes |
| 224 | * get a demote request and act on it. We don't really want the |
| 225 | * lock in EX, so we send a "try" lock with 1CB to produce a callback. |
| 226 | */ |
| 227 | fs_warn(sdp, "Requesting recovery of jid %d.\n", |
| 228 | sdp->sd_lockstruct.ls_jid); |
| 229 | gfs2_holder_reinit(LM_ST_EXCLUSIVE, LM_FLAG_TRY_1CB | LM_FLAG_NOEXP, |
| 230 | &sdp->sd_live_gh); |
| 231 | msleep(GL_GLOCK_MAX_HOLD); |
| 232 | /* |
| 233 | * This will likely fail in a cluster, but succeed standalone: |
| 234 | */ |
| 235 | ret = gfs2_glock_nq(&sdp->sd_live_gh); |
| 236 | |
| 237 | /* |
| 238 | * If we actually got the "live" lock in EX mode, there are no other |
| 239 | * nodes available to replay our journal. So we try to replay it |
| 240 | * ourselves. We hold the "live" glock to prevent other mounters |
| 241 | * during recovery, then just dequeue it and reacquire it in our |
| 242 | * normal SH mode. Just in case the problem that caused us to |
| 243 | * withdraw prevents us from recovering our journal (e.g. io errors |
| 244 | * and such) we still check if the journal is clean before proceeding |
| 245 | * but we may wait forever until another mounter does the recovery. |
| 246 | */ |
| 247 | if (ret == 0) { |
| 248 | fs_warn(sdp, "No other mounters found. Trying to recover our " |
| 249 | "own journal jid %d.\n", sdp->sd_lockstruct.ls_jid); |
| 250 | if (gfs2_recover_journal(sdp->sd_jdesc, 1)) |
| 251 | fs_warn(sdp, "Unable to recover our journal jid %d.\n", |
| 252 | sdp->sd_lockstruct.ls_jid); |
| 253 | gfs2_glock_dq_wait(&sdp->sd_live_gh); |
| 254 | gfs2_holder_reinit(LM_ST_SHARED, LM_FLAG_NOEXP | GL_EXACT, |
| 255 | &sdp->sd_live_gh); |
| 256 | gfs2_glock_nq(&sdp->sd_live_gh); |
| 257 | } |
| 258 | |
Bob Peterson | f5f02fd | 2021-01-18 15:18:59 -0500 | [diff] [blame] | 259 | gfs2_glock_queue_put(live_gl); /* drop extra reference we acquired */ |
Bob Peterson | 601ef0d | 2020-01-28 20:23:45 +0100 | [diff] [blame] | 260 | clear_bit(SDF_WITHDRAW_RECOVERY, &sdp->sd_flags); |
| 261 | |
| 262 | /* |
| 263 | * At this point our journal is evicted, so we need to get a new inode |
| 264 | * for it. Once done, we need to call gfs2_find_jhead which |
| 265 | * calls gfs2_map_journal_extents to map it for us again. |
| 266 | * |
| 267 | * Note that we don't really want it to look up a FREE block. The |
| 268 | * GFS2_BLKST_FREE simply overrides a block check in gfs2_inode_lookup |
| 269 | * which would otherwise fail because it requires grabbing an rgrp |
| 270 | * glock, which would fail with -EIO because we're withdrawing. |
| 271 | */ |
| 272 | inode = gfs2_inode_lookup(sdp->sd_vfs, DT_UNKNOWN, |
| 273 | sdp->sd_jdesc->jd_no_addr, no_formal_ino, |
| 274 | GFS2_BLKST_FREE); |
| 275 | if (IS_ERR(inode)) { |
| 276 | fs_warn(sdp, "Reprocessing of jid %d failed with %ld.\n", |
| 277 | sdp->sd_lockstruct.ls_jid, PTR_ERR(inode)); |
| 278 | goto skip_recovery; |
| 279 | } |
| 280 | sdp->sd_jdesc->jd_inode = inode; |
Bob Peterson | 1b8550b | 2021-07-30 12:40:25 -0500 | [diff] [blame] | 281 | d_mark_dontcache(inode); |
Bob Peterson | 601ef0d | 2020-01-28 20:23:45 +0100 | [diff] [blame] | 282 | |
| 283 | /* |
| 284 | * Now wait until recovery is complete. |
| 285 | */ |
| 286 | for (tries = 0; tries < 10; tries++) { |
Bob Peterson | 7d9f924 | 2019-02-18 13:04:13 -0700 | [diff] [blame] | 287 | ret = check_journal_clean(sdp, sdp->sd_jdesc, false); |
Bob Peterson | 601ef0d | 2020-01-28 20:23:45 +0100 | [diff] [blame] | 288 | if (!ret) |
| 289 | break; |
| 290 | msleep(HZ); |
| 291 | fs_warn(sdp, "Waiting for journal recovery jid %d.\n", |
| 292 | sdp->sd_lockstruct.ls_jid); |
| 293 | } |
| 294 | skip_recovery: |
| 295 | if (!ret) |
| 296 | fs_warn(sdp, "Journal recovery complete for jid %d.\n", |
| 297 | sdp->sd_lockstruct.ls_jid); |
| 298 | else |
Bob Peterson | 7392fbb | 2021-07-26 12:53:12 -0500 | [diff] [blame] | 299 | fs_warn(sdp, "Journal recovery skipped for jid %d until next " |
Bob Peterson | 601ef0d | 2020-01-28 20:23:45 +0100 | [diff] [blame] | 300 | "mount.\n", sdp->sd_lockstruct.ls_jid); |
| 301 | fs_warn(sdp, "Glock dequeues delayed: %lu\n", sdp->sd_glock_dqs_held); |
| 302 | sdp->sd_glock_dqs_held = 0; |
| 303 | wake_up_bit(&sdp->sd_flags, SDF_WITHDRAW_RECOVERY); |
| 304 | } |
| 305 | |
Andreas Gruenbacher | badb55e | 2020-01-23 18:41:00 +0100 | [diff] [blame] | 306 | void gfs2_lm(struct gfs2_sbd *sdp, const char *fmt, ...) |
| 307 | { |
| 308 | struct va_format vaf; |
| 309 | va_list args; |
| 310 | |
| 311 | if (sdp->sd_args.ar_errors == GFS2_ERRORS_WITHDRAW && |
| 312 | test_bit(SDF_WITHDRAWN, &sdp->sd_flags)) |
| 313 | return; |
| 314 | |
| 315 | va_start(args, fmt); |
| 316 | vaf.fmt = fmt; |
| 317 | vaf.va = &args; |
| 318 | fs_err(sdp, "%pV", &vaf); |
| 319 | va_end(args); |
| 320 | } |
| 321 | |
| 322 | int gfs2_withdraw(struct gfs2_sbd *sdp) |
Steven Whitehouse | da755fd | 2008-01-30 15:34:04 +0000 | [diff] [blame] | 323 | { |
Steven Whitehouse | f057f6c | 2009-01-12 10:43:39 +0000 | [diff] [blame] | 324 | struct lm_lockstruct *ls = &sdp->sd_lockstruct; |
| 325 | const struct lm_lockops *lm = ls->ls_ops; |
Steven Whitehouse | da755fd | 2008-01-30 15:34:04 +0000 | [diff] [blame] | 326 | |
Bob Peterson | d34843d | 2009-08-24 10:44:18 +0100 | [diff] [blame] | 327 | if (sdp->sd_args.ar_errors == GFS2_ERRORS_WITHDRAW && |
Bob Peterson | 601ef0d | 2020-01-28 20:23:45 +0100 | [diff] [blame] | 328 | test_and_set_bit(SDF_WITHDRAWN, &sdp->sd_flags)) { |
| 329 | if (!test_bit(SDF_WITHDRAW_IN_PROG, &sdp->sd_flags)) |
| 330 | return -1; |
| 331 | |
| 332 | wait_on_bit(&sdp->sd_flags, SDF_WITHDRAW_IN_PROG, |
| 333 | TASK_UNINTERRUPTIBLE); |
| 334 | return -1; |
| 335 | } |
| 336 | |
| 337 | set_bit(SDF_WITHDRAW_IN_PROG, &sdp->sd_flags); |
Steven Whitehouse | da755fd | 2008-01-30 15:34:04 +0000 | [diff] [blame] | 338 | |
Bob Peterson | d34843d | 2009-08-24 10:44:18 +0100 | [diff] [blame] | 339 | if (sdp->sd_args.ar_errors == GFS2_ERRORS_WITHDRAW) { |
| 340 | fs_err(sdp, "about to withdraw this file system\n"); |
| 341 | BUG_ON(sdp->sd_args.ar_debug); |
Steven Whitehouse | da755fd | 2008-01-30 15:34:04 +0000 | [diff] [blame] | 342 | |
Bob Peterson | 601ef0d | 2020-01-28 20:23:45 +0100 | [diff] [blame] | 343 | signal_our_withdraw(sdp); |
| 344 | |
Bob Peterson | d34843d | 2009-08-24 10:44:18 +0100 | [diff] [blame] | 345 | kobject_uevent(&sdp->sd_kobj, KOBJ_OFFLINE); |
Steven Whitehouse | f057f6c | 2009-01-12 10:43:39 +0000 | [diff] [blame] | 346 | |
Steven Whitehouse | fd95e81 | 2013-02-13 12:21:40 +0000 | [diff] [blame] | 347 | if (!strcmp(sdp->sd_lockstruct.ls_ops->lm_proto_name, "lock_dlm")) |
| 348 | wait_for_completion(&sdp->sd_wdack); |
| 349 | |
Bob Peterson | d34843d | 2009-08-24 10:44:18 +0100 | [diff] [blame] | 350 | if (lm->lm_unmount) { |
| 351 | fs_err(sdp, "telling LM to unmount\n"); |
| 352 | lm->lm_unmount(sdp); |
| 353 | } |
Benjamin Marzinski | 3e11e530 | 2016-03-23 14:29:59 -0400 | [diff] [blame] | 354 | set_bit(SDF_SKIP_DLM_UNLOCK, &sdp->sd_flags); |
Bob Peterson | 601ef0d | 2020-01-28 20:23:45 +0100 | [diff] [blame] | 355 | fs_err(sdp, "File system withdrawn\n"); |
Bob Peterson | d34843d | 2009-08-24 10:44:18 +0100 | [diff] [blame] | 356 | dump_stack(); |
Bob Peterson | 601ef0d | 2020-01-28 20:23:45 +0100 | [diff] [blame] | 357 | clear_bit(SDF_WITHDRAW_IN_PROG, &sdp->sd_flags); |
| 358 | smp_mb__after_atomic(); |
| 359 | wake_up_bit(&sdp->sd_flags, SDF_WITHDRAW_IN_PROG); |
Steven Whitehouse | f057f6c | 2009-01-12 10:43:39 +0000 | [diff] [blame] | 360 | } |
Bob Peterson | d34843d | 2009-08-24 10:44:18 +0100 | [diff] [blame] | 361 | |
| 362 | if (sdp->sd_args.ar_errors == GFS2_ERRORS_PANIC) |
Joe Perches | d77d1b5 | 2014-03-06 12:10:45 -0800 | [diff] [blame] | 363 | panic("GFS2: fsid=%s: panic requested\n", sdp->sd_fsname); |
Steven Whitehouse | da755fd | 2008-01-30 15:34:04 +0000 | [diff] [blame] | 364 | |
| 365 | return -1; |
| 366 | } |
| 367 | |
Lee Jones | c551f66 | 2021-03-30 17:44:29 +0100 | [diff] [blame] | 368 | /* |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 369 | * gfs2_assert_withdraw_i - Cause the machine to withdraw if @assertion is false |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 370 | */ |
| 371 | |
Andreas Gruenbacher | 8e28ef1 | 2020-01-23 19:36:21 +0100 | [diff] [blame] | 372 | void gfs2_assert_withdraw_i(struct gfs2_sbd *sdp, char *assertion, |
Bob Peterson | ca399c96 | 2020-01-08 11:37:30 -0600 | [diff] [blame] | 373 | const char *function, char *file, unsigned int line, |
| 374 | bool delayed) |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 375 | { |
Bob Peterson | ca399c96 | 2020-01-08 11:37:30 -0600 | [diff] [blame] | 376 | if (gfs2_withdrawn(sdp)) |
| 377 | return; |
| 378 | |
| 379 | fs_err(sdp, |
| 380 | "fatal: assertion \"%s\" failed\n" |
| 381 | " function = %s, file = %s, line = %u\n", |
| 382 | assertion, function, file, line); |
| 383 | |
| 384 | /* |
| 385 | * If errors=panic was specified on mount, it won't help to delay the |
| 386 | * withdraw. |
| 387 | */ |
| 388 | if (sdp->sd_args.ar_errors == GFS2_ERRORS_PANIC) |
| 389 | delayed = false; |
| 390 | |
| 391 | if (delayed) |
| 392 | gfs2_withdraw_delayed(sdp); |
| 393 | else |
| 394 | gfs2_withdraw(sdp); |
Steven Whitehouse | 18ec7d5 | 2006-02-08 11:50:51 +0000 | [diff] [blame] | 395 | dump_stack(); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 396 | } |
| 397 | |
Lee Jones | c551f66 | 2021-03-30 17:44:29 +0100 | [diff] [blame] | 398 | /* |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 399 | * gfs2_assert_warn_i - Print a message to the console if @assertion is false |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 400 | */ |
| 401 | |
Andreas Gruenbacher | 8e28ef1 | 2020-01-23 19:36:21 +0100 | [diff] [blame] | 402 | void gfs2_assert_warn_i(struct gfs2_sbd *sdp, char *assertion, |
| 403 | const char *function, char *file, unsigned int line) |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 404 | { |
| 405 | if (time_before(jiffies, |
| 406 | sdp->sd_last_warning + |
| 407 | gfs2_tune_get(sdp, gt_complain_secs) * HZ)) |
Andreas Gruenbacher | 8e28ef1 | 2020-01-23 19:36:21 +0100 | [diff] [blame] | 408 | return; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 409 | |
Bob Peterson | d34843d | 2009-08-24 10:44:18 +0100 | [diff] [blame] | 410 | if (sdp->sd_args.ar_errors == GFS2_ERRORS_WITHDRAW) |
Joe Perches | 8382e26 | 2014-03-06 12:10:46 -0800 | [diff] [blame] | 411 | fs_warn(sdp, "warning: assertion \"%s\" failed at function = %s, file = %s, line = %u\n", |
| 412 | assertion, function, file, line); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 413 | |
| 414 | if (sdp->sd_args.ar_debug) |
| 415 | BUG(); |
Steven Whitehouse | 18ec7d5 | 2006-02-08 11:50:51 +0000 | [diff] [blame] | 416 | else |
| 417 | dump_stack(); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 418 | |
Bob Peterson | d34843d | 2009-08-24 10:44:18 +0100 | [diff] [blame] | 419 | if (sdp->sd_args.ar_errors == GFS2_ERRORS_PANIC) |
| 420 | panic("GFS2: fsid=%s: warning: assertion \"%s\" failed\n" |
| 421 | "GFS2: fsid=%s: function = %s, file = %s, line = %u\n", |
| 422 | sdp->sd_fsname, assertion, |
| 423 | sdp->sd_fsname, function, file, line); |
| 424 | |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 425 | sdp->sd_last_warning = jiffies; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 426 | } |
| 427 | |
Lee Jones | c551f66 | 2021-03-30 17:44:29 +0100 | [diff] [blame] | 428 | /* |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 429 | * gfs2_consist_i - Flag a filesystem consistency error and withdraw |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 430 | */ |
| 431 | |
Andreas Gruenbacher | a5ca2f1 | 2020-01-23 19:31:06 +0100 | [diff] [blame] | 432 | void gfs2_consist_i(struct gfs2_sbd *sdp, const char *function, |
| 433 | char *file, unsigned int line) |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 434 | { |
Andreas Gruenbacher | badb55e | 2020-01-23 18:41:00 +0100 | [diff] [blame] | 435 | gfs2_lm(sdp, |
| 436 | "fatal: filesystem consistency error - function = %s, file = %s, line = %u\n", |
| 437 | function, file, line); |
Andreas Gruenbacher | a5ca2f1 | 2020-01-23 19:31:06 +0100 | [diff] [blame] | 438 | gfs2_withdraw(sdp); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 439 | } |
| 440 | |
Lee Jones | c551f66 | 2021-03-30 17:44:29 +0100 | [diff] [blame] | 441 | /* |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 442 | * gfs2_consist_inode_i - Flag an inode consistency error and withdraw |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 443 | */ |
| 444 | |
Andreas Gruenbacher | a5ca2f1 | 2020-01-23 19:31:06 +0100 | [diff] [blame] | 445 | void gfs2_consist_inode_i(struct gfs2_inode *ip, |
| 446 | const char *function, char *file, unsigned int line) |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 447 | { |
Steven Whitehouse | feaa7bb | 2006-06-14 15:32:57 -0400 | [diff] [blame] | 448 | struct gfs2_sbd *sdp = GFS2_SB(&ip->i_inode); |
Andreas Gruenbacher | badb55e | 2020-01-23 18:41:00 +0100 | [diff] [blame] | 449 | |
| 450 | gfs2_lm(sdp, |
| 451 | "fatal: filesystem consistency error\n" |
| 452 | " inode = %llu %llu\n" |
| 453 | " function = %s, file = %s, line = %u\n", |
| 454 | (unsigned long long)ip->i_no_formal_ino, |
| 455 | (unsigned long long)ip->i_no_addr, |
| 456 | function, file, line); |
Bob Peterson | a739765 | 2021-09-30 07:48:29 -0500 | [diff] [blame] | 457 | gfs2_dump_glock(NULL, ip->i_gl, 1); |
Andreas Gruenbacher | a5ca2f1 | 2020-01-23 19:31:06 +0100 | [diff] [blame] | 458 | gfs2_withdraw(sdp); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 459 | } |
| 460 | |
Lee Jones | c551f66 | 2021-03-30 17:44:29 +0100 | [diff] [blame] | 461 | /* |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 462 | * gfs2_consist_rgrpd_i - Flag a RG consistency error and withdraw |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 463 | */ |
| 464 | |
Andreas Gruenbacher | a5ca2f1 | 2020-01-23 19:31:06 +0100 | [diff] [blame] | 465 | void gfs2_consist_rgrpd_i(struct gfs2_rgrpd *rgd, |
| 466 | const char *function, char *file, unsigned int line) |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 467 | { |
| 468 | struct gfs2_sbd *sdp = rgd->rd_sbd; |
Bob Peterson | 98fb057 | 2019-08-13 09:25:15 -0400 | [diff] [blame] | 469 | char fs_id_buf[sizeof(sdp->sd_fsname) + 7]; |
Bob Peterson | 72244b6 | 2018-08-15 12:09:49 -0500 | [diff] [blame] | 470 | |
Bob Peterson | 3792ce9 | 2019-05-09 09:21:48 -0500 | [diff] [blame] | 471 | sprintf(fs_id_buf, "fsid=%s: ", sdp->sd_fsname); |
Andrew Price | 0e539ca | 2020-10-07 12:30:58 +0100 | [diff] [blame] | 472 | gfs2_rgrp_dump(NULL, rgd, fs_id_buf); |
Andreas Gruenbacher | badb55e | 2020-01-23 18:41:00 +0100 | [diff] [blame] | 473 | gfs2_lm(sdp, |
| 474 | "fatal: filesystem consistency error\n" |
| 475 | " RG = %llu\n" |
| 476 | " function = %s, file = %s, line = %u\n", |
| 477 | (unsigned long long)rgd->rd_addr, |
| 478 | function, file, line); |
Bob Peterson | a739765 | 2021-09-30 07:48:29 -0500 | [diff] [blame] | 479 | gfs2_dump_glock(NULL, rgd->rd_gl, 1); |
Andreas Gruenbacher | a5ca2f1 | 2020-01-23 19:31:06 +0100 | [diff] [blame] | 480 | gfs2_withdraw(sdp); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 481 | } |
| 482 | |
Lee Jones | c551f66 | 2021-03-30 17:44:29 +0100 | [diff] [blame] | 483 | /* |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 484 | * gfs2_meta_check_ii - Flag a magic number consistency error and withdraw |
| 485 | * Returns: -1 if this call withdrew the machine, |
| 486 | * -2 if it was already withdrawn |
| 487 | */ |
| 488 | |
| 489 | int gfs2_meta_check_ii(struct gfs2_sbd *sdp, struct buffer_head *bh, |
| 490 | const char *type, const char *function, char *file, |
| 491 | unsigned int line) |
| 492 | { |
| 493 | int me; |
Andreas Gruenbacher | badb55e | 2020-01-23 18:41:00 +0100 | [diff] [blame] | 494 | |
| 495 | gfs2_lm(sdp, |
| 496 | "fatal: invalid metadata block\n" |
| 497 | " bh = %llu (%s)\n" |
| 498 | " function = %s, file = %s, line = %u\n", |
| 499 | (unsigned long long)bh->b_blocknr, type, |
| 500 | function, file, line); |
| 501 | me = gfs2_withdraw(sdp); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 502 | return (me) ? -1 : -2; |
| 503 | } |
| 504 | |
Lee Jones | c551f66 | 2021-03-30 17:44:29 +0100 | [diff] [blame] | 505 | /* |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 506 | * gfs2_metatype_check_ii - Flag a metadata type consistency error and withdraw |
| 507 | * Returns: -1 if this call withdrew the machine, |
| 508 | * -2 if it was already withdrawn |
| 509 | */ |
| 510 | |
| 511 | int gfs2_metatype_check_ii(struct gfs2_sbd *sdp, struct buffer_head *bh, |
Steven Whitehouse | cd91549 | 2006-09-04 12:49:07 -0400 | [diff] [blame] | 512 | u16 type, u16 t, const char *function, |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 513 | char *file, unsigned int line) |
| 514 | { |
| 515 | int me; |
Andreas Gruenbacher | badb55e | 2020-01-23 18:41:00 +0100 | [diff] [blame] | 516 | |
| 517 | gfs2_lm(sdp, |
| 518 | "fatal: invalid metadata block\n" |
| 519 | " bh = %llu (type: exp=%u, found=%u)\n" |
| 520 | " function = %s, file = %s, line = %u\n", |
| 521 | (unsigned long long)bh->b_blocknr, type, t, |
| 522 | function, file, line); |
| 523 | me = gfs2_withdraw(sdp); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 524 | return (me) ? -1 : -2; |
| 525 | } |
| 526 | |
Lee Jones | c551f66 | 2021-03-30 17:44:29 +0100 | [diff] [blame] | 527 | /* |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 528 | * gfs2_io_error_i - Flag an I/O error and withdraw |
| 529 | * Returns: -1 if this call withdrew the machine, |
| 530 | * 0 if it was already withdrawn |
| 531 | */ |
| 532 | |
| 533 | int gfs2_io_error_i(struct gfs2_sbd *sdp, const char *function, char *file, |
| 534 | unsigned int line) |
| 535 | { |
Andreas Gruenbacher | badb55e | 2020-01-23 18:41:00 +0100 | [diff] [blame] | 536 | gfs2_lm(sdp, |
| 537 | "fatal: I/O error\n" |
| 538 | " function = %s, file = %s, line = %u\n", |
| 539 | function, file, line); |
| 540 | return gfs2_withdraw(sdp); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 541 | } |
| 542 | |
Lee Jones | c551f66 | 2021-03-30 17:44:29 +0100 | [diff] [blame] | 543 | /* |
Andreas Gruenbacher | 9e1a9ec | 2018-06-07 11:56:46 +0100 | [diff] [blame] | 544 | * gfs2_io_error_bh_i - Flag a buffer I/O error |
| 545 | * @withdraw: withdraw the filesystem |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 546 | */ |
| 547 | |
Andreas Gruenbacher | 9e1a9ec | 2018-06-07 11:56:46 +0100 | [diff] [blame] | 548 | void gfs2_io_error_bh_i(struct gfs2_sbd *sdp, struct buffer_head *bh, |
| 549 | const char *function, char *file, unsigned int line, |
| 550 | bool withdraw) |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 551 | { |
Bob Peterson | 6951108 | 2019-02-12 13:43:55 -0700 | [diff] [blame] | 552 | if (gfs2_withdrawn(sdp)) |
| 553 | return; |
| 554 | |
| 555 | fs_err(sdp, "fatal: I/O error\n" |
| 556 | " block = %llu\n" |
| 557 | " function = %s, file = %s, line = %u\n", |
| 558 | (unsigned long long)bh->b_blocknr, function, file, line); |
Andreas Gruenbacher | 9e1a9ec | 2018-06-07 11:56:46 +0100 | [diff] [blame] | 559 | if (withdraw) |
Andreas Gruenbacher | badb55e | 2020-01-23 18:41:00 +0100 | [diff] [blame] | 560 | gfs2_withdraw(sdp); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 561 | } |
| 562 | |