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