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