Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 1 | /* |
| 2 | * problem.h --- e2fsck problem error codes |
| 3 | * |
| 4 | * Copyright 1996 by Theodore Ts'o |
| 5 | * |
| 6 | * %Begin-Header% |
| 7 | * This file may be redistributed under the terms of the GNU Public |
| 8 | * License. |
| 9 | * %End-Header% |
| 10 | */ |
| 11 | |
JP Abgrall | e0ed740 | 2014-03-19 19:08:39 -0700 | [diff] [blame] | 12 | #include <stdint.h> |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 13 | typedef __u32 problem_t; |
| 14 | |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 15 | struct problem_context { |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 16 | errcode_t errcode; |
Theodore Ts'o | 86c627e | 2001-01-11 15:12:14 +0000 | [diff] [blame] | 17 | ext2_ino_t ino, ino2, dir; |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 18 | struct ext2_inode *inode; |
| 19 | struct ext2_dir_entry *dirent; |
Theodore Ts'o | 15d482b | 2007-08-20 21:31:11 -0400 | [diff] [blame] | 20 | blk64_t blk, blk2; |
Theodore Ts'o | 9d1bd3d | 1998-06-10 20:45:22 +0000 | [diff] [blame] | 21 | e2_blkcnt_t blkcount; |
JP Abgrall | e0ed740 | 2014-03-19 19:08:39 -0700 | [diff] [blame] | 22 | dgrp_t group; |
| 23 | __u32 csum1, csum2; |
Theodore Ts'o | 246501c | 1998-03-24 16:22:38 +0000 | [diff] [blame] | 24 | __u64 num; |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 25 | const char *str; |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 26 | }; |
| 27 | |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 28 | /* |
| 29 | * We define a set of "latch groups"; these are problems which are |
| 30 | * handled as a set. The user answers once for a particular latch |
| 31 | * group. |
| 32 | */ |
Theodore Ts'o | 21afac0 | 2001-05-14 12:47:41 +0000 | [diff] [blame] | 33 | #define PR_LATCH_MASK 0x0ff0 /* Latch mask */ |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 34 | #define PR_LATCH_BLOCK 0x0010 /* Latch for illegal blocks (pass 1) */ |
| 35 | #define PR_LATCH_BBLOCK 0x0020 /* Latch for bad block inode blocks (pass 1) */ |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 36 | #define PR_LATCH_IBITMAP 0x0030 /* Latch for pass 5 inode bitmap proc. */ |
| 37 | #define PR_LATCH_BBITMAP 0x0040 /* Latch for pass 5 inode bitmap proc. */ |
| 38 | #define PR_LATCH_RELOC 0x0050 /* Latch for superblock relocate hint */ |
| 39 | #define PR_LATCH_DBLOCK 0x0060 /* Latch for pass 1b dup block headers */ |
Theodore Ts'o | 21afac0 | 2001-05-14 12:47:41 +0000 | [diff] [blame] | 40 | #define PR_LATCH_LOW_DTIME 0x0070 /* Latch for pass1 orphaned list refugees */ |
Theodore Ts'o | da30704 | 2002-05-21 21:19:14 -0400 | [diff] [blame] | 41 | #define PR_LATCH_TOOBIG 0x0080 /* Latch for file to big errors */ |
Theodore Ts'o | 850d05e | 2002-07-25 00:00:08 -0400 | [diff] [blame] | 42 | #define PR_LATCH_OPTIMIZE_DIR 0x0090 /* Latch for optimize directories */ |
Theodore Ts'o | 6013915 | 2009-08-19 01:06:50 -0400 | [diff] [blame] | 43 | #define PR_LATCH_BG_CHECKSUM 0x00A0 /* Latch for block group checksums */ |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 44 | |
| 45 | #define PR_LATCH(x) ((((x) & PR_LATCH_MASK) >> 4) - 1) |
| 46 | |
| 47 | /* |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 48 | * Latch group descriptor flags |
| 49 | */ |
| 50 | #define PRL_YES 0x0001 /* Answer yes */ |
| 51 | #define PRL_NO 0x0002 /* Answer no */ |
| 52 | #define PRL_LATCHED 0x0004 /* The latch group is latched */ |
| 53 | #define PRL_SUPPRESS 0x0008 /* Suppress all latch group questions */ |
| 54 | |
| 55 | #define PRL_VARIABLE 0x000f /* All the flags that need to be reset */ |
| 56 | |
| 57 | /* |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 58 | * Pre-Pass 1 errors |
| 59 | */ |
| 60 | |
| 61 | /* Block bitmap not in group */ |
| 62 | #define PR_0_BB_NOT_GROUP 0x000001 |
| 63 | |
| 64 | /* Inode bitmap not in group */ |
| 65 | #define PR_0_IB_NOT_GROUP 0x000002 |
| 66 | |
| 67 | /* Inode table not in group */ |
| 68 | #define PR_0_ITABLE_NOT_GROUP 0x000003 |
| 69 | |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 70 | /* Superblock corrupt */ |
| 71 | #define PR_0_SB_CORRUPT 0x000004 |
| 72 | |
| 73 | /* Filesystem size is wrong */ |
| 74 | #define PR_0_FS_SIZE_WRONG 0x000005 |
| 75 | |
| 76 | /* Fragments not supported */ |
| 77 | #define PR_0_NO_FRAGMENTS 0x000006 |
| 78 | |
| 79 | /* Bad blocks_per_group */ |
| 80 | #define PR_0_BLOCKS_PER_GROUP 0x000007 |
| 81 | |
| 82 | /* Bad first_data_block */ |
| 83 | #define PR_0_FIRST_DATA_BLOCK 0x000008 |
| 84 | |
| 85 | /* Adding UUID to filesystem */ |
| 86 | #define PR_0_ADD_UUID 0x000009 |
| 87 | |
Theodore Ts'o | db0691b | 2008-03-31 12:16:51 -0400 | [diff] [blame] | 88 | /* Relocate hint */ |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 89 | #define PR_0_RELOCATE_HINT 0x00000A |
| 90 | |
| 91 | /* Miscellaneous superblock corruption */ |
| 92 | #define PR_0_MISC_CORRUPT_SUPER 0x00000B |
Theodore Ts'o | db0691b | 2008-03-31 12:16:51 -0400 | [diff] [blame] | 93 | |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 94 | /* Error determing physical device size of filesystem */ |
| 95 | #define PR_0_GETSIZE_ERROR 0x00000C |
| 96 | |
Theodore Ts'o | d4b0ce0 | 1999-06-18 01:09:29 +0000 | [diff] [blame] | 97 | /* Inode count in the superblock incorrect */ |
| 98 | #define PR_0_INODE_COUNT_WRONG 0x00000D |
| 99 | |
Theodore Ts'o | 4ea0a11 | 2000-05-08 13:33:17 +0000 | [diff] [blame] | 100 | /* The Hurd does not support the filetype feature */ |
| 101 | #define PR_0_HURD_CLEAR_FILETYPE 0x00000E |
Theodore Ts'o | 3b5386d | 2000-08-14 14:25:19 +0000 | [diff] [blame] | 102 | |
| 103 | /* Journal inode is invalid */ |
| 104 | #define PR_0_JOURNAL_BAD_INODE 0x00000F |
| 105 | |
Theodore Ts'o | adee8d7 | 2001-07-23 00:17:49 -0400 | [diff] [blame] | 106 | /* The external journal has multiple filesystems (which we can't handle yet) */ |
| 107 | #define PR_0_JOURNAL_UNSUPP_MULTIFS 0x000010 |
Theodore Ts'o | 3b5386d | 2000-08-14 14:25:19 +0000 | [diff] [blame] | 108 | |
Theodore Ts'o | adee8d7 | 2001-07-23 00:17:49 -0400 | [diff] [blame] | 109 | /* Can't find external journal */ |
| 110 | #define PR_0_CANT_FIND_JOURNAL 0x000011 |
Theodore Ts'o | 3b5386d | 2000-08-14 14:25:19 +0000 | [diff] [blame] | 111 | |
Theodore Ts'o | adee8d7 | 2001-07-23 00:17:49 -0400 | [diff] [blame] | 112 | /* External journal has bad superblock */ |
| 113 | #define PR_0_EXT_JOURNAL_BAD_SUPER 0x000012 |
Theodore Ts'o | 3b5386d | 2000-08-14 14:25:19 +0000 | [diff] [blame] | 114 | |
| 115 | /* Superblock has a bad journal UUID */ |
| 116 | #define PR_0_JOURNAL_BAD_UUID 0x000013 |
| 117 | |
| 118 | /* Journal has an unknown superblock type */ |
| 119 | #define PR_0_JOURNAL_UNSUPP_SUPER 0x000014 |
| 120 | |
| 121 | /* Journal superblock is corrupt */ |
| 122 | #define PR_0_JOURNAL_BAD_SUPER 0x000015 |
| 123 | |
| 124 | /* Journal superblock is corrupt */ |
| 125 | #define PR_0_JOURNAL_HAS_JOURNAL 0x000016 |
| 126 | |
| 127 | /* Superblock has recovery flag set but no journal */ |
| 128 | #define PR_0_JOURNAL_RECOVER_SET 0x000017 |
| 129 | |
Theodore Ts'o | d37066a | 2001-12-21 23:28:54 -0500 | [diff] [blame] | 130 | /* Journal has data, but recovery flag is clear */ |
| 131 | #define PR_0_JOURNAL_RECOVERY_CLEAR 0x000018 |
Theodore Ts'o | 3b5386d | 2000-08-14 14:25:19 +0000 | [diff] [blame] | 132 | |
Theodore Ts'o | d37066a | 2001-12-21 23:28:54 -0500 | [diff] [blame] | 133 | /* Ask if we should clear the journal */ |
| 134 | #define PR_0_JOURNAL_RESET_JOURNAL 0x000019 |
Theodore Ts'o | 3b5386d | 2000-08-14 14:25:19 +0000 | [diff] [blame] | 135 | |
Theodore Ts'o | 060b5fb | 2000-12-13 18:07:23 +0000 | [diff] [blame] | 136 | /* Filesystem revision is 0, but feature flags are set */ |
| 137 | #define PR_0_FS_REV_LEVEL 0x00001A |
| 138 | |
Theodore Ts'o | ecf1b77 | 2000-08-20 22:06:31 +0000 | [diff] [blame] | 139 | /* Clearing orphan inode */ |
Theodore Ts'o | 8394902 | 2000-10-25 01:38:50 +0000 | [diff] [blame] | 140 | #define PR_0_ORPHAN_CLEAR_INODE 0x000020 |
Theodore Ts'o | db0691b | 2008-03-31 12:16:51 -0400 | [diff] [blame] | 141 | |
Theodore Ts'o | 80bfaa3 | 2000-08-18 15:08:37 +0000 | [diff] [blame] | 142 | /* Illegal block found in orphaned inode */ |
Theodore Ts'o | ecf1b77 | 2000-08-20 22:06:31 +0000 | [diff] [blame] | 143 | #define PR_0_ORPHAN_ILLEGAL_BLOCK_NUM 0x000021 |
Theodore Ts'o | 80bfaa3 | 2000-08-18 15:08:37 +0000 | [diff] [blame] | 144 | |
| 145 | /* Already cleared block found in orphaned inode */ |
Theodore Ts'o | ecf1b77 | 2000-08-20 22:06:31 +0000 | [diff] [blame] | 146 | #define PR_0_ORPHAN_ALREADY_CLEARED_BLOCK 0x000022 |
Theodore Ts'o | db0691b | 2008-03-31 12:16:51 -0400 | [diff] [blame] | 147 | |
Theodore Ts'o | 80bfaa3 | 2000-08-18 15:08:37 +0000 | [diff] [blame] | 148 | /* Illegal orphan inode in superblock */ |
Theodore Ts'o | ecf1b77 | 2000-08-20 22:06:31 +0000 | [diff] [blame] | 149 | #define PR_0_ORPHAN_ILLEGAL_HEAD_INODE 0x000023 |
Theodore Ts'o | 80bfaa3 | 2000-08-18 15:08:37 +0000 | [diff] [blame] | 150 | |
| 151 | /* Illegal inode in orphaned inode list */ |
Andreas Dilger | ae33f57 | 2009-04-28 12:59:07 -0600 | [diff] [blame] | 152 | #define PR_0_ORPHAN_ILLEGAL_INODE 0x000024 |
Theodore Ts'o | 80bfaa3 | 2000-08-18 15:08:37 +0000 | [diff] [blame] | 153 | |
Theodore Ts'o | 424cd2b | 2001-05-14 04:06:56 +0000 | [diff] [blame] | 154 | /* Journal has unsupported read-only feature - abort */ |
| 155 | #define PR_0_JOURNAL_UNSUPP_ROCOMPAT 0x000025 |
| 156 | |
| 157 | /* Journal has unsupported incompatible feature - abort */ |
| 158 | #define PR_0_JOURNAL_UNSUPP_INCOMPAT 0x000026 |
| 159 | |
Theodore Ts'o | c7f2336 | 2001-05-23 22:19:47 +0000 | [diff] [blame] | 160 | /* Journal has unsupported version number */ |
Theodore Ts'o | 2f686ac | 2001-06-02 00:38:40 +0000 | [diff] [blame] | 161 | #define PR_0_JOURNAL_UNSUPP_VERSION 0x000027 |
Theodore Ts'o | c7f2336 | 2001-05-23 22:19:47 +0000 | [diff] [blame] | 162 | |
Theodore Ts'o | 773fd8a | 2001-10-06 21:26:27 -0400 | [diff] [blame] | 163 | /* Moving journal to hidden file */ |
| 164 | #define PR_0_MOVE_JOURNAL 0x000028 |
| 165 | |
| 166 | /* Error moving journal */ |
| 167 | #define PR_0_ERR_MOVE_JOURNAL 0x000029 |
| 168 | |
Theodore Ts'o | 62e3e7f | 2001-10-07 02:13:30 -0400 | [diff] [blame] | 169 | /* Clearing V2 journal superblock */ |
| 170 | #define PR_0_CLEAR_V2_JOURNAL 0x00002A |
| 171 | |
Theodore Ts'o | d37066a | 2001-12-21 23:28:54 -0500 | [diff] [blame] | 172 | /* Run journal anyway */ |
| 173 | #define PR_0_JOURNAL_RUN 0x00002B |
| 174 | |
| 175 | /* Run journal anyway by default */ |
| 176 | #define PR_0_JOURNAL_RUN_DEFAULT 0x00002C |
| 177 | |
Theodore Ts'o | a435ec3 | 2003-08-21 00:40:26 -0400 | [diff] [blame] | 178 | /* Backup journal inode blocks */ |
| 179 | #define PR_0_BACKUP_JNL 0x00002D |
| 180 | |
Theodore Ts'o | e75cfc5 | 2004-12-16 20:13:45 -0500 | [diff] [blame] | 181 | /* Reserved blocks w/o resize_inode */ |
| 182 | #define PR_0_NONZERO_RESERVED_GDT_BLOCKS 0x00002E |
| 183 | |
| 184 | /* Resize_inode not enabled, but resize inode is non-zero */ |
| 185 | #define PR_0_CLEAR_RESIZE_INODE 0x00002F |
| 186 | |
Theodore Ts'o | c3ffaf8 | 2004-12-24 01:42:22 -0500 | [diff] [blame] | 187 | /* Resize inode invalid */ |
| 188 | #define PR_0_RESIZE_INODE_INVALID 0x000030 |
| 189 | |
Theodore Ts'o | 8dceb92 | 2005-09-24 21:59:45 -0400 | [diff] [blame] | 190 | /* Last mount time is in the future */ |
| 191 | #define PR_0_FUTURE_SB_LAST_MOUNT 0x000031 |
| 192 | |
| 193 | /* Last write time is in the future */ |
| 194 | #define PR_0_FUTURE_SB_LAST_WRITE 0x000032 |
| 195 | |
Theodore Ts'o | b1c52b2 | 2006-03-10 15:25:59 -0500 | [diff] [blame] | 196 | /* Superblock hint for external journal incorrect */ |
| 197 | #define PR_0_EXTERNAL_JOURNAL_HINT 0x000033 |
| 198 | |
Theodore Ts'o | f77704e | 2006-11-11 22:32:35 -0500 | [diff] [blame] | 199 | /* Superblock hint for external journal incorrect */ |
| 200 | #define PR_0_DIRHASH_HINT 0x000034 |
| 201 | |
Jose R. Santos | 49a7360 | 2007-10-21 21:04:03 -0500 | [diff] [blame] | 202 | /* Group descriptor N checksum is invalid */ |
| 203 | #define PR_0_GDT_CSUM 0x000035 |
| 204 | |
| 205 | /* Group descriptor N marked uninitialized without feature set. */ |
| 206 | #define PR_0_GDT_UNINIT 0x000036 |
| 207 | |
JP Abgrall | e0ed740 | 2014-03-19 19:08:39 -0700 | [diff] [blame] | 208 | /* Block bitmap is not initialised and Inode bitmap is -- NO LONGER USED */ |
| 209 | /* #define PR_0_BB_UNINIT_IB_INIT 0x000037 */ |
Jose R. Santos | 49a7360 | 2007-10-21 21:04:03 -0500 | [diff] [blame] | 210 | |
| 211 | /* Group descriptor N has invalid unused inodes count. */ |
| 212 | #define PR_0_GDT_ITABLE_UNUSED 0x000038 |
| 213 | |
Andreas Dilger | 0d5439c | 2008-03-31 12:14:22 -0400 | [diff] [blame] | 214 | /* Last group block bitmap is uninitialized. */ |
| 215 | #define PR_0_BB_UNINIT_LAST 0x000039 |
| 216 | |
Theodore Ts'o | 185c4ae | 2008-05-23 01:00:19 -0400 | [diff] [blame] | 217 | /* Journal transaction found corrupt */ |
| 218 | #define PR_0_JNL_TXN_CORRUPT 0x00003A |
| 219 | |
Theodore Ts'o | 80875db | 2008-10-12 23:09:26 -0400 | [diff] [blame] | 220 | /* The test_fs filesystem flag is set and ext4 is available */ |
| 221 | #define PR_0_CLEAR_TESTFS_FLAG 0x00003B |
| 222 | |
Theodore Ts'o | 26ea489 | 2009-07-16 23:44:50 -0400 | [diff] [blame] | 223 | /* Last mount time is in the future (fudged) */ |
| 224 | #define PR_0_FUTURE_SB_LAST_MOUNT_FUDGED 0x00003C |
| 225 | |
| 226 | /* Last write time is in the future (fudged) */ |
| 227 | #define PR_0_FUTURE_SB_LAST_WRITE_FUDGED 0x00003D |
| 228 | |
Theodore Ts'o | 6013915 | 2009-08-19 01:06:50 -0400 | [diff] [blame] | 229 | /* Block group checksum (latch question) */ |
| 230 | #define PR_0_GDT_CSUM_LATCH 0x00003E |
| 231 | |
JP Abgrall | e0ed740 | 2014-03-19 19:08:39 -0700 | [diff] [blame] | 232 | /* Free inodes count wrong */ |
| 233 | #define PR_0_FREE_INODE_COUNT 0x00003F |
| 234 | |
| 235 | /* Free blocks count wrong */ |
| 236 | #define PR_0_FREE_BLOCK_COUNT 0x000040 |
| 237 | |
| 238 | /* Make quota file hidden */ |
| 239 | #define PR_0_HIDE_QUOTA 0x000041 |
| 240 | |
| 241 | /* Superblock has invalid MMP block. */ |
| 242 | #define PR_0_MMP_INVALID_BLK 0x000042 |
| 243 | |
| 244 | /* Superblock has invalid MMP magic. */ |
| 245 | #define PR_0_MMP_INVALID_MAGIC 0x000043 |
| 246 | |
| 247 | /* Opening file system failed */ |
| 248 | #define PR_0_OPEN_FAILED 0x000044 |
| 249 | |
| 250 | /* Checking group descriptor failed */ |
| 251 | #define PR_0_CHECK_DESC_FAILED 0x000045 |
| 252 | |
| 253 | /* 64bit is set but extents are not set. */ |
| 254 | #define PR_0_64BIT_WITHOUT_EXTENTS 0x000048 |
Darrick J. Wong | 27b2297 | 2013-10-11 21:20:36 -0400 | [diff] [blame] | 255 | |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 256 | /* |
| 257 | * Pass 1 errors |
| 258 | */ |
| 259 | |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 260 | /* Pass 1: Checking inodes, blocks, and sizes */ |
| 261 | #define PR_1_PASS_HEADER 0x010000 |
| 262 | |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 263 | /* Root directory is not an inode */ |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 264 | #define PR_1_ROOT_NO_DIR 0x010001 |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 265 | |
| 266 | /* Root directory has dtime set */ |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 267 | #define PR_1_ROOT_DTIME 0x010002 |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 268 | |
| 269 | /* Reserved inode has bad mode */ |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 270 | #define PR_1_RESERVED_BAD_MODE 0x010003 |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 271 | |
| 272 | /* Deleted inode has zero dtime */ |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 273 | #define PR_1_ZERO_DTIME 0x010004 |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 274 | |
| 275 | /* Inode in use, but dtime set */ |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 276 | #define PR_1_SET_DTIME 0x010005 |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 277 | |
| 278 | /* Zero-length directory */ |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 279 | #define PR_1_ZERO_LENGTH_DIR 0x010006 |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 280 | |
| 281 | /* Block bitmap conflicts with some other fs block */ |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 282 | #define PR_1_BB_CONFLICT 0x010007 |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 283 | |
| 284 | /* Inode bitmap conflicts with some other fs block */ |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 285 | #define PR_1_IB_CONFLICT 0x010008 |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 286 | |
| 287 | /* Inode table conflicts with some other fs block */ |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 288 | #define PR_1_ITABLE_CONFLICT 0x010009 |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 289 | |
| 290 | /* Block bitmap is on a bad block */ |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 291 | #define PR_1_BB_BAD_BLOCK 0x01000A |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 292 | |
| 293 | /* Inode bitmap is on a bad block */ |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 294 | #define PR_1_IB_BAD_BLOCK 0x01000B |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 295 | |
| 296 | /* Inode has incorrect i_size */ |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 297 | #define PR_1_BAD_I_SIZE 0x01000C |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 298 | |
| 299 | /* Inode has incorrect i_blocks */ |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 300 | #define PR_1_BAD_I_BLOCKS 0x01000D |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 301 | |
| 302 | /* Illegal block number in inode */ |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 303 | #define PR_1_ILLEGAL_BLOCK_NUM 0x01000E |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 304 | |
| 305 | /* Block number overlaps fs metadata */ |
| 306 | #define PR_1_BLOCK_OVERLAPS_METADATA 0x01000F |
| 307 | |
| 308 | /* Inode has illegal blocks (latch question) */ |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 309 | #define PR_1_INODE_BLOCK_LATCH 0x010010 |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 310 | |
| 311 | /* Too many bad blocks in inode */ |
Andreas Dilger | ae33f57 | 2009-04-28 12:59:07 -0600 | [diff] [blame] | 312 | #define PR_1_TOO_MANY_BAD_BLOCKS 0x010011 |
Theodore Ts'o | db0691b | 2008-03-31 12:16:51 -0400 | [diff] [blame] | 313 | |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 314 | /* Illegal block number in bad block inode */ |
Andreas Dilger | ae33f57 | 2009-04-28 12:59:07 -0600 | [diff] [blame] | 315 | #define PR_1_BB_ILLEGAL_BLOCK_NUM 0x010012 |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 316 | |
| 317 | /* Bad block inode has illegal blocks (latch question) */ |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 318 | #define PR_1_INODE_BBLOCK_LATCH 0x010013 |
| 319 | |
| 320 | /* Duplicate or bad blocks in use! */ |
| 321 | #define PR_1_DUP_BLOCKS_PREENSTOP 0x010014 |
Theodore Ts'o | db0691b | 2008-03-31 12:16:51 -0400 | [diff] [blame] | 322 | |
| 323 | /* Bad block used as bad block indirect block */ |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 324 | #define PR_1_BBINODE_BAD_METABLOCK 0x010015 |
| 325 | |
| 326 | /* Inconsistency can't be fixed prompt */ |
| 327 | #define PR_1_BBINODE_BAD_METABLOCK_PROMPT 0x010016 |
Theodore Ts'o | db0691b | 2008-03-31 12:16:51 -0400 | [diff] [blame] | 328 | |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 329 | /* Bad primary block */ |
Theodore Ts'o | b2f9319 | 2000-12-30 20:33:42 +0000 | [diff] [blame] | 330 | #define PR_1_BAD_PRIMARY_BLOCK 0x010017 |
Theodore Ts'o | db0691b | 2008-03-31 12:16:51 -0400 | [diff] [blame] | 331 | |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 332 | /* Bad primary block prompt */ |
Theodore Ts'o | b2f9319 | 2000-12-30 20:33:42 +0000 | [diff] [blame] | 333 | #define PR_1_BAD_PRIMARY_BLOCK_PROMPT 0x010018 |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 334 | |
| 335 | /* Bad primary superblock */ |
Theodore Ts'o | b2f9319 | 2000-12-30 20:33:42 +0000 | [diff] [blame] | 336 | #define PR_1_BAD_PRIMARY_SUPERBLOCK 0x010019 |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 337 | |
| 338 | /* Bad primary block group descriptors */ |
Theodore Ts'o | b2f9319 | 2000-12-30 20:33:42 +0000 | [diff] [blame] | 339 | #define PR_1_BAD_PRIMARY_GROUP_DESCRIPTOR 0x01001A |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 340 | |
| 341 | /* Bad superblock in group */ |
Theodore Ts'o | b2f9319 | 2000-12-30 20:33:42 +0000 | [diff] [blame] | 342 | #define PR_1_BAD_SUPERBLOCK 0x01001B |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 343 | |
| 344 | /* Bad block group descriptors in group */ |
Theodore Ts'o | b2f9319 | 2000-12-30 20:33:42 +0000 | [diff] [blame] | 345 | #define PR_1_BAD_GROUP_DESCRIPTORS 0x01001C |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 346 | |
Theodore Ts'o | db0691b | 2008-03-31 12:16:51 -0400 | [diff] [blame] | 347 | /* Block claimed for no reason */ |
Theodore Ts'o | b2f9319 | 2000-12-30 20:33:42 +0000 | [diff] [blame] | 348 | #define PR_1_PROGERR_CLAIMED_BLOCK 0x01001D |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 349 | |
Theodore Ts'o | f8188ff | 1997-11-14 05:23:04 +0000 | [diff] [blame] | 350 | /* Error allocating blocks for relocating metadata */ |
Theodore Ts'o | b2f9319 | 2000-12-30 20:33:42 +0000 | [diff] [blame] | 351 | #define PR_1_RELOC_BLOCK_ALLOCATE 0x01001E |
Theodore Ts'o | db0691b | 2008-03-31 12:16:51 -0400 | [diff] [blame] | 352 | |
Theodore Ts'o | f8188ff | 1997-11-14 05:23:04 +0000 | [diff] [blame] | 353 | /* Error allocating block buffer during relocation process */ |
Theodore Ts'o | b2f9319 | 2000-12-30 20:33:42 +0000 | [diff] [blame] | 354 | #define PR_1_RELOC_MEMORY_ALLOCATE 0x01001F |
Theodore Ts'o | db0691b | 2008-03-31 12:16:51 -0400 | [diff] [blame] | 355 | |
| 356 | /* Relocating metadata group information from X to Y */ |
Theodore Ts'o | b2f9319 | 2000-12-30 20:33:42 +0000 | [diff] [blame] | 357 | #define PR_1_RELOC_FROM_TO 0x010020 |
Theodore Ts'o | db0691b | 2008-03-31 12:16:51 -0400 | [diff] [blame] | 358 | |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 359 | /* Relocating metatdata group information to X */ |
Theodore Ts'o | b2f9319 | 2000-12-30 20:33:42 +0000 | [diff] [blame] | 360 | #define PR_1_RELOC_TO 0x010021 |
Theodore Ts'o | db0691b | 2008-03-31 12:16:51 -0400 | [diff] [blame] | 361 | |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 362 | /* Block read error during relocation process */ |
Theodore Ts'o | b2f9319 | 2000-12-30 20:33:42 +0000 | [diff] [blame] | 363 | #define PR_1_RELOC_READ_ERR 0x010022 |
Theodore Ts'o | db0691b | 2008-03-31 12:16:51 -0400 | [diff] [blame] | 364 | |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 365 | /* Block write error during relocation process */ |
Theodore Ts'o | b2f9319 | 2000-12-30 20:33:42 +0000 | [diff] [blame] | 366 | #define PR_1_RELOC_WRITE_ERR 0x010023 |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 367 | |
| 368 | /* Error allocating inode bitmap */ |
Theodore Ts'o | b2f9319 | 2000-12-30 20:33:42 +0000 | [diff] [blame] | 369 | #define PR_1_ALLOCATE_IBITMAP_ERROR 0x010024 |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 370 | |
| 371 | /* Error allocating block bitmap */ |
Theodore Ts'o | b2f9319 | 2000-12-30 20:33:42 +0000 | [diff] [blame] | 372 | #define PR_1_ALLOCATE_BBITMAP_ERROR 0x010025 |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 373 | |
| 374 | /* Error allocating icount structure */ |
Theodore Ts'o | b2f9319 | 2000-12-30 20:33:42 +0000 | [diff] [blame] | 375 | #define PR_1_ALLOCATE_ICOUNT 0x010026 |
Theodore Ts'o | db0691b | 2008-03-31 12:16:51 -0400 | [diff] [blame] | 376 | |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 377 | /* Error allocating dbcount */ |
Theodore Ts'o | b2f9319 | 2000-12-30 20:33:42 +0000 | [diff] [blame] | 378 | #define PR_1_ALLOCATE_DBCOUNT 0x010027 |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 379 | |
| 380 | /* Error while scanning inodes */ |
Theodore Ts'o | b2f9319 | 2000-12-30 20:33:42 +0000 | [diff] [blame] | 381 | #define PR_1_ISCAN_ERROR 0x010028 |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 382 | |
| 383 | /* Error while iterating over blocks */ |
Theodore Ts'o | b2f9319 | 2000-12-30 20:33:42 +0000 | [diff] [blame] | 384 | #define PR_1_BLOCK_ITERATE 0x010029 |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 385 | |
Theodore Ts'o | db0691b | 2008-03-31 12:16:51 -0400 | [diff] [blame] | 386 | /* Error while storing inode count information */ |
Theodore Ts'o | b2f9319 | 2000-12-30 20:33:42 +0000 | [diff] [blame] | 387 | #define PR_1_ICOUNT_STORE 0x01002A |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 388 | |
Theodore Ts'o | db0691b | 2008-03-31 12:16:51 -0400 | [diff] [blame] | 389 | /* Error while storing directory block information */ |
Theodore Ts'o | b2f9319 | 2000-12-30 20:33:42 +0000 | [diff] [blame] | 390 | #define PR_1_ADD_DBLOCK 0x01002B |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 391 | |
| 392 | /* Error while reading inode (for clearing) */ |
Theodore Ts'o | b2f9319 | 2000-12-30 20:33:42 +0000 | [diff] [blame] | 393 | #define PR_1_READ_INODE 0x01002C |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 394 | |
Theodore Ts'o | f8188ff | 1997-11-14 05:23:04 +0000 | [diff] [blame] | 395 | /* Suppress messages prompt */ |
Theodore Ts'o | b2f9319 | 2000-12-30 20:33:42 +0000 | [diff] [blame] | 396 | #define PR_1_SUPPRESS_MESSAGES 0x01002D |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 397 | |
Theodore Ts'o | 6fdc7a3 | 1999-11-10 13:34:40 +0000 | [diff] [blame] | 398 | /* Imagic flag set on an inode when filesystem doesn't support it */ |
| 399 | #define PR_1_SET_IMAGIC 0x01002F |
| 400 | |
| 401 | /* Immutable flag set on a device or socket inode */ |
| 402 | #define PR_1_SET_IMMUTABLE 0x010030 |
Theodore Ts'o | 1917875 | 2000-02-11 15:55:07 +0000 | [diff] [blame] | 403 | |
| 404 | /* Compression flag set on a non-compressed filesystem */ |
| 405 | #define PR_1_COMPR_SET 0x010031 |
| 406 | |
Theodore Ts'o | d647a1e | 2000-05-27 14:40:09 +0000 | [diff] [blame] | 407 | /* Non-zero size on on device, fifo or socket inode */ |
| 408 | #define PR_1_SET_NONZSIZE 0x010032 |
| 409 | |
Theodore Ts'o | 060b5fb | 2000-12-13 18:07:23 +0000 | [diff] [blame] | 410 | /* Filesystem revision is 0, but feature flags are set */ |
| 411 | #define PR_1_FS_REV_LEVEL 0x010033 |
| 412 | |
Theodore Ts'o | f18996c | 2001-01-03 16:57:24 +0000 | [diff] [blame] | 413 | /* Journal inode not in use, needs clearing */ |
Theodore Ts'o | a9ca201 | 2001-01-12 21:53:25 +0000 | [diff] [blame] | 414 | #define PR_1_JOURNAL_INODE_NOT_CLEAR 0x010034 |
Theodore Ts'o | f18996c | 2001-01-03 16:57:24 +0000 | [diff] [blame] | 415 | |
Theodore Ts'o | a9ca201 | 2001-01-12 21:53:25 +0000 | [diff] [blame] | 416 | /* Journal inode has wrong mode */ |
| 417 | #define PR_1_JOURNAL_BAD_MODE 0x010035 |
Theodore Ts'o | 21afac0 | 2001-05-14 12:47:41 +0000 | [diff] [blame] | 418 | |
| 419 | /* Inode that was part of orphan linked list */ |
| 420 | #define PR_1_LOW_DTIME 0x010036 |
| 421 | |
| 422 | /* Latch question which asks how to deal with low dtime inodes */ |
| 423 | #define PR_1_ORPHAN_LIST_REFUGEES 0x010037 |
Theodore Ts'o | 342d847 | 2001-07-02 11:54:09 -0400 | [diff] [blame] | 424 | |
| 425 | /* Error allocating refcount structure */ |
| 426 | #define PR_1_ALLOCATE_REFCOUNT 0x010038 |
Theodore Ts'o | db0691b | 2008-03-31 12:16:51 -0400 | [diff] [blame] | 427 | |
Theodore Ts'o | 342d847 | 2001-07-02 11:54:09 -0400 | [diff] [blame] | 428 | /* Error reading Extended Attribute block */ |
| 429 | #define PR_1_READ_EA_BLOCK 0x010039 |
| 430 | |
| 431 | /* Invalid Extended Attribute block */ |
| 432 | #define PR_1_BAD_EA_BLOCK 0x01003A |
| 433 | |
Theodore Ts'o | e8a3ee6 | 2001-07-07 11:12:50 -0400 | [diff] [blame] | 434 | /* Error reading Extended Attribute block while fixing refcount -- abort */ |
| 435 | #define PR_1_EXTATTR_READ_ABORT 0x01003B |
| 436 | |
| 437 | /* Extended attribute reference count incorrect */ |
| 438 | #define PR_1_EXTATTR_REFCOUNT 0x01003C |
| 439 | |
Theodore Ts'o | db0691b | 2008-03-31 12:16:51 -0400 | [diff] [blame] | 440 | /* Error writing Extended Attribute block while fixing refcount */ |
Theodore Ts'o | a6217f5 | 2010-05-12 18:58:53 -0400 | [diff] [blame] | 441 | #define PR_1_EXTATTR_WRITE_ABORT 0x01003D |
Theodore Ts'o | 55fd07e | 2001-07-19 16:31:25 -0400 | [diff] [blame] | 442 | |
| 443 | /* Multiple EA blocks not supported */ |
| 444 | #define PR_1_EA_MULTI_BLOCK 0x01003E |
| 445 | |
| 446 | /* Error allocating EA region allocation structure */ |
Theodore Ts'o | a6217f5 | 2010-05-12 18:58:53 -0400 | [diff] [blame] | 447 | #define PR_1_EA_ALLOC_REGION_ABORT 0x01003F |
Andreas Dilger | b94a052 | 2002-05-18 13:16:30 -0600 | [diff] [blame] | 448 | |
Theodore Ts'o | 55fd07e | 2001-07-19 16:31:25 -0400 | [diff] [blame] | 449 | /* Error EA allocation collision */ |
| 450 | #define PR_1_EA_ALLOC_COLLISION 0x010040 |
Andreas Dilger | b94a052 | 2002-05-18 13:16:30 -0600 | [diff] [blame] | 451 | |
Theodore Ts'o | 55fd07e | 2001-07-19 16:31:25 -0400 | [diff] [blame] | 452 | /* Bad extended attribute name */ |
| 453 | #define PR_1_EA_BAD_NAME 0x010041 |
| 454 | |
| 455 | /* Bad extended attribute value */ |
Andreas Dilger | b94a052 | 2002-05-18 13:16:30 -0600 | [diff] [blame] | 456 | #define PR_1_EA_BAD_VALUE 0x010042 |
| 457 | |
Theodore Ts'o | da30704 | 2002-05-21 21:19:14 -0400 | [diff] [blame] | 458 | /* Inode too big (latch question) */ |
| 459 | #define PR_1_INODE_TOOBIG 0x010043 |
| 460 | |
| 461 | /* Directory too big */ |
| 462 | #define PR_1_TOOBIG_DIR 0x010044 |
| 463 | |
| 464 | /* Regular file too big */ |
| 465 | #define PR_1_TOOBIG_REG 0x010045 |
| 466 | |
| 467 | /* Symlink too big */ |
| 468 | #define PR_1_TOOBIG_SYMLINK 0x010046 |
| 469 | |
Theodore Ts'o | 8fdc998 | 2002-06-25 23:26:34 -0400 | [diff] [blame] | 470 | /* INDEX_FL flag set on a non-HTREE filesystem */ |
| 471 | #define PR_1_HTREE_SET 0x010047 |
| 472 | |
Theodore Ts'o | db0691b | 2008-03-31 12:16:51 -0400 | [diff] [blame] | 473 | /* INDEX_FL flag set on a non-directory */ |
Theodore Ts'o | 503f9e7 | 2002-06-26 16:52:10 -0400 | [diff] [blame] | 474 | #define PR_1_HTREE_NODIR 0x010048 |
| 475 | |
Theodore Ts'o | db0691b | 2008-03-31 12:16:51 -0400 | [diff] [blame] | 476 | /* Invalid root node in HTREE directory */ |
Theodore Ts'o | 503f9e7 | 2002-06-26 16:52:10 -0400 | [diff] [blame] | 477 | #define PR_1_HTREE_BADROOT 0x010049 |
| 478 | |
Theodore Ts'o | db0691b | 2008-03-31 12:16:51 -0400 | [diff] [blame] | 479 | /* Unsupported hash version in HTREE directory */ |
Theodore Ts'o | 503f9e7 | 2002-06-26 16:52:10 -0400 | [diff] [blame] | 480 | #define PR_1_HTREE_HASHV 0x01004A |
| 481 | |
Theodore Ts'o | db0691b | 2008-03-31 12:16:51 -0400 | [diff] [blame] | 482 | /* Incompatible flag in HTREE root node */ |
Theodore Ts'o | 503f9e7 | 2002-06-26 16:52:10 -0400 | [diff] [blame] | 483 | #define PR_1_HTREE_INCOMPAT 0x01004B |
| 484 | |
Theodore Ts'o | db0691b | 2008-03-31 12:16:51 -0400 | [diff] [blame] | 485 | /* HTREE too deep */ |
Theodore Ts'o | 503f9e7 | 2002-06-26 16:52:10 -0400 | [diff] [blame] | 486 | #define PR_1_HTREE_DEPTH 0x01004C |
| 487 | |
Theodore Ts'o | 000ba40 | 2003-11-21 10:41:58 -0500 | [diff] [blame] | 488 | /* Bad block has indirect block that conflicts with filesystem block */ |
| 489 | #define PR_1_BB_FS_BLOCK 0x01004D |
| 490 | |
Theodore Ts'o | c3ffaf8 | 2004-12-24 01:42:22 -0500 | [diff] [blame] | 491 | /* Resize inode failed */ |
| 492 | #define PR_1_RESIZE_INODE_CREATE 0x01004E |
| 493 | |
Theodore Ts'o | db0691b | 2008-03-31 12:16:51 -0400 | [diff] [blame] | 494 | /* inode->i_size is too long */ |
Theodore Ts'o | cebe48a | 2005-03-21 13:15:45 -0500 | [diff] [blame] | 495 | #define PR_1_EXTRA_ISIZE 0x01004F |
| 496 | |
| 497 | /* attribute name is too long */ |
| 498 | #define PR_1_ATTR_NAME_LEN 0x010050 |
| 499 | |
| 500 | /* wrong EA value offset */ |
| 501 | #define PR_1_ATTR_VALUE_OFFSET 0x010051 |
| 502 | |
| 503 | /* wrong EA blocknumber */ |
| 504 | #define PR_1_ATTR_VALUE_BLOCK 0x010052 |
| 505 | |
| 506 | /* wrong EA value size */ |
| 507 | #define PR_1_ATTR_VALUE_SIZE 0x010053 |
| 508 | |
| 509 | /* wrong EA hash value */ |
| 510 | #define PR_1_ATTR_HASH 0x010054 |
| 511 | |
Theodore Ts'o | fbc3f90 | 2007-04-02 10:08:59 -0400 | [diff] [blame] | 512 | /* inode appears to be a directory */ |
| 513 | #define PR_1_TREAT_AS_DIRECTORY 0x010055 |
| 514 | |
Theodore Ts'o | 15d482b | 2007-08-20 21:31:11 -0400 | [diff] [blame] | 515 | /* Error while reading extent tree */ |
| 516 | #define PR_1_READ_EXTENT 0x010056 |
| 517 | |
Theodore Ts'o | 7518c17 | 2008-12-25 22:42:38 -0500 | [diff] [blame] | 518 | /* Failure to iterate extents */ |
| 519 | #define PR_1_EXTENT_ITERATE_FAILURE 0x010057 |
Theodore Ts'o | 15d482b | 2007-08-20 21:31:11 -0400 | [diff] [blame] | 520 | |
| 521 | /* Bad starting block in extent */ |
| 522 | #define PR_1_EXTENT_BAD_START_BLK 0x010058 |
| 523 | |
| 524 | /* Extent ends beyond filesystem */ |
| 525 | #define PR_1_EXTENT_ENDS_BEYOND 0x010059 |
| 526 | |
| 527 | /* EXTENTS_FL flag set on a non-extents capable filesystem */ |
| 528 | #define PR_1_EXTENTS_SET 0x01005A |
| 529 | |
| 530 | /* inode has extents, superblock missing INCOMPAT_EXTENTS feature */ |
| 531 | #define PR_1_EXTENT_FEATURE 0x01005B |
| 532 | |
| 533 | /* inode missing EXTENTS_FL, but is an extent inode */ |
| 534 | #define PR_1_UNSET_EXTENT_FL 0x01005C |
| 535 | |
Theodore Ts'o | ee19c90 | 2008-03-13 23:13:18 -0400 | [diff] [blame] | 536 | /* Fast symlink has EXTENTS_FL set */ |
| 537 | #define PR_1_FAST_SYMLINK_EXTENT_FL 0x01005D |
| 538 | |
Theodore Ts'o | d5a8f9a | 2008-06-02 20:12:34 -0400 | [diff] [blame] | 539 | /* Extents are out of order */ |
| 540 | #define PR_1_OUT_OF_ORDER_EXTENTS 0x01005E |
| 541 | |
Theodore Ts'o | 7518c17 | 2008-12-25 22:42:38 -0500 | [diff] [blame] | 542 | /* Extent node header invalid */ |
| 543 | #define PR_1_EXTENT_HEADER_INVALID 0x01005F |
| 544 | |
JP Abgrall | e0ed740 | 2014-03-19 19:08:39 -0700 | [diff] [blame] | 545 | /* PR_1_EOFBLOCKS_FL_SET 0x010060 was here */ |
Theodore Ts'o | 2291fbb | 2010-05-10 10:17:44 -0400 | [diff] [blame] | 546 | |
JP Abgrall | e0ed740 | 2014-03-19 19:08:39 -0700 | [diff] [blame] | 547 | /* Failed to convert subcluster bitmap */ |
| 548 | #define PR_1_CONVERT_SUBCLUSTER 0x010061 |
| 549 | |
| 550 | /* Quota inode has wrong mode */ |
| 551 | #define PR_1_QUOTA_BAD_MODE 0x010062 |
| 552 | |
| 553 | /* Quota inode is not in use, but contains data */ |
| 554 | #define PR_1_QUOTA_INODE_NOT_CLEAR 0x010063 |
| 555 | |
| 556 | /* Quota inode is user visible */ |
| 557 | #define PR_1_QUOTA_INODE_NOT_HIDDEN 0x010064 |
| 558 | |
| 559 | /* Invalid bad inode */ |
| 560 | #define PR_1_INVALID_BAD_INODE 0x010065 |
| 561 | |
| 562 | /* Extent has zero length */ |
| 563 | #define PR_1_EXTENT_LENGTH_ZERO 0x010066 |
| 564 | |
| 565 | /* Index start doesn't match start of next extent down */ |
| 566 | #define PR_1_EXTENT_INDEX_START_INVALID 0x01006D |
| 567 | |
| 568 | #define PR_1_EXTENT_END_OUT_OF_BOUNDS 0x01006E |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 569 | /* |
| 570 | * Pass 1b errors |
| 571 | */ |
| 572 | |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 573 | /* Pass 1B: Rescan for duplicate/bad blocks */ |
| 574 | #define PR_1B_PASS_HEADER 0x011000 |
| 575 | |
| 576 | /* Duplicate/bad block(s) header */ |
| 577 | #define PR_1B_DUP_BLOCK_HEADER 0x011001 |
| 578 | |
| 579 | /* Duplicate/bad block(s) in inode */ |
| 580 | #define PR_1B_DUP_BLOCK 0x011002 |
| 581 | |
| 582 | /* Duplicate/bad block(s) end */ |
| 583 | #define PR_1B_DUP_BLOCK_END 0x011003 |
Theodore Ts'o | db0691b | 2008-03-31 12:16:51 -0400 | [diff] [blame] | 584 | |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 585 | /* Error while scanning inodes */ |
| 586 | #define PR_1B_ISCAN_ERROR 0x011004 |
| 587 | |
| 588 | /* Error allocating inode bitmap */ |
| 589 | #define PR_1B_ALLOCATE_IBITMAP_ERROR 0x011005 |
| 590 | |
Theodore Ts'o | 133a56d | 2000-11-17 05:40:49 +0000 | [diff] [blame] | 591 | /* Error while iterating over blocks */ |
Andreas Dilger | 7494cbf | 2009-04-27 16:59:24 -0600 | [diff] [blame] | 592 | #define PR_1B_BLOCK_ITERATE 0x011006 |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 593 | |
Theodore Ts'o | 0684a4f | 2002-08-17 10:19:44 -0400 | [diff] [blame] | 594 | /* Error adjusting EA refcount */ |
Andreas Dilger | 7494cbf | 2009-04-27 16:59:24 -0600 | [diff] [blame] | 595 | #define PR_1B_ADJ_EA_REFCOUNT 0x011007 |
Theodore Ts'o | 0684a4f | 2002-08-17 10:19:44 -0400 | [diff] [blame] | 596 | |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 597 | /* Pass 1C: Scan directories for inodes with dup blocks. */ |
| 598 | #define PR_1C_PASS_HEADER 0x012000 |
| 599 | |
| 600 | |
| 601 | /* Pass 1D: Reconciling duplicate blocks */ |
| 602 | #define PR_1D_PASS_HEADER 0x013000 |
| 603 | |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 604 | /* File has duplicate blocks */ |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 605 | #define PR_1D_DUP_FILE 0x013001 |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 606 | |
Theodore Ts'o | db0691b | 2008-03-31 12:16:51 -0400 | [diff] [blame] | 607 | /* List of files sharing duplicate blocks */ |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 608 | #define PR_1D_DUP_FILE_LIST 0x013002 |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 609 | |
Theodore Ts'o | db0691b | 2008-03-31 12:16:51 -0400 | [diff] [blame] | 610 | /* File sharing blocks with filesystem metadata */ |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 611 | #define PR_1D_SHARE_METADATA 0x013003 |
Theodore Ts'o | 521e368 | 1997-04-29 17:48:10 +0000 | [diff] [blame] | 612 | |
Theodore Ts'o | db0691b | 2008-03-31 12:16:51 -0400 | [diff] [blame] | 613 | /* Report of how many duplicate/bad inodes */ |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 614 | #define PR_1D_NUM_DUP_INODES 0x013004 |
| 615 | |
| 616 | /* Duplicated blocks already reassigned or cloned. */ |
| 617 | #define PR_1D_DUP_BLOCKS_DEALT 0x013005 |
| 618 | |
| 619 | /* Clone duplicate/bad blocks? */ |
| 620 | #define PR_1D_CLONE_QUESTION 0x013006 |
| 621 | |
| 622 | /* Delete file? */ |
| 623 | #define PR_1D_DELETE_QUESTION 0x013007 |
| 624 | |
| 625 | /* Couldn't clone file (error) */ |
| 626 | #define PR_1D_CLONE_ERROR 0x013008 |
Theodore Ts'o | db0691b | 2008-03-31 12:16:51 -0400 | [diff] [blame] | 627 | |
Theodore Ts'o | 890a2f9 | 2015-07-14 22:50:51 -0400 | [diff] [blame] | 628 | /* Error allocating memory for encrypted directory list */ |
| 629 | #define PR_1_ALLOCATE_ENCRYPTED_DIRLIST 0x01007E |
| 630 | |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 631 | /* |
| 632 | * Pass 2 errors |
| 633 | */ |
| 634 | |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 635 | /* Pass 2: Checking directory structure */ |
| 636 | #define PR_2_PASS_HEADER 0x020000 |
| 637 | |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 638 | /* Bad inode number for '.' */ |
| 639 | #define PR_2_BAD_INODE_DOT 0x020001 |
| 640 | |
| 641 | /* Directory entry has bad inode number */ |
| 642 | #define PR_2_BAD_INO 0x020002 |
| 643 | |
| 644 | /* Directory entry has deleted or unused inode */ |
| 645 | #define PR_2_UNUSED_INODE 0x020003 |
| 646 | |
| 647 | /* Directry entry is link to '.' */ |
| 648 | #define PR_2_LINK_DOT 0x020004 |
| 649 | |
| 650 | /* Directory entry points to inode now located in a bad block */ |
| 651 | #define PR_2_BB_INODE 0x020005 |
| 652 | |
| 653 | /* Directory entry contains a link to a directory */ |
| 654 | #define PR_2_LINK_DIR 0x020006 |
| 655 | |
| 656 | /* Directory entry contains a link to the root directry */ |
| 657 | #define PR_2_LINK_ROOT 0x020007 |
| 658 | |
| 659 | /* Directory entry has illegal characters in its name */ |
| 660 | #define PR_2_BAD_NAME 0x020008 |
| 661 | |
Theodore Ts'o | db0691b | 2008-03-31 12:16:51 -0400 | [diff] [blame] | 662 | /* Missing '.' in directory inode */ |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 663 | #define PR_2_MISSING_DOT 0x020009 |
| 664 | |
Theodore Ts'o | db0691b | 2008-03-31 12:16:51 -0400 | [diff] [blame] | 665 | /* Missing '..' in directory inode */ |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 666 | #define PR_2_MISSING_DOT_DOT 0x02000A |
| 667 | |
| 668 | /* First entry in directory inode doesn't contain '.' */ |
| 669 | #define PR_2_1ST_NOT_DOT 0x02000B |
| 670 | |
| 671 | /* Second entry in directory inode doesn't contain '..' */ |
| 672 | #define PR_2_2ND_NOT_DOT_DOT 0x02000C |
| 673 | |
| 674 | /* i_faddr should be zero */ |
| 675 | #define PR_2_FADDR_ZERO 0x02000D |
| 676 | |
| 677 | /* i_file_acl should be zero */ |
| 678 | #define PR_2_FILE_ACL_ZERO 0x02000E |
| 679 | |
| 680 | /* i_dir_acl should be zero */ |
| 681 | #define PR_2_DIR_ACL_ZERO 0x02000F |
| 682 | |
| 683 | /* i_frag should be zero */ |
| 684 | #define PR_2_FRAG_ZERO 0x020010 |
| 685 | |
| 686 | /* i_fsize should be zero */ |
| 687 | #define PR_2_FSIZE_ZERO 0x020011 |
Theodore Ts'o | db0691b | 2008-03-31 12:16:51 -0400 | [diff] [blame] | 688 | |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 689 | /* inode has bad mode */ |
| 690 | #define PR_2_BAD_MODE 0x020012 |
| 691 | |
| 692 | /* directory corrupted */ |
| 693 | #define PR_2_DIR_CORRUPTED 0x020013 |
Theodore Ts'o | db0691b | 2008-03-31 12:16:51 -0400 | [diff] [blame] | 694 | |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 695 | /* filename too long */ |
| 696 | #define PR_2_FILENAME_LONG 0x020014 |
Theodore Ts'o | db0691b | 2008-03-31 12:16:51 -0400 | [diff] [blame] | 697 | |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 698 | /* Directory inode has a missing block (hole) */ |
| 699 | #define PR_2_DIRECTORY_HOLE 0x020015 |
| 700 | |
| 701 | /* '.' is not NULL terminated */ |
| 702 | #define PR_2_DOT_NULL_TERM 0x020016 |
| 703 | |
| 704 | /* '..' is not NULL terminated */ |
| 705 | #define PR_2_DOT_DOT_NULL_TERM 0x020017 |
| 706 | |
Theodore Ts'o | 7cf73dc | 1997-08-14 17:17:16 +0000 | [diff] [blame] | 707 | /* Illegal character device in inode */ |
| 708 | #define PR_2_BAD_CHAR_DEV 0x020018 |
| 709 | |
| 710 | /* Illegal block device in inode */ |
| 711 | #define PR_2_BAD_BLOCK_DEV 0x020019 |
| 712 | |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 713 | /* Duplicate '.' entry */ |
| 714 | #define PR_2_DUP_DOT 0x02001A |
| 715 | |
| 716 | /* Duplicate '..' entry */ |
| 717 | #define PR_2_DUP_DOT_DOT 0x02001B |
Theodore Ts'o | db0691b | 2008-03-31 12:16:51 -0400 | [diff] [blame] | 718 | |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 719 | /* Internal error: couldn't find dir_info */ |
| 720 | #define PR_2_NO_DIRINFO 0x02001C |
| 721 | |
| 722 | /* Final rec_len is wrong */ |
| 723 | #define PR_2_FINAL_RECLEN 0x02001D |
| 724 | |
| 725 | /* Error allocating icount structure */ |
| 726 | #define PR_2_ALLOCATE_ICOUNT 0x02001E |
| 727 | |
| 728 | /* Error iterating over directory blocks */ |
| 729 | #define PR_2_DBLIST_ITERATE 0x02001F |
| 730 | |
| 731 | /* Error reading directory block */ |
| 732 | #define PR_2_READ_DIRBLOCK 0x020020 |
| 733 | |
| 734 | /* Error writing directory block */ |
| 735 | #define PR_2_WRITE_DIRBLOCK 0x020021 |
| 736 | |
| 737 | /* Error allocating new directory block */ |
| 738 | #define PR_2_ALLOC_DIRBOCK 0x020022 |
| 739 | |
| 740 | /* Error deallocating inode */ |
| 741 | #define PR_2_DEALLOC_INODE 0x020023 |
| 742 | |
Theodore Ts'o | f8188ff | 1997-11-14 05:23:04 +0000 | [diff] [blame] | 743 | /* Directory entry for '.' is big. Split? */ |
Theodore Ts'o | 7142db0 | 1999-11-08 18:46:54 +0000 | [diff] [blame] | 744 | #define PR_2_SPLIT_DOT 0x020024 |
Theodore Ts'o | f8188ff | 1997-11-14 05:23:04 +0000 | [diff] [blame] | 745 | |
Theodore Ts'o | 1dde43f | 1998-11-14 04:18:28 +0000 | [diff] [blame] | 746 | /* Illegal FIFO */ |
| 747 | #define PR_2_BAD_FIFO 0x020025 |
| 748 | |
| 749 | /* Illegal socket */ |
| 750 | #define PR_2_BAD_SOCKET 0x020026 |
| 751 | |
Theodore Ts'o | aa4115a | 1999-10-21 19:33:18 +0000 | [diff] [blame] | 752 | /* Directory filetype not set */ |
| 753 | #define PR_2_SET_FILETYPE 0x020027 |
| 754 | |
| 755 | /* Directory filetype incorrect */ |
| 756 | #define PR_2_BAD_FILETYPE 0x020028 |
| 757 | |
Theodore Ts'o | 7847c1d | 1999-10-22 15:11:42 +0000 | [diff] [blame] | 758 | /* Directory filetype set when it shouldn't be */ |
| 759 | #define PR_2_CLEAR_FILETYPE 0x020029 |
| 760 | |
Theodore Ts'o | c40db6d | 1999-10-25 21:03:34 +0000 | [diff] [blame] | 761 | /* Directory filename can't be zero-length */ |
| 762 | #define PR_2_NULL_NAME 0x020030 |
| 763 | |
Theodore Ts'o | bcf9c5d | 2002-05-21 09:14:17 -0400 | [diff] [blame] | 764 | /* Invalid symlink */ |
| 765 | #define PR_2_INVALID_SYMLINK 0x020031 |
Theodore Ts'o | fdbdea0 | 2001-06-02 04:26:26 +0000 | [diff] [blame] | 766 | |
Theodore Ts'o | 342d847 | 2001-07-02 11:54:09 -0400 | [diff] [blame] | 767 | /* i_file_acl (extended attribute) is bad */ |
| 768 | #define PR_2_FILE_ACL_BAD 0x020032 |
| 769 | |
Theodore Ts'o | a474269 | 2001-08-09 04:14:04 -0400 | [diff] [blame] | 770 | /* Filesystem contains large files, but has no such flag in sb */ |
| 771 | #define PR_2_FEATURE_LARGE_FILES 0x020033 |
| 772 | |
Theodore Ts'o | 8fdc998 | 2002-06-25 23:26:34 -0400 | [diff] [blame] | 773 | /* Node in HTREE directory not referenced */ |
| 774 | #define PR_2_HTREE_NOTREF 0x020034 |
| 775 | |
| 776 | /* Node in HTREE directory referenced twice */ |
| 777 | #define PR_2_HTREE_DUPREF 0x020035 |
| 778 | |
| 779 | /* Node in HTREE directory has bad min hash */ |
| 780 | #define PR_2_HTREE_MIN_HASH 0x020036 |
| 781 | |
| 782 | /* Node in HTREE directory has bad max hash */ |
| 783 | #define PR_2_HTREE_MAX_HASH 0x020037 |
| 784 | |
| 785 | /* Clear invalid HTREE directory */ |
| 786 | #define PR_2_HTREE_CLEAR 0x020038 |
| 787 | |
| 788 | /* Clear the htree flag forcibly */ |
Theodore Ts'o | 33db8f8 | 2005-02-05 10:28:15 -0500 | [diff] [blame] | 789 | /* #define PR_2_HTREE_FCLR 0x020039 */ |
Theodore Ts'o | 8fdc998 | 2002-06-25 23:26:34 -0400 | [diff] [blame] | 790 | |
| 791 | /* Bad block in htree interior node */ |
| 792 | #define PR_2_HTREE_BADBLK 0x02003A |
| 793 | |
Theodore Ts'o | 0684a4f | 2002-08-17 10:19:44 -0400 | [diff] [blame] | 794 | /* Error adjusting EA refcount */ |
| 795 | #define PR_2_ADJ_EA_REFCOUNT 0x02003B |
| 796 | |
Theodore Ts'o | ea1959f | 2002-08-31 02:32:41 -0400 | [diff] [blame] | 797 | /* Invalid HTREE root node */ |
| 798 | #define PR_2_HTREE_BAD_ROOT 0x02003C |
| 799 | |
Theodore Ts'o | ad4fa46 | 2002-09-30 11:19:19 -0400 | [diff] [blame] | 800 | /* Invalid HTREE limit */ |
| 801 | #define PR_2_HTREE_BAD_LIMIT 0x02003D |
| 802 | |
| 803 | /* Invalid HTREE count */ |
| 804 | #define PR_2_HTREE_BAD_COUNT 0x02003E |
| 805 | |
| 806 | /* HTREE interior node has out-of-order hashes in table */ |
| 807 | #define PR_2_HTREE_HASH_ORDER 0x02003F |
| 808 | |
| 809 | /* Node in HTREE directory has bad depth */ |
Theodore Ts'o | b0700a1 | 2003-03-14 01:43:56 -0500 | [diff] [blame] | 810 | #define PR_2_HTREE_BAD_DEPTH 0x020040 |
| 811 | |
| 812 | /* Duplicate directory entry found */ |
| 813 | #define PR_2_DUPLICATE_DIRENT 0x020041 |
| 814 | |
| 815 | /* Non-unique filename found */ |
| 816 | #define PR_2_NON_UNIQUE_FILE 0x020042 |
Theodore Ts'o | ad4fa46 | 2002-09-30 11:19:19 -0400 | [diff] [blame] | 817 | |
Theodore Ts'o | 0926668 | 2003-03-14 22:19:10 -0500 | [diff] [blame] | 818 | /* Duplicate directory entry found */ |
| 819 | #define PR_2_REPORT_DUP_DIRENT 0x020043 |
| 820 | |
Theodore Ts'o | 5d17119 | 2006-11-11 06:32:03 -0500 | [diff] [blame] | 821 | /* i_blocks_hi should be zero */ |
| 822 | #define PR_2_BLOCKS_HI_ZERO 0x020044 |
| 823 | |
Theodore Ts'o | d45edec | 2008-03-12 16:10:48 -0400 | [diff] [blame] | 824 | /* Unexpected HTREE block */ |
| 825 | #define PR_2_UNEXPECTED_HTREE_BLOCK 0x020045 |
| 826 | |
Jose R. Santos | 49a7360 | 2007-10-21 21:04:03 -0500 | [diff] [blame] | 827 | /* Inode found in group where _INODE_UNINIT is set */ |
| 828 | #define PR_2_INOREF_BG_INO_UNINIT 0x020046 |
| 829 | |
| 830 | /* Inode found in group unused inodes area */ |
| 831 | #define PR_2_INOREF_IN_UNUSED 0x020047 |
| 832 | |
Theodore Ts'o | 911ec62 | 2009-04-23 21:31:16 -0400 | [diff] [blame] | 833 | /* i_file_acl_hi should be zero */ |
| 834 | #define PR_2_I_FILE_ACL_HI_ZERO 0x020048 |
| 835 | |
Theodore Ts'o | 638c15d | 2015-10-25 22:19:04 -0400 | [diff] [blame] | 836 | /* Encrypted directory entry is too short */ |
| 837 | #define PR_2_BAD_ENCRYPTED_NAME 0x020050 |
| 838 | |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 839 | /* |
| 840 | * Pass 3 errors |
| 841 | */ |
| 842 | |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 843 | /* Pass 3: Checking directory connectivity */ |
| 844 | #define PR_3_PASS_HEADER 0x030000 |
| 845 | |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 846 | /* Root inode not allocated */ |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 847 | #define PR_3_NO_ROOT_INODE 0x030001 |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 848 | |
| 849 | /* No room in lost+found */ |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 850 | #define PR_3_EXPAND_LF_DIR 0x030002 |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 851 | |
| 852 | /* Unconnected directory inode */ |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 853 | #define PR_3_UNCONNECTED_DIR 0x030003 |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 854 | |
| 855 | /* /lost+found not found */ |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 856 | #define PR_3_NO_LF_DIR 0x030004 |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 857 | |
| 858 | /* .. entry is incorrect */ |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 859 | #define PR_3_BAD_DOT_DOT 0x030005 |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 860 | |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 861 | /* Bad or non-existent /lost+found. Cannot reconnect */ |
| 862 | #define PR_3_NO_LPF 0x030006 |
| 863 | |
| 864 | /* Could not expand /lost+found */ |
| 865 | #define PR_3_CANT_EXPAND_LPF 0x030007 |
| 866 | |
| 867 | /* Could not reconnect inode */ |
| 868 | #define PR_3_CANT_RECONNECT 0x030008 |
| 869 | |
| 870 | /* Error while trying to find /lost+found */ |
| 871 | #define PR_3_ERR_FIND_LPF 0x030009 |
| 872 | |
| 873 | /* Error in ext2fs_new_block while creating /lost+found */ |
| 874 | #define PR_3_ERR_LPF_NEW_BLOCK 0x03000A |
| 875 | |
| 876 | /* Error in ext2fs_new_inode while creating /lost+found */ |
| 877 | #define PR_3_ERR_LPF_NEW_INODE 0x03000B |
| 878 | |
Theodore Ts'o | db0691b | 2008-03-31 12:16:51 -0400 | [diff] [blame] | 879 | /* Error in ext2fs_new_dir_block while creating /lost+found */ |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 880 | #define PR_3_ERR_LPF_NEW_DIR_BLOCK 0x03000C |
Theodore Ts'o | db0691b | 2008-03-31 12:16:51 -0400 | [diff] [blame] | 881 | |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 882 | /* Error while writing directory block for /lost+found */ |
| 883 | #define PR_3_ERR_LPF_WRITE_BLOCK 0x03000D |
| 884 | |
| 885 | /* Error while adjusting inode count */ |
| 886 | #define PR_3_ADJUST_INODE 0x03000E |
| 887 | |
| 888 | /* Couldn't fix parent directory -- error */ |
| 889 | #define PR_3_FIX_PARENT_ERR 0x03000F |
| 890 | |
Theodore Ts'o | db0691b | 2008-03-31 12:16:51 -0400 | [diff] [blame] | 891 | /* Couldn't fix parent directory -- couldn't find it */ |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 892 | #define PR_3_FIX_PARENT_NOFIND 0x030010 |
Theodore Ts'o | db0691b | 2008-03-31 12:16:51 -0400 | [diff] [blame] | 893 | |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 894 | /* Error allocating inode bitmap */ |
| 895 | #define PR_3_ALLOCATE_IBITMAP_ERROR 0x030011 |
Theodore Ts'o | db0691b | 2008-03-31 12:16:51 -0400 | [diff] [blame] | 896 | |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 897 | /* Error creating root directory */ |
| 898 | #define PR_3_CREATE_ROOT_ERROR 0x030012 |
| 899 | |
| 900 | /* Error creating lost and found directory */ |
| 901 | #define PR_3_CREATE_LPF_ERROR 0x030013 |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 902 | |
Theodore Ts'o | f8188ff | 1997-11-14 05:23:04 +0000 | [diff] [blame] | 903 | /* Root inode is not directory; aborting */ |
| 904 | #define PR_3_ROOT_NOT_DIR_ABORT 0x030014 |
| 905 | |
| 906 | /* Cannot proceed without a root inode. */ |
| 907 | #define PR_3_NO_ROOT_INODE_ABORT 0x030015 |
| 908 | |
Theodore Ts'o | 7f813ba | 1998-09-03 01:26:03 +0000 | [diff] [blame] | 909 | /* Internal error: couldn't find dir_info */ |
Theodore Ts'o | 4a9f593 | 1999-03-16 19:32:52 +0000 | [diff] [blame] | 910 | #define PR_3_NO_DIRINFO 0x030016 |
| 911 | |
| 912 | /* Lost+found is not a directory */ |
| 913 | #define PR_3_LPF_NOTDIR 0x030017 |
Theodore Ts'o | 7f813ba | 1998-09-03 01:26:03 +0000 | [diff] [blame] | 914 | |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 915 | /* |
Theodore Ts'o | b7a0056 | 2002-07-20 00:28:07 -0400 | [diff] [blame] | 916 | * Pass 3a --- rehashing diretories |
| 917 | */ |
| 918 | /* Pass 3a: Reindexing directories */ |
| 919 | #define PR_3A_PASS_HEADER 0x031000 |
| 920 | |
| 921 | /* Error iterating over directories */ |
Theodore Ts'o | 850d05e | 2002-07-25 00:00:08 -0400 | [diff] [blame] | 922 | #define PR_3A_OPTIMIZE_ITER 0x031001 |
Theodore Ts'o | b7a0056 | 2002-07-20 00:28:07 -0400 | [diff] [blame] | 923 | |
| 924 | /* Error rehash directory */ |
Theodore Ts'o | db0691b | 2008-03-31 12:16:51 -0400 | [diff] [blame] | 925 | #define PR_3A_OPTIMIZE_DIR_ERR 0x031002 |
Theodore Ts'o | b7a0056 | 2002-07-20 00:28:07 -0400 | [diff] [blame] | 926 | |
| 927 | /* Rehashing dir header */ |
Andreas Dilger | ae33f57 | 2009-04-28 12:59:07 -0600 | [diff] [blame] | 928 | #define PR_3A_OPTIMIZE_DIR_HEADER 0x031003 |
Theodore Ts'o | b7a0056 | 2002-07-20 00:28:07 -0400 | [diff] [blame] | 929 | |
| 930 | /* Rehashing directory %d */ |
Theodore Ts'o | 850d05e | 2002-07-25 00:00:08 -0400 | [diff] [blame] | 931 | #define PR_3A_OPTIMIZE_DIR 0x031004 |
Theodore Ts'o | db0691b | 2008-03-31 12:16:51 -0400 | [diff] [blame] | 932 | |
| 933 | /* Rehashing dir end */ |
Theodore Ts'o | 850d05e | 2002-07-25 00:00:08 -0400 | [diff] [blame] | 934 | #define PR_3A_OPTIMIZE_DIR_END 0x031005 |
| 935 | |
Theodore Ts'o | b7a0056 | 2002-07-20 00:28:07 -0400 | [diff] [blame] | 936 | /* |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 937 | * Pass 4 errors |
| 938 | */ |
| 939 | |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 940 | /* Pass 4: Checking reference counts */ |
Andreas Dilger | ae33f57 | 2009-04-28 12:59:07 -0600 | [diff] [blame] | 941 | #define PR_4_PASS_HEADER 0x040000 |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 942 | |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 943 | /* Unattached zero-length inode */ |
Andreas Dilger | ae33f57 | 2009-04-28 12:59:07 -0600 | [diff] [blame] | 944 | #define PR_4_ZERO_LEN_INODE 0x040001 |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 945 | |
| 946 | /* Unattached inode */ |
Andreas Dilger | ae33f57 | 2009-04-28 12:59:07 -0600 | [diff] [blame] | 947 | #define PR_4_UNATTACHED_INODE 0x040002 |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 948 | |
| 949 | /* Inode ref count wrong */ |
Andreas Dilger | ae33f57 | 2009-04-28 12:59:07 -0600 | [diff] [blame] | 950 | #define PR_4_BAD_REF_COUNT 0x040003 |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 951 | |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 952 | /* Inconsistent inode count information cached */ |
Andreas Dilger | ae33f57 | 2009-04-28 12:59:07 -0600 | [diff] [blame] | 953 | #define PR_4_INCONSISTENT_COUNT 0x040004 |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 954 | |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 955 | /* |
| 956 | * Pass 5 errors |
| 957 | */ |
| 958 | |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 959 | /* Pass 5: Checking group summary information */ |
| 960 | #define PR_5_PASS_HEADER 0x050000 |
Theodore Ts'o | db0691b | 2008-03-31 12:16:51 -0400 | [diff] [blame] | 961 | |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 962 | /* Padding at end of inode bitmap is not set. */ |
| 963 | #define PR_5_INODE_BMAP_PADDING 0x050001 |
| 964 | |
| 965 | /* Padding at end of block bitmap is not set. */ |
| 966 | #define PR_5_BLOCK_BMAP_PADDING 0x050002 |
| 967 | |
| 968 | /* Block bitmap differences header */ |
Andreas Dilger | ae33f57 | 2009-04-28 12:59:07 -0600 | [diff] [blame] | 969 | #define PR_5_BLOCK_BITMAP_HEADER 0x050003 |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 970 | |
| 971 | /* Block not used, but marked in bitmap */ |
Theodore Ts'o | f122632 | 2002-03-07 02:47:07 -0500 | [diff] [blame] | 972 | #define PR_5_BLOCK_UNUSED 0x050004 |
Theodore Ts'o | db0691b | 2008-03-31 12:16:51 -0400 | [diff] [blame] | 973 | |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 974 | /* Block used, but not marked used in bitmap */ |
| 975 | #define PR_5_BLOCK_USED 0x050005 |
| 976 | |
Theodore Ts'o | db0691b | 2008-03-31 12:16:51 -0400 | [diff] [blame] | 977 | /* Block bitmap differences end */ |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 978 | #define PR_5_BLOCK_BITMAP_END 0x050006 |
| 979 | |
| 980 | /* Inode bitmap differences header */ |
| 981 | #define PR_5_INODE_BITMAP_HEADER 0x050007 |
| 982 | |
| 983 | /* Inode not used, but marked in bitmap */ |
Theodore Ts'o | f122632 | 2002-03-07 02:47:07 -0500 | [diff] [blame] | 984 | #define PR_5_INODE_UNUSED 0x050008 |
Theodore Ts'o | db0691b | 2008-03-31 12:16:51 -0400 | [diff] [blame] | 985 | |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 986 | /* Inode used, but not marked used in bitmap */ |
| 987 | #define PR_5_INODE_USED 0x050009 |
| 988 | |
Theodore Ts'o | db0691b | 2008-03-31 12:16:51 -0400 | [diff] [blame] | 989 | /* Inode bitmap differences end */ |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 990 | #define PR_5_INODE_BITMAP_END 0x05000A |
| 991 | |
| 992 | /* Free inodes count for group wrong */ |
| 993 | #define PR_5_FREE_INODE_COUNT_GROUP 0x05000B |
| 994 | |
| 995 | /* Directories count for group wrong */ |
| 996 | #define PR_5_FREE_DIR_COUNT_GROUP 0x05000C |
| 997 | |
| 998 | /* Free inodes count wrong */ |
Andreas Dilger | ae33f57 | 2009-04-28 12:59:07 -0600 | [diff] [blame] | 999 | #define PR_5_FREE_INODE_COUNT 0x05000D |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 1000 | |
| 1001 | /* Free blocks count for group wrong */ |
| 1002 | #define PR_5_FREE_BLOCK_COUNT_GROUP 0x05000E |
| 1003 | |
| 1004 | /* Free blocks count wrong */ |
| 1005 | #define PR_5_FREE_BLOCK_COUNT 0x05000F |
| 1006 | |
| 1007 | /* Programming error: bitmap endpoints don't match */ |
| 1008 | #define PR_5_BMAP_ENDPOINTS 0x050010 |
Theodore Ts'o | bbd47d7 | 2000-06-10 19:21:33 +0000 | [diff] [blame] | 1009 | |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 1010 | /* Internal error: fudging end of bitmap */ |
| 1011 | #define PR_5_FUDGE_BITMAP_ERROR 0x050011 |
Theodore Ts'o | bbd47d7 | 2000-06-10 19:21:33 +0000 | [diff] [blame] | 1012 | |
| 1013 | /* Error copying in replacement inode bitmap */ |
| 1014 | #define PR_5_COPY_IBITMAP_ERROR 0x050012 |
| 1015 | |
| 1016 | /* Error copying in replacement block bitmap */ |
| 1017 | #define PR_5_COPY_BBITMAP_ERROR 0x050013 |
| 1018 | |
Theodore Ts'o | f122632 | 2002-03-07 02:47:07 -0500 | [diff] [blame] | 1019 | /* Block range not used, but marked in bitmap */ |
| 1020 | #define PR_5_BLOCK_RANGE_UNUSED 0x050014 |
Theodore Ts'o | db0691b | 2008-03-31 12:16:51 -0400 | [diff] [blame] | 1021 | |
Theodore Ts'o | f122632 | 2002-03-07 02:47:07 -0500 | [diff] [blame] | 1022 | /* Block range used, but not marked used in bitmap */ |
| 1023 | #define PR_5_BLOCK_RANGE_USED 0x050015 |
| 1024 | |
| 1025 | /* Inode range not used, but marked in bitmap */ |
| 1026 | #define PR_5_INODE_RANGE_UNUSED 0x050016 |
Jose R. Santos | 49a7360 | 2007-10-21 21:04:03 -0500 | [diff] [blame] | 1027 | |
Theodore Ts'o | f122632 | 2002-03-07 02:47:07 -0500 | [diff] [blame] | 1028 | /* Inode rangeused, but not marked used in bitmap */ |
| 1029 | #define PR_5_INODE_RANGE_USED 0x050017 |
| 1030 | |
Jose R. Santos | 49a7360 | 2007-10-21 21:04:03 -0500 | [diff] [blame] | 1031 | /* Block in use but group is marked BLOCK_UNINIT */ |
| 1032 | #define PR_5_BLOCK_UNINIT 0x050018 |
| 1033 | |
| 1034 | /* Inode in use but group is marked INODE_UNINIT */ |
| 1035 | #define PR_5_INODE_UNINIT 0x050019 |
| 1036 | |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 1037 | /* |
Kalpak Shah | 5107d0d | 2007-06-21 11:59:06 -0400 | [diff] [blame] | 1038 | * Post-Pass 5 errors |
| 1039 | */ |
| 1040 | |
| 1041 | /* Recreate the journal if E2F_FLAG_JOURNAL_INODE flag is set */ |
| 1042 | #define PR_6_RECREATE_JOURNAL 0x060001 |
| 1043 | |
JP Abgrall | e0ed740 | 2014-03-19 19:08:39 -0700 | [diff] [blame] | 1044 | /* Update quota information if it is inconsistent */ |
| 1045 | #define PR_6_UPDATE_QUOTAS 0x060002 |
| 1046 | |
Kalpak Shah | 5107d0d | 2007-06-21 11:59:06 -0400 | [diff] [blame] | 1047 | /* |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 1048 | * Function declarations |
| 1049 | */ |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 1050 | int fix_problem(e2fsck_t ctx, problem_t code, struct problem_context *pctx); |
| 1051 | int end_problem_latch(e2fsck_t ctx, int mask); |
| 1052 | int set_latch_flags(int mask, int setflags, int clearflags); |
| 1053 | int get_latch_flags(int mask, int *value); |
Andreas Dilger | ae33f57 | 2009-04-28 12:59:07 -0600 | [diff] [blame] | 1054 | void clear_problem_context(struct problem_context *pctx); |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 1055 | |
| 1056 | /* message.c */ |
JP Abgrall | e0ed740 | 2014-03-19 19:08:39 -0700 | [diff] [blame] | 1057 | void print_e2fsck_message(FILE *f, e2fsck_t ctx, const char *msg, |
Theodore Ts'o | db0691b | 2008-03-31 12:16:51 -0400 | [diff] [blame] | 1058 | struct problem_context *pctx, int first, |
Theodore Ts'o | 1a191d6 | 2007-07-02 19:04:31 -0400 | [diff] [blame] | 1059 | int recurse); |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 1060 | |