blob: 02fb38db9d196227f0e73f4a067259799b848d35 [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
Joe Perchesd77d1b52014-03-06 12:10:45 -080010#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
11
David Teiglandb3b94fa2006-01-16 16:50:04 +000012#include <linux/spinlock.h>
13#include <linux/completion.h>
14#include <linux/buffer_head.h>
15#include <linux/crc32.h>
Steven Whitehouse5c676f62006-02-27 17:23:27 -050016#include <linux/gfs2_ondisk.h>
David Teiglandb3b94fa2006-01-16 16:50:04 +000017#include <asm/uaccess.h>
18
19#include "gfs2.h"
Steven Whitehouse5c676f62006-02-27 17:23:27 -050020#include "incore.h"
David Teiglandb3b94fa2006-01-16 16:50:04 +000021#include "glock.h"
Steven Whitehouse5c676f62006-02-27 17:23:27 -050022#include "util.h"
David Teiglandb3b94fa2006-01-16 16:50:04 +000023
Christoph Lametere18b8902006-12-06 20:33:20 -080024struct kmem_cache *gfs2_glock_cachep __read_mostly;
Steven Whitehouse009d8512009-12-08 12:12:13 +000025struct kmem_cache *gfs2_glock_aspace_cachep __read_mostly;
Christoph Lametere18b8902006-12-06 20:33:20 -080026struct kmem_cache *gfs2_inode_cachep __read_mostly;
27struct kmem_cache *gfs2_bufdata_cachep __read_mostly;
Bob Peterson6bdd9be2008-01-28 17:20:26 -060028struct kmem_cache *gfs2_rgrpd_cachep __read_mostly;
Steven Whitehouse37b2c832008-11-17 14:25:37 +000029struct kmem_cache *gfs2_quotad_cachep __read_mostly;
Bob Peterson36f55802012-04-11 12:59:32 -040030struct kmem_cache *gfs2_rsrv_cachep __read_mostly;
Steven Whitehousee8c92ed2012-04-16 09:28:31 +010031mempool_t *gfs2_page_pool __read_mostly;
David Teiglandb3b94fa2006-01-16 16:50:04 +000032
David Teiglandb3b94fa2006-01-16 16:50:04 +000033void gfs2_assert_i(struct gfs2_sbd *sdp)
34{
Joe Perchesd77d1b52014-03-06 12:10:45 -080035 pr_emerg("fsid=%s: fatal assertion failed\n", sdp->sd_fsname);
David Teiglandb3b94fa2006-01-16 16:50:04 +000036}
37
Steven Whitehouseda755fd2008-01-30 15:34:04 +000038int gfs2_lm_withdraw(struct gfs2_sbd *sdp, char *fmt, ...)
39{
Steven Whitehousef057f6c2009-01-12 10:43:39 +000040 struct lm_lockstruct *ls = &sdp->sd_lockstruct;
41 const struct lm_lockops *lm = ls->ls_ops;
Steven Whitehouseda755fd2008-01-30 15:34:04 +000042 va_list args;
43
Bob Petersond34843d2009-08-24 10:44:18 +010044 if (sdp->sd_args.ar_errors == GFS2_ERRORS_WITHDRAW &&
45 test_and_set_bit(SDF_SHUTDOWN, &sdp->sd_flags))
Steven Whitehouseda755fd2008-01-30 15:34:04 +000046 return 0;
47
48 va_start(args, fmt);
49 vprintk(fmt, args);
50 va_end(args);
51
Bob Petersond34843d2009-08-24 10:44:18 +010052 if (sdp->sd_args.ar_errors == GFS2_ERRORS_WITHDRAW) {
53 fs_err(sdp, "about to withdraw this file system\n");
54 BUG_ON(sdp->sd_args.ar_debug);
Steven Whitehouseda755fd2008-01-30 15:34:04 +000055
Bob Petersond34843d2009-08-24 10:44:18 +010056 kobject_uevent(&sdp->sd_kobj, KOBJ_OFFLINE);
Steven Whitehousef057f6c2009-01-12 10:43:39 +000057
Steven Whitehousefd95e812013-02-13 12:21:40 +000058 if (!strcmp(sdp->sd_lockstruct.ls_ops->lm_proto_name, "lock_dlm"))
59 wait_for_completion(&sdp->sd_wdack);
60
Bob Petersond34843d2009-08-24 10:44:18 +010061 if (lm->lm_unmount) {
62 fs_err(sdp, "telling LM to unmount\n");
63 lm->lm_unmount(sdp);
64 }
65 fs_err(sdp, "withdrawn\n");
66 dump_stack();
Steven Whitehousef057f6c2009-01-12 10:43:39 +000067 }
Bob Petersond34843d2009-08-24 10:44:18 +010068
69 if (sdp->sd_args.ar_errors == GFS2_ERRORS_PANIC)
Joe Perchesd77d1b52014-03-06 12:10:45 -080070 panic("GFS2: fsid=%s: panic requested\n", sdp->sd_fsname);
Steven Whitehouseda755fd2008-01-30 15:34:04 +000071
72 return -1;
73}
74
David Teiglandb3b94fa2006-01-16 16:50:04 +000075/**
76 * gfs2_assert_withdraw_i - Cause the machine to withdraw if @assertion is false
77 * Returns: -1 if this call withdrew the machine,
78 * -2 if it was already withdrawn
79 */
80
81int gfs2_assert_withdraw_i(struct gfs2_sbd *sdp, char *assertion,
82 const char *function, char *file, unsigned int line)
83{
84 int me;
85 me = gfs2_lm_withdraw(sdp,
86 "GFS2: fsid=%s: fatal: assertion \"%s\" failed\n"
87 "GFS2: fsid=%s: function = %s, file = %s, line = %u\n",
88 sdp->sd_fsname, assertion,
89 sdp->sd_fsname, function, file, line);
Steven Whitehouse18ec7d52006-02-08 11:50:51 +000090 dump_stack();
David Teiglandb3b94fa2006-01-16 16:50:04 +000091 return (me) ? -1 : -2;
92}
93
94/**
95 * gfs2_assert_warn_i - Print a message to the console if @assertion is false
96 * Returns: -1 if we printed something
97 * -2 if we didn't
98 */
99
100int gfs2_assert_warn_i(struct gfs2_sbd *sdp, char *assertion,
101 const char *function, char *file, unsigned int line)
102{
103 if (time_before(jiffies,
104 sdp->sd_last_warning +
105 gfs2_tune_get(sdp, gt_complain_secs) * HZ))
106 return -2;
107
Bob Petersond34843d2009-08-24 10:44:18 +0100108 if (sdp->sd_args.ar_errors == GFS2_ERRORS_WITHDRAW)
Joe Perchesd77d1b52014-03-06 12:10:45 -0800109 pr_warn("fsid=%s: warning: assertion \"%s\" failed at function = %s, file = %s, line = %u\n",
110 sdp->sd_fsname, assertion, function, file, line);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000111
112 if (sdp->sd_args.ar_debug)
113 BUG();
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000114 else
115 dump_stack();
David Teiglandb3b94fa2006-01-16 16:50:04 +0000116
Bob Petersond34843d2009-08-24 10:44:18 +0100117 if (sdp->sd_args.ar_errors == GFS2_ERRORS_PANIC)
118 panic("GFS2: fsid=%s: warning: assertion \"%s\" failed\n"
119 "GFS2: fsid=%s: function = %s, file = %s, line = %u\n",
120 sdp->sd_fsname, assertion,
121 sdp->sd_fsname, function, file, line);
122
David Teiglandb3b94fa2006-01-16 16:50:04 +0000123 sdp->sd_last_warning = jiffies;
124
125 return -1;
126}
127
128/**
129 * gfs2_consist_i - Flag a filesystem consistency error and withdraw
130 * Returns: -1 if this call withdrew the machine,
131 * 0 if it was already withdrawn
132 */
133
134int gfs2_consist_i(struct gfs2_sbd *sdp, int cluster_wide, const char *function,
135 char *file, unsigned int line)
136{
137 int rv;
138 rv = gfs2_lm_withdraw(sdp,
139 "GFS2: fsid=%s: fatal: filesystem consistency error\n"
140 "GFS2: fsid=%s: function = %s, file = %s, line = %u\n",
141 sdp->sd_fsname,
142 sdp->sd_fsname, function, file, line);
143 return rv;
144}
145
146/**
147 * gfs2_consist_inode_i - Flag an inode consistency error and withdraw
148 * Returns: -1 if this call withdrew the machine,
149 * 0 if it was already withdrawn
150 */
151
152int gfs2_consist_inode_i(struct gfs2_inode *ip, int cluster_wide,
153 const char *function, char *file, unsigned int line)
154{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400155 struct gfs2_sbd *sdp = GFS2_SB(&ip->i_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000156 int rv;
157 rv = gfs2_lm_withdraw(sdp,
158 "GFS2: fsid=%s: fatal: filesystem consistency error\n"
159 "GFS2: fsid=%s: inode = %llu %llu\n"
160 "GFS2: fsid=%s: function = %s, file = %s, line = %u\n",
161 sdp->sd_fsname,
Steven Whitehousedbb7cae2007-05-15 15:37:50 +0100162 sdp->sd_fsname, (unsigned long long)ip->i_no_formal_ino,
163 (unsigned long long)ip->i_no_addr,
David Teiglandb3b94fa2006-01-16 16:50:04 +0000164 sdp->sd_fsname, function, file, line);
165 return rv;
166}
167
168/**
169 * gfs2_consist_rgrpd_i - Flag a RG consistency error and withdraw
170 * Returns: -1 if this call withdrew the machine,
171 * 0 if it was already withdrawn
172 */
173
174int gfs2_consist_rgrpd_i(struct gfs2_rgrpd *rgd, int cluster_wide,
175 const char *function, char *file, unsigned int line)
176{
177 struct gfs2_sbd *sdp = rgd->rd_sbd;
178 int rv;
179 rv = gfs2_lm_withdraw(sdp,
180 "GFS2: fsid=%s: fatal: filesystem consistency error\n"
181 "GFS2: fsid=%s: RG = %llu\n"
182 "GFS2: fsid=%s: function = %s, file = %s, line = %u\n",
183 sdp->sd_fsname,
Steven Whitehousebb8d8a62007-06-01 14:11:58 +0100184 sdp->sd_fsname, (unsigned long long)rgd->rd_addr,
David Teiglandb3b94fa2006-01-16 16:50:04 +0000185 sdp->sd_fsname, function, file, line);
186 return rv;
187}
188
189/**
190 * gfs2_meta_check_ii - Flag a magic number consistency error and withdraw
191 * Returns: -1 if this call withdrew the machine,
192 * -2 if it was already withdrawn
193 */
194
195int gfs2_meta_check_ii(struct gfs2_sbd *sdp, struct buffer_head *bh,
196 const char *type, const char *function, char *file,
197 unsigned int line)
198{
199 int me;
200 me = gfs2_lm_withdraw(sdp,
201 "GFS2: fsid=%s: fatal: invalid metadata block\n"
202 "GFS2: fsid=%s: bh = %llu (%s)\n"
203 "GFS2: fsid=%s: function = %s, file = %s, line = %u\n",
204 sdp->sd_fsname,
Steven Whitehouse382066d2006-05-24 10:22:09 -0400205 sdp->sd_fsname, (unsigned long long)bh->b_blocknr, type,
David Teiglandb3b94fa2006-01-16 16:50:04 +0000206 sdp->sd_fsname, function, file, line);
207 return (me) ? -1 : -2;
208}
209
210/**
211 * gfs2_metatype_check_ii - Flag a metadata type consistency error and withdraw
212 * Returns: -1 if this call withdrew the machine,
213 * -2 if it was already withdrawn
214 */
215
216int gfs2_metatype_check_ii(struct gfs2_sbd *sdp, struct buffer_head *bh,
Steven Whitehousecd915492006-09-04 12:49:07 -0400217 u16 type, u16 t, const char *function,
David Teiglandb3b94fa2006-01-16 16:50:04 +0000218 char *file, unsigned int line)
219{
220 int me;
221 me = gfs2_lm_withdraw(sdp,
222 "GFS2: fsid=%s: fatal: invalid metadata block\n"
223 "GFS2: fsid=%s: bh = %llu (type: exp=%u, found=%u)\n"
224 "GFS2: fsid=%s: function = %s, file = %s, line = %u\n",
225 sdp->sd_fsname,
Steven Whitehouse382066d2006-05-24 10:22:09 -0400226 sdp->sd_fsname, (unsigned long long)bh->b_blocknr, type, t,
David Teiglandb3b94fa2006-01-16 16:50:04 +0000227 sdp->sd_fsname, function, file, line);
228 return (me) ? -1 : -2;
229}
230
231/**
232 * gfs2_io_error_i - Flag an I/O error and withdraw
233 * Returns: -1 if this call withdrew the machine,
234 * 0 if it was already withdrawn
235 */
236
237int gfs2_io_error_i(struct gfs2_sbd *sdp, const char *function, char *file,
238 unsigned int line)
239{
240 int rv;
241 rv = gfs2_lm_withdraw(sdp,
242 "GFS2: fsid=%s: fatal: I/O error\n"
243 "GFS2: fsid=%s: function = %s, file = %s, line = %u\n",
244 sdp->sd_fsname,
245 sdp->sd_fsname, function, file, line);
246 return rv;
247}
248
249/**
250 * gfs2_io_error_bh_i - Flag a buffer I/O error and withdraw
251 * Returns: -1 if this call withdrew the machine,
252 * 0 if it was already withdrawn
253 */
254
255int gfs2_io_error_bh_i(struct gfs2_sbd *sdp, struct buffer_head *bh,
256 const char *function, char *file, unsigned int line)
257{
258 int rv;
259 rv = gfs2_lm_withdraw(sdp,
260 "GFS2: fsid=%s: fatal: I/O error\n"
261 "GFS2: fsid=%s: block = %llu\n"
262 "GFS2: fsid=%s: function = %s, file = %s, line = %u\n",
263 sdp->sd_fsname,
Steven Whitehouse382066d2006-05-24 10:22:09 -0400264 sdp->sd_fsname, (unsigned long long)bh->b_blocknr,
David Teiglandb3b94fa2006-01-16 16:50:04 +0000265 sdp->sd_fsname, function, file, line);
266 return rv;
267}
268