blob: ab5c4df7b6f8259dc90fcef328c8600a813e0590 [file] [log] [blame]
Theodore Ts'o21c84b71997-04-29 16:15:03 +00001/*
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
Theodore Ts'o1b6bf171997-10-03 17:48:10 +000012typedef __u32 problem_t;
13
Theodore Ts'o21c84b71997-04-29 16:15:03 +000014struct problem_context {
Theodore Ts'o1b6bf171997-10-03 17:48:10 +000015 errcode_t errcode;
Theodore Ts'o86c627e2001-01-11 15:12:14 +000016 ext2_ino_t ino, ino2, dir;
Theodore Ts'o21c84b71997-04-29 16:15:03 +000017 struct ext2_inode *inode;
18 struct ext2_dir_entry *dirent;
Theodore Ts'o15d482b2007-08-20 21:31:11 -040019 blk64_t blk, blk2;
Theodore Ts'o9d1bd3d1998-06-10 20:45:22 +000020 e2_blkcnt_t blkcount;
Theodore Ts'o246501c1998-03-24 16:22:38 +000021 int group;
22 __u64 num;
Theodore Ts'o1b6bf171997-10-03 17:48:10 +000023 const char *str;
Theodore Ts'o21c84b71997-04-29 16:15:03 +000024};
25
Theodore Ts'o21c84b71997-04-29 16:15:03 +000026/*
27 * We define a set of "latch groups"; these are problems which are
28 * handled as a set. The user answers once for a particular latch
29 * group.
30 */
Theodore Ts'o21afac02001-05-14 12:47:41 +000031#define PR_LATCH_MASK 0x0ff0 /* Latch mask */
Theodore Ts'o21c84b71997-04-29 16:15:03 +000032#define PR_LATCH_BLOCK 0x0010 /* Latch for illegal blocks (pass 1) */
33#define PR_LATCH_BBLOCK 0x0020 /* Latch for bad block inode blocks (pass 1) */
Theodore Ts'o1b6bf171997-10-03 17:48:10 +000034#define PR_LATCH_IBITMAP 0x0030 /* Latch for pass 5 inode bitmap proc. */
35#define PR_LATCH_BBITMAP 0x0040 /* Latch for pass 5 inode bitmap proc. */
36#define PR_LATCH_RELOC 0x0050 /* Latch for superblock relocate hint */
37#define PR_LATCH_DBLOCK 0x0060 /* Latch for pass 1b dup block headers */
Theodore Ts'o21afac02001-05-14 12:47:41 +000038#define PR_LATCH_LOW_DTIME 0x0070 /* Latch for pass1 orphaned list refugees */
Theodore Ts'oda307042002-05-21 21:19:14 -040039#define PR_LATCH_TOOBIG 0x0080 /* Latch for file to big errors */
Theodore Ts'o850d05e2002-07-25 00:00:08 -040040#define PR_LATCH_OPTIMIZE_DIR 0x0090 /* Latch for optimize directories */
Theodore Ts'o21c84b71997-04-29 16:15:03 +000041
42#define PR_LATCH(x) ((((x) & PR_LATCH_MASK) >> 4) - 1)
43
44/*
Theodore Ts'o1b6bf171997-10-03 17:48:10 +000045 * Latch group descriptor flags
46 */
47#define PRL_YES 0x0001 /* Answer yes */
48#define PRL_NO 0x0002 /* Answer no */
49#define PRL_LATCHED 0x0004 /* The latch group is latched */
50#define PRL_SUPPRESS 0x0008 /* Suppress all latch group questions */
51
52#define PRL_VARIABLE 0x000f /* All the flags that need to be reset */
53
54/*
Theodore Ts'o21c84b71997-04-29 16:15:03 +000055 * Pre-Pass 1 errors
56 */
57
58/* Block bitmap not in group */
59#define PR_0_BB_NOT_GROUP 0x000001
60
61/* Inode bitmap not in group */
62#define PR_0_IB_NOT_GROUP 0x000002
63
64/* Inode table not in group */
65#define PR_0_ITABLE_NOT_GROUP 0x000003
66
Theodore Ts'o1b6bf171997-10-03 17:48:10 +000067/* Superblock corrupt */
68#define PR_0_SB_CORRUPT 0x000004
69
70/* Filesystem size is wrong */
71#define PR_0_FS_SIZE_WRONG 0x000005
72
73/* Fragments not supported */
74#define PR_0_NO_FRAGMENTS 0x000006
75
76/* Bad blocks_per_group */
77#define PR_0_BLOCKS_PER_GROUP 0x000007
78
79/* Bad first_data_block */
80#define PR_0_FIRST_DATA_BLOCK 0x000008
81
82/* Adding UUID to filesystem */
83#define PR_0_ADD_UUID 0x000009
84
Theodore Ts'odb0691b2008-03-31 12:16:51 -040085/* Relocate hint */
Theodore Ts'o1b6bf171997-10-03 17:48:10 +000086#define PR_0_RELOCATE_HINT 0x00000A
87
88/* Miscellaneous superblock corruption */
89#define PR_0_MISC_CORRUPT_SUPER 0x00000B
Theodore Ts'odb0691b2008-03-31 12:16:51 -040090
Theodore Ts'o1b6bf171997-10-03 17:48:10 +000091/* Error determing physical device size of filesystem */
92#define PR_0_GETSIZE_ERROR 0x00000C
93
Theodore Ts'od4b0ce01999-06-18 01:09:29 +000094/* Inode count in the superblock incorrect */
95#define PR_0_INODE_COUNT_WRONG 0x00000D
96
Theodore Ts'o4ea0a112000-05-08 13:33:17 +000097/* The Hurd does not support the filetype feature */
98#define PR_0_HURD_CLEAR_FILETYPE 0x00000E
Theodore Ts'o3b5386d2000-08-14 14:25:19 +000099
100/* Journal inode is invalid */
101#define PR_0_JOURNAL_BAD_INODE 0x00000F
102
Theodore Ts'oadee8d72001-07-23 00:17:49 -0400103/* The external journal has multiple filesystems (which we can't handle yet) */
104#define PR_0_JOURNAL_UNSUPP_MULTIFS 0x000010
Theodore Ts'o3b5386d2000-08-14 14:25:19 +0000105
Theodore Ts'oadee8d72001-07-23 00:17:49 -0400106/* Can't find external journal */
107#define PR_0_CANT_FIND_JOURNAL 0x000011
Theodore Ts'o3b5386d2000-08-14 14:25:19 +0000108
Theodore Ts'oadee8d72001-07-23 00:17:49 -0400109/* External journal has bad superblock */
110#define PR_0_EXT_JOURNAL_BAD_SUPER 0x000012
Theodore Ts'o3b5386d2000-08-14 14:25:19 +0000111
112/* Superblock has a bad journal UUID */
113#define PR_0_JOURNAL_BAD_UUID 0x000013
114
115/* Journal has an unknown superblock type */
116#define PR_0_JOURNAL_UNSUPP_SUPER 0x000014
117
118/* Journal superblock is corrupt */
119#define PR_0_JOURNAL_BAD_SUPER 0x000015
120
121/* Journal superblock is corrupt */
122#define PR_0_JOURNAL_HAS_JOURNAL 0x000016
123
124/* Superblock has recovery flag set but no journal */
125#define PR_0_JOURNAL_RECOVER_SET 0x000017
126
Theodore Ts'od37066a2001-12-21 23:28:54 -0500127/* Journal has data, but recovery flag is clear */
128#define PR_0_JOURNAL_RECOVERY_CLEAR 0x000018
Theodore Ts'o3b5386d2000-08-14 14:25:19 +0000129
Theodore Ts'od37066a2001-12-21 23:28:54 -0500130/* Ask if we should clear the journal */
131#define PR_0_JOURNAL_RESET_JOURNAL 0x000019
Theodore Ts'o3b5386d2000-08-14 14:25:19 +0000132
Theodore Ts'o060b5fb2000-12-13 18:07:23 +0000133/* Filesystem revision is 0, but feature flags are set */
134#define PR_0_FS_REV_LEVEL 0x00001A
135
Theodore Ts'oecf1b772000-08-20 22:06:31 +0000136/* Clearing orphan inode */
Theodore Ts'o83949022000-10-25 01:38:50 +0000137#define PR_0_ORPHAN_CLEAR_INODE 0x000020
Theodore Ts'odb0691b2008-03-31 12:16:51 -0400138
Theodore Ts'o80bfaa32000-08-18 15:08:37 +0000139/* Illegal block found in orphaned inode */
Theodore Ts'oecf1b772000-08-20 22:06:31 +0000140#define PR_0_ORPHAN_ILLEGAL_BLOCK_NUM 0x000021
Theodore Ts'o80bfaa32000-08-18 15:08:37 +0000141
142/* Already cleared block found in orphaned inode */
Theodore Ts'oecf1b772000-08-20 22:06:31 +0000143#define PR_0_ORPHAN_ALREADY_CLEARED_BLOCK 0x000022
Theodore Ts'odb0691b2008-03-31 12:16:51 -0400144
Theodore Ts'o80bfaa32000-08-18 15:08:37 +0000145/* Illegal orphan inode in superblock */
Theodore Ts'oecf1b772000-08-20 22:06:31 +0000146#define PR_0_ORPHAN_ILLEGAL_HEAD_INODE 0x000023
Theodore Ts'o80bfaa32000-08-18 15:08:37 +0000147
148/* Illegal inode in orphaned inode list */
Theodore Ts'oecf1b772000-08-20 22:06:31 +0000149#define PR_0_ORPHAN_ILLEGAL_INODE 0x000024
Theodore Ts'o80bfaa32000-08-18 15:08:37 +0000150
Theodore Ts'o424cd2b2001-05-14 04:06:56 +0000151/* Journal has unsupported read-only feature - abort */
152#define PR_0_JOURNAL_UNSUPP_ROCOMPAT 0x000025
153
154/* Journal has unsupported incompatible feature - abort */
155#define PR_0_JOURNAL_UNSUPP_INCOMPAT 0x000026
156
Theodore Ts'oc7f23362001-05-23 22:19:47 +0000157/* Journal has unsupported version number */
Theodore Ts'o2f686ac2001-06-02 00:38:40 +0000158#define PR_0_JOURNAL_UNSUPP_VERSION 0x000027
Theodore Ts'oc7f23362001-05-23 22:19:47 +0000159
Theodore Ts'o773fd8a2001-10-06 21:26:27 -0400160/* Moving journal to hidden file */
161#define PR_0_MOVE_JOURNAL 0x000028
162
163/* Error moving journal */
164#define PR_0_ERR_MOVE_JOURNAL 0x000029
165
Theodore Ts'o62e3e7f2001-10-07 02:13:30 -0400166/* Clearing V2 journal superblock */
167#define PR_0_CLEAR_V2_JOURNAL 0x00002A
168
Theodore Ts'od37066a2001-12-21 23:28:54 -0500169/* Run journal anyway */
170#define PR_0_JOURNAL_RUN 0x00002B
171
172/* Run journal anyway by default */
173#define PR_0_JOURNAL_RUN_DEFAULT 0x00002C
174
Theodore Ts'oa435ec32003-08-21 00:40:26 -0400175/* Backup journal inode blocks */
176#define PR_0_BACKUP_JNL 0x00002D
177
Theodore Ts'oe75cfc52004-12-16 20:13:45 -0500178/* Reserved blocks w/o resize_inode */
179#define PR_0_NONZERO_RESERVED_GDT_BLOCKS 0x00002E
180
181/* Resize_inode not enabled, but resize inode is non-zero */
182#define PR_0_CLEAR_RESIZE_INODE 0x00002F
183
Theodore Ts'oc3ffaf82004-12-24 01:42:22 -0500184/* Resize inode invalid */
185#define PR_0_RESIZE_INODE_INVALID 0x000030
186
Theodore Ts'o8dceb922005-09-24 21:59:45 -0400187/* Last mount time is in the future */
188#define PR_0_FUTURE_SB_LAST_MOUNT 0x000031
189
190/* Last write time is in the future */
191#define PR_0_FUTURE_SB_LAST_WRITE 0x000032
192
Theodore Ts'ob1c52b22006-03-10 15:25:59 -0500193/* Superblock hint for external journal incorrect */
194#define PR_0_EXTERNAL_JOURNAL_HINT 0x000033
195
Theodore Ts'of77704e2006-11-11 22:32:35 -0500196/* Superblock hint for external journal incorrect */
197#define PR_0_DIRHASH_HINT 0x000034
198
Jose R. Santos49a73602007-10-21 21:04:03 -0500199/* Group descriptor N checksum is invalid */
200#define PR_0_GDT_CSUM 0x000035
201
202/* Group descriptor N marked uninitialized without feature set. */
203#define PR_0_GDT_UNINIT 0x000036
204
205/* Block bitmap is not initialised and Inode bitmap is */
206#define PR_0_BB_UNINIT_IB_INIT 0x000037
207
208/* Group descriptor N has invalid unused inodes count. */
209#define PR_0_GDT_ITABLE_UNUSED 0x000038
210
Andreas Dilger0d5439c2008-03-31 12:14:22 -0400211/* Last group block bitmap is uninitialized. */
212#define PR_0_BB_UNINIT_LAST 0x000039
213
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000214/*
215 * Pass 1 errors
216 */
217
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000218/* Pass 1: Checking inodes, blocks, and sizes */
219#define PR_1_PASS_HEADER 0x010000
220
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000221/* Root directory is not an inode */
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000222#define PR_1_ROOT_NO_DIR 0x010001
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000223
224/* Root directory has dtime set */
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000225#define PR_1_ROOT_DTIME 0x010002
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000226
227/* Reserved inode has bad mode */
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000228#define PR_1_RESERVED_BAD_MODE 0x010003
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000229
230/* Deleted inode has zero dtime */
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000231#define PR_1_ZERO_DTIME 0x010004
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000232
233/* Inode in use, but dtime set */
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000234#define PR_1_SET_DTIME 0x010005
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000235
236/* Zero-length directory */
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000237#define PR_1_ZERO_LENGTH_DIR 0x010006
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000238
239/* Block bitmap conflicts with some other fs block */
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000240#define PR_1_BB_CONFLICT 0x010007
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000241
242/* Inode bitmap conflicts with some other fs block */
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000243#define PR_1_IB_CONFLICT 0x010008
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000244
245/* Inode table conflicts with some other fs block */
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000246#define PR_1_ITABLE_CONFLICT 0x010009
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000247
248/* Block bitmap is on a bad block */
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000249#define PR_1_BB_BAD_BLOCK 0x01000A
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000250
251/* Inode bitmap is on a bad block */
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000252#define PR_1_IB_BAD_BLOCK 0x01000B
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000253
254/* Inode has incorrect i_size */
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000255#define PR_1_BAD_I_SIZE 0x01000C
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000256
257/* Inode has incorrect i_blocks */
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000258#define PR_1_BAD_I_BLOCKS 0x01000D
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000259
260/* Illegal block number in inode */
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000261#define PR_1_ILLEGAL_BLOCK_NUM 0x01000E
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000262
263/* Block number overlaps fs metadata */
264#define PR_1_BLOCK_OVERLAPS_METADATA 0x01000F
265
266/* Inode has illegal blocks (latch question) */
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000267#define PR_1_INODE_BLOCK_LATCH 0x010010
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000268
269/* Too many bad blocks in inode */
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000270#define PR_1_TOO_MANY_BAD_BLOCKS 0x010011
Theodore Ts'odb0691b2008-03-31 12:16:51 -0400271
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000272/* Illegal block number in bad block inode */
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000273#define PR_1_BB_ILLEGAL_BLOCK_NUM 0x010012
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000274
275/* Bad block inode has illegal blocks (latch question) */
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000276#define PR_1_INODE_BBLOCK_LATCH 0x010013
277
278/* Duplicate or bad blocks in use! */
279#define PR_1_DUP_BLOCKS_PREENSTOP 0x010014
Theodore Ts'odb0691b2008-03-31 12:16:51 -0400280
281/* Bad block used as bad block indirect block */
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000282#define PR_1_BBINODE_BAD_METABLOCK 0x010015
283
284/* Inconsistency can't be fixed prompt */
285#define PR_1_BBINODE_BAD_METABLOCK_PROMPT 0x010016
Theodore Ts'odb0691b2008-03-31 12:16:51 -0400286
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000287/* Bad primary block */
Theodore Ts'ob2f93192000-12-30 20:33:42 +0000288#define PR_1_BAD_PRIMARY_BLOCK 0x010017
Theodore Ts'odb0691b2008-03-31 12:16:51 -0400289
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000290/* Bad primary block prompt */
Theodore Ts'ob2f93192000-12-30 20:33:42 +0000291#define PR_1_BAD_PRIMARY_BLOCK_PROMPT 0x010018
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000292
293/* Bad primary superblock */
Theodore Ts'ob2f93192000-12-30 20:33:42 +0000294#define PR_1_BAD_PRIMARY_SUPERBLOCK 0x010019
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000295
296/* Bad primary block group descriptors */
Theodore Ts'ob2f93192000-12-30 20:33:42 +0000297#define PR_1_BAD_PRIMARY_GROUP_DESCRIPTOR 0x01001A
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000298
299/* Bad superblock in group */
Theodore Ts'ob2f93192000-12-30 20:33:42 +0000300#define PR_1_BAD_SUPERBLOCK 0x01001B
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000301
302/* Bad block group descriptors in group */
Theodore Ts'ob2f93192000-12-30 20:33:42 +0000303#define PR_1_BAD_GROUP_DESCRIPTORS 0x01001C
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000304
Theodore Ts'odb0691b2008-03-31 12:16:51 -0400305/* Block claimed for no reason */
Theodore Ts'ob2f93192000-12-30 20:33:42 +0000306#define PR_1_PROGERR_CLAIMED_BLOCK 0x01001D
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000307
Theodore Ts'of8188ff1997-11-14 05:23:04 +0000308/* Error allocating blocks for relocating metadata */
Theodore Ts'ob2f93192000-12-30 20:33:42 +0000309#define PR_1_RELOC_BLOCK_ALLOCATE 0x01001E
Theodore Ts'odb0691b2008-03-31 12:16:51 -0400310
Theodore Ts'of8188ff1997-11-14 05:23:04 +0000311/* Error allocating block buffer during relocation process */
Theodore Ts'ob2f93192000-12-30 20:33:42 +0000312#define PR_1_RELOC_MEMORY_ALLOCATE 0x01001F
Theodore Ts'odb0691b2008-03-31 12:16:51 -0400313
314/* Relocating metadata group information from X to Y */
Theodore Ts'ob2f93192000-12-30 20:33:42 +0000315#define PR_1_RELOC_FROM_TO 0x010020
Theodore Ts'odb0691b2008-03-31 12:16:51 -0400316
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000317/* Relocating metatdata group information to X */
Theodore Ts'ob2f93192000-12-30 20:33:42 +0000318#define PR_1_RELOC_TO 0x010021
Theodore Ts'odb0691b2008-03-31 12:16:51 -0400319
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000320/* Block read error during relocation process */
Theodore Ts'ob2f93192000-12-30 20:33:42 +0000321#define PR_1_RELOC_READ_ERR 0x010022
Theodore Ts'odb0691b2008-03-31 12:16:51 -0400322
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000323/* Block write error during relocation process */
Theodore Ts'ob2f93192000-12-30 20:33:42 +0000324#define PR_1_RELOC_WRITE_ERR 0x010023
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000325
326/* Error allocating inode bitmap */
Theodore Ts'ob2f93192000-12-30 20:33:42 +0000327#define PR_1_ALLOCATE_IBITMAP_ERROR 0x010024
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000328
329/* Error allocating block bitmap */
Theodore Ts'ob2f93192000-12-30 20:33:42 +0000330#define PR_1_ALLOCATE_BBITMAP_ERROR 0x010025
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000331
332/* Error allocating icount structure */
Theodore Ts'ob2f93192000-12-30 20:33:42 +0000333#define PR_1_ALLOCATE_ICOUNT 0x010026
Theodore Ts'odb0691b2008-03-31 12:16:51 -0400334
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000335/* Error allocating dbcount */
Theodore Ts'ob2f93192000-12-30 20:33:42 +0000336#define PR_1_ALLOCATE_DBCOUNT 0x010027
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000337
338/* Error while scanning inodes */
Theodore Ts'ob2f93192000-12-30 20:33:42 +0000339#define PR_1_ISCAN_ERROR 0x010028
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000340
341/* Error while iterating over blocks */
Theodore Ts'ob2f93192000-12-30 20:33:42 +0000342#define PR_1_BLOCK_ITERATE 0x010029
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000343
Theodore Ts'odb0691b2008-03-31 12:16:51 -0400344/* Error while storing inode count information */
Theodore Ts'ob2f93192000-12-30 20:33:42 +0000345#define PR_1_ICOUNT_STORE 0x01002A
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000346
Theodore Ts'odb0691b2008-03-31 12:16:51 -0400347/* Error while storing directory block information */
Theodore Ts'ob2f93192000-12-30 20:33:42 +0000348#define PR_1_ADD_DBLOCK 0x01002B
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000349
350/* Error while reading inode (for clearing) */
Theodore Ts'ob2f93192000-12-30 20:33:42 +0000351#define PR_1_READ_INODE 0x01002C
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000352
Theodore Ts'of8188ff1997-11-14 05:23:04 +0000353/* Suppress messages prompt */
Theodore Ts'ob2f93192000-12-30 20:33:42 +0000354#define PR_1_SUPPRESS_MESSAGES 0x01002D
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000355
Theodore Ts'o6fdc7a31999-11-10 13:34:40 +0000356/* Imagic flag set on an inode when filesystem doesn't support it */
357#define PR_1_SET_IMAGIC 0x01002F
358
359/* Immutable flag set on a device or socket inode */
360#define PR_1_SET_IMMUTABLE 0x010030
Theodore Ts'o19178752000-02-11 15:55:07 +0000361
362/* Compression flag set on a non-compressed filesystem */
363#define PR_1_COMPR_SET 0x010031
364
Theodore Ts'od647a1e2000-05-27 14:40:09 +0000365/* Non-zero size on on device, fifo or socket inode */
366#define PR_1_SET_NONZSIZE 0x010032
367
Theodore Ts'o060b5fb2000-12-13 18:07:23 +0000368/* Filesystem revision is 0, but feature flags are set */
369#define PR_1_FS_REV_LEVEL 0x010033
370
Theodore Ts'of18996c2001-01-03 16:57:24 +0000371/* Journal inode not in use, needs clearing */
Theodore Ts'oa9ca2012001-01-12 21:53:25 +0000372#define PR_1_JOURNAL_INODE_NOT_CLEAR 0x010034
Theodore Ts'of18996c2001-01-03 16:57:24 +0000373
Theodore Ts'oa9ca2012001-01-12 21:53:25 +0000374/* Journal inode has wrong mode */
375#define PR_1_JOURNAL_BAD_MODE 0x010035
Theodore Ts'o21afac02001-05-14 12:47:41 +0000376
377/* Inode that was part of orphan linked list */
378#define PR_1_LOW_DTIME 0x010036
379
380/* Latch question which asks how to deal with low dtime inodes */
381#define PR_1_ORPHAN_LIST_REFUGEES 0x010037
Theodore Ts'o342d8472001-07-02 11:54:09 -0400382
383/* Error allocating refcount structure */
384#define PR_1_ALLOCATE_REFCOUNT 0x010038
Theodore Ts'odb0691b2008-03-31 12:16:51 -0400385
Theodore Ts'o342d8472001-07-02 11:54:09 -0400386/* Error reading Extended Attribute block */
387#define PR_1_READ_EA_BLOCK 0x010039
388
389/* Invalid Extended Attribute block */
390#define PR_1_BAD_EA_BLOCK 0x01003A
391
Theodore Ts'oe8a3ee62001-07-07 11:12:50 -0400392/* Error reading Extended Attribute block while fixing refcount -- abort */
393#define PR_1_EXTATTR_READ_ABORT 0x01003B
394
395/* Extended attribute reference count incorrect */
396#define PR_1_EXTATTR_REFCOUNT 0x01003C
397
Theodore Ts'odb0691b2008-03-31 12:16:51 -0400398/* Error writing Extended Attribute block while fixing refcount */
Theodore Ts'oe8a3ee62001-07-07 11:12:50 -0400399#define PR_1_EXTATTR_WRITE 0x01003D
Theodore Ts'o55fd07e2001-07-19 16:31:25 -0400400
401/* Multiple EA blocks not supported */
402#define PR_1_EA_MULTI_BLOCK 0x01003E
403
404/* Error allocating EA region allocation structure */
405#define PR_1_EA_ALLOC_REGION 0x01003F
Andreas Dilgerb94a0522002-05-18 13:16:30 -0600406
Theodore Ts'o55fd07e2001-07-19 16:31:25 -0400407/* Error EA allocation collision */
408#define PR_1_EA_ALLOC_COLLISION 0x010040
Andreas Dilgerb94a0522002-05-18 13:16:30 -0600409
Theodore Ts'o55fd07e2001-07-19 16:31:25 -0400410/* Bad extended attribute name */
411#define PR_1_EA_BAD_NAME 0x010041
412
413/* Bad extended attribute value */
Andreas Dilgerb94a0522002-05-18 13:16:30 -0600414#define PR_1_EA_BAD_VALUE 0x010042
415
Theodore Ts'oda307042002-05-21 21:19:14 -0400416/* Inode too big (latch question) */
417#define PR_1_INODE_TOOBIG 0x010043
418
419/* Directory too big */
420#define PR_1_TOOBIG_DIR 0x010044
421
422/* Regular file too big */
423#define PR_1_TOOBIG_REG 0x010045
424
425/* Symlink too big */
426#define PR_1_TOOBIG_SYMLINK 0x010046
427
Theodore Ts'o8fdc9982002-06-25 23:26:34 -0400428/* INDEX_FL flag set on a non-HTREE filesystem */
429#define PR_1_HTREE_SET 0x010047
430
Theodore Ts'odb0691b2008-03-31 12:16:51 -0400431/* INDEX_FL flag set on a non-directory */
Theodore Ts'o503f9e72002-06-26 16:52:10 -0400432#define PR_1_HTREE_NODIR 0x010048
433
Theodore Ts'odb0691b2008-03-31 12:16:51 -0400434/* Invalid root node in HTREE directory */
Theodore Ts'o503f9e72002-06-26 16:52:10 -0400435#define PR_1_HTREE_BADROOT 0x010049
436
Theodore Ts'odb0691b2008-03-31 12:16:51 -0400437/* Unsupported hash version in HTREE directory */
Theodore Ts'o503f9e72002-06-26 16:52:10 -0400438#define PR_1_HTREE_HASHV 0x01004A
439
Theodore Ts'odb0691b2008-03-31 12:16:51 -0400440/* Incompatible flag in HTREE root node */
Theodore Ts'o503f9e72002-06-26 16:52:10 -0400441#define PR_1_HTREE_INCOMPAT 0x01004B
442
Theodore Ts'odb0691b2008-03-31 12:16:51 -0400443/* HTREE too deep */
Theodore Ts'o503f9e72002-06-26 16:52:10 -0400444#define PR_1_HTREE_DEPTH 0x01004C
445
Theodore Ts'o000ba402003-11-21 10:41:58 -0500446/* Bad block has indirect block that conflicts with filesystem block */
447#define PR_1_BB_FS_BLOCK 0x01004D
448
Theodore Ts'oc3ffaf82004-12-24 01:42:22 -0500449/* Resize inode failed */
450#define PR_1_RESIZE_INODE_CREATE 0x01004E
451
Theodore Ts'odb0691b2008-03-31 12:16:51 -0400452/* inode->i_size is too long */
Theodore Ts'ocebe48a2005-03-21 13:15:45 -0500453#define PR_1_EXTRA_ISIZE 0x01004F
454
455/* attribute name is too long */
456#define PR_1_ATTR_NAME_LEN 0x010050
457
458/* wrong EA value offset */
459#define PR_1_ATTR_VALUE_OFFSET 0x010051
460
461/* wrong EA blocknumber */
462#define PR_1_ATTR_VALUE_BLOCK 0x010052
463
464/* wrong EA value size */
465#define PR_1_ATTR_VALUE_SIZE 0x010053
466
467/* wrong EA hash value */
468#define PR_1_ATTR_HASH 0x010054
469
Theodore Ts'ofbc3f902007-04-02 10:08:59 -0400470/* inode appears to be a directory */
471#define PR_1_TREAT_AS_DIRECTORY 0x010055
472
Theodore Ts'o15d482b2007-08-20 21:31:11 -0400473/* Error while reading extent tree */
474#define PR_1_READ_EXTENT 0x010056
475
476/* Error deleting a bogus extent */
477#define PR_1_EXTENT_DELETE_FAIL 0x010057
478
479/* Bad starting block in extent */
480#define PR_1_EXTENT_BAD_START_BLK 0x010058
481
482/* Extent ends beyond filesystem */
483#define PR_1_EXTENT_ENDS_BEYOND 0x010059
484
485/* EXTENTS_FL flag set on a non-extents capable filesystem */
486#define PR_1_EXTENTS_SET 0x01005A
487
488/* inode has extents, superblock missing INCOMPAT_EXTENTS feature */
489#define PR_1_EXTENT_FEATURE 0x01005B
490
491/* inode missing EXTENTS_FL, but is an extent inode */
492#define PR_1_UNSET_EXTENT_FL 0x01005C
493
Theodore Ts'oee19c902008-03-13 23:13:18 -0400494/* Fast symlink has EXTENTS_FL set */
495#define PR_1_FAST_SYMLINK_EXTENT_FL 0x01005D
496
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000497/*
498 * Pass 1b errors
499 */
500
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000501/* Pass 1B: Rescan for duplicate/bad blocks */
502#define PR_1B_PASS_HEADER 0x011000
503
504/* Duplicate/bad block(s) header */
505#define PR_1B_DUP_BLOCK_HEADER 0x011001
506
507/* Duplicate/bad block(s) in inode */
508#define PR_1B_DUP_BLOCK 0x011002
509
510/* Duplicate/bad block(s) end */
511#define PR_1B_DUP_BLOCK_END 0x011003
Theodore Ts'odb0691b2008-03-31 12:16:51 -0400512
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000513/* Error while scanning inodes */
514#define PR_1B_ISCAN_ERROR 0x011004
515
516/* Error allocating inode bitmap */
517#define PR_1B_ALLOCATE_IBITMAP_ERROR 0x011005
518
Theodore Ts'o133a56d2000-11-17 05:40:49 +0000519/* Error while iterating over blocks */
520#define PR_1B_BLOCK_ITERATE 0x0110006
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000521
Theodore Ts'o0684a4f2002-08-17 10:19:44 -0400522/* Error adjusting EA refcount */
523#define PR_1B_ADJ_EA_REFCOUNT 0x0110007
524
525
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000526/* Pass 1C: Scan directories for inodes with dup blocks. */
527#define PR_1C_PASS_HEADER 0x012000
528
529
530/* Pass 1D: Reconciling duplicate blocks */
531#define PR_1D_PASS_HEADER 0x013000
532
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000533/* File has duplicate blocks */
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000534#define PR_1D_DUP_FILE 0x013001
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000535
Theodore Ts'odb0691b2008-03-31 12:16:51 -0400536/* List of files sharing duplicate blocks */
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000537#define PR_1D_DUP_FILE_LIST 0x013002
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000538
Theodore Ts'odb0691b2008-03-31 12:16:51 -0400539/* File sharing blocks with filesystem metadata */
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000540#define PR_1D_SHARE_METADATA 0x013003
Theodore Ts'o521e3681997-04-29 17:48:10 +0000541
Theodore Ts'odb0691b2008-03-31 12:16:51 -0400542/* Report of how many duplicate/bad inodes */
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000543#define PR_1D_NUM_DUP_INODES 0x013004
544
545/* Duplicated blocks already reassigned or cloned. */
546#define PR_1D_DUP_BLOCKS_DEALT 0x013005
547
548/* Clone duplicate/bad blocks? */
549#define PR_1D_CLONE_QUESTION 0x013006
550
551/* Delete file? */
552#define PR_1D_DELETE_QUESTION 0x013007
553
554/* Couldn't clone file (error) */
555#define PR_1D_CLONE_ERROR 0x013008
Theodore Ts'odb0691b2008-03-31 12:16:51 -0400556
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000557/*
558 * Pass 2 errors
559 */
560
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000561/* Pass 2: Checking directory structure */
562#define PR_2_PASS_HEADER 0x020000
563
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000564/* Bad inode number for '.' */
565#define PR_2_BAD_INODE_DOT 0x020001
566
567/* Directory entry has bad inode number */
568#define PR_2_BAD_INO 0x020002
569
570/* Directory entry has deleted or unused inode */
571#define PR_2_UNUSED_INODE 0x020003
572
573/* Directry entry is link to '.' */
574#define PR_2_LINK_DOT 0x020004
575
576/* Directory entry points to inode now located in a bad block */
577#define PR_2_BB_INODE 0x020005
578
579/* Directory entry contains a link to a directory */
580#define PR_2_LINK_DIR 0x020006
581
582/* Directory entry contains a link to the root directry */
583#define PR_2_LINK_ROOT 0x020007
584
585/* Directory entry has illegal characters in its name */
586#define PR_2_BAD_NAME 0x020008
587
Theodore Ts'odb0691b2008-03-31 12:16:51 -0400588/* Missing '.' in directory inode */
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000589#define PR_2_MISSING_DOT 0x020009
590
Theodore Ts'odb0691b2008-03-31 12:16:51 -0400591/* Missing '..' in directory inode */
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000592#define PR_2_MISSING_DOT_DOT 0x02000A
593
594/* First entry in directory inode doesn't contain '.' */
595#define PR_2_1ST_NOT_DOT 0x02000B
596
597/* Second entry in directory inode doesn't contain '..' */
598#define PR_2_2ND_NOT_DOT_DOT 0x02000C
599
600/* i_faddr should be zero */
601#define PR_2_FADDR_ZERO 0x02000D
602
603/* i_file_acl should be zero */
604#define PR_2_FILE_ACL_ZERO 0x02000E
605
606/* i_dir_acl should be zero */
607#define PR_2_DIR_ACL_ZERO 0x02000F
608
609/* i_frag should be zero */
610#define PR_2_FRAG_ZERO 0x020010
611
612/* i_fsize should be zero */
613#define PR_2_FSIZE_ZERO 0x020011
Theodore Ts'odb0691b2008-03-31 12:16:51 -0400614
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000615/* inode has bad mode */
616#define PR_2_BAD_MODE 0x020012
617
618/* directory corrupted */
619#define PR_2_DIR_CORRUPTED 0x020013
Theodore Ts'odb0691b2008-03-31 12:16:51 -0400620
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000621/* filename too long */
622#define PR_2_FILENAME_LONG 0x020014
Theodore Ts'odb0691b2008-03-31 12:16:51 -0400623
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000624/* Directory inode has a missing block (hole) */
625#define PR_2_DIRECTORY_HOLE 0x020015
626
627/* '.' is not NULL terminated */
628#define PR_2_DOT_NULL_TERM 0x020016
629
630/* '..' is not NULL terminated */
631#define PR_2_DOT_DOT_NULL_TERM 0x020017
632
Theodore Ts'o7cf73dc1997-08-14 17:17:16 +0000633/* Illegal character device in inode */
634#define PR_2_BAD_CHAR_DEV 0x020018
635
636/* Illegal block device in inode */
637#define PR_2_BAD_BLOCK_DEV 0x020019
638
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000639/* Duplicate '.' entry */
640#define PR_2_DUP_DOT 0x02001A
641
642/* Duplicate '..' entry */
643#define PR_2_DUP_DOT_DOT 0x02001B
Theodore Ts'odb0691b2008-03-31 12:16:51 -0400644
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000645/* Internal error: couldn't find dir_info */
646#define PR_2_NO_DIRINFO 0x02001C
647
648/* Final rec_len is wrong */
649#define PR_2_FINAL_RECLEN 0x02001D
650
651/* Error allocating icount structure */
652#define PR_2_ALLOCATE_ICOUNT 0x02001E
653
654/* Error iterating over directory blocks */
655#define PR_2_DBLIST_ITERATE 0x02001F
656
657/* Error reading directory block */
658#define PR_2_READ_DIRBLOCK 0x020020
659
660/* Error writing directory block */
661#define PR_2_WRITE_DIRBLOCK 0x020021
662
663/* Error allocating new directory block */
664#define PR_2_ALLOC_DIRBOCK 0x020022
665
666/* Error deallocating inode */
667#define PR_2_DEALLOC_INODE 0x020023
668
Theodore Ts'of8188ff1997-11-14 05:23:04 +0000669/* Directory entry for '.' is big. Split? */
Theodore Ts'o7142db01999-11-08 18:46:54 +0000670#define PR_2_SPLIT_DOT 0x020024
Theodore Ts'of8188ff1997-11-14 05:23:04 +0000671
Theodore Ts'o1dde43f1998-11-14 04:18:28 +0000672/* Illegal FIFO */
673#define PR_2_BAD_FIFO 0x020025
674
675/* Illegal socket */
676#define PR_2_BAD_SOCKET 0x020026
677
Theodore Ts'oaa4115a1999-10-21 19:33:18 +0000678/* Directory filetype not set */
679#define PR_2_SET_FILETYPE 0x020027
680
681/* Directory filetype incorrect */
682#define PR_2_BAD_FILETYPE 0x020028
683
Theodore Ts'o7847c1d1999-10-22 15:11:42 +0000684/* Directory filetype set when it shouldn't be */
685#define PR_2_CLEAR_FILETYPE 0x020029
686
Theodore Ts'oc40db6d1999-10-25 21:03:34 +0000687/* Directory filename can't be zero-length */
688#define PR_2_NULL_NAME 0x020030
689
Theodore Ts'obcf9c5d2002-05-21 09:14:17 -0400690/* Invalid symlink */
691#define PR_2_INVALID_SYMLINK 0x020031
Theodore Ts'ofdbdea02001-06-02 04:26:26 +0000692
Theodore Ts'o342d8472001-07-02 11:54:09 -0400693/* i_file_acl (extended attribute) is bad */
694#define PR_2_FILE_ACL_BAD 0x020032
695
Theodore Ts'oa4742692001-08-09 04:14:04 -0400696/* Filesystem contains large files, but has no such flag in sb */
697#define PR_2_FEATURE_LARGE_FILES 0x020033
698
Theodore Ts'o8fdc9982002-06-25 23:26:34 -0400699/* Node in HTREE directory not referenced */
700#define PR_2_HTREE_NOTREF 0x020034
701
702/* Node in HTREE directory referenced twice */
703#define PR_2_HTREE_DUPREF 0x020035
704
705/* Node in HTREE directory has bad min hash */
706#define PR_2_HTREE_MIN_HASH 0x020036
707
708/* Node in HTREE directory has bad max hash */
709#define PR_2_HTREE_MAX_HASH 0x020037
710
711/* Clear invalid HTREE directory */
712#define PR_2_HTREE_CLEAR 0x020038
713
714/* Clear the htree flag forcibly */
Theodore Ts'o33db8f82005-02-05 10:28:15 -0500715/* #define PR_2_HTREE_FCLR 0x020039 */
Theodore Ts'o8fdc9982002-06-25 23:26:34 -0400716
717/* Bad block in htree interior node */
718#define PR_2_HTREE_BADBLK 0x02003A
719
Theodore Ts'o0684a4f2002-08-17 10:19:44 -0400720/* Error adjusting EA refcount */
721#define PR_2_ADJ_EA_REFCOUNT 0x02003B
722
Theodore Ts'oea1959f2002-08-31 02:32:41 -0400723/* Invalid HTREE root node */
724#define PR_2_HTREE_BAD_ROOT 0x02003C
725
Theodore Ts'oad4fa462002-09-30 11:19:19 -0400726/* Invalid HTREE limit */
727#define PR_2_HTREE_BAD_LIMIT 0x02003D
728
729/* Invalid HTREE count */
730#define PR_2_HTREE_BAD_COUNT 0x02003E
731
732/* HTREE interior node has out-of-order hashes in table */
733#define PR_2_HTREE_HASH_ORDER 0x02003F
734
735/* Node in HTREE directory has bad depth */
Theodore Ts'ob0700a12003-03-14 01:43:56 -0500736#define PR_2_HTREE_BAD_DEPTH 0x020040
737
738/* Duplicate directory entry found */
739#define PR_2_DUPLICATE_DIRENT 0x020041
740
741/* Non-unique filename found */
742#define PR_2_NON_UNIQUE_FILE 0x020042
Theodore Ts'oad4fa462002-09-30 11:19:19 -0400743
Theodore Ts'o09266682003-03-14 22:19:10 -0500744/* Duplicate directory entry found */
745#define PR_2_REPORT_DUP_DIRENT 0x020043
746
Theodore Ts'o5d171192006-11-11 06:32:03 -0500747/* i_blocks_hi should be zero */
748#define PR_2_BLOCKS_HI_ZERO 0x020044
749
Theodore Ts'od45edec2008-03-12 16:10:48 -0400750/* Unexpected HTREE block */
751#define PR_2_UNEXPECTED_HTREE_BLOCK 0x020045
752
Jose R. Santos49a73602007-10-21 21:04:03 -0500753/* Inode found in group where _INODE_UNINIT is set */
754#define PR_2_INOREF_BG_INO_UNINIT 0x020046
755
756/* Inode found in group unused inodes area */
757#define PR_2_INOREF_IN_UNUSED 0x020047
758
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000759/*
760 * Pass 3 errors
761 */
762
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000763/* Pass 3: Checking directory connectivity */
764#define PR_3_PASS_HEADER 0x030000
765
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000766/* Root inode not allocated */
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000767#define PR_3_NO_ROOT_INODE 0x030001
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000768
769/* No room in lost+found */
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000770#define PR_3_EXPAND_LF_DIR 0x030002
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000771
772/* Unconnected directory inode */
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000773#define PR_3_UNCONNECTED_DIR 0x030003
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000774
775/* /lost+found not found */
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000776#define PR_3_NO_LF_DIR 0x030004
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000777
778/* .. entry is incorrect */
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000779#define PR_3_BAD_DOT_DOT 0x030005
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000780
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000781/* Bad or non-existent /lost+found. Cannot reconnect */
782#define PR_3_NO_LPF 0x030006
783
784/* Could not expand /lost+found */
785#define PR_3_CANT_EXPAND_LPF 0x030007
786
787/* Could not reconnect inode */
788#define PR_3_CANT_RECONNECT 0x030008
789
790/* Error while trying to find /lost+found */
791#define PR_3_ERR_FIND_LPF 0x030009
792
793/* Error in ext2fs_new_block while creating /lost+found */
794#define PR_3_ERR_LPF_NEW_BLOCK 0x03000A
795
796/* Error in ext2fs_new_inode while creating /lost+found */
797#define PR_3_ERR_LPF_NEW_INODE 0x03000B
798
Theodore Ts'odb0691b2008-03-31 12:16:51 -0400799/* Error in ext2fs_new_dir_block while creating /lost+found */
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000800#define PR_3_ERR_LPF_NEW_DIR_BLOCK 0x03000C
Theodore Ts'odb0691b2008-03-31 12:16:51 -0400801
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000802/* Error while writing directory block for /lost+found */
803#define PR_3_ERR_LPF_WRITE_BLOCK 0x03000D
804
805/* Error while adjusting inode count */
806#define PR_3_ADJUST_INODE 0x03000E
807
808/* Couldn't fix parent directory -- error */
809#define PR_3_FIX_PARENT_ERR 0x03000F
810
Theodore Ts'odb0691b2008-03-31 12:16:51 -0400811/* Couldn't fix parent directory -- couldn't find it */
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000812#define PR_3_FIX_PARENT_NOFIND 0x030010
Theodore Ts'odb0691b2008-03-31 12:16:51 -0400813
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000814/* Error allocating inode bitmap */
815#define PR_3_ALLOCATE_IBITMAP_ERROR 0x030011
Theodore Ts'odb0691b2008-03-31 12:16:51 -0400816
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000817/* Error creating root directory */
818#define PR_3_CREATE_ROOT_ERROR 0x030012
819
820/* Error creating lost and found directory */
821#define PR_3_CREATE_LPF_ERROR 0x030013
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000822
Theodore Ts'of8188ff1997-11-14 05:23:04 +0000823/* Root inode is not directory; aborting */
824#define PR_3_ROOT_NOT_DIR_ABORT 0x030014
825
826/* Cannot proceed without a root inode. */
827#define PR_3_NO_ROOT_INODE_ABORT 0x030015
828
Theodore Ts'o7f813ba1998-09-03 01:26:03 +0000829/* Internal error: couldn't find dir_info */
Theodore Ts'o4a9f5931999-03-16 19:32:52 +0000830#define PR_3_NO_DIRINFO 0x030016
831
832/* Lost+found is not a directory */
833#define PR_3_LPF_NOTDIR 0x030017
Theodore Ts'o7f813ba1998-09-03 01:26:03 +0000834
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000835/*
Theodore Ts'ob7a00562002-07-20 00:28:07 -0400836 * Pass 3a --- rehashing diretories
837 */
838/* Pass 3a: Reindexing directories */
839#define PR_3A_PASS_HEADER 0x031000
840
841/* Error iterating over directories */
Theodore Ts'o850d05e2002-07-25 00:00:08 -0400842#define PR_3A_OPTIMIZE_ITER 0x031001
Theodore Ts'ob7a00562002-07-20 00:28:07 -0400843
844/* Error rehash directory */
Theodore Ts'odb0691b2008-03-31 12:16:51 -0400845#define PR_3A_OPTIMIZE_DIR_ERR 0x031002
Theodore Ts'ob7a00562002-07-20 00:28:07 -0400846
847/* Rehashing dir header */
Theodore Ts'o850d05e2002-07-25 00:00:08 -0400848#define PR_3A_OPTIMIZE_DIR_HEADER 0x031003
Theodore Ts'ob7a00562002-07-20 00:28:07 -0400849
850/* Rehashing directory %d */
Theodore Ts'o850d05e2002-07-25 00:00:08 -0400851#define PR_3A_OPTIMIZE_DIR 0x031004
Theodore Ts'odb0691b2008-03-31 12:16:51 -0400852
853/* Rehashing dir end */
Theodore Ts'o850d05e2002-07-25 00:00:08 -0400854#define PR_3A_OPTIMIZE_DIR_END 0x031005
855
Theodore Ts'ob7a00562002-07-20 00:28:07 -0400856/*
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000857 * Pass 4 errors
858 */
859
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000860/* Pass 4: Checking reference counts */
861#define PR_4_PASS_HEADER 0x040000
862
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000863/* Unattached zero-length inode */
864#define PR_4_ZERO_LEN_INODE 0x040001
865
866/* Unattached inode */
867#define PR_4_UNATTACHED_INODE 0x040002
868
869/* Inode ref count wrong */
870#define PR_4_BAD_REF_COUNT 0x040003
871
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000872/* Inconsistent inode count information cached */
873#define PR_4_INCONSISTENT_COUNT 0x040004
874
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000875/*
876 * Pass 5 errors
877 */
878
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000879/* Pass 5: Checking group summary information */
880#define PR_5_PASS_HEADER 0x050000
Theodore Ts'odb0691b2008-03-31 12:16:51 -0400881
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000882/* Padding at end of inode bitmap is not set. */
883#define PR_5_INODE_BMAP_PADDING 0x050001
884
885/* Padding at end of block bitmap is not set. */
886#define PR_5_BLOCK_BMAP_PADDING 0x050002
887
888/* Block bitmap differences header */
889#define PR_5_BLOCK_BITMAP_HEADER 0x050003
890
891/* Block not used, but marked in bitmap */
Theodore Ts'of1226322002-03-07 02:47:07 -0500892#define PR_5_BLOCK_UNUSED 0x050004
Theodore Ts'odb0691b2008-03-31 12:16:51 -0400893
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000894/* Block used, but not marked used in bitmap */
895#define PR_5_BLOCK_USED 0x050005
896
Theodore Ts'odb0691b2008-03-31 12:16:51 -0400897/* Block bitmap differences end */
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000898#define PR_5_BLOCK_BITMAP_END 0x050006
899
900/* Inode bitmap differences header */
901#define PR_5_INODE_BITMAP_HEADER 0x050007
902
903/* Inode not used, but marked in bitmap */
Theodore Ts'of1226322002-03-07 02:47:07 -0500904#define PR_5_INODE_UNUSED 0x050008
Theodore Ts'odb0691b2008-03-31 12:16:51 -0400905
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000906/* Inode used, but not marked used in bitmap */
907#define PR_5_INODE_USED 0x050009
908
Theodore Ts'odb0691b2008-03-31 12:16:51 -0400909/* Inode bitmap differences end */
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000910#define PR_5_INODE_BITMAP_END 0x05000A
911
912/* Free inodes count for group wrong */
913#define PR_5_FREE_INODE_COUNT_GROUP 0x05000B
914
915/* Directories count for group wrong */
916#define PR_5_FREE_DIR_COUNT_GROUP 0x05000C
917
918/* Free inodes count wrong */
919#define PR_5_FREE_INODE_COUNT 0x05000D
920
921/* Free blocks count for group wrong */
922#define PR_5_FREE_BLOCK_COUNT_GROUP 0x05000E
923
924/* Free blocks count wrong */
925#define PR_5_FREE_BLOCK_COUNT 0x05000F
926
927/* Programming error: bitmap endpoints don't match */
928#define PR_5_BMAP_ENDPOINTS 0x050010
Theodore Ts'obbd47d72000-06-10 19:21:33 +0000929
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000930/* Internal error: fudging end of bitmap */
931#define PR_5_FUDGE_BITMAP_ERROR 0x050011
Theodore Ts'obbd47d72000-06-10 19:21:33 +0000932
933/* Error copying in replacement inode bitmap */
934#define PR_5_COPY_IBITMAP_ERROR 0x050012
935
936/* Error copying in replacement block bitmap */
937#define PR_5_COPY_BBITMAP_ERROR 0x050013
938
Theodore Ts'of1226322002-03-07 02:47:07 -0500939/* Block range not used, but marked in bitmap */
940#define PR_5_BLOCK_RANGE_UNUSED 0x050014
Theodore Ts'odb0691b2008-03-31 12:16:51 -0400941
Theodore Ts'of1226322002-03-07 02:47:07 -0500942/* Block range used, but not marked used in bitmap */
943#define PR_5_BLOCK_RANGE_USED 0x050015
944
945/* Inode range not used, but marked in bitmap */
946#define PR_5_INODE_RANGE_UNUSED 0x050016
Jose R. Santos49a73602007-10-21 21:04:03 -0500947
Theodore Ts'of1226322002-03-07 02:47:07 -0500948/* Inode rangeused, but not marked used in bitmap */
949#define PR_5_INODE_RANGE_USED 0x050017
950
Jose R. Santos49a73602007-10-21 21:04:03 -0500951/* Block in use but group is marked BLOCK_UNINIT */
952#define PR_5_BLOCK_UNINIT 0x050018
953
954/* Inode in use but group is marked INODE_UNINIT */
955#define PR_5_INODE_UNINIT 0x050019
956
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000957/*
Kalpak Shah5107d0d2007-06-21 11:59:06 -0400958 * Post-Pass 5 errors
959 */
960
961/* Recreate the journal if E2F_FLAG_JOURNAL_INODE flag is set */
962#define PR_6_RECREATE_JOURNAL 0x060001
963
964/*
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000965 * Function declarations
966 */
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000967int fix_problem(e2fsck_t ctx, problem_t code, struct problem_context *pctx);
968int end_problem_latch(e2fsck_t ctx, int mask);
969int set_latch_flags(int mask, int setflags, int clearflags);
970int get_latch_flags(int mask, int *value);
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000971void clear_problem_context(struct problem_context *ctx);
972
973/* message.c */
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000974void print_e2fsck_message(e2fsck_t ctx, const char *msg,
Theodore Ts'odb0691b2008-03-31 12:16:51 -0400975 struct problem_context *pctx, int first,
Theodore Ts'o1a191d62007-07-02 19:04:31 -0400976 int recurse);
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000977