]>
Commit | Line | Data |
---|---|---|
1da177e4 | 1 | /* |
7b718769 NS |
2 | * Copyright (c) 2000-2001,2005 Silicon Graphics, Inc. |
3 | * All Rights Reserved. | |
1da177e4 | 4 | * |
7b718769 NS |
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 | |
1da177e4 LT |
7 | * published by the Free Software Foundation. |
8 | * | |
7b718769 NS |
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. | |
1da177e4 | 13 | * |
7b718769 NS |
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 | |
1da177e4 | 17 | */ |
1da177e4 | 18 | #include "xfs.h" |
a4fbe6ab | 19 | #include "xfs_format.h" |
a844f451 | 20 | #include "xfs_fs.h" |
239880ef DC |
21 | #include "xfs_log_format.h" |
22 | #include "xfs_trans_resv.h" | |
1da177e4 | 23 | #include "xfs_mount.h" |
1da177e4 LT |
24 | #include "xfs_error.h" |
25 | ||
26 | #ifdef DEBUG | |
27 | ||
1da177e4 LT |
28 | int xfs_etest[XFS_NUM_INJECT_ERROR]; |
29 | int64_t xfs_etest_fsid[XFS_NUM_INJECT_ERROR]; | |
30 | char * xfs_etest_fsname[XFS_NUM_INJECT_ERROR]; | |
c76febef | 31 | int xfs_error_test_active; |
1da177e4 | 32 | |
1da177e4 LT |
33 | int |
34 | xfs_error_test(int error_tag, int *fsidp, char *expression, | |
35 | int line, char *file, unsigned long randfactor) | |
36 | { | |
37 | int i; | |
38 | int64_t fsid; | |
39 | ||
ecb3403d | 40 | if (prandom_u32() % randfactor) |
1da177e4 LT |
41 | return 0; |
42 | ||
43 | memcpy(&fsid, fsidp, sizeof(xfs_fsid_t)); | |
44 | ||
45 | for (i = 0; i < XFS_NUM_INJECT_ERROR; i++) { | |
46 | if (xfs_etest[i] == error_tag && xfs_etest_fsid[i] == fsid) { | |
0b932ccc | 47 | xfs_warn(NULL, |
1da177e4 LT |
48 | "Injecting error (%s) at file %s, line %d, on filesystem \"%s\"", |
49 | expression, file, line, xfs_etest_fsname[i]); | |
50 | return 1; | |
51 | } | |
52 | } | |
53 | ||
54 | return 0; | |
55 | } | |
56 | ||
57 | int | |
fbc21f33 | 58 | xfs_errortag_add(unsigned int error_tag, xfs_mount_t *mp) |
1da177e4 LT |
59 | { |
60 | int i; | |
61 | int len; | |
62 | int64_t fsid; | |
63 | ||
128f24d5 DW |
64 | if (error_tag >= XFS_ERRTAG_MAX) |
65 | return -EINVAL; | |
66 | ||
1da177e4 LT |
67 | memcpy(&fsid, mp->m_fixedfsid, sizeof(xfs_fsid_t)); |
68 | ||
69 | for (i = 0; i < XFS_NUM_INJECT_ERROR; i++) { | |
70 | if (xfs_etest_fsid[i] == fsid && xfs_etest[i] == error_tag) { | |
0b932ccc | 71 | xfs_warn(mp, "error tag #%d on", error_tag); |
1da177e4 LT |
72 | return 0; |
73 | } | |
74 | } | |
75 | ||
76 | for (i = 0; i < XFS_NUM_INJECT_ERROR; i++) { | |
77 | if (xfs_etest[i] == 0) { | |
0b932ccc | 78 | xfs_warn(mp, "Turned on XFS error tag #%d", |
1da177e4 LT |
79 | error_tag); |
80 | xfs_etest[i] = error_tag; | |
81 | xfs_etest_fsid[i] = fsid; | |
82 | len = strlen(mp->m_fsname); | |
83 | xfs_etest_fsname[i] = kmem_alloc(len + 1, KM_SLEEP); | |
84 | strcpy(xfs_etest_fsname[i], mp->m_fsname); | |
c76febef | 85 | xfs_error_test_active++; |
1da177e4 LT |
86 | return 0; |
87 | } | |
88 | } | |
89 | ||
0b932ccc | 90 | xfs_warn(mp, "error tag overflow, too many turned on"); |
1da177e4 LT |
91 | |
92 | return 1; | |
93 | } | |
94 | ||
1da177e4 | 95 | int |
0ce4cfd4 | 96 | xfs_errortag_clearall(xfs_mount_t *mp, int loud) |
1da177e4 | 97 | { |
0ce4cfd4 | 98 | int64_t fsid; |
1da177e4 | 99 | int cleared = 0; |
0ce4cfd4 CH |
100 | int i; |
101 | ||
102 | memcpy(&fsid, mp->m_fixedfsid, sizeof(xfs_fsid_t)); | |
103 | ||
1da177e4 LT |
104 | |
105 | for (i = 0; i < XFS_NUM_INJECT_ERROR; i++) { | |
106 | if ((fsid == 0LL || xfs_etest_fsid[i] == fsid) && | |
107 | xfs_etest[i] != 0) { | |
108 | cleared = 1; | |
0b932ccc | 109 | xfs_warn(mp, "Clearing XFS error tag #%d", |
1da177e4 LT |
110 | xfs_etest[i]); |
111 | xfs_etest[i] = 0; | |
112 | xfs_etest_fsid[i] = 0LL; | |
f0e2d93c | 113 | kmem_free(xfs_etest_fsname[i]); |
1da177e4 | 114 | xfs_etest_fsname[i] = NULL; |
c76febef | 115 | xfs_error_test_active--; |
1da177e4 LT |
116 | } |
117 | } | |
118 | ||
119 | if (loud || cleared) | |
0b932ccc | 120 | xfs_warn(mp, "Cleared all XFS error tags for filesystem"); |
1da177e4 LT |
121 | |
122 | return 0; | |
123 | } | |
1550d0b0 | 124 | #endif /* DEBUG */ |
1da177e4 | 125 | |
1da177e4 LT |
126 | void |
127 | xfs_error_report( | |
a0e856b0 AE |
128 | const char *tag, |
129 | int level, | |
130 | struct xfs_mount *mp, | |
131 | const char *filename, | |
132 | int linenum, | |
fc51c2b5 | 133 | void *ra) |
1da177e4 LT |
134 | { |
135 | if (level <= xfs_error_level) { | |
6a19d939 | 136 | xfs_alert_tag(mp, XFS_PTAG_ERROR_REPORT, |
65dd297a | 137 | "Internal error %s at line %d of file %s. Caller %pS", |
a0e856b0 | 138 | tag, linenum, filename, ra); |
1da177e4 LT |
139 | |
140 | xfs_stack_trace(); | |
141 | } | |
142 | } | |
143 | ||
1da177e4 LT |
144 | void |
145 | xfs_corruption_error( | |
a0e856b0 AE |
146 | const char *tag, |
147 | int level, | |
148 | struct xfs_mount *mp, | |
149 | void *p, | |
150 | const char *filename, | |
151 | int linenum, | |
fc51c2b5 | 152 | void *ra) |
1da177e4 LT |
153 | { |
154 | if (level <= xfs_error_level) | |
a2050646 | 155 | xfs_hex_dump(p, 64); |
a0e856b0 | 156 | xfs_error_report(tag, level, mp, filename, linenum, ra); |
65333b4c | 157 | xfs_alert(mp, "Corruption detected. Unmount and run xfs_repair"); |
1da177e4 | 158 | } |
ca23f8fd ES |
159 | |
160 | /* | |
161 | * Warnings specifically for verifier errors. Differentiate CRC vs. invalid | |
162 | * values, and omit the stack trace unless the error level is tuned high. | |
163 | */ | |
164 | void | |
165 | xfs_verifier_error( | |
166 | struct xfs_buf *bp) | |
167 | { | |
168 | struct xfs_mount *mp = bp->b_target->bt_mount; | |
169 | ||
233135b7 | 170 | xfs_alert(mp, "Metadata %s detected at %pF, %s block 0x%llx", |
2451337d | 171 | bp->b_error == -EFSBADCRC ? "CRC error" : "corruption", |
233135b7 | 172 | __return_address, bp->b_ops->name, bp->b_bn); |
ca23f8fd ES |
173 | |
174 | xfs_alert(mp, "Unmount and run xfs_repair"); | |
175 | ||
176 | if (xfs_error_level >= XFS_ERRLEVEL_LOW) { | |
177 | xfs_alert(mp, "First 64 bytes of corrupted metadata buffer:"); | |
178 | xfs_hex_dump(xfs_buf_offset(bp, 0), 64); | |
179 | } | |
180 | ||
181 | if (xfs_error_level >= XFS_ERRLEVEL_HIGH) | |
182 | xfs_stack_trace(); | |
183 | } |