aboutsummaryrefslogtreecommitdiff
path: root/e2fsprogs
diff options
context:
space:
mode:
authorlandley <landley@69ca8d6d-28ef-0310-b511-8ec308f3f277>2006-05-03 20:05:18 +0000
committerlandley <landley@69ca8d6d-28ef-0310-b511-8ec308f3f277>2006-05-03 20:05:18 +0000
commitf6cbf615f06258a9ae5af22df4c8addf718ceb33 (patch)
tree4d8213dbc1bbe56681e4896b7cdad664bd288fd2 /e2fsprogs
parent8e29b763a0bb94950ddc5e5190a784a8c9c3e898 (diff)
downloadbusybox-w32-f6cbf615f06258a9ae5af22df4c8addf718ceb33.tar.gz
busybox-w32-f6cbf615f06258a9ae5af22df4c8addf718ceb33.tar.bz2
busybox-w32-f6cbf615f06258a9ae5af22df4c8addf718ceb33.zip
Patch from Garrett Kajmowicz to move a lot of #defines into the
header file. git-svn-id: svn://busybox.net/trunk/busybox@14984 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'e2fsprogs')
-rw-r--r--e2fsprogs/e2fsck.c857
-rw-r--r--e2fsprogs/e2fsck.h332
2 files changed, 332 insertions, 857 deletions
diff --git a/e2fsprogs/e2fsck.c b/e2fsprogs/e2fsck.c
index 788da4df4..e72739cba 100644
--- a/e2fsprogs/e2fsck.c
+++ b/e2fsprogs/e2fsck.c
@@ -107,864 +107,7 @@ struct problem_context {
107 const char *str; 107 const char *str;
108}; 108};
109 109
110/*
111 * We define a set of "latch groups"; these are problems which are
112 * handled as a set. The user answers once for a particular latch
113 * group.
114 */
115#define PR_LATCH_MASK 0x0ff0 /* Latch mask */
116#define PR_LATCH_BLOCK 0x0010 /* Latch for illegal blocks (pass 1) */
117#define PR_LATCH_BBLOCK 0x0020 /* Latch for bad block inode blocks (pass 1) */
118#define PR_LATCH_IBITMAP 0x0030 /* Latch for pass 5 inode bitmap proc. */
119#define PR_LATCH_BBITMAP 0x0040 /* Latch for pass 5 inode bitmap proc. */
120#define PR_LATCH_RELOC 0x0050 /* Latch for superblock relocate hint */
121#define PR_LATCH_DBLOCK 0x0060 /* Latch for pass 1b dup block headers */
122#define PR_LATCH_LOW_DTIME 0x0070 /* Latch for pass1 orphaned list refugees */
123#define PR_LATCH_TOOBIG 0x0080 /* Latch for file to big errors */
124#define PR_LATCH_OPTIMIZE_DIR 0x0090 /* Latch for optimize directories */
125
126#define PR_LATCH(x) ((((x) & PR_LATCH_MASK) >> 4) - 1)
127
128/*
129 * Latch group descriptor flags
130 */
131#define PRL_YES 0x0001 /* Answer yes */
132#define PRL_NO 0x0002 /* Answer no */
133#define PRL_LATCHED 0x0004 /* The latch group is latched */
134#define PRL_SUPPRESS 0x0008 /* Suppress all latch group questions */
135
136#define PRL_VARIABLE 0x000f /* All the flags that need to be reset */
137
138/*
139 * Pre-Pass 1 errors
140 */
141
142/* Block bitmap not in group */
143#define PR_0_BB_NOT_GROUP 0x000001
144
145/* Inode bitmap not in group */
146#define PR_0_IB_NOT_GROUP 0x000002
147
148/* Inode table not in group */
149#define PR_0_ITABLE_NOT_GROUP 0x000003
150
151/* Superblock corrupt */
152#define PR_0_SB_CORRUPT 0x000004
153
154/* Filesystem size is wrong */
155#define PR_0_FS_SIZE_WRONG 0x000005
156
157/* Fragments not supported */
158#define PR_0_NO_FRAGMENTS 0x000006
159
160/* Bad blocks_per_group */
161#define PR_0_BLOCKS_PER_GROUP 0x000007
162
163/* Bad first_data_block */
164#define PR_0_FIRST_DATA_BLOCK 0x000008
165
166/* Adding UUID to filesystem */
167#define PR_0_ADD_UUID 0x000009
168
169/* Relocate hint */
170#define PR_0_RELOCATE_HINT 0x00000A
171
172/* Miscellaneous superblock corruption */
173#define PR_0_MISC_CORRUPT_SUPER 0x00000B
174
175/* Error determing physical device size of filesystem */
176#define PR_0_GETSIZE_ERROR 0x00000C
177
178/* Inode count in the superblock incorrect */
179#define PR_0_INODE_COUNT_WRONG 0x00000D
180
181/* The Hurd does not support the filetype feature */
182#define PR_0_HURD_CLEAR_FILETYPE 0x00000E
183
184/* Journal inode is invalid */
185#define PR_0_JOURNAL_BAD_INODE 0x00000F
186
187/* The external journal has multiple filesystems (which we can't handle yet) */
188#define PR_0_JOURNAL_UNSUPP_MULTIFS 0x000010
189
190/* Can't find external journal */
191#define PR_0_CANT_FIND_JOURNAL 0x000011
192
193/* External journal has bad superblock */
194#define PR_0_EXT_JOURNAL_BAD_SUPER 0x000012
195
196/* Superblock has a bad journal UUID */
197#define PR_0_JOURNAL_BAD_UUID 0x000013
198
199/* Journal has an unknown superblock type */
200#define PR_0_JOURNAL_UNSUPP_SUPER 0x000014
201
202/* Journal superblock is corrupt */
203#define PR_0_JOURNAL_BAD_SUPER 0x000015
204
205/* Journal superblock is corrupt */
206#define PR_0_JOURNAL_HAS_JOURNAL 0x000016
207
208/* Superblock has recovery flag set but no journal */
209#define PR_0_JOURNAL_RECOVER_SET 0x000017
210
211/* Journal has data, but recovery flag is clear */
212#define PR_0_JOURNAL_RECOVERY_CLEAR 0x000018
213
214/* Ask if we should clear the journal */
215#define PR_0_JOURNAL_RESET_JOURNAL 0x000019
216
217/* Filesystem revision is 0, but feature flags are set */
218#define PR_0_FS_REV_LEVEL 0x00001A
219
220/* Clearing orphan inode */
221#define PR_0_ORPHAN_CLEAR_INODE 0x000020
222
223/* Illegal block found in orphaned inode */
224#define PR_0_ORPHAN_ILLEGAL_BLOCK_NUM 0x000021
225
226/* Already cleared block found in orphaned inode */
227#define PR_0_ORPHAN_ALREADY_CLEARED_BLOCK 0x000022
228
229/* Illegal orphan inode in superblock */
230#define PR_0_ORPHAN_ILLEGAL_HEAD_INODE 0x000023
231
232/* Illegal inode in orphaned inode list */
233#define PR_0_ORPHAN_ILLEGAL_INODE 0x000024
234
235/* Journal has unsupported read-only feature - abort */
236#define PR_0_JOURNAL_UNSUPP_ROCOMPAT 0x000025
237
238/* Journal has unsupported incompatible feature - abort */
239#define PR_0_JOURNAL_UNSUPP_INCOMPAT 0x000026
240
241/* Journal has unsupported version number */
242#define PR_0_JOURNAL_UNSUPP_VERSION 0x000027
243
244/* Moving journal to hidden file */
245#define PR_0_MOVE_JOURNAL 0x000028
246
247/* Error moving journal */
248#define PR_0_ERR_MOVE_JOURNAL 0x000029
249
250/* Clearing V2 journal superblock */
251#define PR_0_CLEAR_V2_JOURNAL 0x00002A
252
253/* Run journal anyway */
254#define PR_0_JOURNAL_RUN 0x00002B
255
256/* Run journal anyway by default */
257#define PR_0_JOURNAL_RUN_DEFAULT 0x00002C
258
259/* Backup journal inode blocks */
260#define PR_0_BACKUP_JNL 0x00002D
261
262/* Reserved blocks w/o resize_inode */
263#define PR_0_NONZERO_RESERVED_GDT_BLOCKS 0x00002E
264
265/* Resize_inode not enabled, but resize inode is non-zero */
266#define PR_0_CLEAR_RESIZE_INODE 0x00002F
267
268/* Resize inode invalid */
269#define PR_0_RESIZE_INODE_INVALID 0x000030
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 */
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 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 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/*
528 * Pass 1b errors
529 */
530
531/* Pass 1B: Rescan for duplicate/bad blocks */
532#define PR_1B_PASS_HEADER 0x011000
533
534/* Duplicate/bad block(s) header */
535#define PR_1B_DUP_BLOCK_HEADER 0x011001
536
537/* Duplicate/bad block(s) in inode */
538#define PR_1B_DUP_BLOCK 0x011002
539
540/* Duplicate/bad block(s) end */
541#define PR_1B_DUP_BLOCK_END 0x011003
542
543/* Error while scanning inodes */
544#define PR_1B_ISCAN_ERROR 0x011004
545
546/* Error allocating inode bitmap */
547#define PR_1B_ALLOCATE_IBITMAP_ERROR 0x011005
548
549/* Error while iterating over blocks */
550#define PR_1B_BLOCK_ITERATE 0x0110006
551
552/* Error adjusting EA refcount */
553#define PR_1B_ADJ_EA_REFCOUNT 0x0110007
554
555
556/* Pass 1C: Scan directories for inodes with dup blocks. */
557#define PR_1C_PASS_HEADER 0x012000
558
559
560/* Pass 1D: Reconciling duplicate blocks */
561#define PR_1D_PASS_HEADER 0x013000
562
563/* File has duplicate blocks */
564#define PR_1D_DUP_FILE 0x013001
565
566/* List of files sharing duplicate blocks */
567#define PR_1D_DUP_FILE_LIST 0x013002
568
569/* File sharing blocks with filesystem metadata */
570#define PR_1D_SHARE_METADATA 0x013003
571
572/* Report of how many duplicate/bad inodes */
573#define PR_1D_NUM_DUP_INODES 0x013004
574
575/* Duplicated blocks already reassigned or cloned. */
576#define PR_1D_DUP_BLOCKS_DEALT 0x013005
577
578/* Clone duplicate/bad blocks? */
579#define PR_1D_CLONE_QUESTION 0x013006
580
581/* Delete file? */
582#define PR_1D_DELETE_QUESTION 0x013007
583
584/* Couldn't clone file (error) */
585#define PR_1D_CLONE_ERROR 0x013008
586
587/*
588 * Pass 2 errors
589 */
590
591/* Pass 2: Checking directory structure */
592#define PR_2_PASS_HEADER 0x020000
593
594/* Bad inode number for '.' */
595#define PR_2_BAD_INODE_DOT 0x020001
596
597/* Directory entry has bad inode number */
598#define PR_2_BAD_INO 0x020002
599
600/* Directory entry has deleted or unused inode */
601#define PR_2_UNUSED_INODE 0x020003
602
603/* Directry entry is link to '.' */
604#define PR_2_LINK_DOT 0x020004
605
606/* Directory entry points to inode now located in a bad block */
607#define PR_2_BB_INODE 0x020005
608
609/* Directory entry contains a link to a directory */
610#define PR_2_LINK_DIR 0x020006
611
612/* Directory entry contains a link to the root directry */
613#define PR_2_LINK_ROOT 0x020007
614
615/* Directory entry has illegal characters in its name */
616#define PR_2_BAD_NAME 0x020008
617
618/* Missing '.' in directory inode */
619#define PR_2_MISSING_DOT 0x020009
620
621/* Missing '..' in directory inode */
622#define PR_2_MISSING_DOT_DOT 0x02000A
623
624/* First entry in directory inode doesn't contain '.' */
625#define PR_2_1ST_NOT_DOT 0x02000B
626
627/* Second entry in directory inode doesn't contain '..' */
628#define PR_2_2ND_NOT_DOT_DOT 0x02000C
629
630/* i_faddr should be zero */
631#define PR_2_FADDR_ZERO 0x02000D
632
633/* i_file_acl should be zero */
634#define PR_2_FILE_ACL_ZERO 0x02000E
635
636/* i_dir_acl should be zero */
637#define PR_2_DIR_ACL_ZERO 0x02000F
638
639/* i_frag should be zero */
640#define PR_2_FRAG_ZERO 0x020010
641
642/* i_fsize should be zero */
643#define PR_2_FSIZE_ZERO 0x020011
644
645/* inode has bad mode */
646#define PR_2_BAD_MODE 0x020012
647
648/* directory corrupted */
649#define PR_2_DIR_CORRUPTED 0x020013
650
651/* filename too long */
652#define PR_2_FILENAME_LONG 0x020014
653
654/* Directory inode has a missing block (hole) */
655#define PR_2_DIRECTORY_HOLE 0x020015
656
657/* '.' is not NULL terminated */
658#define PR_2_DOT_NULL_TERM 0x020016
659
660/* '..' is not NULL terminated */
661#define PR_2_DOT_DOT_NULL_TERM 0x020017
662
663/* Illegal character device in inode */
664#define PR_2_BAD_CHAR_DEV 0x020018
665
666/* Illegal block device in inode */
667#define PR_2_BAD_BLOCK_DEV 0x020019
668
669/* Duplicate '.' entry */
670#define PR_2_DUP_DOT 0x02001A
671
672/* Duplicate '..' entry */
673#define PR_2_DUP_DOT_DOT 0x02001B
674
675/* Internal error: couldn't find dir_info */
676#define PR_2_NO_DIRINFO 0x02001C
677
678/* Final rec_len is wrong */
679#define PR_2_FINAL_RECLEN 0x02001D
680
681/* Error allocating icount structure */
682#define PR_2_ALLOCATE_ICOUNT 0x02001E
683
684/* Error iterating over directory blocks */
685#define PR_2_DBLIST_ITERATE 0x02001F
686
687/* Error reading directory block */
688#define PR_2_READ_DIRBLOCK 0x020020
689
690/* Error writing directory block */
691#define PR_2_WRITE_DIRBLOCK 0x020021
692
693/* Error allocating new directory block */
694#define PR_2_ALLOC_DIRBOCK 0x020022
695
696/* Error deallocating inode */
697#define PR_2_DEALLOC_INODE 0x020023
698
699/* Directory entry for '.' is big. Split? */
700#define PR_2_SPLIT_DOT 0x020024
701
702/* Illegal FIFO */
703#define PR_2_BAD_FIFO 0x020025
704
705/* Illegal socket */
706#define PR_2_BAD_SOCKET 0x020026
707
708/* Directory filetype not set */
709#define PR_2_SET_FILETYPE 0x020027
710
711/* Directory filetype incorrect */
712#define PR_2_BAD_FILETYPE 0x020028
713
714/* Directory filetype set when it shouldn't be */
715#define PR_2_CLEAR_FILETYPE 0x020029
716
717/* Directory filename can't be zero-length */
718#define PR_2_NULL_NAME 0x020030
719
720/* Invalid symlink */
721#define PR_2_INVALID_SYMLINK 0x020031
722
723/* i_file_acl (extended attribute) is bad */
724#define PR_2_FILE_ACL_BAD 0x020032
725
726/* Filesystem contains large files, but has no such flag in sb */
727#define PR_2_FEATURE_LARGE_FILES 0x020033
728
729/* Node in HTREE directory not referenced */
730#define PR_2_HTREE_NOTREF 0x020034
731
732/* Node in HTREE directory referenced twice */
733#define PR_2_HTREE_DUPREF 0x020035
734
735/* Node in HTREE directory has bad min hash */
736#define PR_2_HTREE_MIN_HASH 0x020036
737
738/* Node in HTREE directory has bad max hash */
739#define PR_2_HTREE_MAX_HASH 0x020037
740
741/* Clear invalid HTREE directory */
742#define PR_2_HTREE_CLEAR 0x020038
743
744/* Clear the htree flag forcibly */
745/* #define PR_2_HTREE_FCLR 0x020039 */
746
747/* Bad block in htree interior node */
748#define PR_2_HTREE_BADBLK 0x02003A
749
750/* Error adjusting EA refcount */
751#define PR_2_ADJ_EA_REFCOUNT 0x02003B
752
753/* Invalid HTREE root node */
754#define PR_2_HTREE_BAD_ROOT 0x02003C
755
756/* Invalid HTREE limit */
757#define PR_2_HTREE_BAD_LIMIT 0x02003D
758
759/* Invalid HTREE count */
760#define PR_2_HTREE_BAD_COUNT 0x02003E
761
762/* HTREE interior node has out-of-order hashes in table */
763#define PR_2_HTREE_HASH_ORDER 0x02003F
764
765/* Node in HTREE directory has bad depth */
766#define PR_2_HTREE_BAD_DEPTH 0x020040
767
768/* Duplicate directory entry found */
769#define PR_2_DUPLICATE_DIRENT 0x020041
770
771/* Non-unique filename found */
772#define PR_2_NON_UNIQUE_FILE 0x020042
773
774/* Duplicate directory entry found */
775#define PR_2_REPORT_DUP_DIRENT 0x020043
776
777/*
778 * Pass 3 errors
779 */
780
781/* Pass 3: Checking directory connectivity */
782#define PR_3_PASS_HEADER 0x030000
783
784/* Root inode not allocated */
785#define PR_3_NO_ROOT_INODE 0x030001
786
787/* No room in lost+found */
788#define PR_3_EXPAND_LF_DIR 0x030002
789
790/* Unconnected directory inode */
791#define PR_3_UNCONNECTED_DIR 0x030003
792
793/* /lost+found not found */
794#define PR_3_NO_LF_DIR 0x030004
795
796/* .. entry is incorrect */
797#define PR_3_BAD_DOT_DOT 0x030005
798
799/* Bad or non-existent /lost+found. Cannot reconnect */
800#define PR_3_NO_LPF 0x030006
801
802/* Could not expand /lost+found */
803#define PR_3_CANT_EXPAND_LPF 0x030007
804
805/* Could not reconnect inode */
806#define PR_3_CANT_RECONNECT 0x030008
807
808/* Error while trying to find /lost+found */
809#define PR_3_ERR_FIND_LPF 0x030009
810
811/* Error in ext2fs_new_block while creating /lost+found */
812#define PR_3_ERR_LPF_NEW_BLOCK 0x03000A
813
814/* Error in ext2fs_new_inode while creating /lost+found */
815#define PR_3_ERR_LPF_NEW_INODE 0x03000B
816
817/* Error in ext2fs_new_dir_block while creating /lost+found */
818#define PR_3_ERR_LPF_NEW_DIR_BLOCK 0x03000C
819
820/* Error while writing directory block for /lost+found */
821#define PR_3_ERR_LPF_WRITE_BLOCK 0x03000D
822
823/* Error while adjusting inode count */
824#define PR_3_ADJUST_INODE 0x03000E
825
826/* Couldn't fix parent directory -- error */
827#define PR_3_FIX_PARENT_ERR 0x03000F
828
829/* Couldn't fix parent directory -- couldn't find it */
830#define PR_3_FIX_PARENT_NOFIND 0x030010
831
832/* Error allocating inode bitmap */
833#define PR_3_ALLOCATE_IBITMAP_ERROR 0x030011
834
835/* Error creating root directory */
836#define PR_3_CREATE_ROOT_ERROR 0x030012
837
838/* Error creating lost and found directory */
839#define PR_3_CREATE_LPF_ERROR 0x030013
840
841/* Root inode is not directory; aborting */
842#define PR_3_ROOT_NOT_DIR_ABORT 0x030014
843
844/* Cannot proceed without a root inode. */
845#define PR_3_NO_ROOT_INODE_ABORT 0x030015
846
847/* Internal error: couldn't find dir_info */
848#define PR_3_NO_DIRINFO 0x030016
849
850/* Lost+found is not a directory */
851#define PR_3_LPF_NOTDIR 0x030017
852
853/*
854 * Pass 3a --- rehashing diretories
855 */
856/* Pass 3a: Reindexing directories */
857#define PR_3A_PASS_HEADER 0x031000
858
859/* Error iterating over directories */
860#define PR_3A_OPTIMIZE_ITER 0x031001
861
862/* Error rehash directory */
863#define PR_3A_OPTIMIZE_DIR_ERR 0x031002
864
865/* Rehashing dir header */
866#define PR_3A_OPTIMIZE_DIR_HEADER 0x031003
867
868/* Rehashing directory %d */
869#define PR_3A_OPTIMIZE_DIR 0x031004
870
871/* Rehashing dir end */
872#define PR_3A_OPTIMIZE_DIR_END 0x031005
873
874/*
875 * Pass 4 errors
876 */
877
878/* Pass 4: Checking reference counts */
879#define PR_4_PASS_HEADER 0x040000
880
881/* Unattached zero-length inode */
882#define PR_4_ZERO_LEN_INODE 0x040001
883
884/* Unattached inode */
885#define PR_4_UNATTACHED_INODE 0x040002
886
887/* Inode ref count wrong */
888#define PR_4_BAD_REF_COUNT 0x040003
889
890/* Inconsistent inode count information cached */
891#define PR_4_INCONSISTENT_COUNT 0x040004
892
893/*
894 * Pass 5 errors
895 */
896
897/* Pass 5: Checking group summary information */
898#define PR_5_PASS_HEADER 0x050000
899
900/* Padding at end of inode bitmap is not set. */
901#define PR_5_INODE_BMAP_PADDING 0x050001
902
903/* Padding at end of block bitmap is not set. */
904#define PR_5_BLOCK_BMAP_PADDING 0x050002
905
906/* Block bitmap differences header */
907#define PR_5_BLOCK_BITMAP_HEADER 0x050003
908
909/* Block not used, but marked in bitmap */
910#define PR_5_BLOCK_UNUSED 0x050004
911
912/* Block used, but not marked used in bitmap */
913#define PR_5_BLOCK_USED 0x050005
914
915/* Block bitmap differences end */
916#define PR_5_BLOCK_BITMAP_END 0x050006
917
918/* Inode bitmap differences header */
919#define PR_5_INODE_BITMAP_HEADER 0x050007
920
921/* Inode not used, but marked in bitmap */
922#define PR_5_INODE_UNUSED 0x050008
923
924/* Inode used, but not marked used in bitmap */
925#define PR_5_INODE_USED 0x050009
926
927/* Inode bitmap differences end */
928#define PR_5_INODE_BITMAP_END 0x05000A
929
930/* Free inodes count for group wrong */
931#define PR_5_FREE_INODE_COUNT_GROUP 0x05000B
932
933/* Directories count for group wrong */
934#define PR_5_FREE_DIR_COUNT_GROUP 0x05000C
935
936/* Free inodes count wrong */
937#define PR_5_FREE_INODE_COUNT 0x05000D
938
939/* Free blocks count for group wrong */
940#define PR_5_FREE_BLOCK_COUNT_GROUP 0x05000E
941
942/* Free blocks count wrong */
943#define PR_5_FREE_BLOCK_COUNT 0x05000F
944
945/* Programming error: bitmap endpoints don't match */
946#define PR_5_BMAP_ENDPOINTS 0x050010
947
948/* Internal error: fudging end of bitmap */
949#define PR_5_FUDGE_BITMAP_ERROR 0x050011
950
951/* Error copying in replacement inode bitmap */
952#define PR_5_COPY_IBITMAP_ERROR 0x050012
953
954/* Error copying in replacement block bitmap */
955#define PR_5_COPY_BBITMAP_ERROR 0x050013
956
957/* Block range not used, but marked in bitmap */
958#define PR_5_BLOCK_RANGE_UNUSED 0x050014
959
960/* Block range used, but not marked used in bitmap */
961#define PR_5_BLOCK_RANGE_USED 0x050015
962
963/* Inode range not used, but marked in bitmap */
964#define PR_5_INODE_RANGE_UNUSED 0x050016
965 110
966/* Inode rangeused, but not marked used in bitmap */
967#define PR_5_INODE_RANGE_USED 0x050017
968 111
969/* 112/*
970 * Function declarations 113 * Function declarations
diff --git a/e2fsprogs/e2fsck.h b/e2fsprogs/e2fsck.h
index 40a78cec5..fb6028da9 100644
--- a/e2fsprogs/e2fsck.h
+++ b/e2fsprogs/e2fsck.h
@@ -145,6 +145,338 @@ The following defines are used in the 'flags' field of a dx_dirblock_info
145#define cpu_to_be32(n) htonl(n) 145#define cpu_to_be32(n) htonl(n)
146#define be32_to_cpu(n) ntohl(n) 146#define be32_to_cpu(n) ntohl(n)
147 147
148/*
149 * We define a set of "latch groups"; these are problems which are
150 * handled as a set. The user answers once for a particular latch
151 * group.
152 */
153#define PR_LATCH_MASK 0x0ff0 /* Latch mask */
154#define PR_LATCH_BLOCK 0x0010 /* Latch for illegal blocks (pass 1) */
155#define PR_LATCH_BBLOCK 0x0020 /* Latch for bad block inode blocks (pass 1) */
156#define PR_LATCH_IBITMAP 0x0030 /* Latch for pass 5 inode bitmap proc. */
157#define PR_LATCH_BBITMAP 0x0040 /* Latch for pass 5 inode bitmap proc. */
158#define PR_LATCH_RELOC 0x0050 /* Latch for superblock relocate hint */
159#define PR_LATCH_DBLOCK 0x0060 /* Latch for pass 1b dup block headers */
160#define PR_LATCH_LOW_DTIME 0x0070 /* Latch for pass1 orphaned list refugees */
161#define PR_LATCH_TOOBIG 0x0080 /* Latch for file to big errors */
162#define PR_LATCH_OPTIMIZE_DIR 0x0090 /* Latch for optimize directories */
163
164#define PR_LATCH(x) ((((x) & PR_LATCH_MASK) >> 4) - 1)
165
166/*
167 * Latch group descriptor flags
168 */
169#define PRL_YES 0x0001 /* Answer yes */
170#define PRL_NO 0x0002 /* Answer no */
171#define PRL_LATCHED 0x0004 /* The latch group is latched */
172#define PRL_SUPPRESS 0x0008 /* Suppress all latch group questions */
173
174#define PRL_VARIABLE 0x000f /* All the flags that need to be reset */
175
176/*
177 * Pre-Pass 1 errors
178 */
179
180#define PR_0_BB_NOT_GROUP 0x000001 /* Block bitmap not in group */
181#define PR_0_IB_NOT_GROUP 0x000002 /* Inode bitmap not in group */
182#define PR_0_ITABLE_NOT_GROUP 0x000003 /* Inode table not in group */
183#define PR_0_SB_CORRUPT 0x000004 /* Superblock corrupt */
184#define PR_0_FS_SIZE_WRONG 0x000005 /* Filesystem size is wrong */
185#define PR_0_NO_FRAGMENTS 0x000006 /* Fragments not supported */
186#define PR_0_BLOCKS_PER_GROUP 0x000007 /* Bad blocks_per_group */
187#define PR_0_FIRST_DATA_BLOCK 0x000008 /* Bad first_data_block */
188#define PR_0_ADD_UUID 0x000009 /* Adding UUID to filesystem */
189#define PR_0_RELOCATE_HINT 0x00000A /* Relocate hint */
190#define PR_0_MISC_CORRUPT_SUPER 0x00000B /* Miscellaneous superblock corruption */
191#define PR_0_GETSIZE_ERROR 0x00000C /* Error determing physical device size of filesystem */
192#define PR_0_INODE_COUNT_WRONG 0x00000D /* Inode count in the superblock incorrect */
193#define PR_0_HURD_CLEAR_FILETYPE 0x00000E /* The Hurd does not support the filetype feature */
194#define PR_0_JOURNAL_BAD_INODE 0x00000F /* The Hurd does not support the filetype feature */
195#define PR_0_JOURNAL_UNSUPP_MULTIFS 0x000010 /* The external journal has multiple filesystems (which we can't handle yet) */
196#define PR_0_CANT_FIND_JOURNAL 0x000011 /* Can't find external journal */
197#define PR_0_EXT_JOURNAL_BAD_SUPER 0x000012/* External journal has bad superblock */
198#define PR_0_JOURNAL_BAD_UUID 0x000013 /* Superblock has a bad journal UUID */
199#define PR_0_JOURNAL_UNSUPP_SUPER 0x000014 /* Journal has an unknown superblock type */
200#define PR_0_JOURNAL_BAD_SUPER 0x000015 /* Journal superblock is corrupt */
201#define PR_0_JOURNAL_HAS_JOURNAL 0x000016 /* Journal superblock is corrupt */
202#define PR_0_JOURNAL_RECOVER_SET 0x000017 /* Superblock has recovery flag set but no journal */
203#define PR_0_JOURNAL_RECOVERY_CLEAR 0x000018 /* Journal has data, but recovery flag is clear */
204#define PR_0_JOURNAL_RESET_JOURNAL 0x000019 /* Ask if we should clear the journal */
205#define PR_0_FS_REV_LEVEL 0x00001A /* Filesystem revision is 0, but feature flags are set */
206#define PR_0_ORPHAN_CLEAR_INODE 0x000020 /* Clearing orphan inode */
207#define PR_0_ORPHAN_ILLEGAL_BLOCK_NUM 0x000021 /* Illegal block found in orphaned inode */
208#define PR_0_ORPHAN_ALREADY_CLEARED_BLOCK 0x000022 /* Already cleared block found in orphaned inode */
209#define PR_0_ORPHAN_ILLEGAL_HEAD_INODE 0x000023 /* Illegal orphan inode in superblock */
210#define PR_0_ORPHAN_ILLEGAL_INODE 0x000024 /* Illegal inode in orphaned inode list */
211#define PR_0_JOURNAL_UNSUPP_ROCOMPAT 0x000025 /* Journal has unsupported read-only feature - abort */
212#define PR_0_JOURNAL_UNSUPP_INCOMPAT 0x000026 /* Journal has unsupported incompatible feature - abort */
213#define PR_0_JOURNAL_UNSUPP_VERSION 0x000027 /* Journal has unsupported version number */
214#define PR_0_MOVE_JOURNAL 0x000028 /* Moving journal to hidden file */
215#define PR_0_ERR_MOVE_JOURNAL 0x000029 /* Error moving journal */
216#define PR_0_CLEAR_V2_JOURNAL 0x00002A /* Clearing V2 journal superblock */
217#define PR_0_JOURNAL_RUN 0x00002B /* Run journal anyway */
218#define PR_0_JOURNAL_RUN_DEFAULT 0x00002C /* Run journal anyway by default */
219#define PR_0_BACKUP_JNL 0x00002D /* Backup journal inode blocks */
220#define PR_0_NONZERO_RESERVED_GDT_BLOCKS 0x00002E /* Reserved blocks w/o resize_inode */
221#define PR_0_CLEAR_RESIZE_INODE 0x00002F /* Resize_inode not enabled, but resize inode is non-zero */
222#define PR_0_RESIZE_INODE_INVALID 0x000030 /* Resize inode invalid */
223
224/*
225 * Pass 1 errors
226 */
227
228#define PR_1_PASS_HEADER 0x010000 /* Pass 1: Checking inodes, blocks, and sizes */
229#define PR_1_ROOT_NO_DIR 0x010001 /* Root directory is not an inode */
230#define PR_1_ROOT_DTIME 0x010002 /* Root directory has dtime set */
231#define PR_1_RESERVED_BAD_MODE 0x010003 /* Reserved inode has bad mode */
232#define PR_1_ZERO_DTIME 0x010004 /* Deleted inode has zero dtime */
233#define PR_1_SET_DTIME 0x010005 /* Inode in use, but dtime set */
234#define PR_1_ZERO_LENGTH_DIR 0x010006 /* Zero-length directory */
235#define PR_1_BB_CONFLICT 0x010007 /* Block bitmap conflicts with some other fs block */
236#define PR_1_IB_CONFLICT 0x010008 /* Inode bitmap conflicts with some other fs block */
237#define PR_1_ITABLE_CONFLICT 0x010009 /* Inode table conflicts with some other fs block */
238#define PR_1_BB_BAD_BLOCK 0x01000A /* Block bitmap is on a bad block */
239#define PR_1_IB_BAD_BLOCK 0x01000B /* Inode bitmap is on a bad block */
240#define PR_1_BAD_I_SIZE 0x01000C /* Inode has incorrect i_size */
241#define PR_1_BAD_I_BLOCKS 0x01000D /* Inode has incorrect i_blocks */
242#define PR_1_ILLEGAL_BLOCK_NUM 0x01000E /* Illegal block number in inode */
243#define PR_1_BLOCK_OVERLAPS_METADATA 0x01000F /* Block number overlaps fs metadata */
244#define PR_1_INODE_BLOCK_LATCH 0x010010 /* Inode has illegal blocks (latch question) */
245#define PR_1_TOO_MANY_BAD_BLOCKS 0x010011 /* Too many bad blocks in inode */
246#define PR_1_BB_ILLEGAL_BLOCK_NUM 0x010012 /* Illegal block number in bad block inode */
247#define PR_1_INODE_BBLOCK_LATCH 0x010013 /* Bad block inode has illegal blocks (latch question) */
248#define PR_1_DUP_BLOCKS_PREENSTOP 0x010014 /* Duplicate or bad blocks in use! */
249#define PR_1_BBINODE_BAD_METABLOCK 0x010015 /* Bad block used as bad block indirect block */
250#define PR_1_BBINODE_BAD_METABLOCK_PROMPT 0x010016 /* Inconsistency can't be fixed prompt */
251#define PR_1_BAD_PRIMARY_BLOCK 0x010017 /* Bad primary block */
252#define PR_1_BAD_PRIMARY_BLOCK_PROMPT 0x010018 /* Bad primary block prompt */
253#define PR_1_BAD_PRIMARY_SUPERBLOCK 0x010019 /* Bad primary superblock */
254#define PR_1_BAD_PRIMARY_GROUP_DESCRIPTOR 0x01001A /* Bad primary block group descriptors */
255#define PR_1_BAD_SUPERBLOCK 0x01001B /* Bad superblock in group */
256#define PR_1_BAD_GROUP_DESCRIPTORS 0x01001C /* Bad block group descriptors in group */
257#define PR_1_PROGERR_CLAIMED_BLOCK 0x01001D /* Block claimed for no reason */
258#define PR_1_RELOC_BLOCK_ALLOCATE 0x01001E /* Error allocating blocks for relocating metadata */
259#define PR_1_RELOC_MEMORY_ALLOCATE 0x01001F /* Error allocating block buffer during relocation process */
260#define PR_1_RELOC_FROM_TO 0x010020 /* Relocating metadata group information from X to Y */
261#define PR_1_RELOC_TO 0x010021 /* Relocating metatdata group information to X */
262#define PR_1_RELOC_READ_ERR 0x010022 /* Block read error during relocation process */
263#define PR_1_RELOC_WRITE_ERR 0x010023 /* Block write error during relocation process */
264#define PR_1_ALLOCATE_IBITMAP_ERROR 0x010024 /* Error allocating inode bitmap */
265#define PR_1_ALLOCATE_BBITMAP_ERROR 0x010025 /* Error allocating block bitmap */
266#define PR_1_ALLOCATE_ICOUNT 0x010026 /* Error allocating icount structure */
267#define PR_1_ALLOCATE_DBCOUNT 0x010027 /* Error allocating dbcount */
268#define PR_1_ISCAN_ERROR 0x010028 /* Error while scanning inodes */
269#define PR_1_BLOCK_ITERATE 0x010029 /* Error while iterating over blocks */
270#define PR_1_ICOUNT_STORE 0x01002A /* Error while storing inode count information */
271#define PR_1_ADD_DBLOCK 0x01002B /* Error while storing directory block information */
272#define PR_1_READ_INODE 0x01002C /* Error while reading inode (for clearing) */
273#define PR_1_SUPPRESS_MESSAGES 0x01002D /* Suppress messages prompt */
274#define PR_1_SET_IMAGIC 0x01002F /* Imagic flag set on an inode when filesystem doesn't support it */
275#define PR_1_SET_IMMUTABLE 0x010030 /* Immutable flag set on a device or socket inode */
276#define PR_1_COMPR_SET 0x010031 /* Compression flag set on a non-compressed filesystem */
277#define PR_1_SET_NONZSIZE 0x010032 /* Non-zero size on on device, fifo or socket inode */
278#define PR_1_FS_REV_LEVEL 0x010033 /* Filesystem revision is 0, but feature flags are set */
279#define PR_1_JOURNAL_INODE_NOT_CLEAR 0x010034 /* Journal inode not in use, needs clearing */
280#define PR_1_JOURNAL_BAD_MODE 0x010035 /* Journal inode has wrong mode */
281#define PR_1_LOW_DTIME 0x010036 /* Inode that was part of orphan linked list */
282#define PR_1_ORPHAN_LIST_REFUGEES 0x010037 /* Latch question which asks how to deal with low dtime inodes */
283#define PR_1_ALLOCATE_REFCOUNT 0x010038 /* Error allocating refcount structure */
284#define PR_1_READ_EA_BLOCK 0x010039 /* Error reading Extended Attribute block */
285#define PR_1_BAD_EA_BLOCK 0x01003A /* Invalid Extended Attribute block */
286#define PR_1_EXTATTR_READ_ABORT 0x01003B /* Error reading Extended Attribute block while fixing refcount -- abort */
287#define PR_1_EXTATTR_REFCOUNT 0x01003C /* Extended attribute reference count incorrect */
288#define PR_1_EXTATTR_WRITE 0x01003D /* Error writing Extended Attribute block while fixing refcount */
289#define PR_1_EA_MULTI_BLOCK 0x01003E /* Multiple EA blocks not supported */
290#define PR_1_EA_ALLOC_REGION 0x01003F /* Error allocating EA region allocation structure */
291#define PR_1_EA_ALLOC_COLLISION 0x010040 /* Error EA allocation collision */
292#define PR_1_EA_BAD_NAME 0x010041 /* Bad extended attribute name */
293#define PR_1_EA_BAD_VALUE 0x010042 /* Bad extended attribute value */
294#define PR_1_INODE_TOOBIG 0x010043 /* Inode too big (latch question) */
295#define PR_1_TOOBIG_DIR 0x010044 /* Directory too big */
296#define PR_1_TOOBIG_REG 0x010045 /* Regular file too big */
297#define PR_1_TOOBIG_SYMLINK 0x010046 /* Symlink too big */
298#define PR_1_HTREE_SET 0x010047 /* INDEX_FL flag set on a non-HTREE filesystem */
299#define PR_1_HTREE_NODIR 0x010048 /* INDEX_FL flag set on a non-directory */
300#define PR_1_HTREE_BADROOT 0x010049 /* Invalid root node in HTREE directory */
301#define PR_1_HTREE_HASHV 0x01004A /* Unsupported hash version in HTREE directory */
302#define PR_1_HTREE_INCOMPAT 0x01004B /* Incompatible flag in HTREE root node */
303#define PR_1_HTREE_DEPTH 0x01004C /* HTREE too deep */
304#define PR_1_BB_FS_BLOCK 0x01004D /* Bad block has indirect block that conflicts with filesystem block */
305#define PR_1_RESIZE_INODE_CREATE 0x01004E /* Resize inode failed */
306#define PR_1_EXTRA_ISIZE 0x01004F /* inode->i_size is too long */
307#define PR_1_ATTR_NAME_LEN 0x010050 /* attribute name is too long */
308#define PR_1_ATTR_VALUE_OFFSET 0x010051 /* wrong EA value offset */
309#define PR_1_ATTR_VALUE_BLOCK 0x010052 /* wrong EA blocknumber */
310#define PR_1_ATTR_VALUE_SIZE 0x010053 /* wrong EA value size */
311#define PR_1_ATTR_HASH 0x010054 /* wrong EA hash value */
312
313/*
314 * Pass 1b errors
315 */
316
317#define PR_1B_PASS_HEADER 0x011000 /* Pass 1B: Rescan for duplicate/bad blocks */
318#define PR_1B_DUP_BLOCK_HEADER 0x011001 /* Duplicate/bad block(s) header */
319#define PR_1B_DUP_BLOCK 0x011002 /* Duplicate/bad block(s) in inode */
320#define PR_1B_DUP_BLOCK_END 0x011003 /* Duplicate/bad block(s) end */
321#define PR_1B_ISCAN_ERROR 0x011004 /* Error while scanning inodes */
322#define PR_1B_ALLOCATE_IBITMAP_ERROR 0x011005 /* Error allocating inode bitmap */
323#define PR_1B_BLOCK_ITERATE 0x0110006 /* Error while iterating over blocks */
324#define PR_1B_ADJ_EA_REFCOUNT 0x0110007 /* Error adjusting EA refcount */
325#define PR_1C_PASS_HEADER 0x012000 /* Pass 1C: Scan directories for inodes with dup blocks. */
326#define PR_1D_PASS_HEADER 0x013000 /* Pass 1D: Reconciling duplicate blocks */
327#define PR_1D_DUP_FILE 0x013001 /* File has duplicate blocks */
328#define PR_1D_DUP_FILE_LIST 0x013002 /* List of files sharing duplicate blocks */
329#define PR_1D_SHARE_METADATA 0x013003 /* File sharing blocks with filesystem metadata */
330#define PR_1D_NUM_DUP_INODES 0x013004 /* Report of how many duplicate/bad inodes */
331#define PR_1D_DUP_BLOCKS_DEALT 0x013005 /* Duplicated blocks already reassigned or cloned. */
332#define PR_1D_CLONE_QUESTION 0x013006 /* Clone duplicate/bad blocks? */
333#define PR_1D_DELETE_QUESTION 0x013007 /* Delete file? */
334#define PR_1D_CLONE_ERROR 0x013008 /* Couldn't clone file (error) */
335
336/*
337 * Pass 2 errors
338 */
339
340#define PR_2_PASS_HEADER 0x020000 /* Pass 2: Checking directory structure */
341#define PR_2_BAD_INODE_DOT 0x020001 /* Bad inode number for '.' */
342#define PR_2_BAD_INO 0x020002 /* Directory entry has bad inode number */
343#define PR_2_UNUSED_INODE 0x020003 /* Directory entry has deleted or unused inode */
344#define PR_2_LINK_DOT 0x020004 /* Directry entry is link to '.' */
345#define PR_2_BB_INODE 0x020005 /* Directory entry points to inode now located in a bad block */
346#define PR_2_LINK_DIR 0x020006 /* Directory entry contains a link to a directory */
347#define PR_2_LINK_ROOT 0x020007 /* Directory entry contains a link to the root directry */
348#define PR_2_BAD_NAME 0x020008 /* Directory entry has illegal characters in its name */
349#define PR_2_MISSING_DOT 0x020009 /* Missing '.' in directory inode */
350#define PR_2_MISSING_DOT_DOT 0x02000A /* Missing '..' in directory inode */
351#define PR_2_1ST_NOT_DOT 0x02000B /* First entry in directory inode doesn't contain '.' */
352#define PR_2_2ND_NOT_DOT_DOT 0x02000C /* Second entry in directory inode doesn't contain '..' */
353#define PR_2_FADDR_ZERO 0x02000D /* i_faddr should be zero */
354#define PR_2_FILE_ACL_ZERO 0x02000E /* i_file_acl should be zero */
355#define PR_2_DIR_ACL_ZERO 0x02000F /* i_dir_acl should be zero */
356#define PR_2_FRAG_ZERO 0x020010 /* i_frag should be zero */
357#define PR_2_FSIZE_ZERO 0x020011 /* i_fsize should be zero */
358#define PR_2_BAD_MODE 0x020012 /* inode has bad mode */
359#define PR_2_DIR_CORRUPTED 0x020013 /* directory corrupted */
360#define PR_2_FILENAME_LONG 0x020014 /* filename too long */
361#define PR_2_DIRECTORY_HOLE 0x020015 /* Directory inode has a missing block (hole) */
362#define PR_2_DOT_NULL_TERM 0x020016 /* '.' is not NULL terminated */
363#define PR_2_DOT_DOT_NULL_TERM 0x020017 /* '..' is not NULL terminated */
364#define PR_2_BAD_CHAR_DEV 0x020018 /* Illegal character device in inode */
365#define PR_2_BAD_BLOCK_DEV 0x020019 /* Illegal block device in inode */
366#define PR_2_DUP_DOT 0x02001A /* Duplicate '.' entry */
367#define PR_2_DUP_DOT_DOT 0x02001B /* Duplicate '..' entry */
368#define PR_2_NO_DIRINFO 0x02001C /* Internal error: couldn't find dir_info */
369#define PR_2_FINAL_RECLEN 0x02001D /* Final rec_len is wrong */
370#define PR_2_ALLOCATE_ICOUNT 0x02001E /* Error allocating icount structure */
371#define PR_2_DBLIST_ITERATE 0x02001F /* Error iterating over directory blocks */
372#define PR_2_READ_DIRBLOCK 0x020020 /* Error reading directory block */
373#define PR_2_WRITE_DIRBLOCK 0x020021 /* Error writing directory block */
374#define PR_2_ALLOC_DIRBOCK 0x020022 /* Error allocating new directory block */
375#define PR_2_DEALLOC_INODE 0x020023 /* Error deallocating inode */
376#define PR_2_SPLIT_DOT 0x020024 /* Directory entry for '.' is big. Split? */
377#define PR_2_BAD_FIFO 0x020025 /* Illegal FIFO */
378#define PR_2_BAD_SOCKET 0x020026 /* Illegal socket */
379#define PR_2_SET_FILETYPE 0x020027 /* Directory filetype not set */
380#define PR_2_BAD_FILETYPE 0x020028 /* Directory filetype incorrect */
381#define PR_2_CLEAR_FILETYPE 0x020029 /* Directory filetype set when it shouldn't be */
382#define PR_2_NULL_NAME 0x020030 /* Directory filename can't be zero-length */
383#define PR_2_INVALID_SYMLINK 0x020031 /* Invalid symlink */
384#define PR_2_FILE_ACL_BAD 0x020032 /* i_file_acl (extended attribute) is bad */
385#define PR_2_FEATURE_LARGE_FILES 0x020033 /* Filesystem contains large files, but has no such flag in sb */
386#define PR_2_HTREE_NOTREF 0x020034 /* Node in HTREE directory not referenced */
387#define PR_2_HTREE_DUPREF 0x020035 /* Node in HTREE directory referenced twice */
388#define PR_2_HTREE_MIN_HASH 0x020036 /* Node in HTREE directory has bad min hash */
389#define PR_2_HTREE_MAX_HASH 0x020037 /* Node in HTREE directory has bad max hash */
390#define PR_2_HTREE_CLEAR 0x020038 /* Clear invalid HTREE directory */
391#define PR_2_HTREE_BADBLK 0x02003A /* Bad block in htree interior node */
392#define PR_2_ADJ_EA_REFCOUNT 0x02003B /* Error adjusting EA refcount */
393#define PR_2_HTREE_BAD_ROOT 0x02003C /* Invalid HTREE root node */
394#define PR_2_HTREE_BAD_LIMIT 0x02003D /* Invalid HTREE limit */
395#define PR_2_HTREE_BAD_COUNT 0x02003E /* Invalid HTREE count */
396#define PR_2_HTREE_HASH_ORDER 0x02003F /* HTREE interior node has out-of-order hashes in table */
397#define PR_2_HTREE_BAD_DEPTH 0x020040 /* Node in HTREE directory has bad depth */
398#define PR_2_DUPLICATE_DIRENT 0x020041 /* Duplicate directory entry found */
399#define PR_2_NON_UNIQUE_FILE 0x020042 /* Non-unique filename found */
400#define PR_2_REPORT_DUP_DIRENT 0x020043 /* Duplicate directory entry found */
401
402/*
403 * Pass 3 errors
404 */
405
406#define PR_3_PASS_HEADER 0x030000 /* Pass 3: Checking directory connectivity */
407#define PR_3_NO_ROOT_INODE 0x030001 /* Root inode not allocated */
408#define PR_3_EXPAND_LF_DIR 0x030002 /* No room in lost+found */
409#define PR_3_UNCONNECTED_DIR 0x030003 /* Unconnected directory inode */
410#define PR_3_NO_LF_DIR 0x030004 /* /lost+found not found */
411#define PR_3_BAD_DOT_DOT 0x030005 /* .. entry is incorrect */
412#define PR_3_NO_LPF 0x030006 /* Bad or non-existent /lost+found. Cannot reconnect */
413#define PR_3_CANT_EXPAND_LPF 0x030007 /* Could not expand /lost+found */
414#define PR_3_CANT_RECONNECT 0x030008 /* Could not reconnect inode */
415#define PR_3_ERR_FIND_LPF 0x030009 /* Error while trying to find /lost+found */
416#define PR_3_ERR_LPF_NEW_BLOCK 0x03000A /* Error in ext2fs_new_block while creating /lost+found */
417#define PR_3_ERR_LPF_NEW_INODE 0x03000B /* Error in ext2fs_new_inode while creating /lost+found */
418#define PR_3_ERR_LPF_NEW_DIR_BLOCK 0x03000C /* Error in ext2fs_new_dir_block while creating /lost+found */
419#define PR_3_ERR_LPF_WRITE_BLOCK 0x03000D /* Error while writing directory block for /lost+found */
420#define PR_3_ADJUST_INODE 0x03000E /* Error while adjusting inode count */
421#define PR_3_FIX_PARENT_ERR 0x03000F /* Couldn't fix parent directory -- error */
422#define PR_3_FIX_PARENT_NOFIND 0x030010 /* Couldn't fix parent directory -- couldn't find it */
423#define PR_3_ALLOCATE_IBITMAP_ERROR 0x030011 /* Error allocating inode bitmap */
424#define PR_3_CREATE_ROOT_ERROR 0x030012 /* Error creating root directory */
425#define PR_3_CREATE_LPF_ERROR 0x030013 /* Error creating lost and found directory */
426#define PR_3_ROOT_NOT_DIR_ABORT 0x030014 /* Root inode is not directory; aborting */
427#define PR_3_NO_ROOT_INODE_ABORT 0x030015 /* Cannot proceed without a root inode. */
428#define PR_3_NO_DIRINFO 0x030016 /* Internal error: couldn't find dir_info */
429#define PR_3_LPF_NOTDIR 0x030017 /* Lost+found is not a directory */
430
431/*
432 * Pass 3a --- rehashing diretories
433 */
434#define PR_3A_PASS_HEADER 0x031000 /* Pass 3a: Reindexing directories */
435#define PR_3A_OPTIMIZE_ITER 0x031001 /* Error iterating over directories */
436#define PR_3A_OPTIMIZE_DIR_ERR 0x031002 /* Error rehash directory */
437#define PR_3A_OPTIMIZE_DIR_HEADER 0x031003 /* Rehashing dir header */
438#define PR_3A_OPTIMIZE_DIR 0x031004 /* Rehashing directory %d */
439#define PR_3A_OPTIMIZE_DIR_END 0x031005 /* Rehashing dir end */
440
441/*
442 * Pass 4 errors
443 */
444
445#define PR_4_PASS_HEADER 0x040000 /* Pass 4: Checking reference counts */
446#define PR_4_ZERO_LEN_INODE 0x040001 /* Unattached zero-length inode */
447#define PR_4_UNATTACHED_INODE 0x040002 /* Unattached inode */
448#define PR_4_BAD_REF_COUNT 0x040003 /* Inode ref count wrong */
449#define PR_4_INCONSISTENT_COUNT 0x040004 /* Inconsistent inode count information cached */
450
451/*
452 * Pass 5 errors
453 */
454
455#define PR_5_PASS_HEADER 0x050000 /* Pass 5: Checking group summary information */
456#define PR_5_INODE_BMAP_PADDING 0x050001 /* Padding at end of inode bitmap is not set. */
457#define PR_5_BLOCK_BMAP_PADDING 0x050002 /* Padding at end of block bitmap is not set. */
458#define PR_5_BLOCK_BITMAP_HEADER 0x050003 /* Block bitmap differences header */
459#define PR_5_BLOCK_UNUSED 0x050004 /* Block not used, but marked in bitmap */
460#define PR_5_BLOCK_USED 0x050005 /* Block used, but not marked used in bitmap */
461#define PR_5_BLOCK_BITMAP_END 0x050006 /* Block bitmap differences end */
462#define PR_5_INODE_BITMAP_HEADER 0x050007 /* Inode bitmap differences header */
463#define PR_5_INODE_UNUSED 0x050008 /* Inode not used, but marked in bitmap */
464#define PR_5_INODE_USED 0x050009 /* Inode used, but not marked used in bitmap */
465#define PR_5_INODE_BITMAP_END 0x05000A /* Inode bitmap differences end */
466#define PR_5_FREE_INODE_COUNT_GROUP 0x05000B /* Free inodes count for group wrong */
467#define PR_5_FREE_DIR_COUNT_GROUP 0x05000C /* Directories count for group wrong */
468#define PR_5_FREE_INODE_COUNT 0x05000D /* Free inodes count wrong */
469#define PR_5_FREE_BLOCK_COUNT_GROUP 0x05000E /* Free blocks count for group wrong */
470#define PR_5_FREE_BLOCK_COUNT 0x05000F /* Free blocks count wrong */
471#define PR_5_BMAP_ENDPOINTS 0x050010 /* Programming error: bitmap endpoints don't match */
472#define PR_5_FUDGE_BITMAP_ERROR 0x050011 /* Internal error: fudging end of bitmap */
473#define PR_5_COPY_IBITMAP_ERROR 0x050012 /* Error copying in replacement inode bitmap */
474#define PR_5_COPY_BBITMAP_ERROR 0x050013 /* Error copying in replacement block bitmap */
475#define PR_5_BLOCK_RANGE_UNUSED 0x050014 /* Block range not used, but marked in bitmap */
476#define PR_5_BLOCK_RANGE_USED 0x050015 /* Block range used, but not marked used in bitmap */
477#define PR_5_INODE_RANGE_UNUSED 0x050016 /* Inode range not used, but marked in bitmap */
478#define PR_5_INODE_RANGE_USED 0x050017 /* Inode rangeused, but not marked used in bitmap */
479
148 480
149/* 481/*
150 * The directory information structure; stores directory information 482 * The directory information structure; stores directory information