]> git.ipfire.org Git - thirdparty/e2fsprogs.git/blame - e2fsck/problem.h
libext2fs: teach ext2fs_flush() to check if group descriptors are loaded
[thirdparty/e2fsprogs.git] / e2fsck / problem.h
CommitLineData
21c84b71
TT
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
1b6bf175
TT
12typedef __u32 problem_t;
13
21c84b71 14struct problem_context {
1b6bf175 15 errcode_t errcode;
86c627ec 16 ext2_ino_t ino, ino2, dir;
21c84b71
TT
17 struct ext2_inode *inode;
18 struct ext2_dir_entry *dirent;
15d482ba 19 blk64_t blk, blk2;
9d1bd3de 20 e2_blkcnt_t blkcount;
3971bfe8 21 dgrp_t group;
b9a64a51 22 __u32 csum1, csum2;
5c5685d1 23 __u64 num, num2;
1b6bf175 24 const char *str;
21c84b71
TT
25};
26
21c84b71
TT
27/*
28 * We define a set of "latch groups"; these are problems which are
29 * handled as a set. The user answers once for a particular latch
30 * group.
31 */
21afac09 32#define PR_LATCH_MASK 0x0ff0 /* Latch mask */
21c84b71
TT
33#define PR_LATCH_BLOCK 0x0010 /* Latch for illegal blocks (pass 1) */
34#define PR_LATCH_BBLOCK 0x0020 /* Latch for bad block inode blocks (pass 1) */
1b6bf175
TT
35#define PR_LATCH_IBITMAP 0x0030 /* Latch for pass 5 inode bitmap proc. */
36#define PR_LATCH_BBITMAP 0x0040 /* Latch for pass 5 inode bitmap proc. */
37#define PR_LATCH_RELOC 0x0050 /* Latch for superblock relocate hint */
38#define PR_LATCH_DBLOCK 0x0060 /* Latch for pass 1b dup block headers */
21afac09 39#define PR_LATCH_LOW_DTIME 0x0070 /* Latch for pass1 orphaned list refugees */
da307041 40#define PR_LATCH_TOOBIG 0x0080 /* Latch for file to big errors */
850d05e9 41#define PR_LATCH_OPTIMIZE_DIR 0x0090 /* Latch for optimize directories */
60139154 42#define PR_LATCH_BG_CHECKSUM 0x00A0 /* Latch for block group checksums */
e228d700 43#define PR_LATCH_OPTIMIZE_EXT 0x00B0 /* Latch for rebuild extents */
21c84b71
TT
44
45#define PR_LATCH(x) ((((x) & PR_LATCH_MASK) >> 4) - 1)
46
1b6bf175
TT
47/*
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
21c84b71
TT
57/*
58 * Pre-Pass 1 errors
59 */
60
dea73131
AD
61/* Block bitmap for group gggg is not in group */
62#define PR_0_BB_NOT_GROUP 0x000001
21c84b71 63
dea73131
AD
64/* Inode bitmap for group gggg is not in group */
65#define PR_0_IB_NOT_GROUP 0x000002
21c84b71 66
dea73131
AD
67/* Inode table for group gggg is not in group. (block nnnn) */
68#define PR_0_ITABLE_NOT_GROUP 0x000003
21c84b71 69
1b6bf175 70/* Superblock corrupt */
dea73131 71#define PR_0_SB_CORRUPT 0x000004
1b6bf175
TT
72
73/* Filesystem size is wrong */
dea73131 74#define PR_0_FS_SIZE_WRONG 0x000005
1b6bf175
TT
75
76/* Fragments not supported */
dea73131 77#define PR_0_NO_FRAGMENTS 0x000006
1b6bf175 78
dea73131
AD
79/* Superblock blocks_per_group = bbbb, should have been cccc */
80#define PR_0_BLOCKS_PER_GROUP 0x000007
1b6bf175 81
dea73131
AD
82/* Superblock first_data_block = bbbb, should have been cccc */
83#define PR_0_FIRST_DATA_BLOCK 0x000008
1b6bf175 84
dea73131
AD
85/* Filesystem did not have a UUID; generating one */
86#define PR_0_ADD_UUID 0x000009
1b6bf175 87
db0691b5 88/* Relocate hint */
dea73131 89#define PR_0_RELOCATE_HINT 0x00000A
1b6bf175
TT
90
91/* Miscellaneous superblock corruption */
dea73131 92#define PR_0_MISC_CORRUPT_SUPER 0x00000B
db0691b5 93
055866d8 94/* Error determining physical device size of filesystem */
dea73131 95#define PR_0_GETSIZE_ERROR 0x00000C
1b6bf175 96
d4b0ce03 97/* Inode count in the superblock incorrect */
dea73131 98#define PR_0_INODE_COUNT_WRONG 0x00000D
d4b0ce03 99
4ea0a110 100/* The Hurd does not support the filetype feature */
dea73131 101#define PR_0_HURD_CLEAR_FILETYPE 0x00000E
3b5386dc 102
dea73131
AD
103/* Superblock has an invalid journal (inode inum) */
104#define PR_0_JOURNAL_BAD_INODE 0x00000F
3b5386dc 105
dea73131
AD
106/* External journal has multiple filesystem users (unsupported) */
107#define PR_0_JOURNAL_UNSUPP_MULTIFS 0x000010
3b5386dc 108
adee8d75 109/* Can't find external journal */
dea73131 110#define PR_0_CANT_FIND_JOURNAL 0x000011
3b5386dc 111
adee8d75 112/* External journal has bad superblock */
dea73131 113#define PR_0_EXT_JOURNAL_BAD_SUPER 0x000012
3b5386dc
TT
114
115/* Superblock has a bad journal UUID */
dea73131 116#define PR_0_JOURNAL_BAD_UUID 0x000013
3b5386dc 117
dea73131
AD
118/* Filesystem journal superblock is an unknown type */
119#define PR_0_JOURNAL_UNSUPP_SUPER 0x000014
3b5386dc
TT
120
121/* Journal superblock is corrupt */
dea73131 122#define PR_0_JOURNAL_BAD_SUPER 0x000015
3b5386dc 123
dea73131
AD
124/* Superblock has_journal flag is clear but has a journal */
125#define PR_0_JOURNAL_HAS_JOURNAL 0x000016
3b5386dc 126
dea73131
AD
127/* Superblock needs_recovery flag is set but no journal is present */
128#define PR_0_JOURNAL_RECOVER_SET 0x000017
3b5386dc 129
d37066a9 130/* Journal has data, but recovery flag is clear */
dea73131 131#define PR_0_JOURNAL_RECOVERY_CLEAR 0x000018
3b5386dc 132
d37066a9 133/* Ask if we should clear the journal */
dea73131 134#define PR_0_JOURNAL_RESET_JOURNAL 0x000019
3b5386dc 135
060b5fbf 136/* Filesystem revision is 0, but feature flags are set */
dea73131 137#define PR_0_FS_REV_LEVEL 0x00001A
060b5fbf 138
ecf1b776 139/* Clearing orphan inode */
8394902e 140#define PR_0_ORPHAN_CLEAR_INODE 0x000020
db0691b5 141
80bfaa3e 142/* Illegal block found in orphaned inode */
ecf1b776 143#define PR_0_ORPHAN_ILLEGAL_BLOCK_NUM 0x000021
80bfaa3e
TT
144
145/* Already cleared block found in orphaned inode */
ecf1b776 146#define PR_0_ORPHAN_ALREADY_CLEARED_BLOCK 0x000022
db0691b5 147
80bfaa3e 148/* Illegal orphan inode in superblock */
ecf1b776 149#define PR_0_ORPHAN_ILLEGAL_HEAD_INODE 0x000023
80bfaa3e
TT
150
151/* Illegal inode in orphaned inode list */
ae33f578 152#define PR_0_ORPHAN_ILLEGAL_INODE 0x000024
80bfaa3e 153
424cd2be
TT
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
dea73131 160/* Journal version not supported by this e2fsck */
2f686ace 161#define PR_0_JOURNAL_UNSUPP_VERSION 0x000027
c7f23364 162
dea73131 163/* Moving journal from /file to hidden inode */
773fd8a1
TT
164#define PR_0_MOVE_JOURNAL 0x000028
165
dea73131 166/* Error moving journal to hidden file */
773fd8a1
TT
167#define PR_0_ERR_MOVE_JOURNAL 0x000029
168
dea73131 169/* Found invalid V2 journal superblock fields */
62e3e7fe
TT
170#define PR_0_CLEAR_V2_JOURNAL 0x00002A
171
d37066a9
TT
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
dea73131 178/* Backing up journal inode block information */
a435ec34
TT
179#define PR_0_BACKUP_JNL 0x00002D
180
dea73131
AD
181/* Filesystem does not have resize_inode enabled, but
182 * s_reserved_gdt_blocks is nnnn; should be zero */
e75cfc5d
TT
183#define PR_0_NONZERO_RESERVED_GDT_BLOCKS 0x00002E
184
dea73131 185/* Resize_inode not enabled, but the resize inode is non-zero */
e75cfc5d
TT
186#define PR_0_CLEAR_RESIZE_INODE 0x00002F
187
dea73131 188/* Resize inode not valid */
c3ffaf83
TT
189#define PR_0_RESIZE_INODE_INVALID 0x000030
190
dea73131 191/* Superblock last mount time is in the future */
8dceb924
TT
192#define PR_0_FUTURE_SB_LAST_MOUNT 0x000031
193
dea73131 194/* Superblock last write time is in the future */
8dceb924
TT
195#define PR_0_FUTURE_SB_LAST_WRITE 0x000032
196
dea73131 197/* Superblock hint for external superblock should be xxxx */
b1c52b26
TT
198#define PR_0_EXTERNAL_JOURNAL_HINT 0x000033
199
dea73131 200/* Adding dirhash hint to filesystem */
f77704e4
TT
201#define PR_0_DIRHASH_HINT 0x000034
202
dea73131 203/* group descriptor N checksum is invalid, should be yyyy. */
49a7360b
JS
204#define PR_0_GDT_CSUM 0x000035
205
206/* Group descriptor N marked uninitialized without feature set. */
207#define PR_0_GDT_UNINIT 0x000036
208
40b9cc51
TT
209/* Block bitmap is not initialised and Inode bitmap is -- NO LONGER USED */
210/* #define PR_0_BB_UNINIT_IB_INIT 0x000037 */
49a7360b
JS
211
212/* Group descriptor N has invalid unused inodes count. */
213#define PR_0_GDT_ITABLE_UNUSED 0x000038
214
0d5439c8
AD
215/* Last group block bitmap is uninitialized. */
216#define PR_0_BB_UNINIT_LAST 0x000039
217
dea73131 218/* Journal transaction was corrupt, replay was aborted */
185c4aea
TT
219#define PR_0_JNL_TXN_CORRUPT 0x00003A
220
80875db5
TT
221/* The test_fs filesystem flag is set and ext4 is available */
222#define PR_0_CLEAR_TESTFS_FLAG 0x00003B
223
26ea4899
TT
224/* Last mount time is in the future (fudged) */
225#define PR_0_FUTURE_SB_LAST_MOUNT_FUDGED 0x00003C
226
227/* Last write time is in the future (fudged) */
228#define PR_0_FUTURE_SB_LAST_WRITE_FUDGED 0x00003D
229
dea73131 230/* One or more block group descriptor checksums are invalid (latch) */
60139154
TT
231#define PR_0_GDT_CSUM_LATCH 0x00003E
232
dea73131 233/* Setting free inodes count to right (was wrong) */
a3efe484
TT
234#define PR_0_FREE_INODE_COUNT 0x00003F
235
dea73131 236/* Setting free blocks count to right (was wrong) */
a3efe484
TT
237#define PR_0_FREE_BLOCK_COUNT 0x000040
238
dea73131 239/* Making quota inode hidden */
624e4a64
AK
240#define PR_0_HIDE_QUOTA 0x000041
241
0f5eba75
AD
242/* Superblock has invalid MMP block. */
243#define PR_0_MMP_INVALID_BLK 0x000042
244
245/* Superblock has invalid MMP magic. */
246#define PR_0_MMP_INVALID_MAGIC 0x000043
247
010c49cf
TT
248/* Opening file system failed */
249#define PR_0_OPEN_FAILED 0x000044
250
251/* Checking group descriptor failed */
252#define PR_0_CHECK_DESC_FAILED 0x000045
26ea4899 253
dea73131
AD
254/* Superblock metadata_csum supersedes uninit_bg; both feature
255 * bits cannot be set simultaneously. */
387e6384
DW
256#define PR_0_META_AND_GDT_CSUM_SET 0x000046
257
dea73131 258/* Superblock MMP block checksum does not match MMP block. */
f57b3715
DW
259#define PR_0_MMP_CSUM_INVALID 0x000047
260
dea73131 261/* Superblock 64bit filesystem needs extents to access the whole disk */
27b2297d
DW
262#define PR_0_64BIT_WITHOUT_EXTENTS 0x000048
263
7a4352dc
TT
264/* The first_meta_bg is too big */
265#define PR_0_FIRST_META_BG_TOO_BIG 0x000049
387e6384 266
dea73131 267/* External journal superblock checksum does not match superblock */
6aabb754
DW
268#define PR_0_EXT_JOURNAL_SUPER_CSUM_INVALID 0x00004A
269
17f2fbf7
DW
270/* metadata_csum_seed means nothing without metadata_csum */
271#define PR_0_CSUM_SEED_WITHOUT_META_CSUM 0x00004B
272
a701823a
TT
273/* Error initializing quota context */
274#define PR_0_QUOTA_INIT_CTX 0x00004C
275
dea73131 276/* Bad required extra isize in superblock */
047d5d77
TT
277#define PR_0_BAD_MIN_EXTRA_ISIZE 0x00004D
278
dea73131 279/* Bad desired extra isize in superblock */
047d5d77
TT
280#define PR_0_BAD_WANT_EXTRA_ISIZE 0x00004E
281
d202f46d
TT
282/* Invalid quota inode number */
283#define PR_0_INVALID_QUOTA_INO 0x00004F
284
d74eb7ef
JK
285/* Inode count in the superblock incorrect */
286#define PR_0_INODE_COUNT_BIG 0x000050
a701823a 287
74848259
LC
288/* Meta_bg and resize_inode are not compatible, remove resize_inode*/
289#define PR_0_DISABLE_RESIZE_INODE 0x000051
290
21c84b71
TT
291/*
292 * Pass 1 errors
293 */
294
1b6bf175 295/* Pass 1: Checking inodes, blocks, and sizes */
dea73131 296#define PR_1_PASS_HEADER 0x010000
1b6bf175 297
dea73131
AD
298/* Root inode is not a directory */
299#define PR_1_ROOT_NO_DIR 0x010001
21c84b71 300
dea73131
AD
301/* Root inode has dtime set */
302#define PR_1_ROOT_DTIME 0x010002
21c84b71
TT
303
304/* Reserved inode has bad mode */
dea73131 305#define PR_1_RESERVED_BAD_MODE 0x010003
21c84b71 306
dea73131
AD
307/* Deleted inode inum has zero dtime */
308#define PR_1_ZERO_DTIME 0x010004
21c84b71 309
dea73131
AD
310/* Inode inum is in use, but has dtime set */
311#define PR_1_SET_DTIME 0x010005
21c84b71 312
dea73131
AD
313/* Inode inum is a zero-length directory */
314#define PR_1_ZERO_LENGTH_DIR 0x010006
21c84b71 315
dea73131
AD
316/* Group block bitmap at block conflicts with some other fs block */
317#define PR_1_BB_CONFLICT 0x010007
21c84b71 318
dea73131
AD
319/* Group inode bitmap at block conflicts with some other fs block */
320#define PR_1_IB_CONFLICT 0x010008
21c84b71 321
dea73131
AD
322/* Group inode table at block conflicts with some other fs block */
323#define PR_1_ITABLE_CONFLICT 0x010009
21c84b71 324
dea73131
AD
325/* Group block bitmap (block) is bad */
326#define PR_1_BB_BAD_BLOCK 0x01000A
21c84b71 327
dea73131
AD
328/* Group inode bitmap (block) is bad */
329#define PR_1_IB_BAD_BLOCK 0x01000B
21c84b71 330
dea73131
AD
331/* Inode i_size is small, should be larger */
332#define PR_1_BAD_I_SIZE 0x01000C
21c84b71 333
dea73131
AD
334/* Inode i_blocks is small, should be larger */
335#define PR_1_BAD_I_BLOCKS 0x01000D
21c84b71
TT
336
337/* Illegal block number in inode */
dea73131 338#define PR_1_ILLEGAL_BLOCK_NUM 0x01000E
21c84b71 339
dea73131
AD
340/* Block number overlaps filesystem metadata in inode */
341#define PR_1_BLOCK_OVERLAPS_METADATA 0x01000F
21c84b71
TT
342
343/* Inode has illegal blocks (latch question) */
dea73131 344#define PR_1_INODE_BLOCK_LATCH 0x010010
21c84b71 345
dea73131
AD
346/* Too many illegal blocks in inode */
347#define PR_1_TOO_MANY_BAD_BLOCKS 0x010011
db0691b5 348
21c84b71 349/* Illegal block number in bad block inode */
dea73131 350#define PR_1_BB_ILLEGAL_BLOCK_NUM 0x010012
21c84b71
TT
351
352/* Bad block inode has illegal blocks (latch question) */
dea73131 353#define PR_1_INODE_BBLOCK_LATCH 0x010013
1b6bf175
TT
354
355/* Duplicate or bad blocks in use! */
dea73131 356#define PR_1_DUP_BLOCKS_PREENSTOP 0x010014
db0691b5 357
dea73131
AD
358/* Bad block number used as bad block inode indirect block */
359#define PR_1_BBINODE_BAD_METABLOCK 0x010015
1b6bf175
TT
360
361/* Inconsistency can't be fixed prompt */
dea73131 362#define PR_1_BBINODE_BAD_METABLOCK_PROMPT 0x010016
db0691b5 363
1b6bf175 364/* Bad primary block */
dea73131 365#define PR_1_BAD_PRIMARY_BLOCK 0x010017
db0691b5 366
1b6bf175 367/* Bad primary block prompt */
dea73131 368#define PR_1_BAD_PRIMARY_BLOCK_PROMPT 0x010018
1b6bf175 369
dea73131
AD
370/* The primary superblock block is on the bad block list */
371#define PR_1_BAD_PRIMARY_SUPERBLOCK 0x010019
1b6bf175
TT
372
373/* Bad primary block group descriptors */
dea73131 374#define PR_1_BAD_PRIMARY_GROUP_DESCRIPTOR 0x01001A
1b6bf175 375
dea73131
AD
376/* Warning: Group number's superblock (block) is bad */
377#define PR_1_BAD_SUPERBLOCK 0x01001B
1b6bf175 378
dea73131
AD
379/* Warning: Group number's copy of the group descriptors has a bad block */
380#define PR_1_BAD_GROUP_DESCRIPTORS 0x01001C
1b6bf175 381
dea73131
AD
382/* Block number claimed for no reason in process_bad_blocks */
383#define PR_1_PROGERR_CLAIMED_BLOCK 0x01001D
1b6bf175 384
dea73131
AD
385/* Allocating number contiguous block(s) in block group number */
386#define PR_1_RELOC_BLOCK_ALLOCATE 0x01001E
db0691b5 387
dea73131
AD
388/* Allocating block buffer for relocating process */
389#define PR_1_RELOC_MEMORY_ALLOCATE 0x01001F
db0691b5 390
dea73131
AD
391/* Relocating group number's information from X to Y */
392#define PR_1_RELOC_FROM_TO 0x010020
db0691b5 393
dea73131
AD
394/* Relocating group number's information to X */
395#define PR_1_RELOC_TO 0x010021
db0691b5 396
dea73131
AD
397/* Warning: could not read block number of relocation process */
398#define PR_1_RELOC_READ_ERR 0x010022
db0691b5 399
dea73131
AD
400/* Warning: could not write block number of relocation process */
401#define PR_1_RELOC_WRITE_ERR 0x010023
1b6bf175
TT
402
403/* Error allocating inode bitmap */
dea73131 404#define PR_1_ALLOCATE_IBITMAP_ERROR 0x010024
1b6bf175
TT
405
406/* Error allocating block bitmap */
dea73131 407#define PR_1_ALLOCATE_BBITMAP_ERROR 0x010025
1b6bf175 408
dea73131
AD
409/* Error allocating icount link information */
410#define PR_1_ALLOCATE_ICOUNT 0x010026
db0691b5 411
dea73131
AD
412/* Error allocating directory block array */
413#define PR_1_ALLOCATE_DBCOUNT 0x010027
1b6bf175
TT
414
415/* Error while scanning inodes */
dea73131 416#define PR_1_ISCAN_ERROR 0x010028
1b6bf175 417
dea73131
AD
418/* Error while iterating over blocks in inode */
419#define PR_1_BLOCK_ITERATE 0x010029
1b6bf175 420
dea73131
AD
421/* Error storing inode count information */
422#define PR_1_ICOUNT_STORE 0x01002A
1b6bf175 423
dea73131
AD
424/* Error storing directory block information */
425#define PR_1_ADD_DBLOCK 0x01002B
1b6bf175 426
dea73131
AD
427/* Error reading inode (for clearing) */
428#define PR_1_READ_INODE 0x01002C
1b6bf175 429
f8188fff 430/* Suppress messages prompt */
dea73131 431#define PR_1_SUPPRESS_MESSAGES 0x01002D
21c84b71 432
dea73131
AD
433/* Imagic number has imagic flag set when fs doesn't support it */
434#define PR_1_SET_IMAGIC 0x01002F
6fdc7a32
TT
435
436/* Immutable flag set on a device or socket inode */
dea73131 437#define PR_1_SET_IMMUTABLE 0x010030
1917875f 438
4a05268c
TT
439/* Compression flag set on a non-compressed filesystem -- no longer used*/
440/* #define PR_1_COMPR_SET 0x010031 */
1917875f 441
d647a1ea 442/* Non-zero size on on device, fifo or socket inode */
dea73131 443#define PR_1_SET_NONZSIZE 0x010032
d647a1ea 444
dea73131
AD
445/* Filesystem has feature flag(s) set, but is a revision 0 filesystem */
446#define PR_1_FS_REV_LEVEL 0x010033
060b5fbf 447
dea73131
AD
448/* Journal inode is not in use, but contains data */
449#define PR_1_JOURNAL_INODE_NOT_CLEAR 0x010034
f18996c8 450
dea73131
AD
451/* Journal is not a regular file */
452#define PR_1_JOURNAL_BAD_MODE 0x010035
21afac09 453
dea73131
AD
454/* Inode that was part of the orphan list */
455#define PR_1_LOW_DTIME 0x010036
21afac09 456
dea73131
AD
457/* Inodes that were part of a corrupted orphan linked list found
458 * (latch question) */
459#define PR_1_ORPHAN_LIST_REFUGEES 0x010037
342d847d
TT
460
461/* Error allocating refcount structure */
dea73131 462#define PR_1_ALLOCATE_REFCOUNT 0x010038
db0691b5 463
dea73131
AD
464/* Error reading extended attribute block */
465#define PR_1_READ_EA_BLOCK 0x010039
342d847d 466
dea73131
AD
467/* Inode number has a bad extended attribute block */
468#define PR_1_BAD_EA_BLOCK 0x01003A
342d847d 469
e8a3ee62 470/* Error reading Extended Attribute block while fixing refcount -- abort */
dea73131 471#define PR_1_EXTATTR_READ_ABORT 0x01003B
e8a3ee62 472
dea73131
AD
473/* Extended attribute number has reference count incorrect, should be */
474#define PR_1_EXTATTR_REFCOUNT 0x01003C
e8a3ee62 475
db0691b5 476/* Error writing Extended Attribute block while fixing refcount */
dea73131 477#define PR_1_EXTATTR_WRITE_ABORT 0x01003D
55fd07ed 478
dea73131
AD
479/* Extended attribute block has h_blocks > 1 */
480#define PR_1_EA_MULTI_BLOCK 0x01003E
55fd07ed 481
dea73131
AD
482/* Allocating extended attribute region allocation structure */
483#define PR_1_EA_ALLOC_REGION_ABORT 0x01003F
b94a052a 484
dea73131
AD
485/* Extended Attribute block number is corrupt (allocation collision) */
486#define PR_1_EA_ALLOC_COLLISION 0x010040
b94a052a 487
dea73131
AD
488/* Extended attribute block number is corrupt (invalid name) */
489#define PR_1_EA_BAD_NAME 0x010041
55fd07ed 490
dea73131
AD
491/* Extended attribute block number is corrupt (invalid value) */
492#define PR_1_EA_BAD_VALUE 0x010042
b94a052a 493
dea73131
AD
494/* Inode number is too big (latch question) */
495#define PR_1_INODE_TOOBIG 0x010043
da307041 496
dea73131
AD
497/* Problem causes directory to be too big */
498#define PR_1_TOOBIG_DIR 0x010044
da307041 499
dea73131
AD
500/* Problem causes file to be too big */
501#define PR_1_TOOBIG_REG 0x010045
da307041 502
dea73131
AD
503/* Problem causes symlink to be too big */
504#define PR_1_TOOBIG_SYMLINK 0x010046
da307041 505
dea73131
AD
506/* Inode has INDEX_FL flag set on filesystem without htree support */
507#define PR_1_HTREE_SET 0x010047
8fdc9985 508
dea73131
AD
509/* Inode number has INDEX_FL flag set but is on a directory */
510#define PR_1_HTREE_NODIR 0x010048
503f9e7f 511
dea73131
AD
512/* htree directory has an invalid root node */
513#define PR_1_HTREE_BADROOT 0x010049
503f9e7f 514
dea73131
AD
515/* Htree directory has an unsupported hash version */
516#define PR_1_HTREE_HASHV 0x01004A
503f9e7f 517
dea73131
AD
518/* Htree directory uses an Incompatible htree root node flag */
519#define PR_1_HTREE_INCOMPAT 0x01004B
503f9e7f 520
dea73131
AD
521/* Htree directory has a tree depth which is too big */
522#define PR_1_HTREE_DEPTH 0x01004C
503f9e7f 523
dea73131
AD
524/* Bad block inode has an indirect block number that conflicts with
525 * filesystem metadata */
526#define PR_1_BB_FS_BLOCK 0x01004D
000ba404 527
dea73131
AD
528/* Resize inode (re)creation failed */
529#define PR_1_RESIZE_INODE_CREATE 0x01004E
c3ffaf83 530
dea73131
AD
531/* inode has a extra size i_extra_isize which is invalid */
532#define PR_1_EXTRA_ISIZE 0x01004F
cebe48a1 533
dea73131
AD
534/* Extended attribute in inode has a namelen which is invalid */
535#define PR_1_ATTR_NAME_LEN 0x010050
cebe48a1 536
dea73131
AD
537/* Extended attribute in inode has a value offset which is invalid */
538#define PR_1_ATTR_VALUE_OFFSET 0x010051
cebe48a1 539
dea73131
AD
540/* extended attribute in inode has a value block which is invalid */
541#define PR_1_ATTR_VALUE_BLOCK 0x010052
cebe48a1 542
dea73131
AD
543/* extended attribute in inode has a value size which is invalid */
544#define PR_1_ATTR_VALUE_SIZE 0x010053
cebe48a1 545
dea73131
AD
546/* extended attribute in inode has a hash which is invalid */
547#define PR_1_ATTR_HASH 0x010054
cebe48a1 548
dea73131
AD
549/* inode is a type but it looks like it is really a directory */
550#define PR_1_TREAT_AS_DIRECTORY 0x010055
fbc3f901 551
dea73131
AD
552/* Error while reading extent tree in inode */
553#define PR_1_READ_EXTENT 0x010056
15d482ba 554
dea73131
AD
555/* Failure to iterate extents in inode */
556#define PR_1_EXTENT_ITERATE_FAILURE 0x010057
15d482ba 557
dea73131
AD
558/* Inode has an invalid extent starting block */
559#define PR_1_EXTENT_BAD_START_BLK 0x010058
15d482ba 560
dea73131
AD
561/* Inode has an invalid extent that ends beyond filesystem */
562#define PR_1_EXTENT_ENDS_BEYOND 0x010059
15d482ba 563
dea73131
AD
564/* inode has EXTENTS_FL flag set on filesystem without extents support */
565#define PR_1_EXTENTS_SET 0x01005A
15d482ba 566
dea73131 567/* inode is in extents format, but superblock is missing EXTENTS feature */
dea73131 568#define PR_1_EXTENT_FEATURE 0x01005B
15d482ba
TT
569
570/* inode missing EXTENTS_FL, but is an extent inode */
dea73131 571#define PR_1_UNSET_EXTENT_FL 0x01005C
15d482ba 572
ee19c902 573/* Fast symlink has EXTENTS_FL set */
dea73131 574#define PR_1_FAST_SYMLINK_EXTENT_FL 0x01005D
ee19c902 575
d5a8f9a9 576/* Extents are out of order */
dea73131 577#define PR_1_OUT_OF_ORDER_EXTENTS 0x01005E
d5a8f9a9 578
7518c176 579/* Extent node header invalid */
dea73131 580#define PR_1_EXTENT_HEADER_INVALID 0x01005F
7518c176 581
010dc7b9 582/* PR_1_EOFBLOCKS_FL_SET 0x010060 was here */
2291fbb0 583
dea73131
AD
584/* Failed to convert subcluster block bitmap */
585#define PR_1_CONVERT_SUBCLUSTER 0x010061
44fe08f1 586
dea73131
AD
587/* Quota inode is not a regular file */
588#define PR_1_QUOTA_BAD_MODE 0x010062
624e4a64
AK
589
590/* Quota inode is not in use, but contains data */
dea73131 591#define PR_1_QUOTA_INODE_NOT_CLEAR 0x010063
624e4a64 592
dea73131
AD
593/* Quota inode is visible to the user */
594#define PR_1_QUOTA_INODE_NOT_HIDDEN 0x010064
624e4a64 595
dea73131
AD
596/* The bad block inode looks invalid */
597#define PR_1_INVALID_BAD_INODE 0x010065
96a8afa7 598
dea73131
AD
599/* Extent has zero length extent */
600#define PR_1_EXTENT_LENGTH_ZERO 0x010066
26c09eb8 601
68d70624 602/* inode seems to contain garbage */
dea73131 603#define PR_1_INODE_IS_GARBAGE 0x010067
b9cde40d
DW
604
605/* inode passes checks, but checksum does not match inode */
dea73131 606#define PR_1_INODE_ONLY_CSUM_INVALID 0x010068
b9cde40d 607
dea73131
AD
608/* Inode extended attribute is corrupt (allocation collision) */
609#define PR_1_INODE_EA_ALLOC_COLLISION 0x010069
78c666b8 610
dea73131
AD
611/* Inode extent block passes checks, but checksum does not match extent */
612#define PR_1_EXTENT_ONLY_CSUM_INVALID 0x01006A
1e2372b3 613
dea73131
AD
614/* Inode extended attribute block passes checks, but checksum does not
615 * match block. */
616#define PR_1_EA_BLOCK_ONLY_CSUM_INVALID 0x01006C
5e07cb28 617
dea73131
AD
618/* Interior extent node level number of inode doesn't first node down */
619#define PR_1_EXTENT_INDEX_START_INVALID 0x01006D
387e6384 620
dea73131
AD
621/* Inode end of extent exceeds allowed value */
622#define PR_1_EXTENT_END_OUT_OF_BOUNDS 0x01006E
25fed0fc 623
dea73131
AD
624/* inode has INLINE_DATA_FL flag on filesystem without inline data */
625#define PR_1_INLINE_DATA_FEATURE 0x01006F
25fed0fc 626
dea73131
AD
627/* inode has INLINE_DATA_FL flag on filesystem without inline data */
628#define PR_1_INLINE_DATA_SET 0x010070
25fed0fc 629
dea73131 630/* Inode block conflicts with critical metadata, skipping block checks */
35c8faaf
DW
631#define PR_1_CRITICAL_METADATA_COLLISION 0x010071
632
dea73131
AD
633/* Directory inode block <block> should be at block <otherblock> */
634#define PR_1_COLLAPSE_DBLOCK 0x010072
57b7fabc 635
dea73131
AD
636/* Directory inode block <block> should be at block <otherblock> */
637#define PR_1_UNINIT_DBLOCK 0x010073
57b7fabc 638
dea73131
AD
639/* Inode logical block (physical block) violates cluster allocation */
640#define PR_1_MISALIGNED_CLUSTER 0x010074
9a1d614d 641
49a3749a 642/* Inode has INLINE_DATA_FL flag but extended attribute not found */
dea73131 643#define PR_1_INLINE_DATA_NO_ATTR 0x010075
49a3749a 644
dea73131
AD
645/* Special (device/socket/fifo) file (inode num) has extents
646 * or inline-data flag set */
647#define PR_1_SPECIAL_EXTENTS_IDATA 0x010076
8dae07fb 648
dea73131 649/* Inode has extent header but inline data flag is set */
fa441f91
DW
650#define PR_1_CLEAR_INLINE_DATA_FOR_EXTENT 0x010077
651
dea73131 652/* Inode seems to have inline data but extent flag is set */
fa441f91
DW
653#define PR_1_CLEAR_EXTENT_FOR_INLINE_DATA 0x010078
654
dea73131 655/* Inode seems to have block map but inline data and extent flags set */
fa441f91
DW
656#define PR_1_CLEAR_EXTENT_INLINE_DATA_FLAGS 0x010079
657
dea73131 658/* Inode has inline data and extent flags but i_block contains junk */
fa441f91
DW
659#define PR_1_CLEAR_EXTENT_INLINE_DATA_INODE 0x01007A
660
dea73131 661/* Bad block list says the bad block list inode is bad */
c6c68163
DW
662#define PR_1_BADBLOCKS_IN_BADBLOCKS 0x01007B
663
dea73131 664/* Error allocating extent region allocation structure */
79362360
DW
665#define PR_1_EXTENT_ALLOC_REGION_ABORT 0x01007C
666
dea73131 667/* Inode leaf has a duplicate extent mapping */
79362360
DW
668#define PR_1_EXTENT_COLLISION 0x01007D
669
2ba05753
EB
670/* Error allocating memory for encrypted inode list */
671#define PR_1_ALLOCATE_ENCRYPTED_INODE_LIST 0x01007E
dbff534e 672
dea73131 673/* Inode extent tree could be more shallow */
e228d700
DW
674#define PR_1_EXTENT_BAD_MAX_DEPTH 0x01007F
675
dea73131 676/* inode num on bigalloc filesystem cannot be block mapped */
faa427d3
DW
677#define PR_1_NO_BIGALLOC_BLOCKMAP_FILES 0x010080
678
dea73131 679/* Inode has corrupt extent header */
f680db65
DW
680#define PR_1_MISSING_EXTENT_HEADER 0x010081
681
082ed5dc
DT
682/* Timestamp(s) on inode beyond 2310-04-04 are likely pre-1970. */
683#define PR_1_EA_TIME_OUT_OF_RANGE 0x010082
684
6a081f6d
AD
685/* Inode has illegal EA value inode */
686#define PR_1_ATTR_VALUE_EA_INODE 0x010083
687
6a081f6d
AD
688/* Parent inode has invalid EA entry. EA inode does not have
689 * EXT4_EA_INODE_FL flag. Delete EA entry? */
690#define PR_1_ATTR_NO_EA_INODE_FL 0x010085
691
692/* EA inode for parent inode does not have EXT4_EA_INODE_FL flag */
693#define PR_1_ATTR_SET_EA_INODE_FL 0x010086
694
16eca7ce
TT
695/* Offer to clear uninitialized flag on an extent */
696#define PR_1_CLEAR_UNINIT_EXTENT 0x010087
697
698/* Casefold flag set on a non-directory */
699#define PR_1_CASEFOLD_NONDIR 0x010088
700
701/* Casefold flag set, but file system is missing the casefold feature */
702#define PR_1_CASEFOLD_FEATURE 0x010089
703
2ba05753
EB
704/* Inode has encrypt flag but no encryption extended attribute */
705#define PR_1_MISSING_ENCRYPTION_XATTR 0x01008A
706
707/* Encrypted inode has corrupt encryption extended attribute */
708#define PR_1_CORRUPT_ENCRYPTION_XATTR 0x01008B
6a081f6d 709
21c84b71
TT
710/*
711 * Pass 1b errors
712 */
713
1b6bf175
TT
714/* Pass 1B: Rescan for duplicate/bad blocks */
715#define PR_1B_PASS_HEADER 0x011000
716
717/* Duplicate/bad block(s) header */
718#define PR_1B_DUP_BLOCK_HEADER 0x011001
719
720/* Duplicate/bad block(s) in inode */
721#define PR_1B_DUP_BLOCK 0x011002
722
723/* Duplicate/bad block(s) end */
724#define PR_1B_DUP_BLOCK_END 0x011003
db0691b5 725
1b6bf175
TT
726/* Error while scanning inodes */
727#define PR_1B_ISCAN_ERROR 0x011004
728
729/* Error allocating inode bitmap */
730#define PR_1B_ALLOCATE_IBITMAP_ERROR 0x011005
731
133a56dc 732/* Error while iterating over blocks */
7494cbfd 733#define PR_1B_BLOCK_ITERATE 0x011006
1b6bf175 734
0684a4f3 735/* Error adjusting EA refcount */
7494cbfd 736#define PR_1B_ADJ_EA_REFCOUNT 0x011007
0684a4f3 737
28b966d7
DW
738/* Duplicate/bad block range in inode */
739#define PR_1B_DUP_RANGE 0x011008
740
1b6bf175
TT
741/* Pass 1C: Scan directories for inodes with dup blocks. */
742#define PR_1C_PASS_HEADER 0x012000
743
744
745/* Pass 1D: Reconciling duplicate blocks */
746#define PR_1D_PASS_HEADER 0x013000
747
21c84b71 748/* File has duplicate blocks */
1b6bf175 749#define PR_1D_DUP_FILE 0x013001
21c84b71 750
db0691b5 751/* List of files sharing duplicate blocks */
1b6bf175 752#define PR_1D_DUP_FILE_LIST 0x013002
21c84b71 753
db0691b5 754/* File sharing blocks with filesystem metadata */
1b6bf175
TT
755#define PR_1D_SHARE_METADATA 0x013003
756
db0691b5 757/* Report of how many duplicate/bad inodes */
1b6bf175
TT
758#define PR_1D_NUM_DUP_INODES 0x013004
759
760/* Duplicated blocks already reassigned or cloned. */
761#define PR_1D_DUP_BLOCKS_DEALT 0x013005
762
763/* Clone duplicate/bad blocks? */
764#define PR_1D_CLONE_QUESTION 0x013006
765
766/* Delete file? */
767#define PR_1D_DELETE_QUESTION 0x013007
521e3685 768
1b6bf175
TT
769/* Couldn't clone file (error) */
770#define PR_1D_CLONE_ERROR 0x013008
db0691b5 771
e228d700
DW
772/*
773 * Pass 1e --- rebuilding extent trees
774 */
775/* Pass 1e: Rebuilding extent trees */
776#define PR_1E_PASS_HEADER 0x014000
777
778/* Error rehash directory */
779#define PR_1E_OPTIMIZE_EXT_ERR 0x014001
780
781/* Rebuilding extent trees */
782#define PR_1E_OPTIMIZE_EXT_HEADER 0x014002
783
784/* Rebuilding extent %d */
785#define PR_1E_OPTIMIZE_EXT 0x014003
786
787/* Rebuilding extent tree end */
788#define PR_1E_OPTIMIZE_EXT_END 0x014004
789
790/* Internal error: extent tree depth too large */
791#define PR_1E_MAX_EXTENT_TREE_DEPTH 0x014005
792
793/* Inode extent tree could be shorter */
794#define PR_1E_CAN_COLLAPSE_EXTENT_TREE 0x014006
795
796/* Inode extent tree could be narrower */
797#define PR_1E_CAN_NARROW_EXTENT_TREE 0x014007
798
21c84b71
TT
799/*
800 * Pass 2 errors
801 */
802
1b6bf175
TT
803/* Pass 2: Checking directory structure */
804#define PR_2_PASS_HEADER 0x020000
805
21c84b71
TT
806/* Bad inode number for '.' */
807#define PR_2_BAD_INODE_DOT 0x020001
808
809/* Directory entry has bad inode number */
810#define PR_2_BAD_INO 0x020002
811
812/* Directory entry has deleted or unused inode */
813#define PR_2_UNUSED_INODE 0x020003
814
055866d8 815/* Directory entry is link to '.' */
21c84b71
TT
816#define PR_2_LINK_DOT 0x020004
817
818/* Directory entry points to inode now located in a bad block */
819#define PR_2_BB_INODE 0x020005
820
821/* Directory entry contains a link to a directory */
822#define PR_2_LINK_DIR 0x020006
823
055866d8 824/* Directory entry contains a link to the root directory */
21c84b71
TT
825#define PR_2_LINK_ROOT 0x020007
826
827/* Directory entry has illegal characters in its name */
828#define PR_2_BAD_NAME 0x020008
829
db0691b5 830/* Missing '.' in directory inode */
21c84b71
TT
831#define PR_2_MISSING_DOT 0x020009
832
db0691b5 833/* Missing '..' in directory inode */
21c84b71
TT
834#define PR_2_MISSING_DOT_DOT 0x02000A
835
836/* First entry in directory inode doesn't contain '.' */
837#define PR_2_1ST_NOT_DOT 0x02000B
838
839/* Second entry in directory inode doesn't contain '..' */
840#define PR_2_2ND_NOT_DOT_DOT 0x02000C
841
842/* i_faddr should be zero */
843#define PR_2_FADDR_ZERO 0x02000D
844
845/* i_file_acl should be zero */
846#define PR_2_FILE_ACL_ZERO 0x02000E
847
578fcbfd
AB
848/* i_size_high should be zero */
849#define PR_2_DIR_SIZE_HIGH_ZERO 0x02000F
21c84b71
TT
850
851/* i_frag should be zero */
852#define PR_2_FRAG_ZERO 0x020010
853
854/* i_fsize should be zero */
855#define PR_2_FSIZE_ZERO 0x020011
db0691b5 856
21c84b71
TT
857/* inode has bad mode */
858#define PR_2_BAD_MODE 0x020012
859
860/* directory corrupted */
861#define PR_2_DIR_CORRUPTED 0x020013
db0691b5 862
21c84b71
TT
863/* filename too long */
864#define PR_2_FILENAME_LONG 0x020014
db0691b5 865
21c84b71
TT
866/* Directory inode has a missing block (hole) */
867#define PR_2_DIRECTORY_HOLE 0x020015
868
869/* '.' is not NULL terminated */
870#define PR_2_DOT_NULL_TERM 0x020016
871
872/* '..' is not NULL terminated */
873#define PR_2_DOT_DOT_NULL_TERM 0x020017
874
7cf73dcd
TT
875/* Illegal character device in inode */
876#define PR_2_BAD_CHAR_DEV 0x020018
877
878/* Illegal block device in inode */
879#define PR_2_BAD_BLOCK_DEV 0x020019
880
1b6bf175
TT
881/* Duplicate '.' entry */
882#define PR_2_DUP_DOT 0x02001A
883
884/* Duplicate '..' entry */
885#define PR_2_DUP_DOT_DOT 0x02001B
db0691b5 886
1b6bf175
TT
887/* Internal error: couldn't find dir_info */
888#define PR_2_NO_DIRINFO 0x02001C
889
890/* Final rec_len is wrong */
891#define PR_2_FINAL_RECLEN 0x02001D
892
893/* Error allocating icount structure */
894#define PR_2_ALLOCATE_ICOUNT 0x02001E
895
896/* Error iterating over directory blocks */
897#define PR_2_DBLIST_ITERATE 0x02001F
898
899/* Error reading directory block */
900#define PR_2_READ_DIRBLOCK 0x020020
901
902/* Error writing directory block */
903#define PR_2_WRITE_DIRBLOCK 0x020021
904
905/* Error allocating new directory block */
906#define PR_2_ALLOC_DIRBOCK 0x020022
907
908/* Error deallocating inode */
909#define PR_2_DEALLOC_INODE 0x020023
910
f8188fff 911/* Directory entry for '.' is big. Split? */
7142db08 912#define PR_2_SPLIT_DOT 0x020024
f8188fff 913
1dde43f0
TT
914/* Illegal FIFO */
915#define PR_2_BAD_FIFO 0x020025
916
917/* Illegal socket */
918#define PR_2_BAD_SOCKET 0x020026
919
aa4115a4
TT
920/* Directory filetype not set */
921#define PR_2_SET_FILETYPE 0x020027
922
923/* Directory filetype incorrect */
924#define PR_2_BAD_FILETYPE 0x020028
925
7847c1d4
TT
926/* Directory filetype set when it shouldn't be */
927#define PR_2_CLEAR_FILETYPE 0x020029
928
c40db6d5
TT
929/* Directory filename can't be zero-length */
930#define PR_2_NULL_NAME 0x020030
931
bcf9c5d4
TT
932/* Invalid symlink */
933#define PR_2_INVALID_SYMLINK 0x020031
fdbdea09 934
342d847d
TT
935/* i_file_acl (extended attribute) is bad */
936#define PR_2_FILE_ACL_BAD 0x020032
937
a4742691
TT
938/* Filesystem contains large files, but has no such flag in sb */
939#define PR_2_FEATURE_LARGE_FILES 0x020033
940
8fdc9985
TT
941/* Node in HTREE directory not referenced */
942#define PR_2_HTREE_NOTREF 0x020034
943
944/* Node in HTREE directory referenced twice */
945#define PR_2_HTREE_DUPREF 0x020035
946
947/* Node in HTREE directory has bad min hash */
948#define PR_2_HTREE_MIN_HASH 0x020036
949
950/* Node in HTREE directory has bad max hash */
951#define PR_2_HTREE_MAX_HASH 0x020037
952
953/* Clear invalid HTREE directory */
954#define PR_2_HTREE_CLEAR 0x020038
955
956/* Clear the htree flag forcibly */
33db8f80 957/* #define PR_2_HTREE_FCLR 0x020039 */
8fdc9985
TT
958
959/* Bad block in htree interior node */
960#define PR_2_HTREE_BADBLK 0x02003A
961
0684a4f3
TT
962/* Error adjusting EA refcount */
963#define PR_2_ADJ_EA_REFCOUNT 0x02003B
964
ea1959f0
TT
965/* Invalid HTREE root node */
966#define PR_2_HTREE_BAD_ROOT 0x02003C
967
ad4fa466
TT
968/* Invalid HTREE limit */
969#define PR_2_HTREE_BAD_LIMIT 0x02003D
970
971/* Invalid HTREE count */
972#define PR_2_HTREE_BAD_COUNT 0x02003E
973
974/* HTREE interior node has out-of-order hashes in table */
975#define PR_2_HTREE_HASH_ORDER 0x02003F
976
977/* Node in HTREE directory has bad depth */
b0700a1b
TT
978#define PR_2_HTREE_BAD_DEPTH 0x020040
979
980/* Duplicate directory entry found */
981#define PR_2_DUPLICATE_DIRENT 0x020041
982
983/* Non-unique filename found */
984#define PR_2_NON_UNIQUE_FILE 0x020042
ad4fa466 985
0926668d
TT
986/* Duplicate directory entry found */
987#define PR_2_REPORT_DUP_DIRENT 0x020043
988
5d17119d
TT
989/* i_blocks_hi should be zero */
990#define PR_2_BLOCKS_HI_ZERO 0x020044
991
d45edec0
TT
992/* Unexpected HTREE block */
993#define PR_2_UNEXPECTED_HTREE_BLOCK 0x020045
994
49a7360b
JS
995/* Inode found in group where _INODE_UNINIT is set */
996#define PR_2_INOREF_BG_INO_UNINIT 0x020046
997
998/* Inode found in group unused inodes area */
999#define PR_2_INOREF_IN_UNUSED 0x020047
1000
911ec626
TT
1001/* i_file_acl_hi should be zero */
1002#define PR_2_I_FILE_ACL_HI_ZERO 0x020048
1003
07307114
DW
1004/* htree root node fails checksum */
1005#define PR_2_HTREE_ROOT_CSUM_INVALID 0x020049
1006
1007/* htree node fails checksum */
1008#define PR_2_HTREE_NODE_CSUM_INVALID 0x02004A
1009
e8548796
DW
1010/* no space in leaf for checksum */
1011#define PR_2_LEAF_NODE_MISSING_CSUM 0x02004C
1012
1013/* dir leaf node passes checks, but fails checksum */
1014#define PR_2_LEAF_NODE_ONLY_CSUM_INVALID 0x02004D
1015
52b0c6e6
DW
1016/* bad inline directory size */
1017#define PR_2_BAD_INLINE_DIR_SIZE 0x02004E
1018
1019/* fixing inline dir size failed */
1020#define PR_2_FIX_INLINE_DIR_FAILED 0x02004F
1021
e3dd5c6f
TT
1022/* Encrypted directory entry is too short */
1023#define PR_2_BAD_ENCRYPTED_NAME 0x020050
1024
2ba05753
EB
1025/* Encrypted directory contains unencrypted file */
1026#define PR_2_UNENCRYPTED_FILE 0x020051
1027
1028/* Encrypted directory contains file with different encryption policy */
1029#define PR_2_INCONSISTENT_ENCRYPTION_POLICY 0x020052
1030
21c84b71
TT
1031/*
1032 * Pass 3 errors
1033 */
1034
1b6bf175
TT
1035/* Pass 3: Checking directory connectivity */
1036#define PR_3_PASS_HEADER 0x030000
1037
21c84b71 1038/* Root inode not allocated */
1b6bf175 1039#define PR_3_NO_ROOT_INODE 0x030001
21c84b71
TT
1040
1041/* No room in lost+found */
1b6bf175 1042#define PR_3_EXPAND_LF_DIR 0x030002
21c84b71
TT
1043
1044/* Unconnected directory inode */
1b6bf175 1045#define PR_3_UNCONNECTED_DIR 0x030003
21c84b71
TT
1046
1047/* /lost+found not found */
1b6bf175 1048#define PR_3_NO_LF_DIR 0x030004
21c84b71
TT
1049
1050/* .. entry is incorrect */
1b6bf175
TT
1051#define PR_3_BAD_DOT_DOT 0x030005
1052
1053/* Bad or non-existent /lost+found. Cannot reconnect */
1054#define PR_3_NO_LPF 0x030006
1055
1056/* Could not expand /lost+found */
1057#define PR_3_CANT_EXPAND_LPF 0x030007
1058
1059/* Could not reconnect inode */
1060#define PR_3_CANT_RECONNECT 0x030008
1061
1062/* Error while trying to find /lost+found */
1063#define PR_3_ERR_FIND_LPF 0x030009
1064
1065/* Error in ext2fs_new_block while creating /lost+found */
1066#define PR_3_ERR_LPF_NEW_BLOCK 0x03000A
21c84b71 1067
1b6bf175
TT
1068/* Error in ext2fs_new_inode while creating /lost+found */
1069#define PR_3_ERR_LPF_NEW_INODE 0x03000B
1070
db0691b5 1071/* Error in ext2fs_new_dir_block while creating /lost+found */
1b6bf175 1072#define PR_3_ERR_LPF_NEW_DIR_BLOCK 0x03000C
db0691b5 1073
1b6bf175
TT
1074/* Error while writing directory block for /lost+found */
1075#define PR_3_ERR_LPF_WRITE_BLOCK 0x03000D
1076
1077/* Error while adjusting inode count */
1078#define PR_3_ADJUST_INODE 0x03000E
1079
1080/* Couldn't fix parent directory -- error */
1081#define PR_3_FIX_PARENT_ERR 0x03000F
1082
db0691b5 1083/* Couldn't fix parent directory -- couldn't find it */
1b6bf175 1084#define PR_3_FIX_PARENT_NOFIND 0x030010
db0691b5 1085
1b6bf175
TT
1086/* Error allocating inode bitmap */
1087#define PR_3_ALLOCATE_IBITMAP_ERROR 0x030011
db0691b5 1088
1b6bf175
TT
1089/* Error creating root directory */
1090#define PR_3_CREATE_ROOT_ERROR 0x030012
1091
1092/* Error creating lost and found directory */
1093#define PR_3_CREATE_LPF_ERROR 0x030013
21c84b71 1094
f8188fff
TT
1095/* Root inode is not directory; aborting */
1096#define PR_3_ROOT_NOT_DIR_ABORT 0x030014
1097
1098/* Cannot proceed without a root inode. */
1099#define PR_3_NO_ROOT_INODE_ABORT 0x030015
1100
7f813ba3 1101/* Internal error: couldn't find dir_info */
4a9f5936
TT
1102#define PR_3_NO_DIRINFO 0x030016
1103
1104/* Lost+found is not a directory */
1105#define PR_3_LPF_NOTDIR 0x030017
7f813ba3 1106
9676f3a9
ZL
1107/* Lost+found has inline data */
1108#define PR_3_LPF_INLINE_DATA 0x030018
1109
09918967
DW
1110/* Cannot allocate lost+found */
1111#define PR_3_LPF_NO_SPACE 0x030019
1112
d5da89e8
DW
1113/* Insufficient space to recover lost files */
1114#define PR_3_NO_SPACE_TO_RECOVER 0x03001A
1115
4ecd63d7
TT
1116/* Lost+found is encrypted */
1117#define PR_3_LPF_ENCRYPTED 0x03001B
1118
b7a00563 1119/*
055866d8 1120 * Pass 3a --- rehashing directories
b7a00563
TT
1121 */
1122/* Pass 3a: Reindexing directories */
1123#define PR_3A_PASS_HEADER 0x031000
1124
1125/* Error iterating over directories */
850d05e9 1126#define PR_3A_OPTIMIZE_ITER 0x031001
b7a00563
TT
1127
1128/* Error rehash directory */
db0691b5 1129#define PR_3A_OPTIMIZE_DIR_ERR 0x031002
b7a00563
TT
1130
1131/* Rehashing dir header */
ae33f578 1132#define PR_3A_OPTIMIZE_DIR_HEADER 0x031003
b7a00563
TT
1133
1134/* Rehashing directory %d */
850d05e9 1135#define PR_3A_OPTIMIZE_DIR 0x031004
db0691b5
TT
1136
1137/* Rehashing dir end */
850d05e9
TT
1138#define PR_3A_OPTIMIZE_DIR_END 0x031005
1139
e228d700
DW
1140/* Pass 3B is really just 1E */
1141
21c84b71
TT
1142/*
1143 * Pass 4 errors
1144 */
1145
1b6bf175 1146/* Pass 4: Checking reference counts */
ae33f578 1147#define PR_4_PASS_HEADER 0x040000
1b6bf175 1148
21c84b71 1149/* Unattached zero-length inode */
ae33f578 1150#define PR_4_ZERO_LEN_INODE 0x040001
21c84b71
TT
1151
1152/* Unattached inode */
ae33f578 1153#define PR_4_UNATTACHED_INODE 0x040002
21c84b71
TT
1154
1155/* Inode ref count wrong */
ae33f578 1156#define PR_4_BAD_REF_COUNT 0x040003
21c84b71 1157
1b6bf175 1158/* Inconsistent inode count information cached */
ae33f578 1159#define PR_4_INCONSISTENT_COUNT 0x040004
1b6bf175 1160
5c5685d1
TE
1161/* Extended attribute inode ref count wrong */
1162#define PR_4_EA_INODE_REF_COUNT 0x040005
1163
1a801577
AD
1164/* directory exceeds max links, but no DIR_NLINK feature in superblock */
1165#define PR_4_DIR_NLINK_FEATURE 0x040006
1166
21c84b71
TT
1167/*
1168 * Pass 5 errors
1169 */
1170
1b6bf175
TT
1171/* Pass 5: Checking group summary information */
1172#define PR_5_PASS_HEADER 0x050000
db0691b5 1173
1b6bf175
TT
1174/* Padding at end of inode bitmap is not set. */
1175#define PR_5_INODE_BMAP_PADDING 0x050001
1176
1177/* Padding at end of block bitmap is not set. */
1178#define PR_5_BLOCK_BMAP_PADDING 0x050002
1179
1180/* Block bitmap differences header */
ae33f578 1181#define PR_5_BLOCK_BITMAP_HEADER 0x050003
1b6bf175
TT
1182
1183/* Block not used, but marked in bitmap */
f122632e 1184#define PR_5_BLOCK_UNUSED 0x050004
db0691b5 1185
1b6bf175
TT
1186/* Block used, but not marked used in bitmap */
1187#define PR_5_BLOCK_USED 0x050005
1188
db0691b5 1189/* Block bitmap differences end */
1b6bf175
TT
1190#define PR_5_BLOCK_BITMAP_END 0x050006
1191
1192/* Inode bitmap differences header */
1193#define PR_5_INODE_BITMAP_HEADER 0x050007
1194
1195/* Inode not used, but marked in bitmap */
f122632e 1196#define PR_5_INODE_UNUSED 0x050008
db0691b5 1197
1b6bf175
TT
1198/* Inode used, but not marked used in bitmap */
1199#define PR_5_INODE_USED 0x050009
1200
db0691b5 1201/* Inode bitmap differences end */
1b6bf175
TT
1202#define PR_5_INODE_BITMAP_END 0x05000A
1203
1204/* Free inodes count for group wrong */
1205#define PR_5_FREE_INODE_COUNT_GROUP 0x05000B
1206
1207/* Directories count for group wrong */
1208#define PR_5_FREE_DIR_COUNT_GROUP 0x05000C
1209
1210/* Free inodes count wrong */
ae33f578 1211#define PR_5_FREE_INODE_COUNT 0x05000D
1b6bf175
TT
1212
1213/* Free blocks count for group wrong */
1214#define PR_5_FREE_BLOCK_COUNT_GROUP 0x05000E
1215
1216/* Free blocks count wrong */
1217#define PR_5_FREE_BLOCK_COUNT 0x05000F
1218
1219/* Programming error: bitmap endpoints don't match */
1220#define PR_5_BMAP_ENDPOINTS 0x050010
bbd47d76 1221
1b6bf175
TT
1222/* Internal error: fudging end of bitmap */
1223#define PR_5_FUDGE_BITMAP_ERROR 0x050011
bbd47d76
TT
1224
1225/* Error copying in replacement inode bitmap */
1226#define PR_5_COPY_IBITMAP_ERROR 0x050012
1227
1228/* Error copying in replacement block bitmap */
1229#define PR_5_COPY_BBITMAP_ERROR 0x050013
1230
f122632e
TT
1231/* Block range not used, but marked in bitmap */
1232#define PR_5_BLOCK_RANGE_UNUSED 0x050014
db0691b5 1233
f122632e
TT
1234/* Block range used, but not marked used in bitmap */
1235#define PR_5_BLOCK_RANGE_USED 0x050015
1236
1237/* Inode range not used, but marked in bitmap */
1238#define PR_5_INODE_RANGE_UNUSED 0x050016
49a7360b 1239
055866d8 1240/* Inode range used, but not marked used in bitmap */
f122632e
TT
1241#define PR_5_INODE_RANGE_USED 0x050017
1242
49a7360b
JS
1243/* Block in use but group is marked BLOCK_UNINIT */
1244#define PR_5_BLOCK_UNINIT 0x050018
1245
1246/* Inode in use but group is marked INODE_UNINIT */
1247#define PR_5_INODE_UNINIT 0x050019
1248
11ac780e
DW
1249/* Inode bitmap checksum does not match */
1250#define PR_5_INODE_BITMAP_CSUM_INVALID 0x05001A
1251
da670fe0
DW
1252/* Block bitmap checksum does not match */
1253#define PR_5_BLOCK_BITMAP_CSUM_INVALID 0x05001B
1254
5107d0d1
KS
1255/*
1256 * Post-Pass 5 errors
1257 */
1258
1259/* Recreate the journal if E2F_FLAG_JOURNAL_INODE flag is set */
1260#define PR_6_RECREATE_JOURNAL 0x060001
1261
7943ccf5
AK
1262/* Update quota information if it is inconsistent */
1263#define PR_6_UPDATE_QUOTAS 0x060002
1264
115d4b4b
TT
1265/* Error setting block group checksum info */
1266#define PR_6_SET_BG_CHECKSUM 0x060003
1267
1268/* Error writing file system info */
1269#define PR_6_FLUSH_FILESYSTEM 0x060004
1270
1271/* Error flushing writes to storage device */
1272#define PR_6_IO_FLUSH 0x060005
1273
a701823a
TT
1274/* Error updating quota information */
1275#define PR_6_WRITE_QUOTAS 0x060006
1276
1277
21c84b71
TT
1278/*
1279 * Function declarations
1280 */
1b6bf175
TT
1281int fix_problem(e2fsck_t ctx, problem_t code, struct problem_context *pctx);
1282int end_problem_latch(e2fsck_t ctx, int mask);
1283int set_latch_flags(int mask, int setflags, int clearflags);
1284int get_latch_flags(int mask, int *value);
ae33f578 1285void clear_problem_context(struct problem_context *pctx);
21c84b71
TT
1286
1287/* message.c */
b0e91c89 1288void print_e2fsck_message(FILE *f, e2fsck_t ctx, const char *msg,
db0691b5 1289 struct problem_context *pctx, int first,
1a191d66 1290 int recurse);
21c84b71 1291