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 cmn_err(CE_NOTE
, "xfs_error_trap: error %d", 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
];
63 xfs_error_test(int error_tag
, int *fsidp
, char *expression
,
64 int line
, char *file
, unsigned long randfactor
)
69 if (random32() % randfactor
)
72 memcpy(&fsid
, fsidp
, sizeof(xfs_fsid_t
));
74 for (i
= 0; i
< XFS_NUM_INJECT_ERROR
; i
++) {
75 if (xfs_etest
[i
] == error_tag
&& xfs_etest_fsid
[i
] == fsid
) {
77 "Injecting error (%s) at file %s, line %d, on filesystem \"%s\"",
78 expression
, file
, line
, xfs_etest_fsname
[i
]);
87 xfs_errortag_add(int error_tag
, xfs_mount_t
*mp
)
93 memcpy(&fsid
, mp
->m_fixedfsid
, sizeof(xfs_fsid_t
));
95 for (i
= 0; i
< XFS_NUM_INJECT_ERROR
; i
++) {
96 if (xfs_etest_fsid
[i
] == fsid
&& xfs_etest
[i
] == error_tag
) {
97 cmn_err(CE_WARN
, "XFS error tag #%d on", error_tag
);
102 for (i
= 0; i
< XFS_NUM_INJECT_ERROR
; i
++) {
103 if (xfs_etest
[i
] == 0) {
104 cmn_err(CE_WARN
, "Turned on XFS error tag #%d",
106 xfs_etest
[i
] = error_tag
;
107 xfs_etest_fsid
[i
] = fsid
;
108 len
= strlen(mp
->m_fsname
);
109 xfs_etest_fsname
[i
] = kmem_alloc(len
+ 1, KM_SLEEP
);
110 strcpy(xfs_etest_fsname
[i
], mp
->m_fsname
);
115 cmn_err(CE_WARN
, "error tag overflow, too many turned on");
121 xfs_errortag_clearall(xfs_mount_t
*mp
, int loud
)
127 memcpy(&fsid
, mp
->m_fixedfsid
, sizeof(xfs_fsid_t
));
130 for (i
= 0; i
< XFS_NUM_INJECT_ERROR
; i
++) {
131 if ((fsid
== 0LL || xfs_etest_fsid
[i
] == fsid
) &&
134 cmn_err(CE_WARN
, "Clearing XFS error tag #%d",
137 xfs_etest_fsid
[i
] = 0LL;
138 kmem_free(xfs_etest_fsname
[i
]);
139 xfs_etest_fsname
[i
] = NULL
;
145 "Cleared all XFS error tags for filesystem \"%s\"",
154 xfs_fs_cmn_err(int level
, xfs_mount_t
*mp
, char *fmt
, ...)
159 xfs_fs_vcmn_err(level
, mp
, fmt
, ap
);
164 xfs_cmn_err(int panic_tag
, int level
, xfs_mount_t
*mp
, char *fmt
, ...)
169 xfs_panic_mask
|= (XFS_PTAG_SHUTDOWN_CORRUPT
| XFS_PTAG_LOGRES
);
172 if (xfs_panic_mask
&& (xfs_panic_mask
& panic_tag
)
173 && (level
& CE_ALERT
)) {
176 cmn_err(CE_ALERT
, "XFS: Transforming an alert into a BUG.");
179 xfs_fs_vcmn_err(level
, mp
, fmt
, ap
);
187 struct xfs_mount
*mp
,
188 const char *filename
,
192 if (level
<= xfs_error_level
) {
193 xfs_cmn_err(XFS_PTAG_ERROR_REPORT
,
195 "XFS internal error %s at line %d of file %s. Caller 0x%p\n",
196 tag
, linenum
, filename
, ra
);
203 xfs_corruption_error(
206 struct xfs_mount
*mp
,
208 const char *filename
,
212 if (level
<= xfs_error_level
)
214 xfs_error_report(tag
, level
, mp
, filename
, linenum
, ra
);