2 * Copyright (c) 2000-2001,2005 Silicon Graphics, Inc.
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
7 * published by the Free Software Foundation.
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.
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
20 #include "xfs_types.h"
23 #include "xfs_trans.h"
26 #include "xfs_mount.h"
27 #include "xfs_bmap_btree.h"
28 #include "xfs_dinode.h"
29 #include "xfs_inode.h"
30 #include "xfs_utils.h"
31 #include "xfs_error.h"
35 int xfs_etrap
[XFS_ERROR_NTRAP
] = {
46 for (i
= 0; i
< XFS_ERROR_NTRAP
; i
++) {
47 if (xfs_etrap
[i
] == 0)
49 if (e
!= xfs_etrap
[i
])
51 xfs_notice(NULL
, "%s: error %d", __func__
, e
);
58 int xfs_etest
[XFS_NUM_INJECT_ERROR
];
59 int64_t xfs_etest_fsid
[XFS_NUM_INJECT_ERROR
];
60 char * xfs_etest_fsname
[XFS_NUM_INJECT_ERROR
];
61 int xfs_error_test_active
;
64 xfs_error_test(int error_tag
, int *fsidp
, char *expression
,
65 int line
, char *file
, unsigned long randfactor
)
70 if (random32() % randfactor
)
73 memcpy(&fsid
, fsidp
, sizeof(xfs_fsid_t
));
75 for (i
= 0; i
< XFS_NUM_INJECT_ERROR
; i
++) {
76 if (xfs_etest
[i
] == error_tag
&& xfs_etest_fsid
[i
] == fsid
) {
78 "Injecting error (%s) at file %s, line %d, on filesystem \"%s\"",
79 expression
, file
, line
, xfs_etest_fsname
[i
]);
88 xfs_errortag_add(int error_tag
, xfs_mount_t
*mp
)
94 memcpy(&fsid
, mp
->m_fixedfsid
, sizeof(xfs_fsid_t
));
96 for (i
= 0; i
< XFS_NUM_INJECT_ERROR
; i
++) {
97 if (xfs_etest_fsid
[i
] == fsid
&& xfs_etest
[i
] == error_tag
) {
98 xfs_warn(mp
, "error tag #%d on", error_tag
);
103 for (i
= 0; i
< XFS_NUM_INJECT_ERROR
; i
++) {
104 if (xfs_etest
[i
] == 0) {
105 xfs_warn(mp
, "Turned on XFS error tag #%d",
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
);
112 xfs_error_test_active
++;
117 xfs_warn(mp
, "error tag overflow, too many turned on");
123 xfs_errortag_clearall(xfs_mount_t
*mp
, int loud
)
129 memcpy(&fsid
, mp
->m_fixedfsid
, sizeof(xfs_fsid_t
));
132 for (i
= 0; i
< XFS_NUM_INJECT_ERROR
; i
++) {
133 if ((fsid
== 0LL || xfs_etest_fsid
[i
] == fsid
) &&
136 xfs_warn(mp
, "Clearing XFS error tag #%d",
139 xfs_etest_fsid
[i
] = 0LL;
140 kmem_free(xfs_etest_fsname
[i
]);
141 xfs_etest_fsname
[i
] = NULL
;
142 xfs_error_test_active
--;
147 xfs_warn(mp
, "Cleared all XFS error tags for filesystem");
157 struct xfs_mount
*mp
,
158 const char *filename
,
162 if (level
<= xfs_error_level
) {
163 xfs_alert_tag(mp
, XFS_PTAG_ERROR_REPORT
,
164 "Internal error %s at line %d of file %s. Caller 0x%p\n",
165 tag
, linenum
, filename
, ra
);
172 xfs_corruption_error(
175 struct xfs_mount
*mp
,
177 const char *filename
,
181 if (level
<= xfs_error_level
)
183 xfs_error_report(tag
, level
, mp
, filename
, linenum
, ra
);
184 xfs_alert(mp
, "Corruption detected. Unmount and run xfs_repair");