Whamcloud - gitweb
e2fsck: add support for dirdata feature
[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, num2;
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 #define PR_LATCH_OPTIMIZE_EXT 0x00B0  /* Latch for rebuild extents */
44
45 #define PR_LATCH(x)     ((((x) & PR_LATCH_MASK) >> 4) - 1)
46
47 /*
48  * Latch group descriptor flags
49  */
50 #define PRL_YES         0x0001  /* Answer yes */
51 #define PRL_NO          0x0002  /* Answer no */
52 #define PRL_LATCHED     0x0004  /* The latch group is latched */
53 #define PRL_SUPPRESS    0x0008  /* Suppress all latch group questions */
54
55 #define PRL_VARIABLE    0x000f  /* All the flags that need to be reset */
56
57 /*
58  * Pre-Pass 1 errors
59  */
60
61 /* Block bitmap for group gggg is not in group */
62 #define PR_0_BB_NOT_GROUP                       0x000001
63
64 /* Inode bitmap for group gggg is not in group */
65 #define PR_0_IB_NOT_GROUP                       0x000002
66
67 /* Inode table for group gggg is not in group.  (block nnnn) */
68 #define PR_0_ITABLE_NOT_GROUP                   0x000003
69
70 /* Superblock corrupt */
71 #define PR_0_SB_CORRUPT                         0x000004
72
73 /* Filesystem size is wrong */
74 #define PR_0_FS_SIZE_WRONG                      0x000005
75
76 /* Fragments not supported */
77 #define PR_0_NO_FRAGMENTS                       0x000006
78
79 /* Superblock blocks_per_group = bbbb, should have been cccc */
80 #define PR_0_BLOCKS_PER_GROUP                   0x000007
81
82 /* Superblock first_data_block = bbbb, should have been cccc */
83 #define PR_0_FIRST_DATA_BLOCK                   0x000008
84
85 /* Filesystem did not have a UUID; generating one */
86 #define PR_0_ADD_UUID                           0x000009
87
88 /* Relocate hint */
89 #define PR_0_RELOCATE_HINT                      0x00000A
90
91 /* Miscellaneous superblock corruption */
92 #define PR_0_MISC_CORRUPT_SUPER                 0x00000B
93
94 /* Error determining physical device size of filesystem */
95 #define PR_0_GETSIZE_ERROR                      0x00000C
96
97 /* Inode count in the superblock incorrect */
98 #define PR_0_INODE_COUNT_WRONG                  0x00000D
99
100 /* The Hurd does not support the filetype feature */
101 #define PR_0_HURD_CLEAR_FILETYPE                0x00000E
102
103 /* Superblock has an invalid journal (inode inum) */
104 #define PR_0_JOURNAL_BAD_INODE                  0x00000F
105
106 /* External journal has multiple filesystem users (unsupported) */
107 #define PR_0_JOURNAL_UNSUPP_MULTIFS             0x000010
108
109 /* Can't find external journal */
110 #define PR_0_CANT_FIND_JOURNAL                  0x000011
111
112 /* External journal has bad superblock */
113 #define PR_0_EXT_JOURNAL_BAD_SUPER              0x000012
114
115 /* Superblock has a bad journal UUID */
116 #define PR_0_JOURNAL_BAD_UUID                   0x000013
117
118 /* Filesystem journal superblock is an unknown type */
119 #define PR_0_JOURNAL_UNSUPP_SUPER               0x000014
120
121 /* Journal superblock is corrupt */
122 #define PR_0_JOURNAL_BAD_SUPER                  0x000015
123
124 /* Superblock has_journal flag is clear but has a journal */
125 #define PR_0_JOURNAL_HAS_JOURNAL                0x000016
126
127 /* Superblock needs_recovery flag is set but no journal is present */
128 #define PR_0_JOURNAL_RECOVER_SET                0x000017
129
130 /* Journal has data, but recovery flag is clear */
131 #define PR_0_JOURNAL_RECOVERY_CLEAR             0x000018
132
133 /* Ask if we should clear the journal */
134 #define PR_0_JOURNAL_RESET_JOURNAL              0x000019
135
136 /* Filesystem revision is 0, but feature flags are set */
137 #define PR_0_FS_REV_LEVEL                       0x00001A
138
139 /* Clearing orphan inode */
140 #define PR_0_ORPHAN_CLEAR_INODE                 0x000020
141
142 /* Illegal block found in orphaned inode */
143 #define PR_0_ORPHAN_ILLEGAL_BLOCK_NUM           0x000021
144
145 /* Already cleared block found in orphaned inode */
146 #define PR_0_ORPHAN_ALREADY_CLEARED_BLOCK       0x000022
147
148 /* Illegal orphan inode in superblock */
149 #define PR_0_ORPHAN_ILLEGAL_HEAD_INODE          0x000023
150
151 /* Illegal inode in orphaned inode list */
152 #define PR_0_ORPHAN_ILLEGAL_INODE               0x000024
153
154 /* Journal has unsupported read-only feature - abort */
155 #define PR_0_JOURNAL_UNSUPP_ROCOMPAT            0x000025
156
157 /* Journal has unsupported incompatible feature - abort */
158 #define PR_0_JOURNAL_UNSUPP_INCOMPAT            0x000026
159
160 /* Journal version not supported by this e2fsck */
161 #define PR_0_JOURNAL_UNSUPP_VERSION             0x000027
162
163 /* Moving journal from /file to hidden inode */
164 #define PR_0_MOVE_JOURNAL                       0x000028
165
166 /* Error moving journal to hidden file */
167 #define PR_0_ERR_MOVE_JOURNAL                   0x000029
168
169 /* Found invalid V2 journal superblock fields */
170 #define PR_0_CLEAR_V2_JOURNAL                   0x00002A
171
172 /* Run journal anyway */
173 #define PR_0_JOURNAL_RUN                        0x00002B
174
175 /* Run journal anyway by default */
176 #define PR_0_JOURNAL_RUN_DEFAULT                0x00002C
177
178 /* Backing up journal inode block information */
179 #define PR_0_BACKUP_JNL                         0x00002D
180
181 /* Filesystem does not have resize_inode enabled, but
182  * s_reserved_gdt_blocks is nnnn; should be zero */
183 #define PR_0_NONZERO_RESERVED_GDT_BLOCKS        0x00002E
184
185 /* Resize_inode not enabled, but the resize inode is non-zero */
186 #define PR_0_CLEAR_RESIZE_INODE                 0x00002F
187
188 /* Resize inode not valid */
189 #define PR_0_RESIZE_INODE_INVALID               0x000030
190
191 /* Superblock last mount time is in the future */
192 #define PR_0_FUTURE_SB_LAST_MOUNT               0x000031
193
194 /* Superblock last write time is in the future */
195 #define PR_0_FUTURE_SB_LAST_WRITE               0x000032
196
197 /* Superblock hint for external superblock should be xxxx */
198 #define PR_0_EXTERNAL_JOURNAL_HINT              0x000033
199
200 /* Adding dirhash hint to filesystem */
201 #define PR_0_DIRHASH_HINT                       0x000034
202
203 /* group descriptor N checksum is invalid, should be yyyy. */
204 #define PR_0_GDT_CSUM                           0x000035
205
206 /* Group descriptor N marked uninitialized without feature set. */
207 #define PR_0_GDT_UNINIT                         0x000036
208
209 /* Block bitmap is not initialised and Inode bitmap is -- NO LONGER USED */
210 /* #define PR_0_BB_UNINIT_IB_INIT                       0x000037 */
211
212 /* Group descriptor N has invalid unused inodes count. */
213 #define PR_0_GDT_ITABLE_UNUSED                  0x000038
214
215 /* Last group block bitmap is uninitialized. */
216 #define PR_0_BB_UNINIT_LAST                     0x000039
217
218 /* Journal transaction was corrupt, replay was aborted */
219 #define PR_0_JNL_TXN_CORRUPT                    0x00003A
220
221 /* The test_fs filesystem flag is set and ext4 is available */
222 #define PR_0_CLEAR_TESTFS_FLAG                  0x00003B
223
224 /* Last mount time is in the future (fudged) */
225 #define PR_0_FUTURE_SB_LAST_MOUNT_FUDGED        0x00003C
226
227 /* Last write time is in the future (fudged) */
228 #define PR_0_FUTURE_SB_LAST_WRITE_FUDGED        0x00003D
229
230 /* One or more block group descriptor checksums are invalid (latch) */
231 #define PR_0_GDT_CSUM_LATCH                     0x00003E
232
233 /* Setting free inodes count to right (was wrong) */
234 #define PR_0_FREE_INODE_COUNT                   0x00003F
235
236 /* Setting free blocks count to right (was wrong) */
237 #define PR_0_FREE_BLOCK_COUNT                   0x000040
238
239 /* Making quota inode hidden */
240 #define PR_0_HIDE_QUOTA                         0x000041
241
242 /* Superblock has invalid MMP block. */
243 #define PR_0_MMP_INVALID_BLK                    0x000042
244
245 /* Superblock has invalid MMP magic. */
246 #define PR_0_MMP_INVALID_MAGIC                  0x000043
247
248 /* Opening file system failed */
249 #define PR_0_OPEN_FAILED                        0x000044
250
251 /* Checking group descriptor failed */
252 #define PR_0_CHECK_DESC_FAILED                  0x000045
253
254 /* Superblock metadata_csum supersedes uninit_bg; both feature
255  * bits cannot be set simultaneously. */
256 #define PR_0_META_AND_GDT_CSUM_SET              0x000046
257
258 /* Superblock MMP block checksum does not match MMP block. */
259 #define PR_0_MMP_CSUM_INVALID                   0x000047
260
261 /* Superblock 64bit filesystem needs extents to access the whole disk */
262 #define PR_0_64BIT_WITHOUT_EXTENTS              0x000048
263
264 /* The first_meta_bg is too big */
265 #define PR_0_FIRST_META_BG_TOO_BIG              0x000049
266
267 /* External journal superblock checksum does not match superblock */
268 #define PR_0_EXT_JOURNAL_SUPER_CSUM_INVALID     0x00004A
269
270 /* metadata_csum_seed means nothing without metadata_csum */
271 #define PR_0_CSUM_SEED_WITHOUT_META_CSUM        0x00004B
272
273 /* Error initializing quota context */
274 #define PR_0_QUOTA_INIT_CTX                     0x00004C
275
276 /* Bad required extra isize in superblock */
277 #define PR_0_BAD_MIN_EXTRA_ISIZE                0x00004D
278
279 /* Bad desired extra isize in superblock */
280 #define PR_0_BAD_WANT_EXTRA_ISIZE               0x00004E
281
282 /* Invalid quota inode number */
283 #define PR_0_INVALID_QUOTA_INO                  0x00004F
284
285 /* Inode count in the superblock incorrect */
286 #define PR_0_INODE_COUNT_BIG                    0x000050
287
288 /* Meta_bg and resize_inode are not compatible, remove resize_inode*/
289 #define PR_0_DISABLE_RESIZE_INODE               0x000051
290
291 /* Invalid s_min_extra_isize */
292 #define PR_0_MIN_EXTRA_ISIZE_INVALID            0x000052
293
294 /* Invalid s_want_extra_isize */
295 #define PR_0_WANT_EXTRA_ISIZE_INVALID           0x000053
296
297 /* Clear EXT4_FEATURE_RO_COMPAT_EXTRA_ISIZE flag */
298 #define PR_0_CLEAR_EXTRA_ISIZE                  0x000054
299
300 /*
301  * Pass 1 errors
302  */
303
304 /* Pass 1: Checking inodes, blocks, and sizes */
305 #define PR_1_PASS_HEADER                        0x010000
306
307 /* Root inode is not a directory */
308 #define PR_1_ROOT_NO_DIR                        0x010001
309
310 /* Root inode has dtime set */
311 #define PR_1_ROOT_DTIME                         0x010002
312
313 /* Reserved inode has bad mode */
314 #define PR_1_RESERVED_BAD_MODE                  0x010003
315
316 /* Deleted inode inum has zero dtime */
317 #define PR_1_ZERO_DTIME                         0x010004
318
319 /* Inode inum is in use, but has dtime set */
320 #define PR_1_SET_DTIME                          0x010005
321
322 /* Inode inum is a zero-length directory */
323 #define PR_1_ZERO_LENGTH_DIR                    0x010006
324
325 /* Group block bitmap at block conflicts with some other fs block */
326 #define PR_1_BB_CONFLICT                        0x010007
327
328 /* Group inode bitmap at block conflicts with some other fs block */
329 #define PR_1_IB_CONFLICT                        0x010008
330
331 /* Group inode table at block conflicts with some other fs block */
332 #define PR_1_ITABLE_CONFLICT                    0x010009
333
334 /* Group block bitmap (block) is bad */
335 #define PR_1_BB_BAD_BLOCK                       0x01000A
336
337 /* Group inode bitmap (block) is bad */
338 #define PR_1_IB_BAD_BLOCK                       0x01000B
339
340 /* Inode i_size is small, should be larger */
341 #define PR_1_BAD_I_SIZE                         0x01000C
342
343 /* Inode i_blocks is small, should be larger */
344 #define PR_1_BAD_I_BLOCKS                       0x01000D
345
346 /* Illegal block number in inode */
347 #define PR_1_ILLEGAL_BLOCK_NUM                  0x01000E
348
349 /* Block number overlaps filesystem metadata in inode */
350 #define PR_1_BLOCK_OVERLAPS_METADATA            0x01000F
351
352 /* Inode has illegal blocks (latch question) */
353 #define PR_1_INODE_BLOCK_LATCH                  0x010010
354
355 /* Too many illegal blocks in inode */
356 #define PR_1_TOO_MANY_BAD_BLOCKS                0x010011
357
358 /* Illegal block number in bad block inode */
359 #define PR_1_BB_ILLEGAL_BLOCK_NUM               0x010012
360
361 /* Bad block inode has illegal blocks (latch question) */
362 #define PR_1_INODE_BBLOCK_LATCH                 0x010013
363
364 /* Duplicate or bad blocks in use! */
365 #define PR_1_DUP_BLOCKS_PREENSTOP               0x010014
366
367 /* Bad block number used as bad block inode indirect block */
368 #define PR_1_BBINODE_BAD_METABLOCK              0x010015
369
370 /* Inconsistency can't be fixed prompt */
371 #define PR_1_BBINODE_BAD_METABLOCK_PROMPT       0x010016
372
373 /* Bad primary block */
374 #define PR_1_BAD_PRIMARY_BLOCK                  0x010017
375
376 /* Bad primary block prompt */
377 #define PR_1_BAD_PRIMARY_BLOCK_PROMPT           0x010018
378
379 /* The primary superblock block is on the bad block list */
380 #define PR_1_BAD_PRIMARY_SUPERBLOCK             0x010019
381
382 /* Bad primary block group descriptors */
383 #define PR_1_BAD_PRIMARY_GROUP_DESCRIPTOR       0x01001A
384
385 /* Warning: Group number's superblock (block) is bad */
386 #define PR_1_BAD_SUPERBLOCK                     0x01001B
387
388 /* Warning: Group number's copy of the group descriptors has a bad block */
389 #define PR_1_BAD_GROUP_DESCRIPTORS              0x01001C
390
391 /* Block number claimed for no reason in process_bad_blocks */
392 #define PR_1_PROGERR_CLAIMED_BLOCK              0x01001D
393
394 /* Allocating number contiguous block(s) in block group number */
395 #define PR_1_RELOC_BLOCK_ALLOCATE               0x01001E
396
397 /* Allocating block buffer for relocating process */
398 #define PR_1_RELOC_MEMORY_ALLOCATE              0x01001F
399
400 /* Relocating group number's information from X to Y */
401 #define PR_1_RELOC_FROM_TO                      0x010020
402
403 /* Relocating group number's information to X */
404 #define PR_1_RELOC_TO                           0x010021
405
406 /* Warning: could not read block number of relocation process */
407 #define PR_1_RELOC_READ_ERR                     0x010022
408
409 /* Warning: could not write block number of relocation process */
410 #define PR_1_RELOC_WRITE_ERR                    0x010023
411
412 /* Error allocating inode bitmap */
413 #define PR_1_ALLOCATE_IBITMAP_ERROR             0x010024
414
415 /* Error allocating block bitmap */
416 #define PR_1_ALLOCATE_BBITMAP_ERROR             0x010025
417
418 /* Error allocating icount link information */
419 #define PR_1_ALLOCATE_ICOUNT                    0x010026
420
421 /* Error allocating directory block array */
422 #define PR_1_ALLOCATE_DBCOUNT                   0x010027
423
424 /* Error while scanning inodes */
425 #define PR_1_ISCAN_ERROR                        0x010028
426
427 /* Error while iterating over blocks in inode */
428 #define PR_1_BLOCK_ITERATE                      0x010029
429
430 /* Error storing inode count information */
431 #define PR_1_ICOUNT_STORE                       0x01002A
432
433 /* Error storing directory block information */
434 #define PR_1_ADD_DBLOCK                         0x01002B
435
436 /* Error reading inode (for clearing) */
437 #define PR_1_READ_INODE                         0x01002C
438
439 /* Suppress messages prompt */
440 #define PR_1_SUPPRESS_MESSAGES                  0x01002D
441
442 /* Imagic number has imagic flag set when fs doesn't support it */
443 #define PR_1_SET_IMAGIC                         0x01002F
444
445 /* Immutable flag set on a device or socket inode */
446 #define PR_1_SET_IMMUTABLE                      0x010030
447
448 /* Compression flag set on a non-compressed filesystem -- no longer used*/
449 /* #define PR_1_COMPR_SET                       0x010031 */
450
451 /* Non-zero size on on device, fifo or socket inode */
452 #define PR_1_SET_NONZSIZE                       0x010032
453
454 /* Filesystem has feature flag(s) set, but is a revision 0 filesystem */
455 #define PR_1_FS_REV_LEVEL                       0x010033
456
457 /* Journal inode is not in use, but contains data */
458 #define PR_1_JOURNAL_INODE_NOT_CLEAR            0x010034
459
460 /* Journal is not a regular file */
461 #define PR_1_JOURNAL_BAD_MODE                   0x010035
462
463 /* Inode that was part of the orphan list */
464 #define PR_1_LOW_DTIME                          0x010036
465
466 /* Inodes that were part of a corrupted orphan linked list found
467  * (latch question) */
468 #define PR_1_ORPHAN_LIST_REFUGEES               0x010037
469
470 /* Error allocating refcount structure */
471 #define PR_1_ALLOCATE_REFCOUNT                  0x010038
472
473 /* Error reading extended attribute block */
474 #define PR_1_READ_EA_BLOCK                      0x010039
475
476 /* Inode number has a bad extended attribute block */
477 #define PR_1_BAD_EA_BLOCK                       0x01003A
478
479 /* Error reading Extended Attribute block while fixing refcount -- abort */
480 #define PR_1_EXTATTR_READ_ABORT                 0x01003B
481
482 /* Extended attribute number has reference count incorrect, should be */
483 #define PR_1_EXTATTR_REFCOUNT                   0x01003C
484
485 /* Error writing Extended Attribute block while fixing refcount */
486 #define PR_1_EXTATTR_WRITE_ABORT                0x01003D
487
488 /* Extended attribute block has h_blocks > 1 */
489 #define PR_1_EA_MULTI_BLOCK                     0x01003E
490
491 /* Allocating extended attribute region allocation structure */
492 #define PR_1_EA_ALLOC_REGION_ABORT              0x01003F
493
494 /* Extended Attribute block number is corrupt (allocation collision) */
495 #define PR_1_EA_ALLOC_COLLISION                 0x010040
496
497 /* Extended attribute block number is corrupt (invalid name) */
498 #define PR_1_EA_BAD_NAME                        0x010041
499
500 /* Extended attribute block number is corrupt (invalid value) */
501 #define PR_1_EA_BAD_VALUE                       0x010042
502
503 /* Inode number is too big (latch question) */
504 #define PR_1_INODE_TOOBIG                       0x010043
505
506 /* Problem causes directory to be too big */
507 #define PR_1_TOOBIG_DIR                         0x010044
508
509 /* Problem causes file to be too big */
510 #define PR_1_TOOBIG_REG                         0x010045
511
512 /* Problem causes symlink to be too big */
513 #define PR_1_TOOBIG_SYMLINK                     0x010046
514
515 /* Inode has INDEX_FL flag set on filesystem without htree support  */
516 #define PR_1_HTREE_SET                          0x010047
517
518 /* Inode number has INDEX_FL flag set but is on a directory */
519 #define PR_1_HTREE_NODIR                        0x010048
520
521 /* htree directory has an invalid root node */
522 #define PR_1_HTREE_BADROOT                      0x010049
523
524 /* Htree directory has an unsupported hash version */
525 #define PR_1_HTREE_HASHV                        0x01004A
526
527 /* Htree directory uses an Incompatible htree root node flag */
528 #define PR_1_HTREE_INCOMPAT                     0x01004B
529
530 /* Htree directory has a tree depth which is too big */
531 #define PR_1_HTREE_DEPTH                        0x01004C
532
533 /* Bad block inode has an indirect block number that conflicts with
534  * filesystem metadata */
535 #define PR_1_BB_FS_BLOCK                        0x01004D
536
537 /* Resize inode (re)creation failed */
538 #define PR_1_RESIZE_INODE_CREATE                0x01004E
539
540 /* inode has a extra size i_extra_isize which is invalid */
541 #define PR_1_EXTRA_ISIZE                        0x01004F
542
543 /* Extended attribute in inode has a namelen which is invalid */
544 #define PR_1_ATTR_NAME_LEN                      0x010050
545
546 /* Extended attribute in inode has a value offset which is invalid */
547 #define PR_1_ATTR_VALUE_OFFSET                  0x010051
548
549 /* extended attribute in inode has a value block which is invalid */
550 #define PR_1_ATTR_VALUE_BLOCK                   0x010052
551
552 /* extended attribute in inode has a value size which is invalid */
553 #define PR_1_ATTR_VALUE_SIZE                    0x010053
554
555 /* extended attribute in inode has a hash which is invalid */
556 #define PR_1_ATTR_HASH                          0x010054
557
558 /* inode is a type but it looks like it is really a directory */
559 #define PR_1_TREAT_AS_DIRECTORY                 0x010055
560
561 /* Error while reading extent tree in inode */
562 #define PR_1_READ_EXTENT                        0x010056
563
564 /* Failure to iterate extents in inode */
565 #define PR_1_EXTENT_ITERATE_FAILURE             0x010057
566
567 /* Inode has an invalid extent starting block */
568 #define PR_1_EXTENT_BAD_START_BLK               0x010058
569
570 /* Inode has an invalid extent that ends beyond filesystem */
571 #define PR_1_EXTENT_ENDS_BEYOND                 0x010059
572
573 /* inode has EXTENTS_FL flag set on filesystem without extents support */
574 #define PR_1_EXTENTS_SET                        0x01005A
575
576 /* inode is in extents format, but superblock is missing EXTENTS feature */
577 #define PR_1_EXTENT_FEATURE                     0x01005B
578
579 /* inode missing EXTENTS_FL, but is an extent inode */
580 #define PR_1_UNSET_EXTENT_FL                    0x01005C
581
582 /* Fast symlink has EXTENTS_FL set */
583 #define PR_1_FAST_SYMLINK_EXTENT_FL             0x01005D
584
585 /* Extents are out of order */
586 #define PR_1_OUT_OF_ORDER_EXTENTS               0x01005E
587
588 /* Extent node header invalid */
589 #define PR_1_EXTENT_HEADER_INVALID              0x01005F
590
591 /* PR_1_EOFBLOCKS_FL_SET 0x010060 was here */
592
593 /* Failed to convert subcluster block bitmap */
594 #define PR_1_CONVERT_SUBCLUSTER                 0x010061
595
596 /* Quota inode is not a regular file */
597 #define PR_1_QUOTA_BAD_MODE                     0x010062
598
599 /* Quota inode is not in use, but contains data */
600 #define PR_1_QUOTA_INODE_NOT_CLEAR              0x010063
601
602 /* Quota inode is visible to the user */
603 #define PR_1_QUOTA_INODE_NOT_HIDDEN             0x010064
604
605 /* The bad block inode looks invalid */
606 #define PR_1_INVALID_BAD_INODE                  0x010065
607
608 /* Extent has zero length extent */
609 #define PR_1_EXTENT_LENGTH_ZERO                 0x010066
610
611 /* inode seems to contain garbage */
612 #define PR_1_INODE_IS_GARBAGE                   0x010067
613
614 /* inode passes checks, but checksum does not match inode */
615 #define PR_1_INODE_ONLY_CSUM_INVALID            0x010068
616
617 /* Inode extended attribute is corrupt (allocation collision) */
618 #define PR_1_INODE_EA_ALLOC_COLLISION           0x010069
619
620 /* Inode extent block passes checks, but checksum does not match extent */
621 #define PR_1_EXTENT_ONLY_CSUM_INVALID           0x01006A
622
623 /* Inode extended attribute block passes checks, but checksum does not
624  * match block. */
625 #define PR_1_EA_BLOCK_ONLY_CSUM_INVALID         0x01006C
626
627 /* Interior extent node level number of inode doesn't first node down */
628 #define PR_1_EXTENT_INDEX_START_INVALID         0x01006D
629
630 /* Inode end of extent exceeds allowed value */
631 #define PR_1_EXTENT_END_OUT_OF_BOUNDS           0x01006E
632
633 /* inode has INLINE_DATA_FL flag on filesystem without inline data */
634 #define PR_1_INLINE_DATA_FEATURE                0x01006F
635
636 /* inode has INLINE_DATA_FL flag on filesystem without inline data */
637 #define PR_1_INLINE_DATA_SET                    0x010070
638
639 /* Inode block conflicts with critical metadata, skipping block checks */
640 #define PR_1_CRITICAL_METADATA_COLLISION        0x010071
641
642 /* Directory inode block <block> should be at block <otherblock> */
643 #define PR_1_COLLAPSE_DBLOCK                    0x010072
644
645 /* Directory inode block <block> should be at block <otherblock> */
646 #define PR_1_UNINIT_DBLOCK                      0x010073
647
648 /* Inode logical block (physical block) violates cluster allocation */
649 #define PR_1_MISALIGNED_CLUSTER                 0x010074
650
651 /* Inode has INLINE_DATA_FL flag but extended attribute not found */
652 #define PR_1_INLINE_DATA_NO_ATTR                0x010075
653
654 /* Special (device/socket/fifo) file (inode num) has extents
655  * or inline-data flag set */
656 #define PR_1_SPECIAL_EXTENTS_IDATA              0x010076
657
658 /* Inode has extent header but inline data flag is set */
659 #define PR_1_CLEAR_INLINE_DATA_FOR_EXTENT       0x010077
660
661 /* Inode seems to have inline data but extent flag is set */
662 #define PR_1_CLEAR_EXTENT_FOR_INLINE_DATA       0x010078
663
664 /* Inode seems to have block map but inline data and extent flags set */
665 #define PR_1_CLEAR_EXTENT_INLINE_DATA_FLAGS     0x010079
666
667 /* Inode has inline data and extent flags but i_block contains junk */
668 #define PR_1_CLEAR_EXTENT_INLINE_DATA_INODE     0x01007A
669
670 /* Bad block list says the bad block list inode is bad */
671 #define PR_1_BADBLOCKS_IN_BADBLOCKS             0x01007B
672
673 /* Error allocating extent region allocation structure */
674 #define PR_1_EXTENT_ALLOC_REGION_ABORT          0x01007C
675
676 /* Inode leaf has a duplicate extent mapping */
677 #define PR_1_EXTENT_COLLISION                   0x01007D
678
679 /* Error allocating memory for encrypted inode list */
680 #define PR_1_ALLOCATE_ENCRYPTED_INODE_LIST      0x01007E
681
682 /* Inode extent tree could be more shallow */
683 #define PR_1_EXTENT_BAD_MAX_DEPTH               0x01007F
684
685 /* inode num on bigalloc filesystem cannot be block mapped */
686 #define PR_1_NO_BIGALLOC_BLOCKMAP_FILES         0x010080
687
688 /* Inode has corrupt extent header */
689 #define PR_1_MISSING_EXTENT_HEADER              0x010081
690
691 /* Timestamp(s) on inode beyond 2310-04-04 are likely pre-1970. */
692 #define PR_1_EA_TIME_OUT_OF_RANGE               0x010082
693
694 /* Inode has illegal EA value inode */
695 #define PR_1_ATTR_VALUE_EA_INODE                0x010083
696
697 /* Inode has bad timestamp */
698 #define PR_1_INODE_BAD_TIME                     0x010084
699
700 /* Parent inode has invalid EA entry. EA inode does not have
701  * EXT4_EA_INODE_FL flag. Delete EA entry? */
702 #define PR_1_ATTR_NO_EA_INODE_FL                0x010085
703
704 /* EA inode for parent inode does not have EXT4_EA_INODE_FL flag */
705 #define PR_1_ATTR_SET_EA_INODE_FL               0x010086
706
707 /* Offer to clear uninitialized flag on an extent */
708 #define PR_1_CLEAR_UNINIT_EXTENT                0x010087
709
710 /* Casefold flag set on a non-directory */
711 #define PR_1_CASEFOLD_NONDIR                    0x010088
712
713 /* Casefold flag set, but file system is missing the casefold feature */
714 #define PR_1_CASEFOLD_FEATURE                   0x010089
715
716 /* Inode has encrypt flag but no encryption extended attribute */
717 #define PR_1_MISSING_ENCRYPTION_XATTR           0x01008A
718
719 /* Encrypted inode has corrupt encryption extended attribute */
720 #define PR_1_CORRUPT_ENCRYPTION_XATTR           0x01008B
721
722 /* Error allocating memory for casefolded directory list */
723 #define PR_1_ALLOCATE_CASEFOLDED_DIRLIST        0x01008C
724
725 /* Htree directory should use SipHash but does not */
726 #define PR_1_HTREE_NEEDS_SIPHASH                0x01008D
727
728 /* Htree directory uses SipHash but should not */
729 #define PR_1_HTREE_CANNOT_SIPHASH               0x01008E
730
731 /* Warning for user that all inodes need to be expanded atleast by
732  * s_min_extra_isize
733  */
734 #define PR_1_EXPAND_EISIZE_WARNING              0x01008F
735
736 /* Expand the inode */
737 #define PR_1_EXPAND_EISIZE                      0x010090
738
739 /* Delete an EA so that EXTRA_ISIZE may be enabled */
740 #define PR_1_EISIZE_DELETE_EA                   0x010091
741
742 /* An EA needs to be deleted by e2fsck is being run with -p or -y */
743 #define PR_1_EA_BLK_NOSPC                       0x010092
744
745 /* Disable EXTRA_ISIZE feature as inode cannot be expanded
746  * without deletion of an EA
747  */
748 #define PR_1_CLEAR_EXTRA_ISIZE                  0x010093
749
750 /* invalid inode creation time */
751 #define PR_1_CRTIME_BAD                         0x010094
752
753 /* Failed to goto block group */
754 #define PR_1_SCAN_GOTO                          0x0100A0
755
756 /*
757  * Pass 1b errors
758  */
759
760 /* Pass 1B: Rescan for duplicate/bad blocks */
761 #define PR_1B_PASS_HEADER       0x011000
762
763 /* Duplicate/bad block(s) header */
764 #define PR_1B_DUP_BLOCK_HEADER  0x011001
765
766 /* Duplicate/bad block(s) in inode */
767 #define PR_1B_DUP_BLOCK         0x011002
768
769 /* Duplicate/bad block(s) end */
770 #define PR_1B_DUP_BLOCK_END     0x011003
771
772 /* Error while scanning inodes */
773 #define PR_1B_ISCAN_ERROR       0x011004
774
775 /* Error allocating inode bitmap */
776 #define PR_1B_ALLOCATE_IBITMAP_ERROR 0x011005
777
778 /* Error while iterating over blocks */
779 #define PR_1B_BLOCK_ITERATE     0x011006
780
781 /* Error adjusting EA refcount */
782 #define PR_1B_ADJ_EA_REFCOUNT   0x011007
783
784 /* Duplicate/bad block range in inode */
785 #define PR_1B_DUP_RANGE         0x011008
786
787 /* Inode is badly corrupt (badness value = ) */
788 #define PR_1B_INODE_TOOBAD      0x011009
789
790 /* Pass 1C: Scan directories for inodes with dup blocks. */
791 #define PR_1C_PASS_HEADER       0x012000
792
793
794 /* Pass 1D: Reconciling duplicate blocks */
795 #define PR_1D_PASS_HEADER       0x013000
796
797 /* File has duplicate blocks */
798 #define PR_1D_DUP_FILE          0x013001
799
800 /* List of files sharing duplicate blocks */
801 #define PR_1D_DUP_FILE_LIST     0x013002
802
803 /* File sharing blocks with filesystem metadata  */
804 #define PR_1D_SHARE_METADATA    0x013003
805
806 /* Report of how many duplicate/bad inodes */
807 #define PR_1D_NUM_DUP_INODES    0x013004
808
809 /* Duplicated blocks already reassigned or cloned. */
810 #define PR_1D_DUP_BLOCKS_DEALT  0x013005
811
812 /* Clone duplicate/bad blocks? */
813 #define PR_1D_CLONE_QUESTION    0x013006
814
815 /* Delete file? */
816 #define PR_1D_DELETE_QUESTION   0x013007
817
818 /* Couldn't clone file (error) */
819 #define PR_1D_CLONE_ERROR       0x013008
820
821 /* File with shared blocks found */
822 #define PR_1D_DISCONNECT_QUESTION 0x013009
823
824 /* Couldn't unlink file (error) */
825 #define PR_1D_DISCONNECT_ERROR  0x01300A
826
827
828 /*
829  * Pass 1e --- rebuilding extent trees
830  */
831 /* Pass 1e: Rebuilding extent trees */
832 #define PR_1E_PASS_HEADER               0x014000
833
834 /* Error rehash directory */
835 #define PR_1E_OPTIMIZE_EXT_ERR          0x014001
836
837 /* Rebuilding extent trees */
838 #define PR_1E_OPTIMIZE_EXT_HEADER       0x014002
839
840 /* Rebuilding extent %d */
841 #define PR_1E_OPTIMIZE_EXT              0x014003
842
843 /* Rebuilding extent tree end */
844 #define PR_1E_OPTIMIZE_EXT_END          0x014004
845
846 /* Internal error: extent tree depth too large */
847 #define PR_1E_MAX_EXTENT_TREE_DEPTH     0x014005
848
849 /* Inode extent tree could be shorter */
850 #define PR_1E_CAN_COLLAPSE_EXTENT_TREE  0x014006
851
852 /* Inode extent tree could be narrower */
853 #define PR_1E_CAN_NARROW_EXTENT_TREE    0x014007
854
855 /*
856  * Pass 2 errors
857  */
858
859 /* Pass 2: Checking directory structure */
860 #define PR_2_PASS_HEADER        0x020000
861
862 /* Bad inode number for '.' */
863 #define PR_2_BAD_INODE_DOT      0x020001
864
865 /* Directory entry has bad inode number */
866 #define PR_2_BAD_INO            0x020002
867
868 /* Directory entry has deleted or unused inode */
869 #define PR_2_UNUSED_INODE       0x020003
870
871 /* Directory entry is link to '.' */
872 #define PR_2_LINK_DOT           0x020004
873
874 /* Directory entry points to inode now located in a bad block */
875 #define PR_2_BB_INODE           0x020005
876
877 /* Directory entry contains a link to a directory */
878 #define PR_2_LINK_DIR           0x020006
879
880 /* Directory entry contains a link to the root directory */
881 #define PR_2_LINK_ROOT          0x020007
882
883 /* Directory entry has illegal characters in its name */
884 #define PR_2_BAD_NAME           0x020008
885
886 /* Missing '.' in directory inode */
887 #define PR_2_MISSING_DOT        0x020009
888
889 /* Missing '..' in directory inode */
890 #define PR_2_MISSING_DOT_DOT    0x02000A
891
892 /* First entry in directory inode doesn't contain '.' */
893 #define PR_2_1ST_NOT_DOT        0x02000B
894
895 /* Second entry in directory inode doesn't contain '..' */
896 #define PR_2_2ND_NOT_DOT_DOT    0x02000C
897
898 /* i_faddr should be zero */
899 #define PR_2_FADDR_ZERO         0x02000D
900
901 /* i_file_acl should be zero */
902 #define PR_2_FILE_ACL_ZERO      0x02000E
903
904 /* i_size_high should be zero */
905 #define PR_2_DIR_SIZE_HIGH_ZERO 0x02000F
906
907 /* i_frag should be zero */
908 #define PR_2_FRAG_ZERO          0x020010
909
910 /* i_fsize should be zero */
911 #define PR_2_FSIZE_ZERO         0x020011
912
913 /* inode has bad mode */
914 #define PR_2_BAD_MODE           0x020012
915
916 /* directory corrupted */
917 #define PR_2_DIR_CORRUPTED      0x020013
918
919 /* filename too long */
920 #define PR_2_FILENAME_LONG      0x020014
921
922 /* Directory inode has a missing block (hole) */
923 #define PR_2_DIRECTORY_HOLE     0x020015
924
925 /* '.' is not NULL terminated */
926 #define PR_2_DOT_NULL_TERM      0x020016
927
928 /* '..' is not NULL terminated */
929 #define PR_2_DOT_DOT_NULL_TERM  0x020017
930
931 /* Illegal character device in inode */
932 #define PR_2_BAD_CHAR_DEV       0x020018
933
934 /* Illegal block device in inode */
935 #define PR_2_BAD_BLOCK_DEV      0x020019
936
937 /* Duplicate '.' entry */
938 #define PR_2_DUP_DOT            0x02001A
939
940 /* Duplicate '..' entry */
941 #define PR_2_DUP_DOT_DOT        0x02001B
942
943 /* Internal error: couldn't find dir_info */
944 #define PR_2_NO_DIRINFO         0x02001C
945
946 /* Final rec_len is wrong */
947 #define PR_2_FINAL_RECLEN       0x02001D
948
949 /* Error allocating icount structure */
950 #define PR_2_ALLOCATE_ICOUNT    0x02001E
951
952 /* Error iterating over directory blocks */
953 #define PR_2_DBLIST_ITERATE     0x02001F
954
955 /* Error reading directory block */
956 #define PR_2_READ_DIRBLOCK      0x020020
957
958 /* Error writing directory block */
959 #define PR_2_WRITE_DIRBLOCK     0x020021
960
961 /* Error allocating new directory block */
962 #define PR_2_ALLOC_DIRBOCK      0x020022
963
964 /* Error deallocating inode */
965 #define PR_2_DEALLOC_INODE      0x020023
966
967 /* Directory entry for '.' is big.  Split? */
968 #define PR_2_SPLIT_DOT          0x020024
969
970 /* Illegal FIFO */
971 #define PR_2_BAD_FIFO           0x020025
972
973 /* Illegal socket */
974 #define PR_2_BAD_SOCKET         0x020026
975
976 /* Directory filetype not set */
977 #define PR_2_SET_FILETYPE       0x020027
978
979 /* Directory filetype incorrect */
980 #define PR_2_BAD_FILETYPE       0x020028
981
982 /* Directory filetype set when it shouldn't be */
983 #define PR_2_CLEAR_FILETYPE     0x020029
984
985 /* Directory filename can't be zero-length  */
986 #define PR_2_NULL_NAME          0x020030
987
988 /* Invalid symlink */
989 #define PR_2_INVALID_SYMLINK    0x020031
990
991 /* i_file_acl (extended attribute) is bad */
992 #define PR_2_FILE_ACL_BAD       0x020032
993
994 /* Filesystem contains large files, but has no such flag in sb */
995 #define PR_2_FEATURE_LARGE_FILES 0x020033
996
997 /* Node in HTREE directory not referenced */
998 #define PR_2_HTREE_NOTREF       0x020034
999
1000 /* Node in HTREE directory referenced twice */
1001 #define PR_2_HTREE_DUPREF       0x020035
1002
1003 /* Node in HTREE directory has bad min hash */
1004 #define PR_2_HTREE_MIN_HASH     0x020036
1005
1006 /* Node in HTREE directory has bad max hash */
1007 #define PR_2_HTREE_MAX_HASH     0x020037
1008
1009 /* Clear invalid HTREE directory */
1010 #define PR_2_HTREE_CLEAR        0x020038
1011
1012 /* Filesystem has large directories, but has no such flag in superblock */
1013 #define PR_2_FEATURE_LARGE_DIRS 0x020039
1014
1015 /* Bad block in htree interior node */
1016 #define PR_2_HTREE_BADBLK       0x02003A
1017
1018 /* Error adjusting EA refcount */
1019 #define PR_2_ADJ_EA_REFCOUNT    0x02003B
1020
1021 /* Invalid HTREE root node */
1022 #define PR_2_HTREE_BAD_ROOT     0x02003C
1023
1024 /* Invalid HTREE limit */
1025 #define PR_2_HTREE_BAD_LIMIT    0x02003D
1026
1027 /* Invalid HTREE count */
1028 #define PR_2_HTREE_BAD_COUNT    0x02003E
1029
1030 /* HTREE interior node has out-of-order hashes in table */
1031 #define PR_2_HTREE_HASH_ORDER   0x02003F
1032
1033 /* Node in HTREE directory has bad depth */
1034 #define PR_2_HTREE_BAD_DEPTH    0x020040
1035
1036 /* Duplicate directory entry found */
1037 #define PR_2_DUPLICATE_DIRENT   0x020041
1038
1039 /* Non-unique filename found */
1040 #define PR_2_NON_UNIQUE_FILE    0x020042
1041
1042 /* Duplicate directory entry found */
1043 #define PR_2_REPORT_DUP_DIRENT  0x020043
1044
1045 /* i_blocks_hi should be zero */
1046 #define PR_2_BLOCKS_HI_ZERO     0x020044
1047
1048 /* Unexpected HTREE block */
1049 #define PR_2_UNEXPECTED_HTREE_BLOCK     0x020045
1050
1051 /* Inode found in group where _INODE_UNINIT is set */
1052 #define PR_2_INOREF_BG_INO_UNINIT       0x020046
1053
1054 /* Inode found in group unused inodes area */
1055 #define PR_2_INOREF_IN_UNUSED           0x020047
1056
1057 /* i_file_acl_hi should be zero */
1058 #define PR_2_I_FILE_ACL_HI_ZERO         0x020048
1059
1060 /* htree root node fails checksum */
1061 #define PR_2_HTREE_ROOT_CSUM_INVALID    0x020049
1062
1063 /* htree node fails checksum */
1064 #define PR_2_HTREE_NODE_CSUM_INVALID    0x02004A
1065
1066 /* no space in leaf for checksum */
1067 #define PR_2_LEAF_NODE_MISSING_CSUM     0x02004C
1068
1069 /* dir leaf node passes checks, but fails checksum */
1070 #define PR_2_LEAF_NODE_ONLY_CSUM_INVALID        0x02004D
1071
1072 /* bad inline directory size */
1073 #define PR_2_BAD_INLINE_DIR_SIZE        0x02004E
1074
1075 /* fixing inline dir size failed */
1076 #define PR_2_FIX_INLINE_DIR_FAILED      0x02004F
1077
1078 /* Encrypted directory entry is too short */
1079 #define PR_2_BAD_ENCRYPTED_NAME         0x020050
1080
1081 /* Encrypted directory contains unencrypted file */
1082 #define PR_2_UNENCRYPTED_FILE           0x020051
1083
1084 /* Encrypted directory contains file with different encryption policy */
1085 #define PR_2_INCONSISTENT_ENCRYPTION_POLICY     0x020052
1086
1087 /* Encoded directory entry has illegal characters in its name */
1088 #define PR_2_BAD_ENCODED_NAME           0x020053
1089
1090 /* Non-unique filename found, but can't rename */
1091 #define PR_2_NON_UNIQUE_FILE_NO_RENAME  0x020054
1092
1093 /* Inode is badly corrupt (badness value = ) */
1094 #define PR_2_INODE_TOOBAD               0x020055
1095
1096 /* Entry dirdata length set incorrectly */
1097 #define PR_2_CLEAR_DIRDATA              0x020056
1098
1099 /*
1100  * Pass 3 errors
1101  */
1102
1103 /* Pass 3: Checking directory connectivity */
1104 #define PR_3_PASS_HEADER                0x030000
1105
1106 /* Root inode not allocated */
1107 #define PR_3_NO_ROOT_INODE              0x030001
1108
1109 /* No room in lost+found */
1110 #define PR_3_EXPAND_LF_DIR              0x030002
1111
1112 /* Unconnected directory inode */
1113 #define PR_3_UNCONNECTED_DIR            0x030003
1114
1115 /* /lost+found not found */
1116 #define PR_3_NO_LF_DIR                  0x030004
1117
1118 /* .. entry is incorrect */
1119 #define PR_3_BAD_DOT_DOT                0x030005
1120
1121 /* Bad or non-existent /lost+found.  Cannot reconnect */
1122 #define PR_3_NO_LPF                     0x030006
1123
1124 /* Could not expand /lost+found */
1125 #define PR_3_CANT_EXPAND_LPF            0x030007
1126
1127 /* Could not reconnect inode */
1128 #define PR_3_CANT_RECONNECT             0x030008
1129
1130 /* Error while trying to find /lost+found */
1131 #define PR_3_ERR_FIND_LPF               0x030009
1132
1133 /* Error in ext2fs_new_block while creating /lost+found */
1134 #define PR_3_ERR_LPF_NEW_BLOCK          0x03000A
1135
1136 /* Error in ext2fs_new_inode while creating /lost+found */
1137 #define PR_3_ERR_LPF_NEW_INODE          0x03000B
1138
1139 /* Error in ext2fs_new_dir_block while creating /lost+found */
1140 #define PR_3_ERR_LPF_NEW_DIR_BLOCK      0x03000C
1141
1142 /* Error while writing directory block for /lost+found */
1143 #define PR_3_ERR_LPF_WRITE_BLOCK        0x03000D
1144
1145 /* Error while adjusting inode count */
1146 #define PR_3_ADJUST_INODE               0x03000E
1147
1148 /* Couldn't fix parent directory -- error */
1149 #define PR_3_FIX_PARENT_ERR             0x03000F
1150
1151 /* Couldn't fix parent directory -- couldn't find it */
1152 #define PR_3_FIX_PARENT_NOFIND          0x030010
1153
1154 /* Error allocating inode bitmap */
1155 #define PR_3_ALLOCATE_IBITMAP_ERROR     0x030011
1156
1157 /* Error creating root directory */
1158 #define PR_3_CREATE_ROOT_ERROR          0x030012
1159
1160 /* Error creating lost and found directory */
1161 #define PR_3_CREATE_LPF_ERROR           0x030013
1162
1163 /* Root inode is not directory; aborting */
1164 #define PR_3_ROOT_NOT_DIR_ABORT         0x030014
1165
1166 /* Cannot proceed without a root inode. */
1167 #define PR_3_NO_ROOT_INODE_ABORT        0x030015
1168
1169 /* Internal error: couldn't find dir_info */
1170 #define PR_3_NO_DIRINFO                 0x030016
1171
1172 /* Lost+found is not a directory */
1173 #define PR_3_LPF_NOTDIR                 0x030017
1174
1175 /* Lost+found has inline data */
1176 #define PR_3_LPF_INLINE_DATA            0x030018
1177
1178 /* Cannot allocate lost+found */
1179 #define PR_3_LPF_NO_SPACE               0x030019
1180
1181 /* Insufficient space to recover lost files */
1182 #define PR_3_NO_SPACE_TO_RECOVER        0x03001A
1183
1184 /* Lost+found is encrypted */
1185 #define PR_3_LPF_ENCRYPTED              0x03001B
1186
1187 /*
1188  * Pass 3a --- rehashing directories
1189  */
1190 /* Pass 3a: Reindexing directories */
1191 #define PR_3A_PASS_HEADER               0x031000
1192
1193 /* Error iterating over directories */
1194 #define PR_3A_OPTIMIZE_ITER             0x031001
1195
1196 /* Error rehash directory */
1197 #define PR_3A_OPTIMIZE_DIR_ERR          0x031002
1198
1199 /* Rehashing dir header */
1200 #define PR_3A_OPTIMIZE_DIR_HEADER       0x031003
1201
1202 /* Rehashing directory %d */
1203 #define PR_3A_OPTIMIZE_DIR              0x031004
1204
1205 /* Rehashing dir end */
1206 #define PR_3A_OPTIMIZE_DIR_END          0x031005
1207
1208 /* Pass 3B is really just 1E */
1209
1210 /*
1211  * Pass 4 errors
1212  */
1213
1214 /* Pass 4: Checking reference counts */
1215 #define PR_4_PASS_HEADER                0x040000
1216
1217 /* Unattached zero-length inode */
1218 #define PR_4_ZERO_LEN_INODE             0x040001
1219
1220 /* Unattached inode */
1221 #define PR_4_UNATTACHED_INODE           0x040002
1222
1223 /* Inode ref count wrong */
1224 #define PR_4_BAD_REF_COUNT              0x040003
1225
1226 /* Inconsistent inode count information cached */
1227 #define PR_4_INCONSISTENT_COUNT         0x040004
1228
1229 /* Extended attribute inode ref count wrong */
1230 #define PR_4_EA_INODE_REF_COUNT         0x040005
1231
1232 /* directory exceeds max links, but no DIR_NLINK feature in superblock */
1233 #define PR_4_DIR_NLINK_FEATURE          0x040006
1234
1235 /* Directory ref count set to overflow but it doesn't have to be */
1236 #define PR_4_DIR_OVERFLOW_REF_COUNT     0x040007
1237
1238 /*
1239  * Pass 5 errors
1240  */
1241
1242 /* Pass 5: Checking group summary information */
1243 #define PR_5_PASS_HEADER                0x050000
1244
1245 /* Padding at end of inode bitmap is not set. */
1246 #define PR_5_INODE_BMAP_PADDING         0x050001
1247
1248 /* Padding at end of block bitmap is not set. */
1249 #define PR_5_BLOCK_BMAP_PADDING         0x050002
1250
1251 /* Block bitmap differences header */
1252 #define PR_5_BLOCK_BITMAP_HEADER        0x050003
1253
1254 /* Block not used, but marked in bitmap */
1255 #define PR_5_BLOCK_UNUSED               0x050004
1256
1257 /* Block used, but not marked used in bitmap */
1258 #define PR_5_BLOCK_USED                 0x050005
1259
1260 /* Block bitmap differences end */
1261 #define PR_5_BLOCK_BITMAP_END           0x050006
1262
1263 /* Inode bitmap differences header */
1264 #define PR_5_INODE_BITMAP_HEADER        0x050007
1265
1266 /* Inode not used, but marked in bitmap */
1267 #define PR_5_INODE_UNUSED               0x050008
1268
1269 /* Inode used, but not marked used in bitmap */
1270 #define PR_5_INODE_USED                 0x050009
1271
1272 /* Inode bitmap differences end */
1273 #define PR_5_INODE_BITMAP_END           0x05000A
1274
1275 /* Free inodes count for group wrong */
1276 #define PR_5_FREE_INODE_COUNT_GROUP     0x05000B
1277
1278 /* Directories count for group wrong */
1279 #define PR_5_FREE_DIR_COUNT_GROUP       0x05000C
1280
1281 /* Free inodes count wrong */
1282 #define PR_5_FREE_INODE_COUNT           0x05000D
1283
1284 /* Free blocks count for group wrong */
1285 #define PR_5_FREE_BLOCK_COUNT_GROUP     0x05000E
1286
1287 /* Free blocks count wrong */
1288 #define PR_5_FREE_BLOCK_COUNT           0x05000F
1289
1290 /* Programming error: bitmap endpoints don't match */
1291 #define PR_5_BMAP_ENDPOINTS             0x050010
1292
1293 /* Internal error: fudging end of bitmap */
1294 #define PR_5_FUDGE_BITMAP_ERROR         0x050011
1295
1296 /* Error copying in replacement inode bitmap */
1297 #define PR_5_COPY_IBITMAP_ERROR         0x050012
1298
1299 /* Error copying in replacement block bitmap */
1300 #define PR_5_COPY_BBITMAP_ERROR         0x050013
1301
1302 /* Block range not used, but marked in bitmap */
1303 #define PR_5_BLOCK_RANGE_UNUSED         0x050014
1304
1305 /* Block range used, but not marked used in bitmap */
1306 #define PR_5_BLOCK_RANGE_USED           0x050015
1307
1308 /* Inode range not used, but marked in bitmap */
1309 #define PR_5_INODE_RANGE_UNUSED         0x050016
1310
1311 /* Inode range used, but not marked used in bitmap */
1312 #define PR_5_INODE_RANGE_USED           0x050017
1313
1314 /* Block in use but group is marked BLOCK_UNINIT */
1315 #define PR_5_BLOCK_UNINIT               0x050018
1316
1317 /* Inode in use but group is marked INODE_UNINIT */
1318 #define PR_5_INODE_UNINIT               0x050019
1319
1320 /* Inode bitmap checksum does not match */
1321 #define PR_5_INODE_BITMAP_CSUM_INVALID  0x05001A
1322
1323 /* Block bitmap checksum does not match */
1324 #define PR_5_BLOCK_BITMAP_CSUM_INVALID  0x05001B
1325
1326 /* Expand the inodes which need a new EA block */
1327 #define PR_5_EXPAND_EISIZE              0x05001C
1328
1329 /*
1330  * Post-Pass 5 errors
1331  */
1332
1333 /* Recreate the journal if E2F_FLAG_JOURNAL_INODE flag is set */
1334 #define PR_6_RECREATE_JOURNAL           0x060001
1335
1336 /* Update quota information if it is inconsistent */
1337 #define PR_6_UPDATE_QUOTAS              0x060002
1338
1339 /* Error setting block group checksum info */
1340 #define PR_6_SET_BG_CHECKSUM            0x060003
1341
1342 /* Error writing file system info */
1343 #define PR_6_FLUSH_FILESYSTEM           0x060004
1344
1345 /* Error flushing writes to storage device */
1346 #define PR_6_IO_FLUSH                   0x060005
1347
1348 /* Error updating quota information */
1349 #define PR_6_WRITE_QUOTAS               0x060006
1350
1351
1352 /*
1353  * Function declarations
1354  */
1355 #define fix_problem(ctx, code, pctx)    \
1356         fix_problem_bad(ctx, code, pctx, 1)
1357 #define fix_problem_bad(ctx, code, pctx, badness)       \
1358         fix_problem_loc(ctx, code, pctx, badness, __func__, __LINE__)
1359 int fix_problem_loc(e2fsck_t ctx, problem_t code, struct problem_context *pctx,
1360                     int badness, const char *func, const int line);
1361 int end_problem_latch(e2fsck_t ctx, int mask);
1362 int set_latch_flags(int mask, int setflags, int clearflags);
1363 int get_latch_flags(int mask, int *value);
1364 void clear_problem_context(struct problem_context *pctx);
1365
1366 /* message.c */
1367 void print_e2fsck_message(FILE *f, e2fsck_t ctx, const char *msg,
1368                           struct problem_context *pctx, int first,
1369                           int recurse);
1370