Whamcloud - gitweb
e2fsck: add support for large xattrs in external inodes
[tools/e2fsprogs.git] / e2fsck / problem.h
1 /*
2  * problem.h --- e2fsck problem error codes
3  *
4  * Copyright 1996 by Theodore Ts'o
5  *
6  * %Begin-Header%
7  * This file may be redistributed under the terms of the GNU Public
8  * License.
9  * %End-Header%
10  */
11
12 typedef __u32 problem_t;
13
14 struct problem_context {
15         errcode_t       errcode;
16         ext2_ino_t ino, ino2, dir;
17         struct ext2_inode *inode;
18         struct ext2_dir_entry *dirent;
19         blk64_t blk, blk2;
20         e2_blkcnt_t     blkcount;
21         dgrp_t          group;
22         __u32           csum1, csum2;
23         __u64   num;
24         const char *str;
25 };
26
27 /*
28  * We define a set of "latch groups"; these are problems which are
29  * handled as a set.  The user answers once for a particular latch
30  * group.
31  */
32 #define PR_LATCH_MASK   0x0ff0  /* Latch mask */
33 #define PR_LATCH_BLOCK  0x0010  /* Latch for illegal blocks (pass 1) */
34 #define PR_LATCH_BBLOCK 0x0020  /* Latch for bad block inode blocks (pass 1) */
35 #define PR_LATCH_IBITMAP 0x0030 /* Latch for pass 5 inode bitmap proc. */
36 #define PR_LATCH_BBITMAP 0x0040 /* Latch for pass 5 inode bitmap proc. */
37 #define PR_LATCH_RELOC  0x0050  /* Latch for superblock relocate hint */
38 #define PR_LATCH_DBLOCK 0x0060  /* Latch for pass 1b dup block headers */
39 #define PR_LATCH_LOW_DTIME 0x0070 /* Latch for pass1 orphaned list refugees */
40 #define PR_LATCH_TOOBIG 0x0080  /* Latch for file to big errors */
41 #define PR_LATCH_OPTIMIZE_DIR 0x0090 /* Latch for optimize directories */
42 #define PR_LATCH_BG_CHECKSUM 0x00A0  /* Latch for block group checksums */
43 #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 determing 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
283 /*
284  * Pass 1 errors
285  */
286
287 /* Pass 1: Checking inodes, blocks, and sizes */
288 #define PR_1_PASS_HEADER                        0x010000
289
290 /* Root inode is not a directory */
291 #define PR_1_ROOT_NO_DIR                        0x010001
292
293 /* Root inode has dtime set */
294 #define PR_1_ROOT_DTIME                         0x010002
295
296 /* Reserved inode has bad mode */
297 #define PR_1_RESERVED_BAD_MODE                  0x010003
298
299 /* Deleted inode inum has zero dtime */
300 #define PR_1_ZERO_DTIME                         0x010004
301
302 /* Inode inum is in use, but has dtime set */
303 #define PR_1_SET_DTIME                          0x010005
304
305 /* Inode inum is a zero-length directory */
306 #define PR_1_ZERO_LENGTH_DIR                    0x010006
307
308 /* Group block bitmap at block conflicts with some other fs block */
309 #define PR_1_BB_CONFLICT                        0x010007
310
311 /* Group inode bitmap at block conflicts with some other fs block */
312 #define PR_1_IB_CONFLICT                        0x010008
313
314 /* Group inode table at block conflicts with some other fs block */
315 #define PR_1_ITABLE_CONFLICT                    0x010009
316
317 /* Group block bitmap (block) is bad */
318 #define PR_1_BB_BAD_BLOCK                       0x01000A
319
320 /* Group inode bitmap (block) is bad */
321 #define PR_1_IB_BAD_BLOCK                       0x01000B
322
323 /* Inode i_size is small, should be larger */
324 #define PR_1_BAD_I_SIZE                         0x01000C
325
326 /* Inode i_blocks is small, should be larger */
327 #define PR_1_BAD_I_BLOCKS                       0x01000D
328
329 /* Illegal block number in inode */
330 #define PR_1_ILLEGAL_BLOCK_NUM                  0x01000E
331
332 /* Block number overlaps filesystem metadata in inode */
333 #define PR_1_BLOCK_OVERLAPS_METADATA            0x01000F
334
335 /* Inode has illegal blocks (latch question) */
336 #define PR_1_INODE_BLOCK_LATCH                  0x010010
337
338 /* Too many illegal blocks in inode */
339 #define PR_1_TOO_MANY_BAD_BLOCKS                0x010011
340
341 /* Illegal block number in bad block inode */
342 #define PR_1_BB_ILLEGAL_BLOCK_NUM               0x010012
343
344 /* Bad block inode has illegal blocks (latch question) */
345 #define PR_1_INODE_BBLOCK_LATCH                 0x010013
346
347 /* Duplicate or bad blocks in use! */
348 #define PR_1_DUP_BLOCKS_PREENSTOP               0x010014
349
350 /* Bad block number used as bad block inode indirect block */
351 #define PR_1_BBINODE_BAD_METABLOCK              0x010015
352
353 /* Inconsistency can't be fixed prompt */
354 #define PR_1_BBINODE_BAD_METABLOCK_PROMPT       0x010016
355
356 /* Bad primary block */
357 #define PR_1_BAD_PRIMARY_BLOCK                  0x010017
358
359 /* Bad primary block prompt */
360 #define PR_1_BAD_PRIMARY_BLOCK_PROMPT           0x010018
361
362 /* The primary superblock block is on the bad block list */
363 #define PR_1_BAD_PRIMARY_SUPERBLOCK             0x010019
364
365 /* Bad primary block group descriptors */
366 #define PR_1_BAD_PRIMARY_GROUP_DESCRIPTOR       0x01001A
367
368 /* Warning: Group number's superblock (block) is bad */
369 #define PR_1_BAD_SUPERBLOCK                     0x01001B
370
371 /* Warning: Group number's copy of the group descriptors has a bad block */
372 #define PR_1_BAD_GROUP_DESCRIPTORS              0x01001C
373
374 /* Block number claimed for no reason in process_bad_blocks */
375 #define PR_1_PROGERR_CLAIMED_BLOCK              0x01001D
376
377 /* Allocating number contiguous block(s) in block group number */
378 #define PR_1_RELOC_BLOCK_ALLOCATE               0x01001E
379
380 /* Allocating block buffer for relocating process */
381 #define PR_1_RELOC_MEMORY_ALLOCATE              0x01001F
382
383 /* Relocating group number's information from X to Y */
384 #define PR_1_RELOC_FROM_TO                      0x010020
385
386 /* Relocating group number's information to X */
387 #define PR_1_RELOC_TO                           0x010021
388
389 /* Warning: could not read block number of relocation process */
390 #define PR_1_RELOC_READ_ERR                     0x010022
391
392 /* Warning: could not write block number of relocation process */
393 #define PR_1_RELOC_WRITE_ERR                    0x010023
394
395 /* Error allocating inode bitmap */
396 #define PR_1_ALLOCATE_IBITMAP_ERROR             0x010024
397
398 /* Error allocating block bitmap */
399 #define PR_1_ALLOCATE_BBITMAP_ERROR             0x010025
400
401 /* Error allocating icount link information */
402 #define PR_1_ALLOCATE_ICOUNT                    0x010026
403
404 /* Error allocating directory block array */
405 #define PR_1_ALLOCATE_DBCOUNT                   0x010027
406
407 /* Error while scanning inodes */
408 #define PR_1_ISCAN_ERROR                        0x010028
409
410 /* Error while iterating over blocks in inode */
411 #define PR_1_BLOCK_ITERATE                      0x010029
412
413 /* Error storing inode count information */
414 #define PR_1_ICOUNT_STORE                       0x01002A
415
416 /* Error storing directory block information */
417 #define PR_1_ADD_DBLOCK                         0x01002B
418
419 /* Error reading inode (for clearing) */
420 #define PR_1_READ_INODE                         0x01002C
421
422 /* Suppress messages prompt */
423 #define PR_1_SUPPRESS_MESSAGES                  0x01002D
424
425 /* Imagic number has imagic flag set when fs doesn't support it */
426 #define PR_1_SET_IMAGIC                         0x01002F
427
428 /* Immutable flag set on a device or socket inode */
429 #define PR_1_SET_IMMUTABLE                      0x010030
430
431 /* Compression flag set on a non-compressed filesystem -- no longer used*/
432 /* #define PR_1_COMPR_SET                       0x010031 */
433
434 /* Non-zero size on on device, fifo or socket inode */
435 #define PR_1_SET_NONZSIZE                       0x010032
436
437 /* Filesystem has feature flag(s) set, but is a revision 0 filesystem */
438 #define PR_1_FS_REV_LEVEL                       0x010033
439
440 /* Journal inode is not in use, but contains data */
441 #define PR_1_JOURNAL_INODE_NOT_CLEAR            0x010034
442
443 /* Journal is not a regular file */
444 #define PR_1_JOURNAL_BAD_MODE                   0x010035
445
446 /* Inode that was part of the orphan list */
447 #define PR_1_LOW_DTIME                          0x010036
448
449 /* Inodes that were part of a corrupted orphan linked list found
450  * (latch question) */
451 #define PR_1_ORPHAN_LIST_REFUGEES               0x010037
452
453 /* Error allocating refcount structure */
454 #define PR_1_ALLOCATE_REFCOUNT                  0x010038
455
456 /* Error reading extended attribute block */
457 #define PR_1_READ_EA_BLOCK                      0x010039
458
459 /* Inode number has a bad extended attribute block */
460 #define PR_1_BAD_EA_BLOCK                       0x01003A
461
462 /* Error reading Extended Attribute block while fixing refcount -- abort */
463 #define PR_1_EXTATTR_READ_ABORT                 0x01003B
464
465 /* Extended attribute number has reference count incorrect, should be */
466 #define PR_1_EXTATTR_REFCOUNT                   0x01003C
467
468 /* Error writing Extended Attribute block while fixing refcount */
469 #define PR_1_EXTATTR_WRITE_ABORT                0x01003D
470
471 /* Extended attribute block has h_blocks > 1 */
472 #define PR_1_EA_MULTI_BLOCK                     0x01003E
473
474 /* Allocating extended attribute region allocation structure */
475 #define PR_1_EA_ALLOC_REGION_ABORT              0x01003F
476
477 /* Extended Attribute block number is corrupt (allocation collision) */
478 #define PR_1_EA_ALLOC_COLLISION                 0x010040
479
480 /* Extended attribute block number is corrupt (invalid name) */
481 #define PR_1_EA_BAD_NAME                        0x010041
482
483 /* Extended attribute block number is corrupt (invalid value) */
484 #define PR_1_EA_BAD_VALUE                       0x010042
485
486 /* Inode number is too big (latch question) */
487 #define PR_1_INODE_TOOBIG                       0x010043
488
489 /* Problem causes directory to be too big */
490 #define PR_1_TOOBIG_DIR                         0x010044
491
492 /* Problem causes file to be too big */
493 #define PR_1_TOOBIG_REG                         0x010045
494
495 /* Problem causes symlink to be too big */
496 #define PR_1_TOOBIG_SYMLINK                     0x010046
497
498 /* Inode has INDEX_FL flag set on filesystem without htree support  */
499 #define PR_1_HTREE_SET                          0x010047
500
501 /* Inode number has INDEX_FL flag set but is on a directory */
502 #define PR_1_HTREE_NODIR                        0x010048
503
504 /* htree directory has an invalid root node */
505 #define PR_1_HTREE_BADROOT                      0x010049
506
507 /* Htree directory has an unsupported hash version */
508 #define PR_1_HTREE_HASHV                        0x01004A
509
510 /* Htree directory uses an Incompatible htree root node flag */
511 #define PR_1_HTREE_INCOMPAT                     0x01004B
512
513 /* Htree directory has a tree depth which is too big */
514 #define PR_1_HTREE_DEPTH                        0x01004C
515
516 /* Bad block inode has an indirect block number that conflicts with
517  * filesystem metadata */
518 #define PR_1_BB_FS_BLOCK                        0x01004D
519
520 /* Resize inode (re)creation failed */
521 #define PR_1_RESIZE_INODE_CREATE                0x01004E
522
523 /* inode has a extra size i_extra_isize which is invalid */
524 #define PR_1_EXTRA_ISIZE                        0x01004F
525
526 /* Extended attribute in inode has a namelen which is invalid */
527 #define PR_1_ATTR_NAME_LEN                      0x010050
528
529 /* Extended attribute in inode has a value offset which is invalid */
530 #define PR_1_ATTR_VALUE_OFFSET                  0x010051
531
532 /* extended attribute in inode has a value block which is invalid */
533 #define PR_1_ATTR_VALUE_BLOCK                   0x010052
534
535 /* extended attribute in inode has a value size which is invalid */
536 #define PR_1_ATTR_VALUE_SIZE                    0x010053
537
538 /* extended attribute in inode has a hash which is invalid */
539 #define PR_1_ATTR_HASH                          0x010054
540
541 /* inode is a type but it looks like it is really a directory */
542 #define PR_1_TREAT_AS_DIRECTORY                 0x010055
543
544 /* Error while reading extent tree in inode */
545 #define PR_1_READ_EXTENT                        0x010056
546
547 /* Failure to iterate extents in inode */
548 #define PR_1_EXTENT_ITERATE_FAILURE             0x010057
549
550 /* Inode has an invalid extent starting block */
551 #define PR_1_EXTENT_BAD_START_BLK               0x010058
552
553 /* Inode has an invalid extent that ends beyond filesystem */
554 #define PR_1_EXTENT_ENDS_BEYOND                 0x010059
555
556 /* inode has EXTENTS_FL flag set on filesystem without extents support */
557 #define PR_1_EXTENTS_SET                        0x01005A
558
559 /* inode is in extents format, but superblock is missing EXTENTS feature */
560 /* inode has extents, superblock missing INCOMPAT_EXTENTS feature */
561 #define PR_1_EXTENT_FEATURE                     0x01005B
562
563 /* inode missing EXTENTS_FL, but is an extent inode */
564 #define PR_1_UNSET_EXTENT_FL                    0x01005C
565
566 /* Fast symlink has EXTENTS_FL set */
567 #define PR_1_FAST_SYMLINK_EXTENT_FL             0x01005D
568
569 /* Extents are out of order */
570 #define PR_1_OUT_OF_ORDER_EXTENTS               0x01005E
571
572 /* Extent node header invalid */
573 #define PR_1_EXTENT_HEADER_INVALID              0x01005F
574
575 /* PR_1_EOFBLOCKS_FL_SET 0x010060 was here */
576
577 /* Failed to convert subcluster block bitmap */
578 #define PR_1_CONVERT_SUBCLUSTER                 0x010061
579
580 /* Quota inode is not a regular file */
581 #define PR_1_QUOTA_BAD_MODE                     0x010062
582
583 /* Quota inode is not in use, but contains data */
584 #define PR_1_QUOTA_INODE_NOT_CLEAR              0x010063
585
586 /* Quota inode is visible to the user */
587 #define PR_1_QUOTA_INODE_NOT_HIDDEN             0x010064
588
589 /* The bad block inode looks invalid */
590 #define PR_1_INVALID_BAD_INODE                  0x010065
591
592 /* Extent has zero length extent */
593 #define PR_1_EXTENT_LENGTH_ZERO                 0x010066
594
595 /* inode seems to contain garbage */
596 #define PR_1_INODE_IS_GARBAGE                   0x010067
597
598 /* inode passes checks, but checksum does not match inode */
599 #define PR_1_INODE_ONLY_CSUM_INVALID            0x010068
600
601 /* Inode extended attribute is corrupt (allocation collision) */
602 #define PR_1_INODE_EA_ALLOC_COLLISION           0x010069
603
604 /* Inode extent block passes checks, but checksum does not match extent */
605 #define PR_1_EXTENT_ONLY_CSUM_INVALID           0x01006A
606
607 /* Inode extended attribute block passes checks, but checksum does not
608  * match block. */
609 #define PR_1_EA_BLOCK_ONLY_CSUM_INVALID         0x01006C
610
611 /* Interior extent node level number of inode doesn't first node down */
612 #define PR_1_EXTENT_INDEX_START_INVALID         0x01006D
613
614 /* Inode end of extent exceeds allowed value */
615 #define PR_1_EXTENT_END_OUT_OF_BOUNDS           0x01006E
616
617 /* inode has INLINE_DATA_FL flag on filesystem without inline data */
618 #define PR_1_INLINE_DATA_FEATURE                0x01006F
619
620 /* inode has INLINE_DATA_FL flag on filesystem without inline data */
621 #define PR_1_INLINE_DATA_SET                    0x010070
622
623 /* Inode block conflicts with critical metadata, skipping block checks */
624 #define PR_1_CRITICAL_METADATA_COLLISION        0x010071
625
626 /* Directory inode block <block> should be at block <otherblock> */
627 #define PR_1_COLLAPSE_DBLOCK                    0x010072
628
629 /* Directory inode block <block> should be at block <otherblock> */
630 #define PR_1_UNINIT_DBLOCK                      0x010073
631
632 /* Inode logical block (physical block) violates cluster allocation */
633 #define PR_1_MISALIGNED_CLUSTER                 0x010074
634
635 /* Inode has INLINE_DATA_FL flag but extended attribute not found */
636 #define PR_1_INLINE_DATA_NO_ATTR                0x010075
637
638 /* Special (device/socket/fifo) file (inode num) has extents
639  * or inline-data flag set */
640 #define PR_1_SPECIAL_EXTENTS_IDATA              0x010076
641
642 /* Inode has extent header but inline data flag is set */
643 #define PR_1_CLEAR_INLINE_DATA_FOR_EXTENT       0x010077
644
645 /* Inode seems to have inline data but extent flag is set */
646 #define PR_1_CLEAR_EXTENT_FOR_INLINE_DATA       0x010078
647
648 /* Inode seems to have block map but inline data and extent flags set */
649 #define PR_1_CLEAR_EXTENT_INLINE_DATA_FLAGS     0x010079
650
651 /* Inode has inline data and extent flags but i_block contains junk */
652 #define PR_1_CLEAR_EXTENT_INLINE_DATA_INODE     0x01007A
653
654 /* Bad block list says the bad block list inode is bad */
655 #define PR_1_BADBLOCKS_IN_BADBLOCKS             0x01007B
656
657 /* Error allocating extent region allocation structure */
658 #define PR_1_EXTENT_ALLOC_REGION_ABORT          0x01007C
659
660 /* Inode leaf has a duplicate extent mapping */
661 #define PR_1_EXTENT_COLLISION                   0x01007D
662
663 /* Error allocating memory for encrypted directory list */
664 #define PR_1_ALLOCATE_ENCRYPTED_DIRLIST         0x01007E
665
666 /* Inode extent tree could be more shallow */
667 #define PR_1_EXTENT_BAD_MAX_DEPTH               0x01007F
668
669 /* inode num on bigalloc filesystem cannot be block mapped */
670 #define PR_1_NO_BIGALLOC_BLOCKMAP_FILES         0x010080
671
672 /* Inode has corrupt extent header */
673 #define PR_1_MISSING_EXTENT_HEADER              0x010081
674
675 /* Timestamp(s) on inode beyond 2310-04-04 are likely pre-1970. */
676 #define PR_1_EA_TIME_OUT_OF_RANGE               0x010082
677
678 /* Inode has illegal EA value inode */
679 #define PR_1_ATTR_VALUE_EA_INODE                0x010083
680
681 /* Invalid backpointer from EA inode to parent inode */
682 #define PR_1_ATTR_INVAL_EA_INODE                0x010084
683
684 /* Parent inode has invalid EA entry. EA inode does not have
685  * EXT4_EA_INODE_FL flag. Delete EA entry? */
686 #define PR_1_ATTR_NO_EA_INODE_FL                0x010085
687
688 /* EA inode for parent inode does not have EXT4_EA_INODE_FL flag */
689 #define PR_1_ATTR_SET_EA_INODE_FL               0x010086
690
691
692 /*
693  * Pass 1b errors
694  */
695
696 /* Pass 1B: Rescan for duplicate/bad blocks */
697 #define PR_1B_PASS_HEADER       0x011000
698
699 /* Duplicate/bad block(s) header */
700 #define PR_1B_DUP_BLOCK_HEADER  0x011001
701
702 /* Duplicate/bad block(s) in inode */
703 #define PR_1B_DUP_BLOCK         0x011002
704
705 /* Duplicate/bad block(s) end */
706 #define PR_1B_DUP_BLOCK_END     0x011003
707
708 /* Error while scanning inodes */
709 #define PR_1B_ISCAN_ERROR       0x011004
710
711 /* Error allocating inode bitmap */
712 #define PR_1B_ALLOCATE_IBITMAP_ERROR 0x011005
713
714 /* Error while iterating over blocks */
715 #define PR_1B_BLOCK_ITERATE     0x011006
716
717 /* Error adjusting EA refcount */
718 #define PR_1B_ADJ_EA_REFCOUNT   0x011007
719
720 /* Duplicate/bad block range in inode */
721 #define PR_1B_DUP_RANGE         0x011008
722
723 /* Pass 1C: Scan directories for inodes with dup blocks. */
724 #define PR_1C_PASS_HEADER       0x012000
725
726
727 /* Pass 1D: Reconciling duplicate blocks */
728 #define PR_1D_PASS_HEADER       0x013000
729
730 /* File has duplicate blocks */
731 #define PR_1D_DUP_FILE          0x013001
732
733 /* List of files sharing duplicate blocks */
734 #define PR_1D_DUP_FILE_LIST     0x013002
735
736 /* File sharing blocks with filesystem metadata  */
737 #define PR_1D_SHARE_METADATA    0x013003
738
739 /* Report of how many duplicate/bad inodes */
740 #define PR_1D_NUM_DUP_INODES    0x013004
741
742 /* Duplicated blocks already reassigned or cloned. */
743 #define PR_1D_DUP_BLOCKS_DEALT  0x013005
744
745 /* Clone duplicate/bad blocks? */
746 #define PR_1D_CLONE_QUESTION    0x013006
747
748 /* Delete file? */
749 #define PR_1D_DELETE_QUESTION   0x013007
750
751 /* Couldn't clone file (error) */
752 #define PR_1D_CLONE_ERROR       0x013008
753
754 /*
755  * Pass 1e --- rebuilding extent trees
756  */
757 /* Pass 1e: Rebuilding extent trees */
758 #define PR_1E_PASS_HEADER               0x014000
759
760 /* Error rehash directory */
761 #define PR_1E_OPTIMIZE_EXT_ERR          0x014001
762
763 /* Rebuilding extent trees */
764 #define PR_1E_OPTIMIZE_EXT_HEADER       0x014002
765
766 /* Rebuilding extent %d */
767 #define PR_1E_OPTIMIZE_EXT              0x014003
768
769 /* Rebuilding extent tree end */
770 #define PR_1E_OPTIMIZE_EXT_END          0x014004
771
772 /* Internal error: extent tree depth too large */
773 #define PR_1E_MAX_EXTENT_TREE_DEPTH     0x014005
774
775 /* Inode extent tree could be shorter */
776 #define PR_1E_CAN_COLLAPSE_EXTENT_TREE  0x014006
777
778 /* Inode extent tree could be narrower */
779 #define PR_1E_CAN_NARROW_EXTENT_TREE    0x014007
780
781 /*
782  * Pass 2 errors
783  */
784
785 /* Pass 2: Checking directory structure */
786 #define PR_2_PASS_HEADER        0x020000
787
788 /* Bad inode number for '.' */
789 #define PR_2_BAD_INODE_DOT      0x020001
790
791 /* Directory entry has bad inode number */
792 #define PR_2_BAD_INO            0x020002
793
794 /* Directory entry has deleted or unused inode */
795 #define PR_2_UNUSED_INODE       0x020003
796
797 /* Directry entry is link to '.' */
798 #define PR_2_LINK_DOT           0x020004
799
800 /* Directory entry points to inode now located in a bad block */
801 #define PR_2_BB_INODE           0x020005
802
803 /* Directory entry contains a link to a directory */
804 #define PR_2_LINK_DIR           0x020006
805
806 /* Directory entry contains a link to the root directry */
807 #define PR_2_LINK_ROOT          0x020007
808
809 /* Directory entry has illegal characters in its name */
810 #define PR_2_BAD_NAME           0x020008
811
812 /* Missing '.' in directory inode */
813 #define PR_2_MISSING_DOT        0x020009
814
815 /* Missing '..' in directory inode */
816 #define PR_2_MISSING_DOT_DOT    0x02000A
817
818 /* First entry in directory inode doesn't contain '.' */
819 #define PR_2_1ST_NOT_DOT        0x02000B
820
821 /* Second entry in directory inode doesn't contain '..' */
822 #define PR_2_2ND_NOT_DOT_DOT    0x02000C
823
824 /* i_faddr should be zero */
825 #define PR_2_FADDR_ZERO         0x02000D
826
827 /* i_file_acl should be zero */
828 #define PR_2_FILE_ACL_ZERO      0x02000E
829
830 /* i_size_high should be zero */
831 #define PR_2_DIR_SIZE_HIGH_ZERO 0x02000F
832
833 /* i_frag should be zero */
834 #define PR_2_FRAG_ZERO          0x020010
835
836 /* i_fsize should be zero */
837 #define PR_2_FSIZE_ZERO         0x020011
838
839 /* inode has bad mode */
840 #define PR_2_BAD_MODE           0x020012
841
842 /* directory corrupted */
843 #define PR_2_DIR_CORRUPTED      0x020013
844
845 /* filename too long */
846 #define PR_2_FILENAME_LONG      0x020014
847
848 /* Directory inode has a missing block (hole) */
849 #define PR_2_DIRECTORY_HOLE     0x020015
850
851 /* '.' is not NULL terminated */
852 #define PR_2_DOT_NULL_TERM      0x020016
853
854 /* '..' is not NULL terminated */
855 #define PR_2_DOT_DOT_NULL_TERM  0x020017
856
857 /* Illegal character device in inode */
858 #define PR_2_BAD_CHAR_DEV       0x020018
859
860 /* Illegal block device in inode */
861 #define PR_2_BAD_BLOCK_DEV      0x020019
862
863 /* Duplicate '.' entry */
864 #define PR_2_DUP_DOT            0x02001A
865
866 /* Duplicate '..' entry */
867 #define PR_2_DUP_DOT_DOT        0x02001B
868
869 /* Internal error: couldn't find dir_info */
870 #define PR_2_NO_DIRINFO         0x02001C
871
872 /* Final rec_len is wrong */
873 #define PR_2_FINAL_RECLEN       0x02001D
874
875 /* Error allocating icount structure */
876 #define PR_2_ALLOCATE_ICOUNT    0x02001E
877
878 /* Error iterating over directory blocks */
879 #define PR_2_DBLIST_ITERATE     0x02001F
880
881 /* Error reading directory block */
882 #define PR_2_READ_DIRBLOCK      0x020020
883
884 /* Error writing directory block */
885 #define PR_2_WRITE_DIRBLOCK     0x020021
886
887 /* Error allocating new directory block */
888 #define PR_2_ALLOC_DIRBOCK      0x020022
889
890 /* Error deallocating inode */
891 #define PR_2_DEALLOC_INODE      0x020023
892
893 /* Directory entry for '.' is big.  Split? */
894 #define PR_2_SPLIT_DOT          0x020024
895
896 /* Illegal FIFO */
897 #define PR_2_BAD_FIFO           0x020025
898
899 /* Illegal socket */
900 #define PR_2_BAD_SOCKET         0x020026
901
902 /* Directory filetype not set */
903 #define PR_2_SET_FILETYPE       0x020027
904
905 /* Directory filetype incorrect */
906 #define PR_2_BAD_FILETYPE       0x020028
907
908 /* Directory filetype set when it shouldn't be */
909 #define PR_2_CLEAR_FILETYPE     0x020029
910
911 /* Directory filename can't be zero-length  */
912 #define PR_2_NULL_NAME          0x020030
913
914 /* Invalid symlink */
915 #define PR_2_INVALID_SYMLINK    0x020031
916
917 /* i_file_acl (extended attribute) is bad */
918 #define PR_2_FILE_ACL_BAD       0x020032
919
920 /* Filesystem contains large files, but has no such flag in sb */
921 #define PR_2_FEATURE_LARGE_FILES 0x020033
922
923 /* Node in HTREE directory not referenced */
924 #define PR_2_HTREE_NOTREF       0x020034
925
926 /* Node in HTREE directory referenced twice */
927 #define PR_2_HTREE_DUPREF       0x020035
928
929 /* Node in HTREE directory has bad min hash */
930 #define PR_2_HTREE_MIN_HASH     0x020036
931
932 /* Node in HTREE directory has bad max hash */
933 #define PR_2_HTREE_MAX_HASH     0x020037
934
935 /* Clear invalid HTREE directory */
936 #define PR_2_HTREE_CLEAR        0x020038
937
938 /* Clear the htree flag forcibly */
939 /* #define PR_2_HTREE_FCLR      0x020039 */
940
941 /* Bad block in htree interior node */
942 #define PR_2_HTREE_BADBLK       0x02003A
943
944 /* Error adjusting EA refcount */
945 #define PR_2_ADJ_EA_REFCOUNT    0x02003B
946
947 /* Invalid HTREE root node */
948 #define PR_2_HTREE_BAD_ROOT     0x02003C
949
950 /* Invalid HTREE limit */
951 #define PR_2_HTREE_BAD_LIMIT    0x02003D
952
953 /* Invalid HTREE count */
954 #define PR_2_HTREE_BAD_COUNT    0x02003E
955
956 /* HTREE interior node has out-of-order hashes in table */
957 #define PR_2_HTREE_HASH_ORDER   0x02003F
958
959 /* Node in HTREE directory has bad depth */
960 #define PR_2_HTREE_BAD_DEPTH    0x020040
961
962 /* Duplicate directory entry found */
963 #define PR_2_DUPLICATE_DIRENT   0x020041
964
965 /* Non-unique filename found */
966 #define PR_2_NON_UNIQUE_FILE    0x020042
967
968 /* Duplicate directory entry found */
969 #define PR_2_REPORT_DUP_DIRENT  0x020043
970
971 /* i_blocks_hi should be zero */
972 #define PR_2_BLOCKS_HI_ZERO     0x020044
973
974 /* Unexpected HTREE block */
975 #define PR_2_UNEXPECTED_HTREE_BLOCK     0x020045
976
977 /* Inode found in group where _INODE_UNINIT is set */
978 #define PR_2_INOREF_BG_INO_UNINIT       0x020046
979
980 /* Inode found in group unused inodes area */
981 #define PR_2_INOREF_IN_UNUSED           0x020047
982
983 /* i_file_acl_hi should be zero */
984 #define PR_2_I_FILE_ACL_HI_ZERO         0x020048
985
986 /* htree root node fails checksum */
987 #define PR_2_HTREE_ROOT_CSUM_INVALID    0x020049
988
989 /* htree node fails checksum */
990 #define PR_2_HTREE_NODE_CSUM_INVALID    0x02004A
991
992 /* no space in leaf for checksum */
993 #define PR_2_LEAF_NODE_MISSING_CSUM     0x02004C
994
995 /* dir leaf node passes checks, but fails checksum */
996 #define PR_2_LEAF_NODE_ONLY_CSUM_INVALID        0x02004D
997
998 /* bad inline directory size */
999 #define PR_2_BAD_INLINE_DIR_SIZE        0x02004E
1000
1001 /* fixing inline dir size failed */
1002 #define PR_2_FIX_INLINE_DIR_FAILED      0x02004F
1003
1004 /* Encrypted directory entry is too short */
1005 #define PR_2_BAD_ENCRYPTED_NAME         0x020050
1006
1007 /*
1008  * Pass 3 errors
1009  */
1010
1011 /* Pass 3: Checking directory connectivity */
1012 #define PR_3_PASS_HEADER                0x030000
1013
1014 /* Root inode not allocated */
1015 #define PR_3_NO_ROOT_INODE              0x030001
1016
1017 /* No room in lost+found */
1018 #define PR_3_EXPAND_LF_DIR              0x030002
1019
1020 /* Unconnected directory inode */
1021 #define PR_3_UNCONNECTED_DIR            0x030003
1022
1023 /* /lost+found not found */
1024 #define PR_3_NO_LF_DIR                  0x030004
1025
1026 /* .. entry is incorrect */
1027 #define PR_3_BAD_DOT_DOT                0x030005
1028
1029 /* Bad or non-existent /lost+found.  Cannot reconnect */
1030 #define PR_3_NO_LPF                     0x030006
1031
1032 /* Could not expand /lost+found */
1033 #define PR_3_CANT_EXPAND_LPF            0x030007
1034
1035 /* Could not reconnect inode */
1036 #define PR_3_CANT_RECONNECT             0x030008
1037
1038 /* Error while trying to find /lost+found */
1039 #define PR_3_ERR_FIND_LPF               0x030009
1040
1041 /* Error in ext2fs_new_block while creating /lost+found */
1042 #define PR_3_ERR_LPF_NEW_BLOCK          0x03000A
1043
1044 /* Error in ext2fs_new_inode while creating /lost+found */
1045 #define PR_3_ERR_LPF_NEW_INODE          0x03000B
1046
1047 /* Error in ext2fs_new_dir_block while creating /lost+found */
1048 #define PR_3_ERR_LPF_NEW_DIR_BLOCK      0x03000C
1049
1050 /* Error while writing directory block for /lost+found */
1051 #define PR_3_ERR_LPF_WRITE_BLOCK        0x03000D
1052
1053 /* Error while adjusting inode count */
1054 #define PR_3_ADJUST_INODE               0x03000E
1055
1056 /* Couldn't fix parent directory -- error */
1057 #define PR_3_FIX_PARENT_ERR             0x03000F
1058
1059 /* Couldn't fix parent directory -- couldn't find it */
1060 #define PR_3_FIX_PARENT_NOFIND          0x030010
1061
1062 /* Error allocating inode bitmap */
1063 #define PR_3_ALLOCATE_IBITMAP_ERROR     0x030011
1064
1065 /* Error creating root directory */
1066 #define PR_3_CREATE_ROOT_ERROR          0x030012
1067
1068 /* Error creating lost and found directory */
1069 #define PR_3_CREATE_LPF_ERROR           0x030013
1070
1071 /* Root inode is not directory; aborting */
1072 #define PR_3_ROOT_NOT_DIR_ABORT         0x030014
1073
1074 /* Cannot proceed without a root inode. */
1075 #define PR_3_NO_ROOT_INODE_ABORT        0x030015
1076
1077 /* Internal error: couldn't find dir_info */
1078 #define PR_3_NO_DIRINFO                 0x030016
1079
1080 /* Lost+found is not a directory */
1081 #define PR_3_LPF_NOTDIR                 0x030017
1082
1083 /* Lost+found has inline data */
1084 #define PR_3_LPF_INLINE_DATA            0x030018
1085
1086 /* Cannot allocate lost+found */
1087 #define PR_3_LPF_NO_SPACE               0x030019
1088
1089 /* Insufficient space to recover lost files */
1090 #define PR_3_NO_SPACE_TO_RECOVER        0x03001A
1091
1092 /* Lost+found is encrypted */
1093 #define PR_3_LPF_ENCRYPTED              0x03001B
1094
1095 /*
1096  * Pass 3a --- rehashing diretories
1097  */
1098 /* Pass 3a: Reindexing directories */
1099 #define PR_3A_PASS_HEADER               0x031000
1100
1101 /* Error iterating over directories */
1102 #define PR_3A_OPTIMIZE_ITER             0x031001
1103
1104 /* Error rehash directory */
1105 #define PR_3A_OPTIMIZE_DIR_ERR          0x031002
1106
1107 /* Rehashing dir header */
1108 #define PR_3A_OPTIMIZE_DIR_HEADER       0x031003
1109
1110 /* Rehashing directory %d */
1111 #define PR_3A_OPTIMIZE_DIR              0x031004
1112
1113 /* Rehashing dir end */
1114 #define PR_3A_OPTIMIZE_DIR_END          0x031005
1115
1116 /* Pass 3B is really just 1E */
1117
1118 /*
1119  * Pass 4 errors
1120  */
1121
1122 /* Pass 4: Checking reference counts */
1123 #define PR_4_PASS_HEADER                0x040000
1124
1125 /* Unattached zero-length inode */
1126 #define PR_4_ZERO_LEN_INODE             0x040001
1127
1128 /* Unattached inode */
1129 #define PR_4_UNATTACHED_INODE           0x040002
1130
1131 /* Inode ref count wrong */
1132 #define PR_4_BAD_REF_COUNT              0x040003
1133
1134 /* Inconsistent inode count information cached */
1135 #define PR_4_INCONSISTENT_COUNT         0x040004
1136
1137 /*
1138  * Pass 5 errors
1139  */
1140
1141 /* Pass 5: Checking group summary information */
1142 #define PR_5_PASS_HEADER                0x050000
1143
1144 /* Padding at end of inode bitmap is not set. */
1145 #define PR_5_INODE_BMAP_PADDING         0x050001
1146
1147 /* Padding at end of block bitmap is not set. */
1148 #define PR_5_BLOCK_BMAP_PADDING         0x050002
1149
1150 /* Block bitmap differences header */
1151 #define PR_5_BLOCK_BITMAP_HEADER        0x050003
1152
1153 /* Block not used, but marked in bitmap */
1154 #define PR_5_BLOCK_UNUSED               0x050004
1155
1156 /* Block used, but not marked used in bitmap */
1157 #define PR_5_BLOCK_USED                 0x050005
1158
1159 /* Block bitmap differences end */
1160 #define PR_5_BLOCK_BITMAP_END           0x050006
1161
1162 /* Inode bitmap differences header */
1163 #define PR_5_INODE_BITMAP_HEADER        0x050007
1164
1165 /* Inode not used, but marked in bitmap */
1166 #define PR_5_INODE_UNUSED               0x050008
1167
1168 /* Inode used, but not marked used in bitmap */
1169 #define PR_5_INODE_USED                 0x050009
1170
1171 /* Inode bitmap differences end */
1172 #define PR_5_INODE_BITMAP_END           0x05000A
1173
1174 /* Free inodes count for group wrong */
1175 #define PR_5_FREE_INODE_COUNT_GROUP     0x05000B
1176
1177 /* Directories count for group wrong */
1178 #define PR_5_FREE_DIR_COUNT_GROUP       0x05000C
1179
1180 /* Free inodes count wrong */
1181 #define PR_5_FREE_INODE_COUNT           0x05000D
1182
1183 /* Free blocks count for group wrong */
1184 #define PR_5_FREE_BLOCK_COUNT_GROUP     0x05000E
1185
1186 /* Free blocks count wrong */
1187 #define PR_5_FREE_BLOCK_COUNT           0x05000F
1188
1189 /* Programming error: bitmap endpoints don't match */
1190 #define PR_5_BMAP_ENDPOINTS             0x050010
1191
1192 /* Internal error: fudging end of bitmap */
1193 #define PR_5_FUDGE_BITMAP_ERROR         0x050011
1194
1195 /* Error copying in replacement inode bitmap */
1196 #define PR_5_COPY_IBITMAP_ERROR         0x050012
1197
1198 /* Error copying in replacement block bitmap */
1199 #define PR_5_COPY_BBITMAP_ERROR         0x050013
1200
1201 /* Block range not used, but marked in bitmap */
1202 #define PR_5_BLOCK_RANGE_UNUSED         0x050014
1203
1204 /* Block range used, but not marked used in bitmap */
1205 #define PR_5_BLOCK_RANGE_USED           0x050015
1206
1207 /* Inode range not used, but marked in bitmap */
1208 #define PR_5_INODE_RANGE_UNUSED         0x050016
1209
1210 /* Inode rangeused, but not marked used in bitmap */
1211 #define PR_5_INODE_RANGE_USED           0x050017
1212
1213 /* Block in use but group is marked BLOCK_UNINIT */
1214 #define PR_5_BLOCK_UNINIT               0x050018
1215
1216 /* Inode in use but group is marked INODE_UNINIT */
1217 #define PR_5_INODE_UNINIT               0x050019
1218
1219 /* Inode bitmap checksum does not match */
1220 #define PR_5_INODE_BITMAP_CSUM_INVALID  0x05001A
1221
1222 /* Block bitmap checksum does not match */
1223 #define PR_5_BLOCK_BITMAP_CSUM_INVALID  0x05001B
1224
1225 /*
1226  * Post-Pass 5 errors
1227  */
1228
1229 /* Recreate the journal if E2F_FLAG_JOURNAL_INODE flag is set */
1230 #define PR_6_RECREATE_JOURNAL           0x060001
1231
1232 /* Update quota information if it is inconsistent */
1233 #define PR_6_UPDATE_QUOTAS              0x060002
1234
1235 /* Error setting block group checksum info */
1236 #define PR_6_SET_BG_CHECKSUM            0x060003
1237
1238 /* Error writing file system info */
1239 #define PR_6_FLUSH_FILESYSTEM           0x060004
1240
1241 /* Error flushing writes to storage device */
1242 #define PR_6_IO_FLUSH                   0x060005
1243
1244 /* Error updating quota information */
1245 #define PR_6_WRITE_QUOTAS               0x060006
1246
1247
1248 /*
1249  * Function declarations
1250  */
1251 int fix_problem(e2fsck_t ctx, problem_t code, struct problem_context *pctx);
1252 int end_problem_latch(e2fsck_t ctx, int mask);
1253 int set_latch_flags(int mask, int setflags, int clearflags);
1254 int get_latch_flags(int mask, int *value);
1255 void clear_problem_context(struct problem_context *pctx);
1256
1257 /* message.c */
1258 void print_e2fsck_message(FILE *f, e2fsck_t ctx, const char *msg,
1259                           struct problem_context *pctx, int first,
1260                           int recurse);
1261