blob: 39f06336b99dd7ae13d86bf216fa146437a9af36 [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_mount.h"
27#include "xfs_bmap_btree.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include "xfs_dinode.h"
29#include "xfs_inode.h"
30#include "xfs_utils.h"
31#include "xfs_error.h"
32
33#ifdef DEBUG
34
35int xfs_etrap[XFS_ERROR_NTRAP] = {
36 0,
37};
38
39int
40xfs_error_trap(int e)
41{
42 int i;
43
44 if (!e)
45 return 0;
46 for (i = 0; i < XFS_ERROR_NTRAP; i++) {
47 if (xfs_etrap[i] == 0)
48 break;
49 if (e != xfs_etrap[i])
50 continue;
Dave Chinner0b932cc2011-03-07 10:08:35 +110051 xfs_notice(NULL, "%s: error %d", __func__, e);
Linus Torvalds1da177e2005-04-16 15:20:36 -070052 BUG();
53 break;
54 }
55 return e;
56}
Linus Torvalds1da177e2005-04-16 15:20:36 -070057
58int xfs_etest[XFS_NUM_INJECT_ERROR];
59int64_t xfs_etest_fsid[XFS_NUM_INJECT_ERROR];
60char * xfs_etest_fsname[XFS_NUM_INJECT_ERROR];
Dave Chinnerc76febe2010-11-30 15:15:31 +110061int xfs_error_test_active;
Linus Torvalds1da177e2005-04-16 15:20:36 -070062
Linus Torvalds1da177e2005-04-16 15:20:36 -070063int
64xfs_error_test(int error_tag, int *fsidp, char *expression,
65 int line, char *file, unsigned long randfactor)
66{
67 int i;
68 int64_t fsid;
69
Joe Perchese7a23a92007-05-08 13:49:03 +100070 if (random32() % randfactor)
Linus Torvalds1da177e2005-04-16 15:20:36 -070071 return 0;
72
73 memcpy(&fsid, fsidp, sizeof(xfs_fsid_t));
74
75 for (i = 0; i < XFS_NUM_INJECT_ERROR; i++) {
76 if (xfs_etest[i] == error_tag && xfs_etest_fsid[i] == fsid) {
Dave Chinner0b932cc2011-03-07 10:08:35 +110077 xfs_warn(NULL,
Linus Torvalds1da177e2005-04-16 15:20:36 -070078 "Injecting error (%s) at file %s, line %d, on filesystem \"%s\"",
79 expression, file, line, xfs_etest_fsname[i]);
80 return 1;
81 }
82 }
83
84 return 0;
85}
86
87int
88xfs_errortag_add(int error_tag, xfs_mount_t *mp)
89{
90 int i;
91 int len;
92 int64_t fsid;
93
94 memcpy(&fsid, mp->m_fixedfsid, sizeof(xfs_fsid_t));
95
96 for (i = 0; i < XFS_NUM_INJECT_ERROR; i++) {
97 if (xfs_etest_fsid[i] == fsid && xfs_etest[i] == error_tag) {
Dave Chinner0b932cc2011-03-07 10:08:35 +110098 xfs_warn(mp, "error tag #%d on", error_tag);
Linus Torvalds1da177e2005-04-16 15:20:36 -070099 return 0;
100 }
101 }
102
103 for (i = 0; i < XFS_NUM_INJECT_ERROR; i++) {
104 if (xfs_etest[i] == 0) {
Dave Chinner0b932cc2011-03-07 10:08:35 +1100105 xfs_warn(mp, "Turned on XFS error tag #%d",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106 error_tag);
107 xfs_etest[i] = error_tag;
108 xfs_etest_fsid[i] = fsid;
109 len = strlen(mp->m_fsname);
110 xfs_etest_fsname[i] = kmem_alloc(len + 1, KM_SLEEP);
111 strcpy(xfs_etest_fsname[i], mp->m_fsname);
Dave Chinnerc76febe2010-11-30 15:15:31 +1100112 xfs_error_test_active++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 return 0;
114 }
115 }
116
Dave Chinner0b932cc2011-03-07 10:08:35 +1100117 xfs_warn(mp, "error tag overflow, too many turned on");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118
119 return 1;
120}
121
122int
Christoph Hellwig0ce4cfd2007-08-30 17:20:53 +1000123xfs_errortag_clearall(xfs_mount_t *mp, int loud)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124{
Christoph Hellwig0ce4cfd2007-08-30 17:20:53 +1000125 int64_t fsid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126 int cleared = 0;
Christoph Hellwig0ce4cfd2007-08-30 17:20:53 +1000127 int i;
128
129 memcpy(&fsid, mp->m_fixedfsid, sizeof(xfs_fsid_t));
130
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131
132 for (i = 0; i < XFS_NUM_INJECT_ERROR; i++) {
133 if ((fsid == 0LL || xfs_etest_fsid[i] == fsid) &&
134 xfs_etest[i] != 0) {
135 cleared = 1;
Dave Chinner0b932cc2011-03-07 10:08:35 +1100136 xfs_warn(mp, "Clearing XFS error tag #%d",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137 xfs_etest[i]);
138 xfs_etest[i] = 0;
139 xfs_etest_fsid[i] = 0LL;
Denys Vlasenkof0e2d932008-05-19 16:31:57 +1000140 kmem_free(xfs_etest_fsname[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141 xfs_etest_fsname[i] = NULL;
Dave Chinnerc76febe2010-11-30 15:15:31 +1100142 xfs_error_test_active--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143 }
144 }
145
146 if (loud || cleared)
Dave Chinner0b932cc2011-03-07 10:08:35 +1100147 xfs_warn(mp, "Cleared all XFS error tags for filesystem");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148
149 return 0;
150}
Christoph Hellwig1550d0b2008-08-13 16:17:37 +1000151#endif /* DEBUG */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153void
154xfs_error_report(
Alex Eldera0e856b2010-04-13 15:22:08 +1000155 const char *tag,
156 int level,
157 struct xfs_mount *mp,
158 const char *filename,
159 int linenum,
160 inst_t *ra)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161{
162 if (level <= xfs_error_level) {
Dave Chinner6a19d932011-03-07 10:02:35 +1100163 xfs_alert_tag(mp, XFS_PTAG_ERROR_REPORT,
164 "Internal error %s at line %d of file %s. Caller 0x%p\n",
Alex Eldera0e856b2010-04-13 15:22:08 +1000165 tag, linenum, filename, ra);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166
167 xfs_stack_trace();
168 }
169}
170
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171void
172xfs_corruption_error(
Alex Eldera0e856b2010-04-13 15:22:08 +1000173 const char *tag,
174 int level,
175 struct xfs_mount *mp,
176 void *p,
177 const char *filename,
178 int linenum,
179 inst_t *ra)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180{
181 if (level <= xfs_error_level)
182 xfs_hex_dump(p, 16);
Alex Eldera0e856b2010-04-13 15:22:08 +1000183 xfs_error_report(tag, level, mp, filename, linenum, ra);
Dave Chinner65333b42011-03-07 10:03:35 +1100184 xfs_alert(mp, "Corruption detected. Unmount and run xfs_repair");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185}