[XFS] call common xfs vfs-level helpers directly and remove vfs operations
[linux-2.6-block.git] / fs / xfs / xfs_error.c
CommitLineData
1da177e4 1/*
7b718769
NS
2 * Copyright (c) 2000-2001,2005 Silicon Graphics, Inc.
3 * All Rights Reserved.
1da177e4 4 *
7b718769
NS
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License as
1da177e4
LT
7 * published by the Free Software Foundation.
8 *
7b718769
NS
9 * This program is distributed in the hope that it would be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
1da177e4 13 *
7b718769
NS
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write the Free Software Foundation,
16 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
1da177e4 17 */
1da177e4 18#include "xfs.h"
a844f451 19#include "xfs_fs.h"
1da177e4 20#include "xfs_types.h"
1da177e4 21#include "xfs_log.h"
a844f451 22#include "xfs_inum.h"
1da177e4 23#include "xfs_trans.h"
a844f451 24#include "xfs_sb.h"
da353b0d 25#include "xfs_ag.h"
1da177e4
LT
26#include "xfs_dir2.h"
27#include "xfs_dmapi.h"
28#include "xfs_mount.h"
29#include "xfs_bmap_btree.h"
1da177e4 30#include "xfs_dir2_sf.h"
a844f451 31#include "xfs_attr_sf.h"
1da177e4
LT
32#include "xfs_dinode.h"
33#include "xfs_inode.h"
34#include "xfs_utils.h"
35#include "xfs_error.h"
36
37#ifdef DEBUG
38
39int xfs_etrap[XFS_ERROR_NTRAP] = {
40 0,
41};
42
43int
44xfs_error_trap(int e)
45{
46 int i;
47
48 if (!e)
49 return 0;
50 for (i = 0; i < XFS_ERROR_NTRAP; i++) {
51 if (xfs_etrap[i] == 0)
52 break;
53 if (e != xfs_etrap[i])
54 continue;
55 cmn_err(CE_NOTE, "xfs_error_trap: error %d", e);
1da177e4
LT
56 BUG();
57 break;
58 }
59 return e;
60}
61#endif
62
63#if (defined(DEBUG) || defined(INDUCE_IO_ERROR))
64
65int xfs_etest[XFS_NUM_INJECT_ERROR];
66int64_t xfs_etest_fsid[XFS_NUM_INJECT_ERROR];
67char * xfs_etest_fsname[XFS_NUM_INJECT_ERROR];
68
69void
70xfs_error_test_init(void)
71{
72 memset(xfs_etest, 0, sizeof(xfs_etest));
73 memset(xfs_etest_fsid, 0, sizeof(xfs_etest_fsid));
74 memset(xfs_etest_fsname, 0, sizeof(xfs_etest_fsname));
75}
76
77int
78xfs_error_test(int error_tag, int *fsidp, char *expression,
79 int line, char *file, unsigned long randfactor)
80{
81 int i;
82 int64_t fsid;
83
e7a23a9b 84 if (random32() % randfactor)
1da177e4
LT
85 return 0;
86
87 memcpy(&fsid, fsidp, sizeof(xfs_fsid_t));
88
89 for (i = 0; i < XFS_NUM_INJECT_ERROR; i++) {
90 if (xfs_etest[i] == error_tag && xfs_etest_fsid[i] == fsid) {
91 cmn_err(CE_WARN,
92 "Injecting error (%s) at file %s, line %d, on filesystem \"%s\"",
93 expression, file, line, xfs_etest_fsname[i]);
94 return 1;
95 }
96 }
97
98 return 0;
99}
100
101int
102xfs_errortag_add(int error_tag, xfs_mount_t *mp)
103{
104 int i;
105 int len;
106 int64_t fsid;
107
108 memcpy(&fsid, mp->m_fixedfsid, sizeof(xfs_fsid_t));
109
110 for (i = 0; i < XFS_NUM_INJECT_ERROR; i++) {
111 if (xfs_etest_fsid[i] == fsid && xfs_etest[i] == error_tag) {
112 cmn_err(CE_WARN, "XFS error tag #%d on", error_tag);
113 return 0;
114 }
115 }
116
117 for (i = 0; i < XFS_NUM_INJECT_ERROR; i++) {
118 if (xfs_etest[i] == 0) {
119 cmn_err(CE_WARN, "Turned on XFS error tag #%d",
120 error_tag);
121 xfs_etest[i] = error_tag;
122 xfs_etest_fsid[i] = fsid;
123 len = strlen(mp->m_fsname);
124 xfs_etest_fsname[i] = kmem_alloc(len + 1, KM_SLEEP);
125 strcpy(xfs_etest_fsname[i], mp->m_fsname);
126 return 0;
127 }
128 }
129
130 cmn_err(CE_WARN, "error tag overflow, too many turned on");
131
132 return 1;
133}
134
1da177e4
LT
135int
136xfs_errortag_clearall_umount(int64_t fsid, char *fsname, int loud)
137{
138 int i;
139 int cleared = 0;
140
141 for (i = 0; i < XFS_NUM_INJECT_ERROR; i++) {
142 if ((fsid == 0LL || xfs_etest_fsid[i] == fsid) &&
143 xfs_etest[i] != 0) {
144 cleared = 1;
145 cmn_err(CE_WARN, "Clearing XFS error tag #%d",
146 xfs_etest[i]);
147 xfs_etest[i] = 0;
148 xfs_etest_fsid[i] = 0LL;
149 kmem_free(xfs_etest_fsname[i],
150 strlen(xfs_etest_fsname[i]) + 1);
151 xfs_etest_fsname[i] = NULL;
152 }
153 }
154
155 if (loud || cleared)
156 cmn_err(CE_WARN,
157 "Cleared all XFS error tags for filesystem \"%s\"",
158 fsname);
159
160 return 0;
161}
162
163int
164xfs_errortag_clearall(xfs_mount_t *mp)
165{
166 int64_t fsid;
167
168 memcpy(&fsid, mp->m_fixedfsid, sizeof(xfs_fsid_t));
169
170 return xfs_errortag_clearall_umount(fsid, mp->m_fsname, 1);
171}
172#endif /* DEBUG || INDUCE_IO_ERROR */
173
174static void
175xfs_fs_vcmn_err(int level, xfs_mount_t *mp, char *fmt, va_list ap)
176{
177 if (mp != NULL) {
178 char *newfmt;
179 int len = 16 + mp->m_fsname_len + strlen(fmt);
180
181 newfmt = kmem_alloc(len, KM_SLEEP);
182 sprintf(newfmt, "Filesystem \"%s\": %s", mp->m_fsname, fmt);
183 icmn_err(level, newfmt, ap);
184 kmem_free(newfmt, len);
185 } else {
186 icmn_err(level, fmt, ap);
187 }
188}
189
190void
191xfs_fs_cmn_err(int level, xfs_mount_t *mp, char *fmt, ...)
192{
193 va_list ap;
194
195 va_start(ap, fmt);
196 xfs_fs_vcmn_err(level, mp, fmt, ap);
197 va_end(ap);
198}
199
200void
201xfs_cmn_err(int panic_tag, int level, xfs_mount_t *mp, char *fmt, ...)
202{
203 va_list ap;
204
205#ifdef DEBUG
206 xfs_panic_mask |= XFS_PTAG_SHUTDOWN_CORRUPT;
207#endif
208
209 if (xfs_panic_mask && (xfs_panic_mask & panic_tag)
210 && (level & CE_ALERT)) {
211 level &= ~CE_ALERT;
212 level |= CE_PANIC;
213 cmn_err(CE_ALERT, "XFS: Transforming an alert into a BUG.");
214 }
215 va_start(ap, fmt);
216 xfs_fs_vcmn_err(level, mp, fmt, ap);
217 va_end(ap);
218}
219
220void
221xfs_error_report(
222 char *tag,
223 int level,
224 xfs_mount_t *mp,
225 char *fname,
226 int linenum,
227 inst_t *ra)
228{
229 if (level <= xfs_error_level) {
230 xfs_cmn_err(XFS_PTAG_ERROR_REPORT,
231 CE_ALERT, mp,
232 "XFS internal error %s at line %d of file %s. Caller 0x%p\n",
233 tag, linenum, fname, ra);
234
235 xfs_stack_trace();
236 }
237}
238
ba0f32d4 239STATIC void
1da177e4
LT
240xfs_hex_dump(void *p, int length)
241{
242 __uint8_t *uip = (__uint8_t*)p;
243 int i;
244 char sbuf[128], *s;
245
246 s = sbuf;
247 *s = '\0';
248 for (i=0; i<length; i++, uip++) {
249 if ((i % 16) == 0) {
250 if (*s != '\0')
251 cmn_err(CE_ALERT, "%s\n", sbuf);
252 s = sbuf;
253 sprintf(s, "0x%x: ", i);
254 while( *s != '\0')
255 s++;
256 }
257 sprintf(s, "%02x ", *uip);
258
259 /*
260 * the kernel sprintf is a void; user sprintf returns
261 * the sprintf'ed string's length. Find the new end-
262 * of-string
263 */
264 while( *s != '\0')
265 s++;
266 }
267 cmn_err(CE_ALERT, "%s\n", sbuf);
268}
269
270void
271xfs_corruption_error(
272 char *tag,
273 int level,
274 xfs_mount_t *mp,
275 void *p,
276 char *fname,
277 int linenum,
278 inst_t *ra)
279{
280 if (level <= xfs_error_level)
281 xfs_hex_dump(p, 16);
282 xfs_error_report(tag, level, mp, fname, linenum, ra);
283}