Whamcloud - gitweb
91c0bd0ccf5e033bc0f0afa7b653a4c60062cf9d
[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         blk_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
41 #define PR_LATCH(x)     ((((x) & PR_LATCH_MASK) >> 4) - 1)
42
43 /*
44  * Latch group descriptor flags
45  */
46 #define PRL_YES         0x0001  /* Answer yes */
47 #define PRL_NO          0x0002  /* Answer no */
48 #define PRL_LATCHED     0x0004  /* The latch group is latched */
49 #define PRL_SUPPRESS    0x0008  /* Suppress all latch group questions */
50
51 #define PRL_VARIABLE    0x000f  /* All the flags that need to be reset */
52
53 /*
54  * Pre-Pass 1 errors
55  */
56
57 /* Block bitmap not in group */
58 #define PR_0_BB_NOT_GROUP       0x000001
59
60 /* Inode bitmap not in group */
61 #define PR_0_IB_NOT_GROUP       0x000002
62
63 /* Inode table not in group */
64 #define PR_0_ITABLE_NOT_GROUP   0x000003
65
66 /* Superblock corrupt */
67 #define PR_0_SB_CORRUPT         0x000004
68
69 /* Filesystem size is wrong */
70 #define PR_0_FS_SIZE_WRONG      0x000005
71
72 /* Fragments not supported */
73 #define PR_0_NO_FRAGMENTS       0x000006
74
75 /* Bad blocks_per_group */
76 #define PR_0_BLOCKS_PER_GROUP   0x000007
77
78 /* Bad first_data_block */
79 #define PR_0_FIRST_DATA_BLOCK   0x000008
80
81 /* Adding UUID to filesystem */
82 #define PR_0_ADD_UUID           0x000009
83
84 /* Relocate hint */     
85 #define PR_0_RELOCATE_HINT      0x00000A
86
87 /* Miscellaneous superblock corruption */
88 #define PR_0_MISC_CORRUPT_SUPER 0x00000B
89         
90 /* Error determing physical device size of filesystem */
91 #define PR_0_GETSIZE_ERROR      0x00000C
92
93 /* Inode count in the superblock incorrect */
94 #define PR_0_INODE_COUNT_WRONG  0x00000D
95
96 /* The Hurd does not support the filetype feature */
97 #define PR_0_HURD_CLEAR_FILETYPE 0x00000E
98
99 /* Journal inode is invalid */
100 #define PR_0_JOURNAL_BAD_INODE  0x00000F
101
102 /* The external journal has multiple filesystems (which we can't handle yet) */
103 #define PR_0_JOURNAL_UNSUPP_MULTIFS 0x000010
104
105 /* Can't find external journal */
106 #define PR_0_CANT_FIND_JOURNAL  0x000011
107
108 /* External journal has bad superblock */
109 #define PR_0_EXT_JOURNAL_BAD_SUPER 0x000012
110
111 /* Superblock has a bad journal UUID */
112 #define PR_0_JOURNAL_BAD_UUID   0x000013
113
114 /* Journal has an unknown superblock type */
115 #define PR_0_JOURNAL_UNSUPP_SUPER 0x000014
116
117 /* Journal superblock is corrupt */
118 #define PR_0_JOURNAL_BAD_SUPER  0x000015
119
120 /* Journal superblock is corrupt */
121 #define PR_0_JOURNAL_HAS_JOURNAL 0x000016
122
123 /* Superblock has recovery flag set but no journal */
124 #define PR_0_JOURNAL_RECOVER_SET 0x000017
125
126 /* Journal has data, but recovery flag is clear */
127 #define PR_0_JOURNAL_RECOVERY_CLEAR 0x000018
128
129 /* Ask if we should clear the journal */
130 #define PR_0_JOURNAL_RESET_JOURNAL 0x000019
131
132 /* Filesystem revision is 0, but feature flags are set */
133 #define PR_0_FS_REV_LEVEL       0x00001A
134
135 /* Clearing orphan inode */
136 #define PR_0_ORPHAN_CLEAR_INODE                 0x000020
137         
138 /* Illegal block found in orphaned inode */
139 #define PR_0_ORPHAN_ILLEGAL_BLOCK_NUM           0x000021
140
141 /* Already cleared block found in orphaned inode */
142 #define PR_0_ORPHAN_ALREADY_CLEARED_BLOCK       0x000022
143         
144 /* Illegal orphan inode in superblock */
145 #define PR_0_ORPHAN_ILLEGAL_HEAD_INODE          0x000023
146
147 /* Illegal inode in orphaned inode list */
148 #define PR_0_ORPHAN_ILLEGAL_INODE               0x000024
149
150 /* Journal has unsupported read-only feature - abort */
151 #define PR_0_JOURNAL_UNSUPP_ROCOMPAT            0x000025
152
153 /* Journal has unsupported incompatible feature - abort */
154 #define PR_0_JOURNAL_UNSUPP_INCOMPAT            0x000026
155
156 /* Journal has unsupported version number */
157 #define PR_0_JOURNAL_UNSUPP_VERSION             0x000027
158
159 /* Moving journal to hidden file */
160 #define PR_0_MOVE_JOURNAL                       0x000028
161
162 /* Error moving journal */
163 #define PR_0_ERR_MOVE_JOURNAL                   0x000029
164
165 /* Clearing V2 journal superblock */
166 #define PR_0_CLEAR_V2_JOURNAL                   0x00002A
167
168 /* Run journal anyway */
169 #define PR_0_JOURNAL_RUN                        0x00002B
170
171 /* Run journal anyway by default */
172 #define PR_0_JOURNAL_RUN_DEFAULT                0x00002C
173
174 /*
175  * Pass 1 errors
176  */
177
178 /* Pass 1: Checking inodes, blocks, and sizes */
179 #define PR_1_PASS_HEADER                0x010000
180
181 /* Root directory is not an inode */
182 #define PR_1_ROOT_NO_DIR                0x010001
183
184 /* Root directory has dtime set */
185 #define PR_1_ROOT_DTIME                 0x010002
186
187 /* Reserved inode has bad mode */
188 #define PR_1_RESERVED_BAD_MODE          0x010003
189
190 /* Deleted inode has zero dtime */
191 #define PR_1_ZERO_DTIME                 0x010004
192
193 /* Inode in use, but dtime set */
194 #define PR_1_SET_DTIME                  0x010005
195
196 /* Zero-length directory */
197 #define PR_1_ZERO_LENGTH_DIR            0x010006
198
199 /* Block bitmap conflicts with some other fs block */
200 #define PR_1_BB_CONFLICT                0x010007
201
202 /* Inode bitmap conflicts with some other fs block */
203 #define PR_1_IB_CONFLICT                0x010008
204
205 /* Inode table conflicts with some other fs block */
206 #define PR_1_ITABLE_CONFLICT            0x010009
207
208 /* Block bitmap is on a bad block */
209 #define PR_1_BB_BAD_BLOCK               0x01000A
210
211 /* Inode bitmap is on a bad block */
212 #define PR_1_IB_BAD_BLOCK               0x01000B
213
214 /* Inode has incorrect i_size */
215 #define PR_1_BAD_I_SIZE                 0x01000C
216
217 /* Inode has incorrect i_blocks */
218 #define PR_1_BAD_I_BLOCKS               0x01000D
219
220 /* Illegal block number in inode */
221 #define PR_1_ILLEGAL_BLOCK_NUM          0x01000E
222
223 /* Block number overlaps fs metadata */
224 #define PR_1_BLOCK_OVERLAPS_METADATA    0x01000F
225
226 /* Inode has illegal blocks (latch question) */
227 #define PR_1_INODE_BLOCK_LATCH          0x010010
228
229 /* Too many bad blocks in inode */
230 #define PR_1_TOO_MANY_BAD_BLOCKS        0x010011
231         
232 /* Illegal block number in bad block inode */
233 #define PR_1_BB_ILLEGAL_BLOCK_NUM       0x010012
234
235 /* Bad block inode has illegal blocks (latch question) */
236 #define PR_1_INODE_BBLOCK_LATCH         0x010013
237
238 /* Duplicate or bad blocks in use! */
239 #define PR_1_DUP_BLOCKS_PREENSTOP       0x010014
240         
241 /* Bad block used as bad block indirect block */          
242 #define PR_1_BBINODE_BAD_METABLOCK      0x010015
243
244 /* Inconsistency can't be fixed prompt */
245 #define PR_1_BBINODE_BAD_METABLOCK_PROMPT 0x010016
246         
247 /* Bad primary block */
248 #define PR_1_BAD_PRIMARY_BLOCK          0x010017
249                   
250 /* Bad primary block prompt */
251 #define PR_1_BAD_PRIMARY_BLOCK_PROMPT   0x010018
252
253 /* Bad primary superblock */
254 #define PR_1_BAD_PRIMARY_SUPERBLOCK     0x010019
255
256 /* Bad primary block group descriptors */
257 #define PR_1_BAD_PRIMARY_GROUP_DESCRIPTOR 0x01001A
258
259 /* Bad superblock in group */
260 #define PR_1_BAD_SUPERBLOCK             0x01001B
261
262 /* Bad block group descriptors in group */
263 #define PR_1_BAD_GROUP_DESCRIPTORS      0x01001C
264
265 /* Block claimed for no reason */         
266 #define PR_1_PROGERR_CLAIMED_BLOCK      0x01001D
267
268 /* Error allocating blocks for relocating metadata */
269 #define PR_1_RELOC_BLOCK_ALLOCATE       0x01001E
270                 
271 /* Error allocating block buffer during relocation process */
272 #define PR_1_RELOC_MEMORY_ALLOCATE      0x01001F
273                 
274 /* Relocating metadata group information from X to Y */ 
275 #define PR_1_RELOC_FROM_TO              0x010020
276                 
277 /* Relocating metatdata group information to X */
278 #define PR_1_RELOC_TO                   0x010021
279                 
280 /* Block read error during relocation process */
281 #define PR_1_RELOC_READ_ERR             0x010022
282                 
283 /* Block write error during relocation process */
284 #define PR_1_RELOC_WRITE_ERR            0x010023
285
286 /* Error allocating inode bitmap */
287 #define PR_1_ALLOCATE_IBITMAP_ERROR     0x010024
288
289 /* Error allocating block bitmap */
290 #define PR_1_ALLOCATE_BBITMAP_ERROR     0x010025
291
292 /* Error allocating icount structure */
293 #define PR_1_ALLOCATE_ICOUNT            0x010026
294         
295 /* Error allocating dbcount */
296 #define PR_1_ALLOCATE_DBCOUNT           0x010027
297
298 /* Error while scanning inodes */
299 #define PR_1_ISCAN_ERROR                0x010028
300
301 /* Error while iterating over blocks */
302 #define PR_1_BLOCK_ITERATE              0x010029
303
304 /* Error while storing inode count information */         
305 #define PR_1_ICOUNT_STORE               0x01002A
306
307 /* Error while storing directory block information */     
308 #define PR_1_ADD_DBLOCK                 0x01002B
309
310 /* Error while reading inode (for clearing) */
311 #define PR_1_READ_INODE                 0x01002C
312
313 /* Suppress messages prompt */
314 #define PR_1_SUPPRESS_MESSAGES          0x01002D
315
316 /* Imagic flag set on an inode when filesystem doesn't support it */
317 #define PR_1_SET_IMAGIC                 0x01002F
318
319 /* Immutable flag set on a device or socket inode */
320 #define PR_1_SET_IMMUTABLE              0x010030
321
322 /* Compression flag set on a non-compressed filesystem */
323 #define PR_1_COMPR_SET                  0x010031
324
325 /* Non-zero size on on device, fifo or socket inode */
326 #define PR_1_SET_NONZSIZE               0x010032
327
328 /* Filesystem revision is 0, but feature flags are set */
329 #define PR_1_FS_REV_LEVEL               0x010033
330
331 /* Journal inode not in use, needs clearing */
332 #define PR_1_JOURNAL_INODE_NOT_CLEAR    0x010034
333
334 /* Journal inode has wrong mode */
335 #define PR_1_JOURNAL_BAD_MODE           0x010035
336
337 /* Inode that was part of orphan linked list */
338 #define PR_1_LOW_DTIME                  0x010036
339
340 /* Latch question which asks how to deal with low dtime inodes */
341 #define PR_1_ORPHAN_LIST_REFUGEES       0x010037
342
343 /* Error allocating refcount structure */
344 #define PR_1_ALLOCATE_REFCOUNT          0x010038
345         
346 /* Error reading Extended Attribute block */
347 #define PR_1_READ_EA_BLOCK              0x010039
348
349 /* Invalid Extended Attribute block */
350 #define PR_1_BAD_EA_BLOCK               0x01003A
351
352 /* Error reading Extended Attribute block while fixing refcount -- abort */
353 #define PR_1_EXTATTR_READ_ABORT         0x01003B
354
355 /* Extended attribute reference count incorrect */
356 #define PR_1_EXTATTR_REFCOUNT           0x01003C
357
358 /* Error writing Extended Attribute block while fixing refcount */ 
359 #define PR_1_EXTATTR_WRITE              0x01003D
360
361 /* Multiple EA blocks not supported */
362 #define PR_1_EA_MULTI_BLOCK             0x01003E
363
364 /* Error allocating EA region allocation structure */
365 #define PR_1_EA_ALLOC_REGION            0x01003F
366
367 /* Error EA allocation collision */
368 #define PR_1_EA_ALLOC_COLLISION         0x010040
369
370 /* Bad extended attribute name */
371 #define PR_1_EA_BAD_NAME                0x010041
372
373 /* Bad extended attribute value */
374 #define PR_1_EA_BAD_VALUE               0x010042
375
376 /* Inode too big (latch question) */
377 #define PR_1_INODE_TOOBIG               0x010043
378
379 /* Directory too big */
380 #define PR_1_TOOBIG_DIR                 0x010044
381
382 /* Regular file too big */
383 #define PR_1_TOOBIG_REG                 0x010045
384
385 /* Symlink too big */
386 #define PR_1_TOOBIG_SYMLINK             0x010046
387
388 /* INDEX_FL flag set on a non-HTREE filesystem */
389 #define PR_1_HTREE_SET                  0x010047
390
391 /* INDEX_FL flag set on a non-directory */      
392 #define PR_1_HTREE_NODIR                0x010048
393
394 /* Invalid root node in HTREE directory */      
395 #define PR_1_HTREE_BADROOT              0x010049
396
397 /* Unsupported hash version in HTREE directory */       
398 #define PR_1_HTREE_HASHV                0x01004A
399
400 /* Incompatible flag in HTREE root node */      
401 #define PR_1_HTREE_INCOMPAT             0x01004B
402
403 /* HTREE too deep */    
404 #define PR_1_HTREE_DEPTH                0x01004C
405
406 /*
407  * Pass 1b errors
408  */
409
410 /* Pass 1B: Rescan for duplicate/bad blocks */
411 #define PR_1B_PASS_HEADER       0x011000
412
413 /* Duplicate/bad block(s) header */
414 #define PR_1B_DUP_BLOCK_HEADER  0x011001
415
416 /* Duplicate/bad block(s) in inode */
417 #define PR_1B_DUP_BLOCK         0x011002
418
419 /* Duplicate/bad block(s) end */
420 #define PR_1B_DUP_BLOCK_END     0x011003
421         
422 /* Error while scanning inodes */
423 #define PR_1B_ISCAN_ERROR       0x011004
424
425 /* Error allocating inode bitmap */
426 #define PR_1B_ALLOCATE_IBITMAP_ERROR 0x011005
427
428 /* Error while iterating over blocks */
429 #define PR_1B_BLOCK_ITERATE     0x0110006
430
431         
432 /* Pass 1C: Scan directories for inodes with dup blocks. */
433 #define PR_1C_PASS_HEADER       0x012000
434
435
436 /* Pass 1D: Reconciling duplicate blocks */
437 #define PR_1D_PASS_HEADER       0x013000
438
439 /* File has duplicate blocks */
440 #define PR_1D_DUP_FILE          0x013001
441
442 /* List of files sharing duplicate blocks */    
443 #define PR_1D_DUP_FILE_LIST     0x013002
444
445 /* File sharing blocks with filesystem metadata  */     
446 #define PR_1D_SHARE_METADATA    0x013003
447
448 /* Report of how many duplicate/bad inodes */   
449 #define PR_1D_NUM_DUP_INODES    0x013004
450
451 /* Duplicated blocks already reassigned or cloned. */
452 #define PR_1D_DUP_BLOCKS_DEALT  0x013005
453
454 /* Clone duplicate/bad blocks? */
455 #define PR_1D_CLONE_QUESTION    0x013006
456
457 /* Delete file? */
458 #define PR_1D_DELETE_QUESTION   0x013007
459
460 /* Couldn't clone file (error) */
461 #define PR_1D_CLONE_ERROR       0x013008
462                 
463 /*
464  * Pass 2 errors
465  */
466
467 /* Pass 2: Checking directory structure */
468 #define PR_2_PASS_HEADER        0x020000
469
470 /* Bad inode number for '.' */
471 #define PR_2_BAD_INODE_DOT      0x020001
472
473 /* Directory entry has bad inode number */
474 #define PR_2_BAD_INO            0x020002
475
476 /* Directory entry has deleted or unused inode */
477 #define PR_2_UNUSED_INODE       0x020003
478
479 /* Directry entry is link to '.' */
480 #define PR_2_LINK_DOT           0x020004
481
482 /* Directory entry points to inode now located in a bad block */
483 #define PR_2_BB_INODE           0x020005
484
485 /* Directory entry contains a link to a directory */
486 #define PR_2_LINK_DIR           0x020006
487
488 /* Directory entry contains a link to the root directry */
489 #define PR_2_LINK_ROOT          0x020007
490
491 /* Directory entry has illegal characters in its name */
492 #define PR_2_BAD_NAME           0x020008
493
494 /* Missing '.' in directory inode */      
495 #define PR_2_MISSING_DOT        0x020009
496
497 /* Missing '..' in directory inode */     
498 #define PR_2_MISSING_DOT_DOT    0x02000A
499
500 /* First entry in directory inode doesn't contain '.' */
501 #define PR_2_1ST_NOT_DOT        0x02000B
502
503 /* Second entry in directory inode doesn't contain '..' */
504 #define PR_2_2ND_NOT_DOT_DOT    0x02000C
505
506 /* i_faddr should be zero */
507 #define PR_2_FADDR_ZERO         0x02000D
508
509 /* i_file_acl should be zero */
510 #define PR_2_FILE_ACL_ZERO      0x02000E
511
512 /* i_dir_acl should be zero */
513 #define PR_2_DIR_ACL_ZERO       0x02000F
514
515 /* i_frag should be zero */
516 #define PR_2_FRAG_ZERO          0x020010
517
518 /* i_fsize should be zero */
519 #define PR_2_FSIZE_ZERO         0x020011
520                   
521 /* inode has bad mode */
522 #define PR_2_BAD_MODE           0x020012
523
524 /* directory corrupted */
525 #define PR_2_DIR_CORRUPTED      0x020013
526                   
527 /* filename too long */
528 #define PR_2_FILENAME_LONG      0x020014
529                   
530 /* Directory inode has a missing block (hole) */
531 #define PR_2_DIRECTORY_HOLE     0x020015
532
533 /* '.' is not NULL terminated */
534 #define PR_2_DOT_NULL_TERM      0x020016
535
536 /* '..' is not NULL terminated */
537 #define PR_2_DOT_DOT_NULL_TERM  0x020017
538
539 /* Illegal character device in inode */
540 #define PR_2_BAD_CHAR_DEV       0x020018
541
542 /* Illegal block device in inode */
543 #define PR_2_BAD_BLOCK_DEV      0x020019
544
545 /* Duplicate '.' entry */
546 #define PR_2_DUP_DOT            0x02001A
547
548 /* Duplicate '..' entry */
549 #define PR_2_DUP_DOT_DOT        0x02001B
550         
551 /* Internal error: couldn't find dir_info */
552 #define PR_2_NO_DIRINFO         0x02001C
553
554 /* Final rec_len is wrong */
555 #define PR_2_FINAL_RECLEN       0x02001D
556
557 /* Error allocating icount structure */
558 #define PR_2_ALLOCATE_ICOUNT    0x02001E
559
560 /* Error iterating over directory blocks */
561 #define PR_2_DBLIST_ITERATE     0x02001F
562
563 /* Error reading directory block */
564 #define PR_2_READ_DIRBLOCK      0x020020
565
566 /* Error writing directory block */
567 #define PR_2_WRITE_DIRBLOCK     0x020021
568
569 /* Error allocating new directory block */
570 #define PR_2_ALLOC_DIRBOCK      0x020022
571
572 /* Error deallocating inode */
573 #define PR_2_DEALLOC_INODE      0x020023
574
575 /* Directory entry for '.' is big.  Split? */
576 #define PR_2_SPLIT_DOT          0x020024
577
578 /* Illegal FIFO */
579 #define PR_2_BAD_FIFO           0x020025
580
581 /* Illegal socket */
582 #define PR_2_BAD_SOCKET         0x020026
583
584 /* Directory filetype not set */
585 #define PR_2_SET_FILETYPE       0x020027
586
587 /* Directory filetype incorrect */
588 #define PR_2_BAD_FILETYPE       0x020028
589
590 /* Directory filetype set when it shouldn't be */
591 #define PR_2_CLEAR_FILETYPE     0x020029
592
593 /* Directory filename can't be zero-length  */
594 #define PR_2_NULL_NAME          0x020030
595
596 /* Invalid symlink */
597 #define PR_2_INVALID_SYMLINK    0x020031
598
599 /* i_file_acl (extended attribute) is bad */
600 #define PR_2_FILE_ACL_BAD       0x020032
601
602 /* Filesystem contains large files, but has no such flag in sb */
603 #define PR_2_FEATURE_LARGE_FILES 0x020033
604
605 /* Node in HTREE directory not referenced */
606 #define PR_2_HTREE_NOTREF       0x020034
607
608 /* Node in HTREE directory referenced twice */
609 #define PR_2_HTREE_DUPREF       0x020035
610
611 /* Node in HTREE directory has bad min hash */
612 #define PR_2_HTREE_MIN_HASH     0x020036
613
614 /* Node in HTREE directory has bad max hash */
615 #define PR_2_HTREE_MAX_HASH     0x020037
616
617 /* Clear invalid HTREE directory */
618 #define PR_2_HTREE_CLEAR        0x020038
619
620 /* Clear the htree flag forcibly */
621 #define PR_2_HTREE_FCLR         0x020039
622
623 /* Bad block in htree interior node */
624 #define PR_2_HTREE_BADBLK       0x02003A
625
626 /*
627  * Pass 3 errors
628  */
629
630 /* Pass 3: Checking directory connectivity */
631 #define PR_3_PASS_HEADER                0x030000
632
633 /* Root inode not allocated */
634 #define PR_3_NO_ROOT_INODE              0x030001
635
636 /* No room in lost+found */
637 #define PR_3_EXPAND_LF_DIR              0x030002
638
639 /* Unconnected directory inode */
640 #define PR_3_UNCONNECTED_DIR            0x030003
641
642 /* /lost+found not found */
643 #define PR_3_NO_LF_DIR                  0x030004
644
645 /* .. entry is incorrect */
646 #define PR_3_BAD_DOT_DOT                0x030005
647
648 /* Bad or non-existent /lost+found.  Cannot reconnect */
649 #define PR_3_NO_LPF                     0x030006
650
651 /* Could not expand /lost+found */
652 #define PR_3_CANT_EXPAND_LPF            0x030007
653
654 /* Could not reconnect inode */
655 #define PR_3_CANT_RECONNECT             0x030008
656
657 /* Error while trying to find /lost+found */
658 #define PR_3_ERR_FIND_LPF               0x030009
659
660 /* Error in ext2fs_new_block while creating /lost+found */
661 #define PR_3_ERR_LPF_NEW_BLOCK          0x03000A
662
663 /* Error in ext2fs_new_inode while creating /lost+found */
664 #define PR_3_ERR_LPF_NEW_INODE          0x03000B
665
666 /* Error in ext2fs_new_dir_block while creating /lost+found */    
667 #define PR_3_ERR_LPF_NEW_DIR_BLOCK      0x03000C
668                   
669 /* Error while writing directory block for /lost+found */
670 #define PR_3_ERR_LPF_WRITE_BLOCK        0x03000D
671
672 /* Error while adjusting inode count */
673 #define PR_3_ADJUST_INODE               0x03000E
674
675 /* Couldn't fix parent directory -- error */
676 #define PR_3_FIX_PARENT_ERR             0x03000F
677
678 /* Couldn't fix parent directory -- couldn't find it */   
679 #define PR_3_FIX_PARENT_NOFIND          0x030010
680         
681 /* Error allocating inode bitmap */
682 #define PR_3_ALLOCATE_IBITMAP_ERROR     0x030011
683                   
684 /* Error creating root directory */
685 #define PR_3_CREATE_ROOT_ERROR          0x030012
686
687 /* Error creating lost and found directory */
688 #define PR_3_CREATE_LPF_ERROR           0x030013
689
690 /* Root inode is not directory; aborting */
691 #define PR_3_ROOT_NOT_DIR_ABORT         0x030014
692
693 /* Cannot proceed without a root inode. */
694 #define PR_3_NO_ROOT_INODE_ABORT        0x030015
695
696 /* Internal error: couldn't find dir_info */
697 #define PR_3_NO_DIRINFO                 0x030016
698
699 /* Lost+found is not a directory */
700 #define PR_3_LPF_NOTDIR                 0x030017
701
702 /*
703  * Pass 4 errors
704  */
705
706 /* Pass 4: Checking reference counts */
707 #define PR_4_PASS_HEADER        0x040000
708
709 /* Unattached zero-length inode */
710 #define PR_4_ZERO_LEN_INODE     0x040001
711
712 /* Unattached inode */
713 #define PR_4_UNATTACHED_INODE   0x040002
714
715 /* Inode ref count wrong */
716 #define PR_4_BAD_REF_COUNT      0x040003
717
718 /* Inconsistent inode count information cached */
719 #define PR_4_INCONSISTENT_COUNT 0x040004
720
721 /*
722  * Pass 5 errors
723  */
724
725 /* Pass 5: Checking group summary information */
726 #define PR_5_PASS_HEADER                0x050000
727         
728 /* Padding at end of inode bitmap is not set. */
729 #define PR_5_INODE_BMAP_PADDING         0x050001
730
731 /* Padding at end of block bitmap is not set. */
732 #define PR_5_BLOCK_BMAP_PADDING         0x050002
733
734 /* Block bitmap differences header */
735 #define PR_5_BLOCK_BITMAP_HEADER        0x050003
736
737 /* Block not used, but marked in bitmap */
738 #define PR_5_BLOCK_UNUSED               0x050004
739           
740 /* Block used, but not marked used in bitmap */
741 #define PR_5_BLOCK_USED                 0x050005
742
743 /* Block bitmap differences end */        
744 #define PR_5_BLOCK_BITMAP_END           0x050006
745
746 /* Inode bitmap differences header */
747 #define PR_5_INODE_BITMAP_HEADER        0x050007
748
749 /* Inode not used, but marked in bitmap */
750 #define PR_5_INODE_UNUSED               0x050008
751           
752 /* Inode used, but not marked used in bitmap */
753 #define PR_5_INODE_USED                 0x050009
754
755 /* Inode bitmap differences end */        
756 #define PR_5_INODE_BITMAP_END           0x05000A
757
758 /* Free inodes count for group wrong */
759 #define PR_5_FREE_INODE_COUNT_GROUP     0x05000B
760
761 /* Directories count for group wrong */
762 #define PR_5_FREE_DIR_COUNT_GROUP       0x05000C
763
764 /* Free inodes count wrong */
765 #define PR_5_FREE_INODE_COUNT   0x05000D
766
767 /* Free blocks count for group wrong */
768 #define PR_5_FREE_BLOCK_COUNT_GROUP     0x05000E
769
770 /* Free blocks count wrong */
771 #define PR_5_FREE_BLOCK_COUNT           0x05000F
772
773 /* Programming error: bitmap endpoints don't match */
774 #define PR_5_BMAP_ENDPOINTS             0x050010
775
776 /* Internal error: fudging end of bitmap */
777 #define PR_5_FUDGE_BITMAP_ERROR         0x050011
778
779 /* Error copying in replacement inode bitmap */
780 #define PR_5_COPY_IBITMAP_ERROR         0x050012
781
782 /* Error copying in replacement block bitmap */
783 #define PR_5_COPY_BBITMAP_ERROR         0x050013
784
785 /* Block range not used, but marked in bitmap */
786 #define PR_5_BLOCK_RANGE_UNUSED         0x050014
787           
788 /* Block range used, but not marked used in bitmap */
789 #define PR_5_BLOCK_RANGE_USED           0x050015
790
791 /* Inode range not used, but marked in bitmap */
792 #define PR_5_INODE_RANGE_UNUSED         0x050016
793           
794 /* Inode rangeused, but not marked used in bitmap */
795 #define PR_5_INODE_RANGE_USED           0x050017
796
797 /*
798  * Function declarations
799  */
800 int fix_problem(e2fsck_t ctx, problem_t code, struct problem_context *pctx);
801 int end_problem_latch(e2fsck_t ctx, int mask);
802 int set_latch_flags(int mask, int setflags, int clearflags);
803 int get_latch_flags(int mask, int *value);
804 void clear_problem_context(struct problem_context *ctx);
805
806 /* message.c */
807 void print_e2fsck_message(e2fsck_t ctx, const char *msg,
808                           struct problem_context *pctx, int first);
809