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