blob: 40f2985a27bcf796f187d9095ebd58c48239c756 [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"
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include "xfs_trans.h"
Nathan Scotta844f452005-11-02 14:38:42 +110023#include "xfs_sb.h"
David Chinnerda353b02007-08-28 14:00:13 +100024#include "xfs_ag.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include "xfs_mount.h"
26#include "xfs_bmap_btree.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include "xfs_dinode.h"
28#include "xfs_inode.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include "xfs_error.h"
30
31#ifdef DEBUG
32
33int xfs_etrap[XFS_ERROR_NTRAP] = {
34 0,
35};
36
37int
38xfs_error_trap(int e)
39{
40 int i;
41
42 if (!e)
43 return 0;
44 for (i = 0; i < XFS_ERROR_NTRAP; i++) {
45 if (xfs_etrap[i] == 0)
46 break;
47 if (e != xfs_etrap[i])
48 continue;
Dave Chinner0b932cc2011-03-07 10:08:35 +110049 xfs_notice(NULL, "%s: error %d", __func__, e);
Linus Torvalds1da177e2005-04-16 15:20:36 -070050 BUG();
51 break;
52 }
53 return e;
54}
Linus Torvalds1da177e2005-04-16 15:20:36 -070055
56int xfs_etest[XFS_NUM_INJECT_ERROR];
57int64_t xfs_etest_fsid[XFS_NUM_INJECT_ERROR];
58char * xfs_etest_fsname[XFS_NUM_INJECT_ERROR];
Dave Chinnerc76febe2010-11-30 15:15:31 +110059int xfs_error_test_active;
Linus Torvalds1da177e2005-04-16 15:20:36 -070060
Linus Torvalds1da177e2005-04-16 15:20:36 -070061int
62xfs_error_test(int error_tag, int *fsidp, char *expression,
63 int line, char *file, unsigned long randfactor)
64{
65 int i;
66 int64_t fsid;
67
Akinobu Mitaecb34032013-03-04 21:58:20 +090068 if (prandom_u32() % randfactor)
Linus Torvalds1da177e2005-04-16 15:20:36 -070069 return 0;
70
71 memcpy(&fsid, fsidp, sizeof(xfs_fsid_t));
72
73 for (i = 0; i < XFS_NUM_INJECT_ERROR; i++) {
74 if (xfs_etest[i] == error_tag && xfs_etest_fsid[i] == fsid) {
Dave Chinner0b932cc2011-03-07 10:08:35 +110075 xfs_warn(NULL,
Linus Torvalds1da177e2005-04-16 15:20:36 -070076 "Injecting error (%s) at file %s, line %d, on filesystem \"%s\"",
77 expression, file, line, xfs_etest_fsname[i]);
78 return 1;
79 }
80 }
81
82 return 0;
83}
84
85int
86xfs_errortag_add(int error_tag, xfs_mount_t *mp)
87{
88 int i;
89 int len;
90 int64_t fsid;
91
92 memcpy(&fsid, mp->m_fixedfsid, sizeof(xfs_fsid_t));
93
94 for (i = 0; i < XFS_NUM_INJECT_ERROR; i++) {
95 if (xfs_etest_fsid[i] == fsid && xfs_etest[i] == error_tag) {
Dave Chinner0b932cc2011-03-07 10:08:35 +110096 xfs_warn(mp, "error tag #%d on", error_tag);
Linus Torvalds1da177e2005-04-16 15:20:36 -070097 return 0;
98 }
99 }
100
101 for (i = 0; i < XFS_NUM_INJECT_ERROR; i++) {
102 if (xfs_etest[i] == 0) {
Dave Chinner0b932cc2011-03-07 10:08:35 +1100103 xfs_warn(mp, "Turned on XFS error tag #%d",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 error_tag);
105 xfs_etest[i] = error_tag;
106 xfs_etest_fsid[i] = fsid;
107 len = strlen(mp->m_fsname);
108 xfs_etest_fsname[i] = kmem_alloc(len + 1, KM_SLEEP);
109 strcpy(xfs_etest_fsname[i], mp->m_fsname);
Dave Chinnerc76febe2010-11-30 15:15:31 +1100110 xfs_error_test_active++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111 return 0;
112 }
113 }
114
Dave Chinner0b932cc2011-03-07 10:08:35 +1100115 xfs_warn(mp, "error tag overflow, too many turned on");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116
117 return 1;
118}
119
120int
Christoph Hellwig0ce4cfd2007-08-30 17:20:53 +1000121xfs_errortag_clearall(xfs_mount_t *mp, int loud)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122{
Christoph Hellwig0ce4cfd2007-08-30 17:20:53 +1000123 int64_t fsid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124 int cleared = 0;
Christoph Hellwig0ce4cfd2007-08-30 17:20:53 +1000125 int i;
126
127 memcpy(&fsid, mp->m_fixedfsid, sizeof(xfs_fsid_t));
128
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129
130 for (i = 0; i < XFS_NUM_INJECT_ERROR; i++) {
131 if ((fsid == 0LL || xfs_etest_fsid[i] == fsid) &&
132 xfs_etest[i] != 0) {
133 cleared = 1;
Dave Chinner0b932cc2011-03-07 10:08:35 +1100134 xfs_warn(mp, "Clearing XFS error tag #%d",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 xfs_etest[i]);
136 xfs_etest[i] = 0;
137 xfs_etest_fsid[i] = 0LL;
Denys Vlasenkof0e2d932008-05-19 16:31:57 +1000138 kmem_free(xfs_etest_fsname[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139 xfs_etest_fsname[i] = NULL;
Dave Chinnerc76febe2010-11-30 15:15:31 +1100140 xfs_error_test_active--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141 }
142 }
143
144 if (loud || cleared)
Dave Chinner0b932cc2011-03-07 10:08:35 +1100145 xfs_warn(mp, "Cleared all XFS error tags for filesystem");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146
147 return 0;
148}
Christoph Hellwig1550d0b2008-08-13 16:17:37 +1000149#endif /* DEBUG */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151void
152xfs_error_report(
Alex Eldera0e856b2010-04-13 15:22:08 +1000153 const char *tag,
154 int level,
155 struct xfs_mount *mp,
156 const char *filename,
157 int linenum,
158 inst_t *ra)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159{
160 if (level <= xfs_error_level) {
Dave Chinner6a19d932011-03-07 10:02:35 +1100161 xfs_alert_tag(mp, XFS_PTAG_ERROR_REPORT,
Eric Sandeen08e96e12013-10-11 20:59:05 -0500162 "Internal error %s at line %d of file %s. Caller 0x%p",
Alex Eldera0e856b2010-04-13 15:22:08 +1000163 tag, linenum, filename, ra);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164
165 xfs_stack_trace();
166 }
167}
168
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169void
170xfs_corruption_error(
Alex Eldera0e856b2010-04-13 15:22:08 +1000171 const char *tag,
172 int level,
173 struct xfs_mount *mp,
174 void *p,
175 const char *filename,
176 int linenum,
177 inst_t *ra)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178{
179 if (level <= xfs_error_level)
Dave Chinnera2050642013-04-03 16:11:11 +1100180 xfs_hex_dump(p, 64);
Alex Eldera0e856b2010-04-13 15:22:08 +1000181 xfs_error_report(tag, level, mp, filename, linenum, ra);
Dave Chinner65333b42011-03-07 10:03:35 +1100182 xfs_alert(mp, "Corruption detected. Unmount and run xfs_repair");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183}