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