blob: f66756cfb5e8c0c327305212910c53eba7c98443 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Nathan Scott7b718762005-11-02 14:58:39 +11002 * Copyright (c) 2000-2001,2005 Silicon Graphics, Inc.
3 * All Rights Reserved.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 *
Nathan Scott7b718762005-11-02 14:58:39 +11005 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License as
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 * published by the Free Software Foundation.
8 *
Nathan Scott7b718762005-11-02 14:58:39 +11009 * 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.
Linus Torvalds1da177e2005-04-16 15:20:36 -070013 *
Nathan Scott7b718762005-11-02 14:58:39 +110014 * 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
Linus Torvalds1da177e2005-04-16 15:20:36 -070017 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include "xfs.h"
Nathan Scotta844f452005-11-02 14:38:42 +110019#include "xfs_fs.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include "xfs_types.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#include "xfs_log.h"
Nathan Scotta844f452005-11-02 14:38:42 +110022#include "xfs_inum.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#include "xfs_trans.h"
Nathan Scotta844f452005-11-02 14:38:42 +110024#include "xfs_sb.h"
David Chinnerda353b02007-08-28 14:00:13 +100025#include "xfs_ag.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include "xfs_dir2.h"
27#include "xfs_dmapi.h"
28#include "xfs_mount.h"
29#include "xfs_bmap_btree.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include "xfs_dir2_sf.h"
Nathan Scotta844f452005-11-02 14:38:42 +110031#include "xfs_attr_sf.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#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);
Linus Torvalds1da177e2005-04-16 15:20:36 -070056 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
Linus Torvalds1da177e2005-04-16 15:20:36 -070069int
70xfs_error_test(int error_tag, int *fsidp, char *expression,
71 int line, char *file, unsigned long randfactor)
72{
73 int i;
74 int64_t fsid;
75
Joe Perchese7a23a92007-05-08 13:49:03 +100076 if (random32() % randfactor)
Linus Torvalds1da177e2005-04-16 15:20:36 -070077 return 0;
78
79 memcpy(&fsid, fsidp, sizeof(xfs_fsid_t));
80
81 for (i = 0; i < XFS_NUM_INJECT_ERROR; i++) {
82 if (xfs_etest[i] == error_tag && xfs_etest_fsid[i] == fsid) {
83 cmn_err(CE_WARN,
84 "Injecting error (%s) at file %s, line %d, on filesystem \"%s\"",
85 expression, file, line, xfs_etest_fsname[i]);
86 return 1;
87 }
88 }
89
90 return 0;
91}
92
93int
94xfs_errortag_add(int error_tag, xfs_mount_t *mp)
95{
96 int i;
97 int len;
98 int64_t fsid;
99
100 memcpy(&fsid, mp->m_fixedfsid, sizeof(xfs_fsid_t));
101
102 for (i = 0; i < XFS_NUM_INJECT_ERROR; i++) {
103 if (xfs_etest_fsid[i] == fsid && xfs_etest[i] == error_tag) {
104 cmn_err(CE_WARN, "XFS error tag #%d on", error_tag);
105 return 0;
106 }
107 }
108
109 for (i = 0; i < XFS_NUM_INJECT_ERROR; i++) {
110 if (xfs_etest[i] == 0) {
111 cmn_err(CE_WARN, "Turned on XFS error tag #%d",
112 error_tag);
113 xfs_etest[i] = error_tag;
114 xfs_etest_fsid[i] = fsid;
115 len = strlen(mp->m_fsname);
116 xfs_etest_fsname[i] = kmem_alloc(len + 1, KM_SLEEP);
117 strcpy(xfs_etest_fsname[i], mp->m_fsname);
118 return 0;
119 }
120 }
121
122 cmn_err(CE_WARN, "error tag overflow, too many turned on");
123
124 return 1;
125}
126
127int
Christoph Hellwig0ce4cfd2007-08-30 17:20:53 +1000128xfs_errortag_clearall(xfs_mount_t *mp, int loud)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129{
Christoph Hellwig0ce4cfd2007-08-30 17:20:53 +1000130 int64_t fsid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131 int cleared = 0;
Christoph Hellwig0ce4cfd2007-08-30 17:20:53 +1000132 int i;
133
134 memcpy(&fsid, mp->m_fixedfsid, sizeof(xfs_fsid_t));
135
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136
137 for (i = 0; i < XFS_NUM_INJECT_ERROR; i++) {
138 if ((fsid == 0LL || xfs_etest_fsid[i] == fsid) &&
139 xfs_etest[i] != 0) {
140 cleared = 1;
141 cmn_err(CE_WARN, "Clearing XFS error tag #%d",
142 xfs_etest[i]);
143 xfs_etest[i] = 0;
144 xfs_etest_fsid[i] = 0LL;
Denys Vlasenkof0e2d932008-05-19 16:31:57 +1000145 kmem_free(xfs_etest_fsname[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146 xfs_etest_fsname[i] = NULL;
147 }
148 }
149
150 if (loud || cleared)
151 cmn_err(CE_WARN,
152 "Cleared all XFS error tags for filesystem \"%s\"",
Christoph Hellwig0ce4cfd2007-08-30 17:20:53 +1000153 mp->m_fsname);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154
155 return 0;
156}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157#endif /* DEBUG || INDUCE_IO_ERROR */
158
159static void
160xfs_fs_vcmn_err(int level, xfs_mount_t *mp, char *fmt, va_list ap)
161{
162 if (mp != NULL) {
163 char *newfmt;
164 int len = 16 + mp->m_fsname_len + strlen(fmt);
165
166 newfmt = kmem_alloc(len, KM_SLEEP);
167 sprintf(newfmt, "Filesystem \"%s\": %s", mp->m_fsname, fmt);
168 icmn_err(level, newfmt, ap);
Denys Vlasenkof0e2d932008-05-19 16:31:57 +1000169 kmem_free(newfmt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 } else {
171 icmn_err(level, fmt, ap);
172 }
173}
174
175void
176xfs_fs_cmn_err(int level, xfs_mount_t *mp, char *fmt, ...)
177{
178 va_list ap;
179
180 va_start(ap, fmt);
181 xfs_fs_vcmn_err(level, mp, fmt, ap);
182 va_end(ap);
183}
184
185void
186xfs_cmn_err(int panic_tag, int level, xfs_mount_t *mp, char *fmt, ...)
187{
188 va_list ap;
189
190#ifdef DEBUG
191 xfs_panic_mask |= XFS_PTAG_SHUTDOWN_CORRUPT;
192#endif
193
194 if (xfs_panic_mask && (xfs_panic_mask & panic_tag)
195 && (level & CE_ALERT)) {
196 level &= ~CE_ALERT;
197 level |= CE_PANIC;
198 cmn_err(CE_ALERT, "XFS: Transforming an alert into a BUG.");
199 }
200 va_start(ap, fmt);
201 xfs_fs_vcmn_err(level, mp, fmt, ap);
202 va_end(ap);
203}
204
205void
206xfs_error_report(
207 char *tag,
208 int level,
209 xfs_mount_t *mp,
210 char *fname,
211 int linenum,
212 inst_t *ra)
213{
214 if (level <= xfs_error_level) {
215 xfs_cmn_err(XFS_PTAG_ERROR_REPORT,
216 CE_ALERT, mp,
217 "XFS internal error %s at line %d of file %s. Caller 0x%p\n",
218 tag, linenum, fname, ra);
219
220 xfs_stack_trace();
221 }
222}
223
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224void
225xfs_corruption_error(
226 char *tag,
227 int level,
228 xfs_mount_t *mp,
229 void *p,
230 char *fname,
231 int linenum,
232 inst_t *ra)
233{
234 if (level <= xfs_error_level)
235 xfs_hex_dump(p, 16);
236 xfs_error_report(tag, level, mp, fname, linenum, ra);
237}