xfs: drop dmapi hooks
[pandora-kernel.git] / fs / xfs / xfs_error.c
1 /*
2  * Copyright (c) 2000-2001,2005 Silicon Graphics, Inc.
3  * All Rights Reserved.
4  *
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.
8  *
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.
13  *
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
17  */
18 #include "xfs.h"
19 #include "xfs_fs.h"
20 #include "xfs_types.h"
21 #include "xfs_log.h"
22 #include "xfs_inum.h"
23 #include "xfs_trans.h"
24 #include "xfs_sb.h"
25 #include "xfs_ag.h"
26 #include "xfs_dir2.h"
27 #include "xfs_mount.h"
28 #include "xfs_bmap_btree.h"
29 #include "xfs_dir2_sf.h"
30 #include "xfs_attr_sf.h"
31 #include "xfs_dinode.h"
32 #include "xfs_inode.h"
33 #include "xfs_utils.h"
34 #include "xfs_error.h"
35
36 #ifdef DEBUG
37
38 int     xfs_etrap[XFS_ERROR_NTRAP] = {
39         0,
40 };
41
42 int
43 xfs_error_trap(int e)
44 {
45         int i;
46
47         if (!e)
48                 return 0;
49         for (i = 0; i < XFS_ERROR_NTRAP; i++) {
50                 if (xfs_etrap[i] == 0)
51                         break;
52                 if (e != xfs_etrap[i])
53                         continue;
54                 cmn_err(CE_NOTE, "xfs_error_trap: error %d", e);
55                 BUG();
56                 break;
57         }
58         return e;
59 }
60
61 int     xfs_etest[XFS_NUM_INJECT_ERROR];
62 int64_t xfs_etest_fsid[XFS_NUM_INJECT_ERROR];
63 char *  xfs_etest_fsname[XFS_NUM_INJECT_ERROR];
64
65 int
66 xfs_error_test(int error_tag, int *fsidp, char *expression,
67                int line, char *file, unsigned long randfactor)
68 {
69         int i;
70         int64_t fsid;
71
72         if (random32() % randfactor)
73                 return 0;
74
75         memcpy(&fsid, fsidp, sizeof(xfs_fsid_t));
76
77         for (i = 0; i < XFS_NUM_INJECT_ERROR; i++)  {
78                 if (xfs_etest[i] == error_tag && xfs_etest_fsid[i] == fsid) {
79                         cmn_err(CE_WARN,
80         "Injecting error (%s) at file %s, line %d, on filesystem \"%s\"",
81                                 expression, file, line, xfs_etest_fsname[i]);
82                         return 1;
83                 }
84         }
85
86         return 0;
87 }
88
89 int
90 xfs_errortag_add(int error_tag, xfs_mount_t *mp)
91 {
92         int i;
93         int len;
94         int64_t fsid;
95
96         memcpy(&fsid, mp->m_fixedfsid, sizeof(xfs_fsid_t));
97
98         for (i = 0; i < XFS_NUM_INJECT_ERROR; i++)  {
99                 if (xfs_etest_fsid[i] == fsid && xfs_etest[i] == error_tag) {
100                         cmn_err(CE_WARN, "XFS error tag #%d on", error_tag);
101                         return 0;
102                 }
103         }
104
105         for (i = 0; i < XFS_NUM_INJECT_ERROR; i++)  {
106                 if (xfs_etest[i] == 0) {
107                         cmn_err(CE_WARN, "Turned on XFS error tag #%d",
108                                 error_tag);
109                         xfs_etest[i] = error_tag;
110                         xfs_etest_fsid[i] = fsid;
111                         len = strlen(mp->m_fsname);
112                         xfs_etest_fsname[i] = kmem_alloc(len + 1, KM_SLEEP);
113                         strcpy(xfs_etest_fsname[i], mp->m_fsname);
114                         return 0;
115                 }
116         }
117
118         cmn_err(CE_WARN, "error tag overflow, too many turned on");
119
120         return 1;
121 }
122
123 int
124 xfs_errortag_clearall(xfs_mount_t *mp, int loud)
125 {
126         int64_t fsid;
127         int cleared = 0;
128         int i;
129
130         memcpy(&fsid, mp->m_fixedfsid, sizeof(xfs_fsid_t));
131
132
133         for (i = 0; i < XFS_NUM_INJECT_ERROR; i++) {
134                 if ((fsid == 0LL || xfs_etest_fsid[i] == fsid) &&
135                      xfs_etest[i] != 0) {
136                         cleared = 1;
137                         cmn_err(CE_WARN, "Clearing XFS error tag #%d",
138                                 xfs_etest[i]);
139                         xfs_etest[i] = 0;
140                         xfs_etest_fsid[i] = 0LL;
141                         kmem_free(xfs_etest_fsname[i]);
142                         xfs_etest_fsname[i] = NULL;
143                 }
144         }
145
146         if (loud || cleared)
147                 cmn_err(CE_WARN,
148                         "Cleared all XFS error tags for filesystem \"%s\"",
149                         mp->m_fsname);
150
151         return 0;
152 }
153 #endif /* DEBUG */
154
155
156 void
157 xfs_fs_cmn_err(int level, xfs_mount_t *mp, char *fmt, ...)
158 {
159         va_list ap;
160
161         va_start(ap, fmt);
162         xfs_fs_vcmn_err(level, mp, fmt, ap);
163         va_end(ap);
164 }
165
166 void
167 xfs_cmn_err(int panic_tag, int level, xfs_mount_t *mp, char *fmt, ...)
168 {
169         va_list ap;
170
171 #ifdef DEBUG
172         xfs_panic_mask |= (XFS_PTAG_SHUTDOWN_CORRUPT | XFS_PTAG_LOGRES);
173 #endif
174
175         if (xfs_panic_mask && (xfs_panic_mask & panic_tag)
176             && (level & CE_ALERT)) {
177                 level &= ~CE_ALERT;
178                 level |= CE_PANIC;
179                 cmn_err(CE_ALERT, "XFS: Transforming an alert into a BUG.");
180         }
181         va_start(ap, fmt);
182         xfs_fs_vcmn_err(level, mp, fmt, ap);
183         va_end(ap);
184 }
185
186 void
187 xfs_error_report(
188         const char              *tag,
189         int                     level,
190         struct xfs_mount        *mp,
191         const char              *filename,
192         int                     linenum,
193         inst_t                  *ra)
194 {
195         if (level <= xfs_error_level) {
196                 xfs_cmn_err(XFS_PTAG_ERROR_REPORT,
197                             CE_ALERT, mp,
198                 "XFS internal error %s at line %d of file %s.  Caller 0x%p\n",
199                             tag, linenum, filename, ra);
200
201                 xfs_stack_trace();
202         }
203 }
204
205 void
206 xfs_corruption_error(
207         const char              *tag,
208         int                     level,
209         struct xfs_mount        *mp,
210         void                    *p,
211         const char              *filename,
212         int                     linenum,
213         inst_t                  *ra)
214 {
215         if (level <= xfs_error_level)
216                 xfs_hex_dump(p, 16);
217         xfs_error_report(tag, level, mp, filename, linenum, ra);
218 }