Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
Nathan Scott | 7b71876 | 2005-11-02 14:58:39 +1100 | [diff] [blame] | 2 | * Copyright (c) 2000-2001,2005 Silicon Graphics, Inc. |
| 3 | * All Rights Reserved. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4 | * |
Nathan Scott | 7b71876 | 2005-11-02 14:58:39 +1100 | [diff] [blame] | 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 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7 | * published by the Free Software Foundation. |
| 8 | * |
Nathan Scott | 7b71876 | 2005-11-02 14:58:39 +1100 | [diff] [blame] | 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. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 13 | * |
Nathan Scott | 7b71876 | 2005-11-02 14:58:39 +1100 | [diff] [blame] | 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 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 17 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 18 | #include "xfs.h" |
Dave Chinner | a4fbe6a | 2013-10-23 10:51:50 +1100 | [diff] [blame] | 19 | #include "xfs_format.h" |
Nathan Scott | a844f45 | 2005-11-02 14:38:42 +1100 | [diff] [blame] | 20 | #include "xfs_fs.h" |
Dave Chinner | 239880e | 2013-10-23 10:50:10 +1100 | [diff] [blame] | 21 | #include "xfs_log_format.h" |
| 22 | #include "xfs_trans_resv.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 23 | #include "xfs_mount.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 24 | #include "xfs_error.h" |
Darrick J. Wong | c684010 | 2017-06-20 17:54:47 -0700 | [diff] [blame] | 25 | #include "xfs_sysfs.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 26 | |
| 27 | #ifdef DEBUG |
| 28 | |
Darrick J. Wong | 31965ef | 2017-06-20 17:54:46 -0700 | [diff] [blame] | 29 | static unsigned int xfs_errortag_random_default[] = { |
| 30 | XFS_RANDOM_DEFAULT, |
| 31 | XFS_RANDOM_IFLUSH_1, |
| 32 | XFS_RANDOM_IFLUSH_2, |
| 33 | XFS_RANDOM_IFLUSH_3, |
| 34 | XFS_RANDOM_IFLUSH_4, |
| 35 | XFS_RANDOM_IFLUSH_5, |
| 36 | XFS_RANDOM_IFLUSH_6, |
| 37 | XFS_RANDOM_DA_READ_BUF, |
| 38 | XFS_RANDOM_BTREE_CHECK_LBLOCK, |
| 39 | XFS_RANDOM_BTREE_CHECK_SBLOCK, |
| 40 | XFS_RANDOM_ALLOC_READ_AGF, |
| 41 | XFS_RANDOM_IALLOC_READ_AGI, |
| 42 | XFS_RANDOM_ITOBP_INOTOBP, |
| 43 | XFS_RANDOM_IUNLINK, |
| 44 | XFS_RANDOM_IUNLINK_REMOVE, |
| 45 | XFS_RANDOM_DIR_INO_VALIDATE, |
| 46 | XFS_RANDOM_BULKSTAT_READ_CHUNK, |
| 47 | XFS_RANDOM_IODONE_IOERR, |
| 48 | XFS_RANDOM_STRATREAD_IOERR, |
| 49 | XFS_RANDOM_STRATCMPL_IOERR, |
| 50 | XFS_RANDOM_DIOWRITE_IOERR, |
| 51 | XFS_RANDOM_BMAPIFORMAT, |
| 52 | XFS_RANDOM_FREE_EXTENT, |
| 53 | XFS_RANDOM_RMAP_FINISH_ONE, |
| 54 | XFS_RANDOM_REFCOUNT_CONTINUE_UPDATE, |
| 55 | XFS_RANDOM_REFCOUNT_FINISH_ONE, |
| 56 | XFS_RANDOM_BMAP_FINISH_ONE, |
| 57 | XFS_RANDOM_AG_RESV_CRITICAL, |
Darrick J. Wong | f8c4725 | 2017-06-20 17:54:48 -0700 | [diff] [blame] | 58 | XFS_RANDOM_DROP_WRITES, |
Brian Foster | 3e88a00 | 2017-06-27 09:52:32 -0700 | [diff] [blame] | 59 | XFS_RANDOM_LOG_BAD_CRC, |
Brian Foster | 7f4d01f | 2017-08-08 18:21:52 -0700 | [diff] [blame] | 60 | XFS_RANDOM_LOG_ITEM_PIN, |
Brian Foster | 7561d27 | 2017-10-17 14:16:29 -0700 | [diff] [blame] | 61 | XFS_RANDOM_BUF_LRU_REF, |
Darrick J. Wong | 31965ef | 2017-06-20 17:54:46 -0700 | [diff] [blame] | 62 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 63 | |
Darrick J. Wong | c684010 | 2017-06-20 17:54:47 -0700 | [diff] [blame] | 64 | struct xfs_errortag_attr { |
| 65 | struct attribute attr; |
| 66 | unsigned int tag; |
| 67 | }; |
| 68 | |
| 69 | static inline struct xfs_errortag_attr * |
| 70 | to_attr(struct attribute *attr) |
| 71 | { |
| 72 | return container_of(attr, struct xfs_errortag_attr, attr); |
| 73 | } |
| 74 | |
| 75 | static inline struct xfs_mount * |
| 76 | to_mp(struct kobject *kobject) |
| 77 | { |
| 78 | struct xfs_kobj *kobj = to_kobj(kobject); |
| 79 | |
| 80 | return container_of(kobj, struct xfs_mount, m_errortag_kobj); |
| 81 | } |
| 82 | |
| 83 | STATIC ssize_t |
| 84 | xfs_errortag_attr_store( |
| 85 | struct kobject *kobject, |
| 86 | struct attribute *attr, |
| 87 | const char *buf, |
| 88 | size_t count) |
| 89 | { |
| 90 | struct xfs_mount *mp = to_mp(kobject); |
| 91 | struct xfs_errortag_attr *xfs_attr = to_attr(attr); |
| 92 | int ret; |
| 93 | unsigned int val; |
| 94 | |
| 95 | if (strcmp(buf, "default") == 0) { |
| 96 | val = xfs_errortag_random_default[xfs_attr->tag]; |
| 97 | } else { |
| 98 | ret = kstrtouint(buf, 0, &val); |
| 99 | if (ret) |
| 100 | return ret; |
| 101 | } |
| 102 | |
| 103 | ret = xfs_errortag_set(mp, xfs_attr->tag, val); |
| 104 | if (ret) |
| 105 | return ret; |
| 106 | return count; |
| 107 | } |
| 108 | |
| 109 | STATIC ssize_t |
| 110 | xfs_errortag_attr_show( |
| 111 | struct kobject *kobject, |
| 112 | struct attribute *attr, |
| 113 | char *buf) |
| 114 | { |
| 115 | struct xfs_mount *mp = to_mp(kobject); |
| 116 | struct xfs_errortag_attr *xfs_attr = to_attr(attr); |
| 117 | |
| 118 | return snprintf(buf, PAGE_SIZE, "%u\n", |
| 119 | xfs_errortag_get(mp, xfs_attr->tag)); |
| 120 | } |
| 121 | |
| 122 | static const struct sysfs_ops xfs_errortag_sysfs_ops = { |
| 123 | .show = xfs_errortag_attr_show, |
| 124 | .store = xfs_errortag_attr_store, |
| 125 | }; |
| 126 | |
| 127 | #define XFS_ERRORTAG_ATTR_RW(_name, _tag) \ |
| 128 | static struct xfs_errortag_attr xfs_errortag_attr_##_name = { \ |
| 129 | .attr = {.name = __stringify(_name), \ |
| 130 | .mode = VERIFY_OCTAL_PERMISSIONS(S_IWUSR | S_IRUGO) }, \ |
| 131 | .tag = (_tag), \ |
| 132 | } |
| 133 | |
| 134 | #define XFS_ERRORTAG_ATTR_LIST(_name) &xfs_errortag_attr_##_name.attr |
| 135 | |
| 136 | XFS_ERRORTAG_ATTR_RW(noerror, XFS_ERRTAG_NOERROR); |
| 137 | XFS_ERRORTAG_ATTR_RW(iflush1, XFS_ERRTAG_IFLUSH_1); |
| 138 | XFS_ERRORTAG_ATTR_RW(iflush2, XFS_ERRTAG_IFLUSH_2); |
| 139 | XFS_ERRORTAG_ATTR_RW(iflush3, XFS_ERRTAG_IFLUSH_3); |
| 140 | XFS_ERRORTAG_ATTR_RW(iflush4, XFS_ERRTAG_IFLUSH_4); |
| 141 | XFS_ERRORTAG_ATTR_RW(iflush5, XFS_ERRTAG_IFLUSH_5); |
| 142 | XFS_ERRORTAG_ATTR_RW(iflush6, XFS_ERRTAG_IFLUSH_6); |
| 143 | XFS_ERRORTAG_ATTR_RW(dareadbuf, XFS_ERRTAG_DA_READ_BUF); |
| 144 | XFS_ERRORTAG_ATTR_RW(btree_chk_lblk, XFS_ERRTAG_BTREE_CHECK_LBLOCK); |
| 145 | XFS_ERRORTAG_ATTR_RW(btree_chk_sblk, XFS_ERRTAG_BTREE_CHECK_SBLOCK); |
| 146 | XFS_ERRORTAG_ATTR_RW(readagf, XFS_ERRTAG_ALLOC_READ_AGF); |
| 147 | XFS_ERRORTAG_ATTR_RW(readagi, XFS_ERRTAG_IALLOC_READ_AGI); |
| 148 | XFS_ERRORTAG_ATTR_RW(itobp, XFS_ERRTAG_ITOBP_INOTOBP); |
| 149 | XFS_ERRORTAG_ATTR_RW(iunlink, XFS_ERRTAG_IUNLINK); |
| 150 | XFS_ERRORTAG_ATTR_RW(iunlinkrm, XFS_ERRTAG_IUNLINK_REMOVE); |
| 151 | XFS_ERRORTAG_ATTR_RW(dirinovalid, XFS_ERRTAG_DIR_INO_VALIDATE); |
| 152 | XFS_ERRORTAG_ATTR_RW(bulkstat, XFS_ERRTAG_BULKSTAT_READ_CHUNK); |
| 153 | XFS_ERRORTAG_ATTR_RW(logiodone, XFS_ERRTAG_IODONE_IOERR); |
| 154 | XFS_ERRORTAG_ATTR_RW(stratread, XFS_ERRTAG_STRATREAD_IOERR); |
| 155 | XFS_ERRORTAG_ATTR_RW(stratcmpl, XFS_ERRTAG_STRATCMPL_IOERR); |
| 156 | XFS_ERRORTAG_ATTR_RW(diowrite, XFS_ERRTAG_DIOWRITE_IOERR); |
| 157 | XFS_ERRORTAG_ATTR_RW(bmapifmt, XFS_ERRTAG_BMAPIFORMAT); |
| 158 | XFS_ERRORTAG_ATTR_RW(free_extent, XFS_ERRTAG_FREE_EXTENT); |
| 159 | XFS_ERRORTAG_ATTR_RW(rmap_finish_one, XFS_ERRTAG_RMAP_FINISH_ONE); |
| 160 | XFS_ERRORTAG_ATTR_RW(refcount_continue_update, XFS_ERRTAG_REFCOUNT_CONTINUE_UPDATE); |
| 161 | XFS_ERRORTAG_ATTR_RW(refcount_finish_one, XFS_ERRTAG_REFCOUNT_FINISH_ONE); |
| 162 | XFS_ERRORTAG_ATTR_RW(bmap_finish_one, XFS_ERRTAG_BMAP_FINISH_ONE); |
| 163 | XFS_ERRORTAG_ATTR_RW(ag_resv_critical, XFS_ERRTAG_AG_RESV_CRITICAL); |
Darrick J. Wong | f8c4725 | 2017-06-20 17:54:48 -0700 | [diff] [blame] | 164 | XFS_ERRORTAG_ATTR_RW(drop_writes, XFS_ERRTAG_DROP_WRITES); |
Brian Foster | 3e88a00 | 2017-06-27 09:52:32 -0700 | [diff] [blame] | 165 | XFS_ERRORTAG_ATTR_RW(log_bad_crc, XFS_ERRTAG_LOG_BAD_CRC); |
Brian Foster | 7f4d01f | 2017-08-08 18:21:52 -0700 | [diff] [blame] | 166 | XFS_ERRORTAG_ATTR_RW(log_item_pin, XFS_ERRTAG_LOG_ITEM_PIN); |
Brian Foster | 7561d27 | 2017-10-17 14:16:29 -0700 | [diff] [blame] | 167 | XFS_ERRORTAG_ATTR_RW(buf_lru_ref, XFS_ERRTAG_BUF_LRU_REF); |
Darrick J. Wong | c684010 | 2017-06-20 17:54:47 -0700 | [diff] [blame] | 168 | |
| 169 | static struct attribute *xfs_errortag_attrs[] = { |
| 170 | XFS_ERRORTAG_ATTR_LIST(noerror), |
| 171 | XFS_ERRORTAG_ATTR_LIST(iflush1), |
| 172 | XFS_ERRORTAG_ATTR_LIST(iflush2), |
| 173 | XFS_ERRORTAG_ATTR_LIST(iflush3), |
| 174 | XFS_ERRORTAG_ATTR_LIST(iflush4), |
| 175 | XFS_ERRORTAG_ATTR_LIST(iflush5), |
| 176 | XFS_ERRORTAG_ATTR_LIST(iflush6), |
| 177 | XFS_ERRORTAG_ATTR_LIST(dareadbuf), |
| 178 | XFS_ERRORTAG_ATTR_LIST(btree_chk_lblk), |
| 179 | XFS_ERRORTAG_ATTR_LIST(btree_chk_sblk), |
| 180 | XFS_ERRORTAG_ATTR_LIST(readagf), |
| 181 | XFS_ERRORTAG_ATTR_LIST(readagi), |
| 182 | XFS_ERRORTAG_ATTR_LIST(itobp), |
| 183 | XFS_ERRORTAG_ATTR_LIST(iunlink), |
| 184 | XFS_ERRORTAG_ATTR_LIST(iunlinkrm), |
| 185 | XFS_ERRORTAG_ATTR_LIST(dirinovalid), |
| 186 | XFS_ERRORTAG_ATTR_LIST(bulkstat), |
| 187 | XFS_ERRORTAG_ATTR_LIST(logiodone), |
| 188 | XFS_ERRORTAG_ATTR_LIST(stratread), |
| 189 | XFS_ERRORTAG_ATTR_LIST(stratcmpl), |
| 190 | XFS_ERRORTAG_ATTR_LIST(diowrite), |
| 191 | XFS_ERRORTAG_ATTR_LIST(bmapifmt), |
| 192 | XFS_ERRORTAG_ATTR_LIST(free_extent), |
| 193 | XFS_ERRORTAG_ATTR_LIST(rmap_finish_one), |
| 194 | XFS_ERRORTAG_ATTR_LIST(refcount_continue_update), |
| 195 | XFS_ERRORTAG_ATTR_LIST(refcount_finish_one), |
| 196 | XFS_ERRORTAG_ATTR_LIST(bmap_finish_one), |
| 197 | XFS_ERRORTAG_ATTR_LIST(ag_resv_critical), |
Darrick J. Wong | f8c4725 | 2017-06-20 17:54:48 -0700 | [diff] [blame] | 198 | XFS_ERRORTAG_ATTR_LIST(drop_writes), |
Brian Foster | 3e88a00 | 2017-06-27 09:52:32 -0700 | [diff] [blame] | 199 | XFS_ERRORTAG_ATTR_LIST(log_bad_crc), |
Brian Foster | 7f4d01f | 2017-08-08 18:21:52 -0700 | [diff] [blame] | 200 | XFS_ERRORTAG_ATTR_LIST(log_item_pin), |
Brian Foster | 7561d27 | 2017-10-17 14:16:29 -0700 | [diff] [blame] | 201 | XFS_ERRORTAG_ATTR_LIST(buf_lru_ref), |
Darrick J. Wong | c684010 | 2017-06-20 17:54:47 -0700 | [diff] [blame] | 202 | NULL, |
| 203 | }; |
| 204 | |
| 205 | struct kobj_type xfs_errortag_ktype = { |
| 206 | .release = xfs_sysfs_release, |
| 207 | .sysfs_ops = &xfs_errortag_sysfs_ops, |
| 208 | .default_attrs = xfs_errortag_attrs, |
| 209 | }; |
| 210 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 211 | int |
Darrick J. Wong | 31965ef | 2017-06-20 17:54:46 -0700 | [diff] [blame] | 212 | xfs_errortag_init( |
| 213 | struct xfs_mount *mp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 214 | { |
Darrick J. Wong | 31965ef | 2017-06-20 17:54:46 -0700 | [diff] [blame] | 215 | mp->m_errortag = kmem_zalloc(sizeof(unsigned int) * XFS_ERRTAG_MAX, |
| 216 | KM_SLEEP | KM_MAYFAIL); |
| 217 | if (!mp->m_errortag) |
| 218 | return -ENOMEM; |
Darrick J. Wong | c684010 | 2017-06-20 17:54:47 -0700 | [diff] [blame] | 219 | |
| 220 | return xfs_sysfs_init(&mp->m_errortag_kobj, &xfs_errortag_ktype, |
| 221 | &mp->m_kobj, "errortag"); |
Darrick J. Wong | 31965ef | 2017-06-20 17:54:46 -0700 | [diff] [blame] | 222 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 223 | |
Darrick J. Wong | 31965ef | 2017-06-20 17:54:46 -0700 | [diff] [blame] | 224 | void |
| 225 | xfs_errortag_del( |
| 226 | struct xfs_mount *mp) |
| 227 | { |
Darrick J. Wong | c684010 | 2017-06-20 17:54:47 -0700 | [diff] [blame] | 228 | xfs_sysfs_del(&mp->m_errortag_kobj); |
Darrick J. Wong | 31965ef | 2017-06-20 17:54:46 -0700 | [diff] [blame] | 229 | kmem_free(mp->m_errortag); |
| 230 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 231 | |
Darrick J. Wong | 31965ef | 2017-06-20 17:54:46 -0700 | [diff] [blame] | 232 | bool |
| 233 | xfs_errortag_test( |
| 234 | struct xfs_mount *mp, |
| 235 | const char *expression, |
| 236 | const char *file, |
| 237 | int line, |
| 238 | unsigned int error_tag) |
| 239 | { |
| 240 | unsigned int randfactor; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 241 | |
Carlos Maiolino | d04c241 | 2017-06-30 09:46:07 -0700 | [diff] [blame] | 242 | /* |
| 243 | * To be able to use error injection anywhere, we need to ensure error |
| 244 | * injection mechanism is already initialized. |
| 245 | * |
| 246 | * Code paths like I/O completion can be called before the |
| 247 | * initialization is complete, but be able to inject errors in such |
| 248 | * places is still useful. |
| 249 | */ |
| 250 | if (!mp->m_errortag) |
| 251 | return false; |
| 252 | |
Darrick J. Wong | 31965ef | 2017-06-20 17:54:46 -0700 | [diff] [blame] | 253 | ASSERT(error_tag < XFS_ERRTAG_MAX); |
| 254 | randfactor = mp->m_errortag[error_tag]; |
| 255 | if (!randfactor || prandom_u32() % randfactor) |
| 256 | return false; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 257 | |
Darrick J. Wong | 31965ef | 2017-06-20 17:54:46 -0700 | [diff] [blame] | 258 | xfs_warn_ratelimited(mp, |
| 259 | "Injecting error (%s) at file %s, line %d, on filesystem \"%s\"", |
| 260 | expression, file, line, mp->m_fsname); |
| 261 | return true; |
| 262 | } |
| 263 | |
| 264 | int |
Darrick J. Wong | c684010 | 2017-06-20 17:54:47 -0700 | [diff] [blame] | 265 | xfs_errortag_get( |
| 266 | struct xfs_mount *mp, |
| 267 | unsigned int error_tag) |
| 268 | { |
| 269 | if (error_tag >= XFS_ERRTAG_MAX) |
| 270 | return -EINVAL; |
| 271 | |
| 272 | return mp->m_errortag[error_tag]; |
| 273 | } |
| 274 | |
| 275 | int |
Darrick J. Wong | 31965ef | 2017-06-20 17:54:46 -0700 | [diff] [blame] | 276 | xfs_errortag_set( |
| 277 | struct xfs_mount *mp, |
| 278 | unsigned int error_tag, |
| 279 | unsigned int tag_value) |
| 280 | { |
| 281 | if (error_tag >= XFS_ERRTAG_MAX) |
| 282 | return -EINVAL; |
| 283 | |
| 284 | mp->m_errortag[error_tag] = tag_value; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 285 | return 0; |
| 286 | } |
| 287 | |
| 288 | int |
Darrick J. Wong | 31965ef | 2017-06-20 17:54:46 -0700 | [diff] [blame] | 289 | xfs_errortag_add( |
| 290 | struct xfs_mount *mp, |
| 291 | unsigned int error_tag) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 292 | { |
Darrick J. Wong | 128f24d | 2016-06-21 11:53:28 +1000 | [diff] [blame] | 293 | if (error_tag >= XFS_ERRTAG_MAX) |
| 294 | return -EINVAL; |
| 295 | |
Darrick J. Wong | 31965ef | 2017-06-20 17:54:46 -0700 | [diff] [blame] | 296 | return xfs_errortag_set(mp, error_tag, |
| 297 | xfs_errortag_random_default[error_tag]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 298 | } |
| 299 | |
| 300 | int |
Darrick J. Wong | 31965ef | 2017-06-20 17:54:46 -0700 | [diff] [blame] | 301 | xfs_errortag_clearall( |
| 302 | struct xfs_mount *mp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 303 | { |
Darrick J. Wong | 31965ef | 2017-06-20 17:54:46 -0700 | [diff] [blame] | 304 | memset(mp->m_errortag, 0, sizeof(unsigned int) * XFS_ERRTAG_MAX); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 305 | return 0; |
| 306 | } |
Christoph Hellwig | 1550d0b | 2008-08-13 16:17:37 +1000 | [diff] [blame] | 307 | #endif /* DEBUG */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 308 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 309 | void |
| 310 | xfs_error_report( |
Alex Elder | a0e856b | 2010-04-13 15:22:08 +1000 | [diff] [blame] | 311 | const char *tag, |
| 312 | int level, |
| 313 | struct xfs_mount *mp, |
| 314 | const char *filename, |
| 315 | int linenum, |
Christoph Hellwig | fc51c2b | 2015-06-22 09:44:02 +1000 | [diff] [blame] | 316 | void *ra) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 317 | { |
| 318 | if (level <= xfs_error_level) { |
Dave Chinner | 6a19d93 | 2011-03-07 10:02:35 +1100 | [diff] [blame] | 319 | xfs_alert_tag(mp, XFS_PTAG_ERROR_REPORT, |
Scott Wood | 65dd297 | 2015-03-25 14:56:21 +1100 | [diff] [blame] | 320 | "Internal error %s at line %d of file %s. Caller %pS", |
Alex Elder | a0e856b | 2010-04-13 15:22:08 +1000 | [diff] [blame] | 321 | tag, linenum, filename, ra); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 322 | |
| 323 | xfs_stack_trace(); |
| 324 | } |
| 325 | } |
| 326 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 327 | void |
| 328 | xfs_corruption_error( |
Alex Elder | a0e856b | 2010-04-13 15:22:08 +1000 | [diff] [blame] | 329 | const char *tag, |
| 330 | int level, |
| 331 | struct xfs_mount *mp, |
| 332 | void *p, |
| 333 | const char *filename, |
| 334 | int linenum, |
Christoph Hellwig | fc51c2b | 2015-06-22 09:44:02 +1000 | [diff] [blame] | 335 | void *ra) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 336 | { |
| 337 | if (level <= xfs_error_level) |
Dave Chinner | a205064 | 2013-04-03 16:11:11 +1100 | [diff] [blame] | 338 | xfs_hex_dump(p, 64); |
Alex Elder | a0e856b | 2010-04-13 15:22:08 +1000 | [diff] [blame] | 339 | xfs_error_report(tag, level, mp, filename, linenum, ra); |
Dave Chinner | 65333b4 | 2011-03-07 10:03:35 +1100 | [diff] [blame] | 340 | xfs_alert(mp, "Corruption detected. Unmount and run xfs_repair"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 341 | } |
Eric Sandeen | ca23f8f | 2014-02-27 15:21:07 +1100 | [diff] [blame] | 342 | |
| 343 | /* |
| 344 | * Warnings specifically for verifier errors. Differentiate CRC vs. invalid |
| 345 | * values, and omit the stack trace unless the error level is tuned high. |
| 346 | */ |
| 347 | void |
| 348 | xfs_verifier_error( |
| 349 | struct xfs_buf *bp) |
| 350 | { |
| 351 | struct xfs_mount *mp = bp->b_target->bt_mount; |
| 352 | |
Helge Deller | e150dcd | 2017-09-18 11:34:16 -0700 | [diff] [blame] | 353 | xfs_alert(mp, "Metadata %s detected at %pS, %s block 0x%llx", |
Dave Chinner | 2451337 | 2014-06-25 14:58:08 +1000 | [diff] [blame] | 354 | bp->b_error == -EFSBADCRC ? "CRC error" : "corruption", |
Eric Sandeen | 233135b | 2016-01-04 16:10:19 +1100 | [diff] [blame] | 355 | __return_address, bp->b_ops->name, bp->b_bn); |
Eric Sandeen | ca23f8f | 2014-02-27 15:21:07 +1100 | [diff] [blame] | 356 | |
| 357 | xfs_alert(mp, "Unmount and run xfs_repair"); |
| 358 | |
| 359 | if (xfs_error_level >= XFS_ERRLEVEL_LOW) { |
| 360 | xfs_alert(mp, "First 64 bytes of corrupted metadata buffer:"); |
| 361 | xfs_hex_dump(xfs_buf_offset(bp, 0), 64); |
| 362 | } |
| 363 | |
| 364 | if (xfs_error_level >= XFS_ERRLEVEL_HIGH) |
| 365 | xfs_stack_trace(); |
| 366 | } |