]> git.ipfire.org Git - thirdparty/e2fsprogs.git/blame - e2fsck/problem.h
e2fsprogs: add quota library to e2fsprogs
[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
26ea4899 236
21c84b71
TT
237/*
238 * Pass 1 errors
239 */
240
1b6bf175
TT
241/* Pass 1: Checking inodes, blocks, and sizes */
242#define PR_1_PASS_HEADER 0x010000
243
21c84b71 244/* Root directory is not an inode */
1b6bf175 245#define PR_1_ROOT_NO_DIR 0x010001
21c84b71
TT
246
247/* Root directory has dtime set */
1b6bf175 248#define PR_1_ROOT_DTIME 0x010002
21c84b71
TT
249
250/* Reserved inode has bad mode */
1b6bf175 251#define PR_1_RESERVED_BAD_MODE 0x010003
21c84b71
TT
252
253/* Deleted inode has zero dtime */
1b6bf175 254#define PR_1_ZERO_DTIME 0x010004
21c84b71
TT
255
256/* Inode in use, but dtime set */
1b6bf175 257#define PR_1_SET_DTIME 0x010005
21c84b71
TT
258
259/* Zero-length directory */
1b6bf175 260#define PR_1_ZERO_LENGTH_DIR 0x010006
21c84b71
TT
261
262/* Block bitmap conflicts with some other fs block */
1b6bf175 263#define PR_1_BB_CONFLICT 0x010007
21c84b71
TT
264
265/* Inode bitmap conflicts with some other fs block */
1b6bf175 266#define PR_1_IB_CONFLICT 0x010008
21c84b71
TT
267
268/* Inode table conflicts with some other fs block */
1b6bf175 269#define PR_1_ITABLE_CONFLICT 0x010009
21c84b71
TT
270
271/* Block bitmap is on a bad block */
1b6bf175 272#define PR_1_BB_BAD_BLOCK 0x01000A
21c84b71
TT
273
274/* Inode bitmap is on a bad block */
1b6bf175 275#define PR_1_IB_BAD_BLOCK 0x01000B
21c84b71
TT
276
277/* Inode has incorrect i_size */
1b6bf175 278#define PR_1_BAD_I_SIZE 0x01000C
21c84b71
TT
279
280/* Inode has incorrect i_blocks */
1b6bf175 281#define PR_1_BAD_I_BLOCKS 0x01000D
21c84b71
TT
282
283/* Illegal block number in inode */
1b6bf175 284#define PR_1_ILLEGAL_BLOCK_NUM 0x01000E
21c84b71
TT
285
286/* Block number overlaps fs metadata */
287#define PR_1_BLOCK_OVERLAPS_METADATA 0x01000F
288
289/* Inode has illegal blocks (latch question) */
1b6bf175 290#define PR_1_INODE_BLOCK_LATCH 0x010010
21c84b71
TT
291
292/* Too many bad blocks in inode */
ae33f578 293#define PR_1_TOO_MANY_BAD_BLOCKS 0x010011
db0691b5 294
21c84b71 295/* Illegal block number in bad block inode */
ae33f578 296#define PR_1_BB_ILLEGAL_BLOCK_NUM 0x010012
21c84b71
TT
297
298/* Bad block inode has illegal blocks (latch question) */
1b6bf175
TT
299#define PR_1_INODE_BBLOCK_LATCH 0x010013
300
301/* Duplicate or bad blocks in use! */
302#define PR_1_DUP_BLOCKS_PREENSTOP 0x010014
db0691b5
TT
303
304/* Bad block used as bad block indirect block */
1b6bf175
TT
305#define PR_1_BBINODE_BAD_METABLOCK 0x010015
306
307/* Inconsistency can't be fixed prompt */
308#define PR_1_BBINODE_BAD_METABLOCK_PROMPT 0x010016
db0691b5 309
1b6bf175 310/* Bad primary block */
b2f93192 311#define PR_1_BAD_PRIMARY_BLOCK 0x010017
db0691b5 312
1b6bf175 313/* Bad primary block prompt */
b2f93192 314#define PR_1_BAD_PRIMARY_BLOCK_PROMPT 0x010018
1b6bf175
TT
315
316/* Bad primary superblock */
b2f93192 317#define PR_1_BAD_PRIMARY_SUPERBLOCK 0x010019
1b6bf175
TT
318
319/* Bad primary block group descriptors */
b2f93192 320#define PR_1_BAD_PRIMARY_GROUP_DESCRIPTOR 0x01001A
1b6bf175
TT
321
322/* Bad superblock in group */
b2f93192 323#define PR_1_BAD_SUPERBLOCK 0x01001B
1b6bf175
TT
324
325/* Bad block group descriptors in group */
b2f93192 326#define PR_1_BAD_GROUP_DESCRIPTORS 0x01001C
1b6bf175 327
db0691b5 328/* Block claimed for no reason */
b2f93192 329#define PR_1_PROGERR_CLAIMED_BLOCK 0x01001D
1b6bf175 330
f8188fff 331/* Error allocating blocks for relocating metadata */
b2f93192 332#define PR_1_RELOC_BLOCK_ALLOCATE 0x01001E
db0691b5 333
f8188fff 334/* Error allocating block buffer during relocation process */
b2f93192 335#define PR_1_RELOC_MEMORY_ALLOCATE 0x01001F
db0691b5
TT
336
337/* Relocating metadata group information from X to Y */
b2f93192 338#define PR_1_RELOC_FROM_TO 0x010020
db0691b5 339
1b6bf175 340/* Relocating metatdata group information to X */
b2f93192 341#define PR_1_RELOC_TO 0x010021
db0691b5 342
1b6bf175 343/* Block read error during relocation process */
b2f93192 344#define PR_1_RELOC_READ_ERR 0x010022
db0691b5 345
1b6bf175 346/* Block write error during relocation process */
b2f93192 347#define PR_1_RELOC_WRITE_ERR 0x010023
1b6bf175
TT
348
349/* Error allocating inode bitmap */
b2f93192 350#define PR_1_ALLOCATE_IBITMAP_ERROR 0x010024
1b6bf175
TT
351
352/* Error allocating block bitmap */
b2f93192 353#define PR_1_ALLOCATE_BBITMAP_ERROR 0x010025
1b6bf175
TT
354
355/* Error allocating icount structure */
b2f93192 356#define PR_1_ALLOCATE_ICOUNT 0x010026
db0691b5 357
1b6bf175 358/* Error allocating dbcount */
b2f93192 359#define PR_1_ALLOCATE_DBCOUNT 0x010027
1b6bf175
TT
360
361/* Error while scanning inodes */
b2f93192 362#define PR_1_ISCAN_ERROR 0x010028
1b6bf175
TT
363
364/* Error while iterating over blocks */
b2f93192 365#define PR_1_BLOCK_ITERATE 0x010029
1b6bf175 366
db0691b5 367/* Error while storing inode count information */
b2f93192 368#define PR_1_ICOUNT_STORE 0x01002A
1b6bf175 369
db0691b5 370/* Error while storing directory block information */
b2f93192 371#define PR_1_ADD_DBLOCK 0x01002B
1b6bf175
TT
372
373/* Error while reading inode (for clearing) */
b2f93192 374#define PR_1_READ_INODE 0x01002C
1b6bf175 375
f8188fff 376/* Suppress messages prompt */
b2f93192 377#define PR_1_SUPPRESS_MESSAGES 0x01002D
21c84b71 378
6fdc7a32
TT
379/* Imagic flag set on an inode when filesystem doesn't support it */
380#define PR_1_SET_IMAGIC 0x01002F
381
382/* Immutable flag set on a device or socket inode */
383#define PR_1_SET_IMMUTABLE 0x010030
1917875f
TT
384
385/* Compression flag set on a non-compressed filesystem */
386#define PR_1_COMPR_SET 0x010031
387
d647a1ea
TT
388/* Non-zero size on on device, fifo or socket inode */
389#define PR_1_SET_NONZSIZE 0x010032
390
060b5fbf
TT
391/* Filesystem revision is 0, but feature flags are set */
392#define PR_1_FS_REV_LEVEL 0x010033
393
f18996c8 394/* Journal inode not in use, needs clearing */
a9ca2016 395#define PR_1_JOURNAL_INODE_NOT_CLEAR 0x010034
f18996c8 396
a9ca2016
TT
397/* Journal inode has wrong mode */
398#define PR_1_JOURNAL_BAD_MODE 0x010035
21afac09
TT
399
400/* Inode that was part of orphan linked list */
401#define PR_1_LOW_DTIME 0x010036
402
403/* Latch question which asks how to deal with low dtime inodes */
404#define PR_1_ORPHAN_LIST_REFUGEES 0x010037
342d847d
TT
405
406/* Error allocating refcount structure */
407#define PR_1_ALLOCATE_REFCOUNT 0x010038
db0691b5 408
342d847d
TT
409/* Error reading Extended Attribute block */
410#define PR_1_READ_EA_BLOCK 0x010039
411
412/* Invalid Extended Attribute block */
413#define PR_1_BAD_EA_BLOCK 0x01003A
414
e8a3ee62
TT
415/* Error reading Extended Attribute block while fixing refcount -- abort */
416#define PR_1_EXTATTR_READ_ABORT 0x01003B
417
418/* Extended attribute reference count incorrect */
419#define PR_1_EXTATTR_REFCOUNT 0x01003C
420
db0691b5 421/* Error writing Extended Attribute block while fixing refcount */
a6217f5a 422#define PR_1_EXTATTR_WRITE_ABORT 0x01003D
55fd07ed
TT
423
424/* Multiple EA blocks not supported */
425#define PR_1_EA_MULTI_BLOCK 0x01003E
426
427/* Error allocating EA region allocation structure */
a6217f5a 428#define PR_1_EA_ALLOC_REGION_ABORT 0x01003F
b94a052a 429
55fd07ed
TT
430/* Error EA allocation collision */
431#define PR_1_EA_ALLOC_COLLISION 0x010040
b94a052a 432
55fd07ed
TT
433/* Bad extended attribute name */
434#define PR_1_EA_BAD_NAME 0x010041
435
436/* Bad extended attribute value */
b94a052a
AD
437#define PR_1_EA_BAD_VALUE 0x010042
438
da307041
TT
439/* Inode too big (latch question) */
440#define PR_1_INODE_TOOBIG 0x010043
441
442/* Directory too big */
443#define PR_1_TOOBIG_DIR 0x010044
444
445/* Regular file too big */
446#define PR_1_TOOBIG_REG 0x010045
447
448/* Symlink too big */
449#define PR_1_TOOBIG_SYMLINK 0x010046
450
8fdc9985
TT
451/* INDEX_FL flag set on a non-HTREE filesystem */
452#define PR_1_HTREE_SET 0x010047
453
db0691b5 454/* INDEX_FL flag set on a non-directory */
503f9e7f
TT
455#define PR_1_HTREE_NODIR 0x010048
456
db0691b5 457/* Invalid root node in HTREE directory */
503f9e7f
TT
458#define PR_1_HTREE_BADROOT 0x010049
459
db0691b5 460/* Unsupported hash version in HTREE directory */
503f9e7f
TT
461#define PR_1_HTREE_HASHV 0x01004A
462
db0691b5 463/* Incompatible flag in HTREE root node */
503f9e7f
TT
464#define PR_1_HTREE_INCOMPAT 0x01004B
465
db0691b5 466/* HTREE too deep */
503f9e7f
TT
467#define PR_1_HTREE_DEPTH 0x01004C
468
000ba404
TT
469/* Bad block has indirect block that conflicts with filesystem block */
470#define PR_1_BB_FS_BLOCK 0x01004D
471
c3ffaf83
TT
472/* Resize inode failed */
473#define PR_1_RESIZE_INODE_CREATE 0x01004E
474
db0691b5 475/* inode->i_size is too long */
cebe48a1
TT
476#define PR_1_EXTRA_ISIZE 0x01004F
477
478/* attribute name is too long */
479#define PR_1_ATTR_NAME_LEN 0x010050
480
481/* wrong EA value offset */
482#define PR_1_ATTR_VALUE_OFFSET 0x010051
483
484/* wrong EA blocknumber */
485#define PR_1_ATTR_VALUE_BLOCK 0x010052
486
487/* wrong EA value size */
488#define PR_1_ATTR_VALUE_SIZE 0x010053
489
490/* wrong EA hash value */
491#define PR_1_ATTR_HASH 0x010054
492
fbc3f901
TT
493/* inode appears to be a directory */
494#define PR_1_TREAT_AS_DIRECTORY 0x010055
495
15d482ba
TT
496/* Error while reading extent tree */
497#define PR_1_READ_EXTENT 0x010056
498
7518c176
TT
499/* Failure to iterate extents */
500#define PR_1_EXTENT_ITERATE_FAILURE 0x010057
15d482ba
TT
501
502/* Bad starting block in extent */
503#define PR_1_EXTENT_BAD_START_BLK 0x010058
504
505/* Extent ends beyond filesystem */
506#define PR_1_EXTENT_ENDS_BEYOND 0x010059
507
508/* EXTENTS_FL flag set on a non-extents capable filesystem */
509#define PR_1_EXTENTS_SET 0x01005A
510
511/* inode has extents, superblock missing INCOMPAT_EXTENTS feature */
512#define PR_1_EXTENT_FEATURE 0x01005B
513
514/* inode missing EXTENTS_FL, but is an extent inode */
515#define PR_1_UNSET_EXTENT_FL 0x01005C
516
ee19c902
TT
517/* Fast symlink has EXTENTS_FL set */
518#define PR_1_FAST_SYMLINK_EXTENT_FL 0x01005D
519
d5a8f9a9
TT
520/* Extents are out of order */
521#define PR_1_OUT_OF_ORDER_EXTENTS 0x01005E
522
7518c176
TT
523/* Extent node header invalid */
524#define PR_1_EXTENT_HEADER_INVALID 0x01005F
525
2291fbb0
TT
526/* EOFBLOCKS flag set when not necessary */
527#define PR_1_EOFBLOCKS_FL_SET 0x010060
528
44fe08f1
TT
529/* Failed to convert subcluster bitmap */
530#define PR_1_CONVERT_SUBCLUSTER 0x010061
531
21c84b71
TT
532/*
533 * Pass 1b errors
534 */
535
1b6bf175
TT
536/* Pass 1B: Rescan for duplicate/bad blocks */
537#define PR_1B_PASS_HEADER 0x011000
538
539/* Duplicate/bad block(s) header */
540#define PR_1B_DUP_BLOCK_HEADER 0x011001
541
542/* Duplicate/bad block(s) in inode */
543#define PR_1B_DUP_BLOCK 0x011002
544
545/* Duplicate/bad block(s) end */
546#define PR_1B_DUP_BLOCK_END 0x011003
db0691b5 547
1b6bf175
TT
548/* Error while scanning inodes */
549#define PR_1B_ISCAN_ERROR 0x011004
550
551/* Error allocating inode bitmap */
552#define PR_1B_ALLOCATE_IBITMAP_ERROR 0x011005
553
133a56dc 554/* Error while iterating over blocks */
7494cbfd 555#define PR_1B_BLOCK_ITERATE 0x011006
1b6bf175 556
0684a4f3 557/* Error adjusting EA refcount */
7494cbfd 558#define PR_1B_ADJ_EA_REFCOUNT 0x011007
0684a4f3
TT
559
560
1b6bf175
TT
561/* Pass 1C: Scan directories for inodes with dup blocks. */
562#define PR_1C_PASS_HEADER 0x012000
563
564
565/* Pass 1D: Reconciling duplicate blocks */
566#define PR_1D_PASS_HEADER 0x013000
567
21c84b71 568/* File has duplicate blocks */
1b6bf175 569#define PR_1D_DUP_FILE 0x013001
21c84b71 570
db0691b5 571/* List of files sharing duplicate blocks */
1b6bf175 572#define PR_1D_DUP_FILE_LIST 0x013002
21c84b71 573
db0691b5 574/* File sharing blocks with filesystem metadata */
1b6bf175
TT
575#define PR_1D_SHARE_METADATA 0x013003
576
db0691b5 577/* Report of how many duplicate/bad inodes */
1b6bf175
TT
578#define PR_1D_NUM_DUP_INODES 0x013004
579
580/* Duplicated blocks already reassigned or cloned. */
581#define PR_1D_DUP_BLOCKS_DEALT 0x013005
582
583/* Clone duplicate/bad blocks? */
584#define PR_1D_CLONE_QUESTION 0x013006
585
586/* Delete file? */
587#define PR_1D_DELETE_QUESTION 0x013007
521e3685 588
1b6bf175
TT
589/* Couldn't clone file (error) */
590#define PR_1D_CLONE_ERROR 0x013008
db0691b5 591
21c84b71
TT
592/*
593 * Pass 2 errors
594 */
595
1b6bf175
TT
596/* Pass 2: Checking directory structure */
597#define PR_2_PASS_HEADER 0x020000
598
21c84b71
TT
599/* Bad inode number for '.' */
600#define PR_2_BAD_INODE_DOT 0x020001
601
602/* Directory entry has bad inode number */
603#define PR_2_BAD_INO 0x020002
604
605/* Directory entry has deleted or unused inode */
606#define PR_2_UNUSED_INODE 0x020003
607
608/* Directry entry is link to '.' */
609#define PR_2_LINK_DOT 0x020004
610
611/* Directory entry points to inode now located in a bad block */
612#define PR_2_BB_INODE 0x020005
613
614/* Directory entry contains a link to a directory */
615#define PR_2_LINK_DIR 0x020006
616
617/* Directory entry contains a link to the root directry */
618#define PR_2_LINK_ROOT 0x020007
619
620/* Directory entry has illegal characters in its name */
621#define PR_2_BAD_NAME 0x020008
622
db0691b5 623/* Missing '.' in directory inode */
21c84b71
TT
624#define PR_2_MISSING_DOT 0x020009
625
db0691b5 626/* Missing '..' in directory inode */
21c84b71
TT
627#define PR_2_MISSING_DOT_DOT 0x02000A
628
629/* First entry in directory inode doesn't contain '.' */
630#define PR_2_1ST_NOT_DOT 0x02000B
631
632/* Second entry in directory inode doesn't contain '..' */
633#define PR_2_2ND_NOT_DOT_DOT 0x02000C
634
635/* i_faddr should be zero */
636#define PR_2_FADDR_ZERO 0x02000D
637
638/* i_file_acl should be zero */
639#define PR_2_FILE_ACL_ZERO 0x02000E
640
641/* i_dir_acl should be zero */
642#define PR_2_DIR_ACL_ZERO 0x02000F
643
644/* i_frag should be zero */
645#define PR_2_FRAG_ZERO 0x020010
646
647/* i_fsize should be zero */
648#define PR_2_FSIZE_ZERO 0x020011
db0691b5 649
21c84b71
TT
650/* inode has bad mode */
651#define PR_2_BAD_MODE 0x020012
652
653/* directory corrupted */
654#define PR_2_DIR_CORRUPTED 0x020013
db0691b5 655
21c84b71
TT
656/* filename too long */
657#define PR_2_FILENAME_LONG 0x020014
db0691b5 658
21c84b71
TT
659/* Directory inode has a missing block (hole) */
660#define PR_2_DIRECTORY_HOLE 0x020015
661
662/* '.' is not NULL terminated */
663#define PR_2_DOT_NULL_TERM 0x020016
664
665/* '..' is not NULL terminated */
666#define PR_2_DOT_DOT_NULL_TERM 0x020017
667
7cf73dcd
TT
668/* Illegal character device in inode */
669#define PR_2_BAD_CHAR_DEV 0x020018
670
671/* Illegal block device in inode */
672#define PR_2_BAD_BLOCK_DEV 0x020019
673
1b6bf175
TT
674/* Duplicate '.' entry */
675#define PR_2_DUP_DOT 0x02001A
676
677/* Duplicate '..' entry */
678#define PR_2_DUP_DOT_DOT 0x02001B
db0691b5 679
1b6bf175
TT
680/* Internal error: couldn't find dir_info */
681#define PR_2_NO_DIRINFO 0x02001C
682
683/* Final rec_len is wrong */
684#define PR_2_FINAL_RECLEN 0x02001D
685
686/* Error allocating icount structure */
687#define PR_2_ALLOCATE_ICOUNT 0x02001E
688
689/* Error iterating over directory blocks */
690#define PR_2_DBLIST_ITERATE 0x02001F
691
692/* Error reading directory block */
693#define PR_2_READ_DIRBLOCK 0x020020
694
695/* Error writing directory block */
696#define PR_2_WRITE_DIRBLOCK 0x020021
697
698/* Error allocating new directory block */
699#define PR_2_ALLOC_DIRBOCK 0x020022
700
701/* Error deallocating inode */
702#define PR_2_DEALLOC_INODE 0x020023
703
f8188fff 704/* Directory entry for '.' is big. Split? */
7142db08 705#define PR_2_SPLIT_DOT 0x020024
f8188fff 706
1dde43f0
TT
707/* Illegal FIFO */
708#define PR_2_BAD_FIFO 0x020025
709
710/* Illegal socket */
711#define PR_2_BAD_SOCKET 0x020026
712
aa4115a4
TT
713/* Directory filetype not set */
714#define PR_2_SET_FILETYPE 0x020027
715
716/* Directory filetype incorrect */
717#define PR_2_BAD_FILETYPE 0x020028
718
7847c1d4
TT
719/* Directory filetype set when it shouldn't be */
720#define PR_2_CLEAR_FILETYPE 0x020029
721
c40db6d5
TT
722/* Directory filename can't be zero-length */
723#define PR_2_NULL_NAME 0x020030
724
bcf9c5d4
TT
725/* Invalid symlink */
726#define PR_2_INVALID_SYMLINK 0x020031
fdbdea09 727
342d847d
TT
728/* i_file_acl (extended attribute) is bad */
729#define PR_2_FILE_ACL_BAD 0x020032
730
a4742691
TT
731/* Filesystem contains large files, but has no such flag in sb */
732#define PR_2_FEATURE_LARGE_FILES 0x020033
733
8fdc9985
TT
734/* Node in HTREE directory not referenced */
735#define PR_2_HTREE_NOTREF 0x020034
736
737/* Node in HTREE directory referenced twice */
738#define PR_2_HTREE_DUPREF 0x020035
739
740/* Node in HTREE directory has bad min hash */
741#define PR_2_HTREE_MIN_HASH 0x020036
742
743/* Node in HTREE directory has bad max hash */
744#define PR_2_HTREE_MAX_HASH 0x020037
745
746/* Clear invalid HTREE directory */
747#define PR_2_HTREE_CLEAR 0x020038
748
749/* Clear the htree flag forcibly */
33db8f80 750/* #define PR_2_HTREE_FCLR 0x020039 */
8fdc9985
TT
751
752/* Bad block in htree interior node */
753#define PR_2_HTREE_BADBLK 0x02003A
754
0684a4f3
TT
755/* Error adjusting EA refcount */
756#define PR_2_ADJ_EA_REFCOUNT 0x02003B
757
ea1959f0
TT
758/* Invalid HTREE root node */
759#define PR_2_HTREE_BAD_ROOT 0x02003C
760
ad4fa466
TT
761/* Invalid HTREE limit */
762#define PR_2_HTREE_BAD_LIMIT 0x02003D
763
764/* Invalid HTREE count */
765#define PR_2_HTREE_BAD_COUNT 0x02003E
766
767/* HTREE interior node has out-of-order hashes in table */
768#define PR_2_HTREE_HASH_ORDER 0x02003F
769
770/* Node in HTREE directory has bad depth */
b0700a1b
TT
771#define PR_2_HTREE_BAD_DEPTH 0x020040
772
773/* Duplicate directory entry found */
774#define PR_2_DUPLICATE_DIRENT 0x020041
775
776/* Non-unique filename found */
777#define PR_2_NON_UNIQUE_FILE 0x020042
ad4fa466 778
0926668d
TT
779/* Duplicate directory entry found */
780#define PR_2_REPORT_DUP_DIRENT 0x020043
781
5d17119d
TT
782/* i_blocks_hi should be zero */
783#define PR_2_BLOCKS_HI_ZERO 0x020044
784
d45edec0
TT
785/* Unexpected HTREE block */
786#define PR_2_UNEXPECTED_HTREE_BLOCK 0x020045
787
49a7360b
JS
788/* Inode found in group where _INODE_UNINIT is set */
789#define PR_2_INOREF_BG_INO_UNINIT 0x020046
790
791/* Inode found in group unused inodes area */
792#define PR_2_INOREF_IN_UNUSED 0x020047
793
911ec626
TT
794/* i_file_acl_hi should be zero */
795#define PR_2_I_FILE_ACL_HI_ZERO 0x020048
796
21c84b71
TT
797/*
798 * Pass 3 errors
799 */
800
1b6bf175
TT
801/* Pass 3: Checking directory connectivity */
802#define PR_3_PASS_HEADER 0x030000
803
21c84b71 804/* Root inode not allocated */
1b6bf175 805#define PR_3_NO_ROOT_INODE 0x030001
21c84b71
TT
806
807/* No room in lost+found */
1b6bf175 808#define PR_3_EXPAND_LF_DIR 0x030002
21c84b71
TT
809
810/* Unconnected directory inode */
1b6bf175 811#define PR_3_UNCONNECTED_DIR 0x030003
21c84b71
TT
812
813/* /lost+found not found */
1b6bf175 814#define PR_3_NO_LF_DIR 0x030004
21c84b71
TT
815
816/* .. entry is incorrect */
1b6bf175
TT
817#define PR_3_BAD_DOT_DOT 0x030005
818
819/* Bad or non-existent /lost+found. Cannot reconnect */
820#define PR_3_NO_LPF 0x030006
821
822/* Could not expand /lost+found */
823#define PR_3_CANT_EXPAND_LPF 0x030007
824
825/* Could not reconnect inode */
826#define PR_3_CANT_RECONNECT 0x030008
827
828/* Error while trying to find /lost+found */
829#define PR_3_ERR_FIND_LPF 0x030009
830
831/* Error in ext2fs_new_block while creating /lost+found */
832#define PR_3_ERR_LPF_NEW_BLOCK 0x03000A
21c84b71 833
1b6bf175
TT
834/* Error in ext2fs_new_inode while creating /lost+found */
835#define PR_3_ERR_LPF_NEW_INODE 0x03000B
836
db0691b5 837/* Error in ext2fs_new_dir_block while creating /lost+found */
1b6bf175 838#define PR_3_ERR_LPF_NEW_DIR_BLOCK 0x03000C
db0691b5 839
1b6bf175
TT
840/* Error while writing directory block for /lost+found */
841#define PR_3_ERR_LPF_WRITE_BLOCK 0x03000D
842
843/* Error while adjusting inode count */
844#define PR_3_ADJUST_INODE 0x03000E
845
846/* Couldn't fix parent directory -- error */
847#define PR_3_FIX_PARENT_ERR 0x03000F
848
db0691b5 849/* Couldn't fix parent directory -- couldn't find it */
1b6bf175 850#define PR_3_FIX_PARENT_NOFIND 0x030010
db0691b5 851
1b6bf175
TT
852/* Error allocating inode bitmap */
853#define PR_3_ALLOCATE_IBITMAP_ERROR 0x030011
db0691b5 854
1b6bf175
TT
855/* Error creating root directory */
856#define PR_3_CREATE_ROOT_ERROR 0x030012
857
858/* Error creating lost and found directory */
859#define PR_3_CREATE_LPF_ERROR 0x030013
21c84b71 860
f8188fff
TT
861/* Root inode is not directory; aborting */
862#define PR_3_ROOT_NOT_DIR_ABORT 0x030014
863
864/* Cannot proceed without a root inode. */
865#define PR_3_NO_ROOT_INODE_ABORT 0x030015
866
7f813ba3 867/* Internal error: couldn't find dir_info */
4a9f5936
TT
868#define PR_3_NO_DIRINFO 0x030016
869
870/* Lost+found is not a directory */
871#define PR_3_LPF_NOTDIR 0x030017
7f813ba3 872
b7a00563
TT
873/*
874 * Pass 3a --- rehashing diretories
875 */
876/* Pass 3a: Reindexing directories */
877#define PR_3A_PASS_HEADER 0x031000
878
879/* Error iterating over directories */
850d05e9 880#define PR_3A_OPTIMIZE_ITER 0x031001
b7a00563
TT
881
882/* Error rehash directory */
db0691b5 883#define PR_3A_OPTIMIZE_DIR_ERR 0x031002
b7a00563
TT
884
885/* Rehashing dir header */
ae33f578 886#define PR_3A_OPTIMIZE_DIR_HEADER 0x031003
b7a00563
TT
887
888/* Rehashing directory %d */
850d05e9 889#define PR_3A_OPTIMIZE_DIR 0x031004
db0691b5
TT
890
891/* Rehashing dir end */
850d05e9
TT
892#define PR_3A_OPTIMIZE_DIR_END 0x031005
893
21c84b71
TT
894/*
895 * Pass 4 errors
896 */
897
1b6bf175 898/* Pass 4: Checking reference counts */
ae33f578 899#define PR_4_PASS_HEADER 0x040000
1b6bf175 900
21c84b71 901/* Unattached zero-length inode */
ae33f578 902#define PR_4_ZERO_LEN_INODE 0x040001
21c84b71
TT
903
904/* Unattached inode */
ae33f578 905#define PR_4_UNATTACHED_INODE 0x040002
21c84b71
TT
906
907/* Inode ref count wrong */
ae33f578 908#define PR_4_BAD_REF_COUNT 0x040003
21c84b71 909
1b6bf175 910/* Inconsistent inode count information cached */
ae33f578 911#define PR_4_INCONSISTENT_COUNT 0x040004
1b6bf175 912
21c84b71
TT
913/*
914 * Pass 5 errors
915 */
916
1b6bf175
TT
917/* Pass 5: Checking group summary information */
918#define PR_5_PASS_HEADER 0x050000
db0691b5 919
1b6bf175
TT
920/* Padding at end of inode bitmap is not set. */
921#define PR_5_INODE_BMAP_PADDING 0x050001
922
923/* Padding at end of block bitmap is not set. */
924#define PR_5_BLOCK_BMAP_PADDING 0x050002
925
926/* Block bitmap differences header */
ae33f578 927#define PR_5_BLOCK_BITMAP_HEADER 0x050003
1b6bf175
TT
928
929/* Block not used, but marked in bitmap */
f122632e 930#define PR_5_BLOCK_UNUSED 0x050004
db0691b5 931
1b6bf175
TT
932/* Block used, but not marked used in bitmap */
933#define PR_5_BLOCK_USED 0x050005
934
db0691b5 935/* Block bitmap differences end */
1b6bf175
TT
936#define PR_5_BLOCK_BITMAP_END 0x050006
937
938/* Inode bitmap differences header */
939#define PR_5_INODE_BITMAP_HEADER 0x050007
940
941/* Inode not used, but marked in bitmap */
f122632e 942#define PR_5_INODE_UNUSED 0x050008
db0691b5 943
1b6bf175
TT
944/* Inode used, but not marked used in bitmap */
945#define PR_5_INODE_USED 0x050009
946
db0691b5 947/* Inode bitmap differences end */
1b6bf175
TT
948#define PR_5_INODE_BITMAP_END 0x05000A
949
950/* Free inodes count for group wrong */
951#define PR_5_FREE_INODE_COUNT_GROUP 0x05000B
952
953/* Directories count for group wrong */
954#define PR_5_FREE_DIR_COUNT_GROUP 0x05000C
955
956/* Free inodes count wrong */
ae33f578 957#define PR_5_FREE_INODE_COUNT 0x05000D
1b6bf175
TT
958
959/* Free blocks count for group wrong */
960#define PR_5_FREE_BLOCK_COUNT_GROUP 0x05000E
961
962/* Free blocks count wrong */
963#define PR_5_FREE_BLOCK_COUNT 0x05000F
964
965/* Programming error: bitmap endpoints don't match */
966#define PR_5_BMAP_ENDPOINTS 0x050010
bbd47d76 967
1b6bf175
TT
968/* Internal error: fudging end of bitmap */
969#define PR_5_FUDGE_BITMAP_ERROR 0x050011
bbd47d76
TT
970
971/* Error copying in replacement inode bitmap */
972#define PR_5_COPY_IBITMAP_ERROR 0x050012
973
974/* Error copying in replacement block bitmap */
975#define PR_5_COPY_BBITMAP_ERROR 0x050013
976
f122632e
TT
977/* Block range not used, but marked in bitmap */
978#define PR_5_BLOCK_RANGE_UNUSED 0x050014
db0691b5 979
f122632e
TT
980/* Block range used, but not marked used in bitmap */
981#define PR_5_BLOCK_RANGE_USED 0x050015
982
983/* Inode range not used, but marked in bitmap */
984#define PR_5_INODE_RANGE_UNUSED 0x050016
49a7360b 985
f122632e
TT
986/* Inode rangeused, but not marked used in bitmap */
987#define PR_5_INODE_RANGE_USED 0x050017
988
49a7360b
JS
989/* Block in use but group is marked BLOCK_UNINIT */
990#define PR_5_BLOCK_UNINIT 0x050018
991
992/* Inode in use but group is marked INODE_UNINIT */
993#define PR_5_INODE_UNINIT 0x050019
994
5107d0d1
KS
995/*
996 * Post-Pass 5 errors
997 */
998
999/* Recreate the journal if E2F_FLAG_JOURNAL_INODE flag is set */
1000#define PR_6_RECREATE_JOURNAL 0x060001
1001
21c84b71
TT
1002/*
1003 * Function declarations
1004 */
1b6bf175
TT
1005int fix_problem(e2fsck_t ctx, problem_t code, struct problem_context *pctx);
1006int end_problem_latch(e2fsck_t ctx, int mask);
1007int set_latch_flags(int mask, int setflags, int clearflags);
1008int get_latch_flags(int mask, int *value);
ae33f578 1009void clear_problem_context(struct problem_context *pctx);
21c84b71
TT
1010
1011/* message.c */
1b6bf175 1012void print_e2fsck_message(e2fsck_t ctx, const char *msg,
db0691b5 1013 struct problem_context *pctx, int first,
1a191d66 1014 int recurse);
21c84b71 1015