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