blob: 496e87328363ecf19c2158705887c810e1e4db9e [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'o3971bfe2013-12-02 23:21:31 -050021 dgrp_t group;
Theodore Ts'ob9a64a52012-03-15 19:29:19 -040022 __u32 csum1, csum2;
Theodore Ts'o246501c1998-03-24 16:22:38 +000023 __u64 num;
Theodore Ts'o1b6bf171997-10-03 17:48:10 +000024 const char *str;
Theodore Ts'o21c84b71997-04-29 16:15:03 +000025};
26
Theodore Ts'o21c84b71997-04-29 16:15:03 +000027/*
28 * We define a set of "latch groups"; these are problems which are
29 * handled as a set. The user answers once for a particular latch
30 * group.
31 */
Theodore Ts'o21afac02001-05-14 12:47:41 +000032#define PR_LATCH_MASK 0x0ff0 /* Latch mask */
Theodore Ts'o21c84b71997-04-29 16:15:03 +000033#define PR_LATCH_BLOCK 0x0010 /* Latch for illegal blocks (pass 1) */
34#define PR_LATCH_BBLOCK 0x0020 /* Latch for bad block inode blocks (pass 1) */
Theodore Ts'o1b6bf171997-10-03 17:48:10 +000035#define PR_LATCH_IBITMAP 0x0030 /* Latch for pass 5 inode bitmap proc. */
36#define PR_LATCH_BBITMAP 0x0040 /* Latch for pass 5 inode bitmap proc. */
37#define PR_LATCH_RELOC 0x0050 /* Latch for superblock relocate hint */
38#define PR_LATCH_DBLOCK 0x0060 /* Latch for pass 1b dup block headers */
Theodore Ts'o21afac02001-05-14 12:47:41 +000039#define PR_LATCH_LOW_DTIME 0x0070 /* Latch for pass1 orphaned list refugees */
Theodore Ts'oda307042002-05-21 21:19:14 -040040#define PR_LATCH_TOOBIG 0x0080 /* Latch for file to big errors */
Theodore Ts'o850d05e2002-07-25 00:00:08 -040041#define PR_LATCH_OPTIMIZE_DIR 0x0090 /* Latch for optimize directories */
Theodore Ts'o60139152009-08-19 01:06:50 -040042#define PR_LATCH_BG_CHECKSUM 0x00A0 /* Latch for block group checksums */
Theodore Ts'o21c84b71997-04-29 16:15:03 +000043
44#define PR_LATCH(x) ((((x) & PR_LATCH_MASK) >> 4) - 1)
45
46/*
Theodore Ts'o1b6bf171997-10-03 17:48:10 +000047 * Latch group descriptor flags
48 */
49#define PRL_YES 0x0001 /* Answer yes */
50#define PRL_NO 0x0002 /* Answer no */
51#define PRL_LATCHED 0x0004 /* The latch group is latched */
52#define PRL_SUPPRESS 0x0008 /* Suppress all latch group questions */
53
54#define PRL_VARIABLE 0x000f /* All the flags that need to be reset */
55
56/*
Theodore Ts'o21c84b71997-04-29 16:15:03 +000057 * Pre-Pass 1 errors
58 */
59
60/* Block bitmap not in group */
61#define PR_0_BB_NOT_GROUP 0x000001
62
63/* Inode bitmap not in group */
64#define PR_0_IB_NOT_GROUP 0x000002
65
66/* Inode table not in group */
67#define PR_0_ITABLE_NOT_GROUP 0x000003
68
Theodore Ts'o1b6bf171997-10-03 17:48:10 +000069/* Superblock corrupt */
70#define PR_0_SB_CORRUPT 0x000004
71
72/* Filesystem size is wrong */
73#define PR_0_FS_SIZE_WRONG 0x000005
74
75/* Fragments not supported */
76#define PR_0_NO_FRAGMENTS 0x000006
77
78/* Bad blocks_per_group */
79#define PR_0_BLOCKS_PER_GROUP 0x000007
80
81/* Bad first_data_block */
82#define PR_0_FIRST_DATA_BLOCK 0x000008
83
84/* Adding UUID to filesystem */
85#define PR_0_ADD_UUID 0x000009
86
Theodore Ts'odb0691b2008-03-31 12:16:51 -040087/* Relocate hint */
Theodore Ts'o1b6bf171997-10-03 17:48:10 +000088#define PR_0_RELOCATE_HINT 0x00000A
89
90/* Miscellaneous superblock corruption */
91#define PR_0_MISC_CORRUPT_SUPER 0x00000B
Theodore Ts'odb0691b2008-03-31 12:16:51 -040092
Theodore Ts'o1b6bf171997-10-03 17:48:10 +000093/* Error determing physical device size of filesystem */
94#define PR_0_GETSIZE_ERROR 0x00000C
95
Theodore Ts'od4b0ce01999-06-18 01:09:29 +000096/* Inode count in the superblock incorrect */
97#define PR_0_INODE_COUNT_WRONG 0x00000D
98
Theodore Ts'o4ea0a112000-05-08 13:33:17 +000099/* The Hurd does not support the filetype feature */
100#define PR_0_HURD_CLEAR_FILETYPE 0x00000E
Theodore Ts'o3b5386d2000-08-14 14:25:19 +0000101
102/* Journal inode is invalid */
103#define PR_0_JOURNAL_BAD_INODE 0x00000F
104
Theodore Ts'oadee8d72001-07-23 00:17:49 -0400105/* The external journal has multiple filesystems (which we can't handle yet) */
106#define PR_0_JOURNAL_UNSUPP_MULTIFS 0x000010
Theodore Ts'o3b5386d2000-08-14 14:25:19 +0000107
Theodore Ts'oadee8d72001-07-23 00:17:49 -0400108/* Can't find external journal */
109#define PR_0_CANT_FIND_JOURNAL 0x000011
Theodore Ts'o3b5386d2000-08-14 14:25:19 +0000110
Theodore Ts'oadee8d72001-07-23 00:17:49 -0400111/* External journal has bad superblock */
112#define PR_0_EXT_JOURNAL_BAD_SUPER 0x000012
Theodore Ts'o3b5386d2000-08-14 14:25:19 +0000113
114/* Superblock has a bad journal UUID */
115#define PR_0_JOURNAL_BAD_UUID 0x000013
116
117/* Journal has an unknown superblock type */
118#define PR_0_JOURNAL_UNSUPP_SUPER 0x000014
119
120/* Journal superblock is corrupt */
121#define PR_0_JOURNAL_BAD_SUPER 0x000015
122
123/* Journal superblock is corrupt */
124#define PR_0_JOURNAL_HAS_JOURNAL 0x000016
125
126/* Superblock has recovery flag set but no journal */
127#define PR_0_JOURNAL_RECOVER_SET 0x000017
128
Theodore Ts'od37066a2001-12-21 23:28:54 -0500129/* Journal has data, but recovery flag is clear */
130#define PR_0_JOURNAL_RECOVERY_CLEAR 0x000018
Theodore Ts'o3b5386d2000-08-14 14:25:19 +0000131
Theodore Ts'od37066a2001-12-21 23:28:54 -0500132/* Ask if we should clear the journal */
133#define PR_0_JOURNAL_RESET_JOURNAL 0x000019
Theodore Ts'o3b5386d2000-08-14 14:25:19 +0000134
Theodore Ts'o060b5fb2000-12-13 18:07:23 +0000135/* Filesystem revision is 0, but feature flags are set */
136#define PR_0_FS_REV_LEVEL 0x00001A
137
Theodore Ts'oecf1b772000-08-20 22:06:31 +0000138/* Clearing orphan inode */
Theodore Ts'o83949022000-10-25 01:38:50 +0000139#define PR_0_ORPHAN_CLEAR_INODE 0x000020
Theodore Ts'odb0691b2008-03-31 12:16:51 -0400140
Theodore Ts'o80bfaa32000-08-18 15:08:37 +0000141/* Illegal block found in orphaned inode */
Theodore Ts'oecf1b772000-08-20 22:06:31 +0000142#define PR_0_ORPHAN_ILLEGAL_BLOCK_NUM 0x000021
Theodore Ts'o80bfaa32000-08-18 15:08:37 +0000143
144/* Already cleared block found in orphaned inode */
Theodore Ts'oecf1b772000-08-20 22:06:31 +0000145#define PR_0_ORPHAN_ALREADY_CLEARED_BLOCK 0x000022
Theodore Ts'odb0691b2008-03-31 12:16:51 -0400146
Theodore Ts'o80bfaa32000-08-18 15:08:37 +0000147/* Illegal orphan inode in superblock */
Theodore Ts'oecf1b772000-08-20 22:06:31 +0000148#define PR_0_ORPHAN_ILLEGAL_HEAD_INODE 0x000023
Theodore Ts'o80bfaa32000-08-18 15:08:37 +0000149
150/* Illegal inode in orphaned inode list */
Andreas Dilgerae33f572009-04-28 12:59:07 -0600151#define PR_0_ORPHAN_ILLEGAL_INODE 0x000024
Theodore Ts'o80bfaa32000-08-18 15:08:37 +0000152
Theodore Ts'o424cd2b2001-05-14 04:06:56 +0000153/* Journal has unsupported read-only feature - abort */
154#define PR_0_JOURNAL_UNSUPP_ROCOMPAT 0x000025
155
156/* Journal has unsupported incompatible feature - abort */
157#define PR_0_JOURNAL_UNSUPP_INCOMPAT 0x000026
158
Theodore Ts'oc7f23362001-05-23 22:19:47 +0000159/* Journal has unsupported version number */
Theodore Ts'o2f686ac2001-06-02 00:38:40 +0000160#define PR_0_JOURNAL_UNSUPP_VERSION 0x000027
Theodore Ts'oc7f23362001-05-23 22:19:47 +0000161
Theodore Ts'o773fd8a2001-10-06 21:26:27 -0400162/* Moving journal to hidden file */
163#define PR_0_MOVE_JOURNAL 0x000028
164
165/* Error moving journal */
166#define PR_0_ERR_MOVE_JOURNAL 0x000029
167
Theodore Ts'o62e3e7f2001-10-07 02:13:30 -0400168/* Clearing V2 journal superblock */
169#define PR_0_CLEAR_V2_JOURNAL 0x00002A
170
Theodore Ts'od37066a2001-12-21 23:28:54 -0500171/* Run journal anyway */
172#define PR_0_JOURNAL_RUN 0x00002B
173
174/* Run journal anyway by default */
175#define PR_0_JOURNAL_RUN_DEFAULT 0x00002C
176
Theodore Ts'oa435ec32003-08-21 00:40:26 -0400177/* Backup journal inode blocks */
178#define PR_0_BACKUP_JNL 0x00002D
179
Theodore Ts'oe75cfc52004-12-16 20:13:45 -0500180/* Reserved blocks w/o resize_inode */
181#define PR_0_NONZERO_RESERVED_GDT_BLOCKS 0x00002E
182
183/* Resize_inode not enabled, but resize inode is non-zero */
184#define PR_0_CLEAR_RESIZE_INODE 0x00002F
185
Theodore Ts'oc3ffaf82004-12-24 01:42:22 -0500186/* Resize inode invalid */
187#define PR_0_RESIZE_INODE_INVALID 0x000030
188
Theodore Ts'o8dceb922005-09-24 21:59:45 -0400189/* Last mount time is in the future */
190#define PR_0_FUTURE_SB_LAST_MOUNT 0x000031
191
192/* Last write time is in the future */
193#define PR_0_FUTURE_SB_LAST_WRITE 0x000032
194
Theodore Ts'ob1c52b22006-03-10 15:25:59 -0500195/* Superblock hint for external journal incorrect */
196#define PR_0_EXTERNAL_JOURNAL_HINT 0x000033
197
Theodore Ts'of77704e2006-11-11 22:32:35 -0500198/* Superblock hint for external journal incorrect */
199#define PR_0_DIRHASH_HINT 0x000034
200
Jose R. Santos49a73602007-10-21 21:04:03 -0500201/* Group descriptor N checksum is invalid */
202#define PR_0_GDT_CSUM 0x000035
203
204/* Group descriptor N marked uninitialized without feature set. */
205#define PR_0_GDT_UNINIT 0x000036
206
Theodore Ts'o40b9cc52012-02-06 13:47:48 -0500207/* Block bitmap is not initialised and Inode bitmap is -- NO LONGER USED */
208/* #define PR_0_BB_UNINIT_IB_INIT 0x000037 */
Jose R. Santos49a73602007-10-21 21:04:03 -0500209
210/* Group descriptor N has invalid unused inodes count. */
211#define PR_0_GDT_ITABLE_UNUSED 0x000038
212
Andreas Dilger0d5439c2008-03-31 12:14:22 -0400213/* Last group block bitmap is uninitialized. */
214#define PR_0_BB_UNINIT_LAST 0x000039
215
Theodore Ts'o185c4ae2008-05-23 01:00:19 -0400216/* Journal transaction found corrupt */
217#define PR_0_JNL_TXN_CORRUPT 0x00003A
218
Theodore Ts'o80875db2008-10-12 23:09:26 -0400219/* The test_fs filesystem flag is set and ext4 is available */
220#define PR_0_CLEAR_TESTFS_FLAG 0x00003B
221
Theodore Ts'o26ea4892009-07-16 23:44:50 -0400222/* Last mount time is in the future (fudged) */
223#define PR_0_FUTURE_SB_LAST_MOUNT_FUDGED 0x00003C
224
225/* Last write time is in the future (fudged) */
226#define PR_0_FUTURE_SB_LAST_WRITE_FUDGED 0x00003D
227
Theodore Ts'o60139152009-08-19 01:06:50 -0400228/* Block group checksum (latch question) */
229#define PR_0_GDT_CSUM_LATCH 0x00003E
230
Theodore Ts'oa3efe482011-06-16 01:13:42 -0400231/* Free inodes count wrong */
232#define PR_0_FREE_INODE_COUNT 0x00003F
233
234/* Free blocks count wrong */
235#define PR_0_FREE_BLOCK_COUNT 0x000040
236
Aditya Kali624e4a62011-07-20 11:40:06 -0700237/* Make quota file hidden */
238#define PR_0_HIDE_QUOTA 0x000041
239
Andreas Dilger0f5eba72011-09-24 13:48:55 -0400240/* Superblock has invalid MMP block. */
241#define PR_0_MMP_INVALID_BLK 0x000042
242
243/* Superblock has invalid MMP magic. */
244#define PR_0_MMP_INVALID_MAGIC 0x000043
245
Theodore Ts'o010c49c2012-03-21 23:40:24 -0400246/* Opening file system failed */
247#define PR_0_OPEN_FAILED 0x000044
248
249/* Checking group descriptor failed */
250#define PR_0_CHECK_DESC_FAILED 0x000045
Theodore Ts'o26ea4892009-07-16 23:44:50 -0400251
Darrick J. Wong27b22972013-10-11 21:20:36 -0400252/* 64bit is set but extents are not set. */
253#define PR_0_64BIT_WITHOUT_EXTENTS 0x000048
254
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000255/*
Darrick J. Wong387e6382012-08-02 20:47:45 -0400256 * metadata_csum supersedes uninit_bg; both feature bits cannot be set
257 * simultaneously.
258 */
259#define PR_0_META_AND_GDT_CSUM_SET 0x000046
260
Darrick J. Wongf57b3712012-08-02 20:47:45 -0400261/* Superblock has invalid MMP checksum. */
262#define PR_0_MMP_CSUM_INVALID 0x000047
263
Darrick J. Wong387e6382012-08-02 20:47:45 -0400264
265/*
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000266 * Pass 1 errors
267 */
268
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000269/* Pass 1: Checking inodes, blocks, and sizes */
270#define PR_1_PASS_HEADER 0x010000
271
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000272/* Root directory is not an inode */
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000273#define PR_1_ROOT_NO_DIR 0x010001
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000274
275/* Root directory has dtime set */
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000276#define PR_1_ROOT_DTIME 0x010002
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000277
278/* Reserved inode has bad mode */
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000279#define PR_1_RESERVED_BAD_MODE 0x010003
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000280
281/* Deleted inode has zero dtime */
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000282#define PR_1_ZERO_DTIME 0x010004
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000283
284/* Inode in use, but dtime set */
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000285#define PR_1_SET_DTIME 0x010005
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000286
287/* Zero-length directory */
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000288#define PR_1_ZERO_LENGTH_DIR 0x010006
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000289
290/* Block bitmap conflicts with some other fs block */
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000291#define PR_1_BB_CONFLICT 0x010007
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000292
293/* Inode bitmap conflicts with some other fs block */
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000294#define PR_1_IB_CONFLICT 0x010008
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000295
296/* Inode table conflicts with some other fs block */
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000297#define PR_1_ITABLE_CONFLICT 0x010009
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000298
299/* Block bitmap is on a bad block */
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000300#define PR_1_BB_BAD_BLOCK 0x01000A
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000301
302/* Inode bitmap is on a bad block */
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000303#define PR_1_IB_BAD_BLOCK 0x01000B
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000304
305/* Inode has incorrect i_size */
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000306#define PR_1_BAD_I_SIZE 0x01000C
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000307
308/* Inode has incorrect i_blocks */
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000309#define PR_1_BAD_I_BLOCKS 0x01000D
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000310
311/* Illegal block number in inode */
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000312#define PR_1_ILLEGAL_BLOCK_NUM 0x01000E
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000313
314/* Block number overlaps fs metadata */
315#define PR_1_BLOCK_OVERLAPS_METADATA 0x01000F
316
317/* Inode has illegal blocks (latch question) */
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000318#define PR_1_INODE_BLOCK_LATCH 0x010010
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000319
320/* Too many bad blocks in inode */
Andreas Dilgerae33f572009-04-28 12:59:07 -0600321#define PR_1_TOO_MANY_BAD_BLOCKS 0x010011
Theodore Ts'odb0691b2008-03-31 12:16:51 -0400322
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000323/* Illegal block number in bad block inode */
Andreas Dilgerae33f572009-04-28 12:59:07 -0600324#define PR_1_BB_ILLEGAL_BLOCK_NUM 0x010012
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000325
326/* Bad block inode has illegal blocks (latch question) */
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000327#define PR_1_INODE_BBLOCK_LATCH 0x010013
328
329/* Duplicate or bad blocks in use! */
330#define PR_1_DUP_BLOCKS_PREENSTOP 0x010014
Theodore Ts'odb0691b2008-03-31 12:16:51 -0400331
332/* Bad block used as bad block indirect block */
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000333#define PR_1_BBINODE_BAD_METABLOCK 0x010015
334
335/* Inconsistency can't be fixed prompt */
336#define PR_1_BBINODE_BAD_METABLOCK_PROMPT 0x010016
Theodore Ts'odb0691b2008-03-31 12:16:51 -0400337
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000338/* Bad primary block */
Theodore Ts'ob2f93192000-12-30 20:33:42 +0000339#define PR_1_BAD_PRIMARY_BLOCK 0x010017
Theodore Ts'odb0691b2008-03-31 12:16:51 -0400340
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000341/* Bad primary block prompt */
Theodore Ts'ob2f93192000-12-30 20:33:42 +0000342#define PR_1_BAD_PRIMARY_BLOCK_PROMPT 0x010018
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000343
344/* Bad primary superblock */
Theodore Ts'ob2f93192000-12-30 20:33:42 +0000345#define PR_1_BAD_PRIMARY_SUPERBLOCK 0x010019
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000346
347/* Bad primary block group descriptors */
Theodore Ts'ob2f93192000-12-30 20:33:42 +0000348#define PR_1_BAD_PRIMARY_GROUP_DESCRIPTOR 0x01001A
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000349
350/* Bad superblock in group */
Theodore Ts'ob2f93192000-12-30 20:33:42 +0000351#define PR_1_BAD_SUPERBLOCK 0x01001B
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000352
353/* Bad block group descriptors in group */
Theodore Ts'ob2f93192000-12-30 20:33:42 +0000354#define PR_1_BAD_GROUP_DESCRIPTORS 0x01001C
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000355
Theodore Ts'odb0691b2008-03-31 12:16:51 -0400356/* Block claimed for no reason */
Theodore Ts'ob2f93192000-12-30 20:33:42 +0000357#define PR_1_PROGERR_CLAIMED_BLOCK 0x01001D
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000358
Theodore Ts'of8188ff1997-11-14 05:23:04 +0000359/* Error allocating blocks for relocating metadata */
Theodore Ts'ob2f93192000-12-30 20:33:42 +0000360#define PR_1_RELOC_BLOCK_ALLOCATE 0x01001E
Theodore Ts'odb0691b2008-03-31 12:16:51 -0400361
Theodore Ts'of8188ff1997-11-14 05:23:04 +0000362/* Error allocating block buffer during relocation process */
Theodore Ts'ob2f93192000-12-30 20:33:42 +0000363#define PR_1_RELOC_MEMORY_ALLOCATE 0x01001F
Theodore Ts'odb0691b2008-03-31 12:16:51 -0400364
365/* Relocating metadata group information from X to Y */
Theodore Ts'ob2f93192000-12-30 20:33:42 +0000366#define PR_1_RELOC_FROM_TO 0x010020
Theodore Ts'odb0691b2008-03-31 12:16:51 -0400367
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000368/* Relocating metatdata group information to X */
Theodore Ts'ob2f93192000-12-30 20:33:42 +0000369#define PR_1_RELOC_TO 0x010021
Theodore Ts'odb0691b2008-03-31 12:16:51 -0400370
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000371/* Block read error during relocation process */
Theodore Ts'ob2f93192000-12-30 20:33:42 +0000372#define PR_1_RELOC_READ_ERR 0x010022
Theodore Ts'odb0691b2008-03-31 12:16:51 -0400373
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000374/* Block write error during relocation process */
Theodore Ts'ob2f93192000-12-30 20:33:42 +0000375#define PR_1_RELOC_WRITE_ERR 0x010023
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000376
377/* Error allocating inode bitmap */
Theodore Ts'ob2f93192000-12-30 20:33:42 +0000378#define PR_1_ALLOCATE_IBITMAP_ERROR 0x010024
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000379
380/* Error allocating block bitmap */
Theodore Ts'ob2f93192000-12-30 20:33:42 +0000381#define PR_1_ALLOCATE_BBITMAP_ERROR 0x010025
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000382
383/* Error allocating icount structure */
Theodore Ts'ob2f93192000-12-30 20:33:42 +0000384#define PR_1_ALLOCATE_ICOUNT 0x010026
Theodore Ts'odb0691b2008-03-31 12:16:51 -0400385
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000386/* Error allocating dbcount */
Theodore Ts'ob2f93192000-12-30 20:33:42 +0000387#define PR_1_ALLOCATE_DBCOUNT 0x010027
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000388
389/* Error while scanning inodes */
Theodore Ts'ob2f93192000-12-30 20:33:42 +0000390#define PR_1_ISCAN_ERROR 0x010028
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000391
392/* Error while iterating over blocks */
Theodore Ts'ob2f93192000-12-30 20:33:42 +0000393#define PR_1_BLOCK_ITERATE 0x010029
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000394
Theodore Ts'odb0691b2008-03-31 12:16:51 -0400395/* Error while storing inode count information */
Theodore Ts'ob2f93192000-12-30 20:33:42 +0000396#define PR_1_ICOUNT_STORE 0x01002A
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000397
Theodore Ts'odb0691b2008-03-31 12:16:51 -0400398/* Error while storing directory block information */
Theodore Ts'ob2f93192000-12-30 20:33:42 +0000399#define PR_1_ADD_DBLOCK 0x01002B
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000400
401/* Error while reading inode (for clearing) */
Theodore Ts'ob2f93192000-12-30 20:33:42 +0000402#define PR_1_READ_INODE 0x01002C
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000403
Theodore Ts'of8188ff1997-11-14 05:23:04 +0000404/* Suppress messages prompt */
Theodore Ts'ob2f93192000-12-30 20:33:42 +0000405#define PR_1_SUPPRESS_MESSAGES 0x01002D
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000406
Theodore Ts'o6fdc7a31999-11-10 13:34:40 +0000407/* Imagic flag set on an inode when filesystem doesn't support it */
408#define PR_1_SET_IMAGIC 0x01002F
409
410/* Immutable flag set on a device or socket inode */
411#define PR_1_SET_IMMUTABLE 0x010030
Theodore Ts'o19178752000-02-11 15:55:07 +0000412
413/* Compression flag set on a non-compressed filesystem */
414#define PR_1_COMPR_SET 0x010031
415
Theodore Ts'od647a1e2000-05-27 14:40:09 +0000416/* Non-zero size on on device, fifo or socket inode */
417#define PR_1_SET_NONZSIZE 0x010032
418
Theodore Ts'o060b5fb2000-12-13 18:07:23 +0000419/* Filesystem revision is 0, but feature flags are set */
420#define PR_1_FS_REV_LEVEL 0x010033
421
Theodore Ts'of18996c2001-01-03 16:57:24 +0000422/* Journal inode not in use, needs clearing */
Theodore Ts'oa9ca2012001-01-12 21:53:25 +0000423#define PR_1_JOURNAL_INODE_NOT_CLEAR 0x010034
Theodore Ts'of18996c2001-01-03 16:57:24 +0000424
Theodore Ts'oa9ca2012001-01-12 21:53:25 +0000425/* Journal inode has wrong mode */
426#define PR_1_JOURNAL_BAD_MODE 0x010035
Theodore Ts'o21afac02001-05-14 12:47:41 +0000427
428/* Inode that was part of orphan linked list */
429#define PR_1_LOW_DTIME 0x010036
430
431/* Latch question which asks how to deal with low dtime inodes */
432#define PR_1_ORPHAN_LIST_REFUGEES 0x010037
Theodore Ts'o342d8472001-07-02 11:54:09 -0400433
434/* Error allocating refcount structure */
435#define PR_1_ALLOCATE_REFCOUNT 0x010038
Theodore Ts'odb0691b2008-03-31 12:16:51 -0400436
Theodore Ts'o342d8472001-07-02 11:54:09 -0400437/* Error reading Extended Attribute block */
438#define PR_1_READ_EA_BLOCK 0x010039
439
440/* Invalid Extended Attribute block */
441#define PR_1_BAD_EA_BLOCK 0x01003A
442
Theodore Ts'oe8a3ee62001-07-07 11:12:50 -0400443/* Error reading Extended Attribute block while fixing refcount -- abort */
444#define PR_1_EXTATTR_READ_ABORT 0x01003B
445
446/* Extended attribute reference count incorrect */
447#define PR_1_EXTATTR_REFCOUNT 0x01003C
448
Theodore Ts'odb0691b2008-03-31 12:16:51 -0400449/* Error writing Extended Attribute block while fixing refcount */
Theodore Ts'oa6217f52010-05-12 18:58:53 -0400450#define PR_1_EXTATTR_WRITE_ABORT 0x01003D
Theodore Ts'o55fd07e2001-07-19 16:31:25 -0400451
452/* Multiple EA blocks not supported */
453#define PR_1_EA_MULTI_BLOCK 0x01003E
454
455/* Error allocating EA region allocation structure */
Theodore Ts'oa6217f52010-05-12 18:58:53 -0400456#define PR_1_EA_ALLOC_REGION_ABORT 0x01003F
Andreas Dilgerb94a0522002-05-18 13:16:30 -0600457
Theodore Ts'o55fd07e2001-07-19 16:31:25 -0400458/* Error EA allocation collision */
459#define PR_1_EA_ALLOC_COLLISION 0x010040
Andreas Dilgerb94a0522002-05-18 13:16:30 -0600460
Theodore Ts'o55fd07e2001-07-19 16:31:25 -0400461/* Bad extended attribute name */
462#define PR_1_EA_BAD_NAME 0x010041
463
464/* Bad extended attribute value */
Andreas Dilgerb94a0522002-05-18 13:16:30 -0600465#define PR_1_EA_BAD_VALUE 0x010042
466
Theodore Ts'oda307042002-05-21 21:19:14 -0400467/* Inode too big (latch question) */
468#define PR_1_INODE_TOOBIG 0x010043
469
470/* Directory too big */
471#define PR_1_TOOBIG_DIR 0x010044
472
473/* Regular file too big */
474#define PR_1_TOOBIG_REG 0x010045
475
476/* Symlink too big */
477#define PR_1_TOOBIG_SYMLINK 0x010046
478
Theodore Ts'o8fdc9982002-06-25 23:26:34 -0400479/* INDEX_FL flag set on a non-HTREE filesystem */
480#define PR_1_HTREE_SET 0x010047
481
Theodore Ts'odb0691b2008-03-31 12:16:51 -0400482/* INDEX_FL flag set on a non-directory */
Theodore Ts'o503f9e72002-06-26 16:52:10 -0400483#define PR_1_HTREE_NODIR 0x010048
484
Theodore Ts'odb0691b2008-03-31 12:16:51 -0400485/* Invalid root node in HTREE directory */
Theodore Ts'o503f9e72002-06-26 16:52:10 -0400486#define PR_1_HTREE_BADROOT 0x010049
487
Theodore Ts'odb0691b2008-03-31 12:16:51 -0400488/* Unsupported hash version in HTREE directory */
Theodore Ts'o503f9e72002-06-26 16:52:10 -0400489#define PR_1_HTREE_HASHV 0x01004A
490
Theodore Ts'odb0691b2008-03-31 12:16:51 -0400491/* Incompatible flag in HTREE root node */
Theodore Ts'o503f9e72002-06-26 16:52:10 -0400492#define PR_1_HTREE_INCOMPAT 0x01004B
493
Theodore Ts'odb0691b2008-03-31 12:16:51 -0400494/* HTREE too deep */
Theodore Ts'o503f9e72002-06-26 16:52:10 -0400495#define PR_1_HTREE_DEPTH 0x01004C
496
Theodore Ts'o000ba402003-11-21 10:41:58 -0500497/* Bad block has indirect block that conflicts with filesystem block */
498#define PR_1_BB_FS_BLOCK 0x01004D
499
Theodore Ts'oc3ffaf82004-12-24 01:42:22 -0500500/* Resize inode failed */
501#define PR_1_RESIZE_INODE_CREATE 0x01004E
502
Theodore Ts'odb0691b2008-03-31 12:16:51 -0400503/* inode->i_size is too long */
Theodore Ts'ocebe48a2005-03-21 13:15:45 -0500504#define PR_1_EXTRA_ISIZE 0x01004F
505
506/* attribute name is too long */
507#define PR_1_ATTR_NAME_LEN 0x010050
508
509/* wrong EA value offset */
510#define PR_1_ATTR_VALUE_OFFSET 0x010051
511
512/* wrong EA blocknumber */
513#define PR_1_ATTR_VALUE_BLOCK 0x010052
514
515/* wrong EA value size */
516#define PR_1_ATTR_VALUE_SIZE 0x010053
517
518/* wrong EA hash value */
519#define PR_1_ATTR_HASH 0x010054
520
Theodore Ts'ofbc3f902007-04-02 10:08:59 -0400521/* inode appears to be a directory */
522#define PR_1_TREAT_AS_DIRECTORY 0x010055
523
Theodore Ts'o15d482b2007-08-20 21:31:11 -0400524/* Error while reading extent tree */
525#define PR_1_READ_EXTENT 0x010056
526
Theodore Ts'o7518c172008-12-25 22:42:38 -0500527/* Failure to iterate extents */
528#define PR_1_EXTENT_ITERATE_FAILURE 0x010057
Theodore Ts'o15d482b2007-08-20 21:31:11 -0400529
530/* Bad starting block in extent */
531#define PR_1_EXTENT_BAD_START_BLK 0x010058
532
533/* Extent ends beyond filesystem */
534#define PR_1_EXTENT_ENDS_BEYOND 0x010059
535
536/* EXTENTS_FL flag set on a non-extents capable filesystem */
537#define PR_1_EXTENTS_SET 0x01005A
538
539/* inode has extents, superblock missing INCOMPAT_EXTENTS feature */
540#define PR_1_EXTENT_FEATURE 0x01005B
541
542/* inode missing EXTENTS_FL, but is an extent inode */
543#define PR_1_UNSET_EXTENT_FL 0x01005C
544
Theodore Ts'oee19c902008-03-13 23:13:18 -0400545/* Fast symlink has EXTENTS_FL set */
546#define PR_1_FAST_SYMLINK_EXTENT_FL 0x01005D
547
Theodore Ts'od5a8f9a2008-06-02 20:12:34 -0400548/* Extents are out of order */
549#define PR_1_OUT_OF_ORDER_EXTENTS 0x01005E
550
Theodore Ts'o7518c172008-12-25 22:42:38 -0500551/* Extent node header invalid */
552#define PR_1_EXTENT_HEADER_INVALID 0x01005F
553
Lukas Czerner010dc7b2012-03-22 18:42:11 -0500554/* PR_1_EOFBLOCKS_FL_SET 0x010060 was here */
Theodore Ts'o2291fbb2010-05-10 10:17:44 -0400555
Theodore Ts'o44fe08f2011-06-10 18:58:16 -0400556/* Failed to convert subcluster bitmap */
557#define PR_1_CONVERT_SUBCLUSTER 0x010061
558
Aditya Kali624e4a62011-07-20 11:40:06 -0700559/* Quota inode has wrong mode */
560#define PR_1_QUOTA_BAD_MODE 0x010062
561
562/* Quota inode is not in use, but contains data */
563#define PR_1_QUOTA_INODE_NOT_CLEAR 0x010063
564
565/* Quota inode is user visible */
566#define PR_1_QUOTA_INODE_NOT_HIDDEN 0x010064
567
Theodore Ts'o96a8afa2011-09-28 15:12:55 -0400568/* Invalid bad inode */
569#define PR_1_INVALID_BAD_INODE 0x010065
570
Theodore Ts'o26c09eb2012-03-11 16:19:10 -0400571/* Extent has zero length */
572#define PR_1_EXTENT_LENGTH_ZERO 0x010066
573
Darrick J. Wongb9cde402012-07-30 18:52:04 -0400574/* inode checksum does not match inode */
575#define PR_1_INODE_CSUM_INVALID 0x010067
576
577/* inode passes checks, but checksum does not match inode */
578#define PR_1_INODE_ONLY_CSUM_INVALID 0x010068
579
Darrick J. Wong1e2372b2012-07-30 19:18:04 -0400580/* extent block checksum does not match extent block */
581#define PR_1_EXTENT_CSUM_INVALID 0x010069
582
583/* extent block passes checks, but checksum does not match extent block */
584#define PR_1_EXTENT_ONLY_CSUM_INVALID 0x01006A
585
Darrick J. Wong5e07cb22012-08-02 20:47:44 -0400586/* ea block checksum invalid */
587#define PR_1_EA_BLOCK_CSUM_INVALID 0x01006B
588
589/* ea block passes checks, but checksum invalid */
590#define PR_1_EA_BLOCK_ONLY_CSUM_INVALID 0x01006C
591
Eric Sandeen789bd402012-12-20 14:05:01 -0500592/* Index start doesn't match start of next extent down */
593#define PR_1_EXTENT_INDEX_START_INVALID 0x01006D
Darrick J. Wong387e6382012-08-02 20:47:45 -0400594
David Jefferyd3f32c22013-06-06 20:04:33 -0400595#define PR_1_EXTENT_END_OUT_OF_BOUNDS 0x01006E
Zheng Liu25fed0f2014-03-03 01:02:28 -0500596
597/* Inode has inline data, but superblock is missing INLINE_DATA feature. */
598#define PR_1_INLINE_DATA_FEATURE 0x01006F
599
600/* INLINE_DATA feature is set in a non-inline-data filesystem */
601#define PR_1_INLINE_DATA_SET 0x010070
602
Darrick J. Wong35c8faa2014-07-23 12:11:23 -0400603/* file metadata collides with critical metadata */
604#define PR_1_CRITICAL_METADATA_COLLISION 0x010071
605
Darrick J. Wong57b7fab2014-07-18 15:55:21 -0700606/* Directory inode has a missing block (hole) */
607#define PR_1_COLLAPSE_DBLOCK 0x010072
608
609/* uninit directory block */
610#define PR_1_UNINIT_DBLOCK 0x010073
611
Darrick J. Wong9a1d6142014-07-25 17:34:04 -0700612/* Inode logical block is misaligned */
613#define PR_1_MISALIGNED_CLUSTER 0x010074
614
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000615/*
616 * Pass 1b errors
617 */
618
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000619/* Pass 1B: Rescan for duplicate/bad blocks */
620#define PR_1B_PASS_HEADER 0x011000
621
622/* Duplicate/bad block(s) header */
623#define PR_1B_DUP_BLOCK_HEADER 0x011001
624
625/* Duplicate/bad block(s) in inode */
626#define PR_1B_DUP_BLOCK 0x011002
627
628/* Duplicate/bad block(s) end */
629#define PR_1B_DUP_BLOCK_END 0x011003
Theodore Ts'odb0691b2008-03-31 12:16:51 -0400630
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000631/* Error while scanning inodes */
632#define PR_1B_ISCAN_ERROR 0x011004
633
634/* Error allocating inode bitmap */
635#define PR_1B_ALLOCATE_IBITMAP_ERROR 0x011005
636
Theodore Ts'o133a56d2000-11-17 05:40:49 +0000637/* Error while iterating over blocks */
Andreas Dilger7494cbf2009-04-27 16:59:24 -0600638#define PR_1B_BLOCK_ITERATE 0x011006
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000639
Theodore Ts'o0684a4f2002-08-17 10:19:44 -0400640/* Error adjusting EA refcount */
Andreas Dilger7494cbf2009-04-27 16:59:24 -0600641#define PR_1B_ADJ_EA_REFCOUNT 0x011007
Theodore Ts'o0684a4f2002-08-17 10:19:44 -0400642
Darrick J. Wong28b966d2014-03-15 12:12:35 -0400643/* Duplicate/bad block range in inode */
644#define PR_1B_DUP_RANGE 0x011008
645
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000646/* Pass 1C: Scan directories for inodes with dup blocks. */
647#define PR_1C_PASS_HEADER 0x012000
648
649
650/* Pass 1D: Reconciling duplicate blocks */
651#define PR_1D_PASS_HEADER 0x013000
652
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000653/* File has duplicate blocks */
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000654#define PR_1D_DUP_FILE 0x013001
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000655
Theodore Ts'odb0691b2008-03-31 12:16:51 -0400656/* List of files sharing duplicate blocks */
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000657#define PR_1D_DUP_FILE_LIST 0x013002
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000658
Theodore Ts'odb0691b2008-03-31 12:16:51 -0400659/* File sharing blocks with filesystem metadata */
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000660#define PR_1D_SHARE_METADATA 0x013003
Theodore Ts'o521e3681997-04-29 17:48:10 +0000661
Theodore Ts'odb0691b2008-03-31 12:16:51 -0400662/* Report of how many duplicate/bad inodes */
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000663#define PR_1D_NUM_DUP_INODES 0x013004
664
665/* Duplicated blocks already reassigned or cloned. */
666#define PR_1D_DUP_BLOCKS_DEALT 0x013005
667
668/* Clone duplicate/bad blocks? */
669#define PR_1D_CLONE_QUESTION 0x013006
670
671/* Delete file? */
672#define PR_1D_DELETE_QUESTION 0x013007
673
674/* Couldn't clone file (error) */
675#define PR_1D_CLONE_ERROR 0x013008
Theodore Ts'odb0691b2008-03-31 12:16:51 -0400676
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000677/*
678 * Pass 2 errors
679 */
680
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000681/* Pass 2: Checking directory structure */
682#define PR_2_PASS_HEADER 0x020000
683
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000684/* Bad inode number for '.' */
685#define PR_2_BAD_INODE_DOT 0x020001
686
687/* Directory entry has bad inode number */
688#define PR_2_BAD_INO 0x020002
689
690/* Directory entry has deleted or unused inode */
691#define PR_2_UNUSED_INODE 0x020003
692
693/* Directry entry is link to '.' */
694#define PR_2_LINK_DOT 0x020004
695
696/* Directory entry points to inode now located in a bad block */
697#define PR_2_BB_INODE 0x020005
698
699/* Directory entry contains a link to a directory */
700#define PR_2_LINK_DIR 0x020006
701
702/* Directory entry contains a link to the root directry */
703#define PR_2_LINK_ROOT 0x020007
704
705/* Directory entry has illegal characters in its name */
706#define PR_2_BAD_NAME 0x020008
707
Theodore Ts'odb0691b2008-03-31 12:16:51 -0400708/* Missing '.' in directory inode */
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000709#define PR_2_MISSING_DOT 0x020009
710
Theodore Ts'odb0691b2008-03-31 12:16:51 -0400711/* Missing '..' in directory inode */
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000712#define PR_2_MISSING_DOT_DOT 0x02000A
713
714/* First entry in directory inode doesn't contain '.' */
715#define PR_2_1ST_NOT_DOT 0x02000B
716
717/* Second entry in directory inode doesn't contain '..' */
718#define PR_2_2ND_NOT_DOT_DOT 0x02000C
719
720/* i_faddr should be zero */
721#define PR_2_FADDR_ZERO 0x02000D
722
723/* i_file_acl should be zero */
724#define PR_2_FILE_ACL_ZERO 0x02000E
725
726/* i_dir_acl should be zero */
727#define PR_2_DIR_ACL_ZERO 0x02000F
728
729/* i_frag should be zero */
730#define PR_2_FRAG_ZERO 0x020010
731
732/* i_fsize should be zero */
733#define PR_2_FSIZE_ZERO 0x020011
Theodore Ts'odb0691b2008-03-31 12:16:51 -0400734
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000735/* inode has bad mode */
736#define PR_2_BAD_MODE 0x020012
737
738/* directory corrupted */
739#define PR_2_DIR_CORRUPTED 0x020013
Theodore Ts'odb0691b2008-03-31 12:16:51 -0400740
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000741/* filename too long */
742#define PR_2_FILENAME_LONG 0x020014
Theodore Ts'odb0691b2008-03-31 12:16:51 -0400743
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000744/* Directory inode has a missing block (hole) */
745#define PR_2_DIRECTORY_HOLE 0x020015
746
747/* '.' is not NULL terminated */
748#define PR_2_DOT_NULL_TERM 0x020016
749
750/* '..' is not NULL terminated */
751#define PR_2_DOT_DOT_NULL_TERM 0x020017
752
Theodore Ts'o7cf73dc1997-08-14 17:17:16 +0000753/* Illegal character device in inode */
754#define PR_2_BAD_CHAR_DEV 0x020018
755
756/* Illegal block device in inode */
757#define PR_2_BAD_BLOCK_DEV 0x020019
758
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000759/* Duplicate '.' entry */
760#define PR_2_DUP_DOT 0x02001A
761
762/* Duplicate '..' entry */
763#define PR_2_DUP_DOT_DOT 0x02001B
Theodore Ts'odb0691b2008-03-31 12:16:51 -0400764
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000765/* Internal error: couldn't find dir_info */
766#define PR_2_NO_DIRINFO 0x02001C
767
768/* Final rec_len is wrong */
769#define PR_2_FINAL_RECLEN 0x02001D
770
771/* Error allocating icount structure */
772#define PR_2_ALLOCATE_ICOUNT 0x02001E
773
774/* Error iterating over directory blocks */
775#define PR_2_DBLIST_ITERATE 0x02001F
776
777/* Error reading directory block */
778#define PR_2_READ_DIRBLOCK 0x020020
779
780/* Error writing directory block */
781#define PR_2_WRITE_DIRBLOCK 0x020021
782
783/* Error allocating new directory block */
784#define PR_2_ALLOC_DIRBOCK 0x020022
785
786/* Error deallocating inode */
787#define PR_2_DEALLOC_INODE 0x020023
788
Theodore Ts'of8188ff1997-11-14 05:23:04 +0000789/* Directory entry for '.' is big. Split? */
Theodore Ts'o7142db01999-11-08 18:46:54 +0000790#define PR_2_SPLIT_DOT 0x020024
Theodore Ts'of8188ff1997-11-14 05:23:04 +0000791
Theodore Ts'o1dde43f1998-11-14 04:18:28 +0000792/* Illegal FIFO */
793#define PR_2_BAD_FIFO 0x020025
794
795/* Illegal socket */
796#define PR_2_BAD_SOCKET 0x020026
797
Theodore Ts'oaa4115a1999-10-21 19:33:18 +0000798/* Directory filetype not set */
799#define PR_2_SET_FILETYPE 0x020027
800
801/* Directory filetype incorrect */
802#define PR_2_BAD_FILETYPE 0x020028
803
Theodore Ts'o7847c1d1999-10-22 15:11:42 +0000804/* Directory filetype set when it shouldn't be */
805#define PR_2_CLEAR_FILETYPE 0x020029
806
Theodore Ts'oc40db6d1999-10-25 21:03:34 +0000807/* Directory filename can't be zero-length */
808#define PR_2_NULL_NAME 0x020030
809
Theodore Ts'obcf9c5d2002-05-21 09:14:17 -0400810/* Invalid symlink */
811#define PR_2_INVALID_SYMLINK 0x020031
Theodore Ts'ofdbdea02001-06-02 04:26:26 +0000812
Theodore Ts'o342d8472001-07-02 11:54:09 -0400813/* i_file_acl (extended attribute) is bad */
814#define PR_2_FILE_ACL_BAD 0x020032
815
Theodore Ts'oa4742692001-08-09 04:14:04 -0400816/* Filesystem contains large files, but has no such flag in sb */
817#define PR_2_FEATURE_LARGE_FILES 0x020033
818
Theodore Ts'o8fdc9982002-06-25 23:26:34 -0400819/* Node in HTREE directory not referenced */
820#define PR_2_HTREE_NOTREF 0x020034
821
822/* Node in HTREE directory referenced twice */
823#define PR_2_HTREE_DUPREF 0x020035
824
825/* Node in HTREE directory has bad min hash */
826#define PR_2_HTREE_MIN_HASH 0x020036
827
828/* Node in HTREE directory has bad max hash */
829#define PR_2_HTREE_MAX_HASH 0x020037
830
831/* Clear invalid HTREE directory */
832#define PR_2_HTREE_CLEAR 0x020038
833
834/* Clear the htree flag forcibly */
Theodore Ts'o33db8f82005-02-05 10:28:15 -0500835/* #define PR_2_HTREE_FCLR 0x020039 */
Theodore Ts'o8fdc9982002-06-25 23:26:34 -0400836
837/* Bad block in htree interior node */
838#define PR_2_HTREE_BADBLK 0x02003A
839
Theodore Ts'o0684a4f2002-08-17 10:19:44 -0400840/* Error adjusting EA refcount */
841#define PR_2_ADJ_EA_REFCOUNT 0x02003B
842
Theodore Ts'oea1959f2002-08-31 02:32:41 -0400843/* Invalid HTREE root node */
844#define PR_2_HTREE_BAD_ROOT 0x02003C
845
Theodore Ts'oad4fa462002-09-30 11:19:19 -0400846/* Invalid HTREE limit */
847#define PR_2_HTREE_BAD_LIMIT 0x02003D
848
849/* Invalid HTREE count */
850#define PR_2_HTREE_BAD_COUNT 0x02003E
851
852/* HTREE interior node has out-of-order hashes in table */
853#define PR_2_HTREE_HASH_ORDER 0x02003F
854
855/* Node in HTREE directory has bad depth */
Theodore Ts'ob0700a12003-03-14 01:43:56 -0500856#define PR_2_HTREE_BAD_DEPTH 0x020040
857
858/* Duplicate directory entry found */
859#define PR_2_DUPLICATE_DIRENT 0x020041
860
861/* Non-unique filename found */
862#define PR_2_NON_UNIQUE_FILE 0x020042
Theodore Ts'oad4fa462002-09-30 11:19:19 -0400863
Theodore Ts'o09266682003-03-14 22:19:10 -0500864/* Duplicate directory entry found */
865#define PR_2_REPORT_DUP_DIRENT 0x020043
866
Theodore Ts'o5d171192006-11-11 06:32:03 -0500867/* i_blocks_hi should be zero */
868#define PR_2_BLOCKS_HI_ZERO 0x020044
869
Theodore Ts'od45edec2008-03-12 16:10:48 -0400870/* Unexpected HTREE block */
871#define PR_2_UNEXPECTED_HTREE_BLOCK 0x020045
872
Jose R. Santos49a73602007-10-21 21:04:03 -0500873/* Inode found in group where _INODE_UNINIT is set */
874#define PR_2_INOREF_BG_INO_UNINIT 0x020046
875
876/* Inode found in group unused inodes area */
877#define PR_2_INOREF_IN_UNUSED 0x020047
878
Theodore Ts'o911ec622009-04-23 21:31:16 -0400879/* i_file_acl_hi should be zero */
880#define PR_2_I_FILE_ACL_HI_ZERO 0x020048
881
Darrick J. Wong07307112012-08-02 17:27:30 -0400882/* htree root node fails checksum */
883#define PR_2_HTREE_ROOT_CSUM_INVALID 0x020049
884
885/* htree node fails checksum */
886#define PR_2_HTREE_NODE_CSUM_INVALID 0x02004A
887
Darrick J. Wonge8548792012-08-02 17:27:43 -0400888/* dir leaf node fails checksum */
889#define PR_2_LEAF_NODE_CSUM_INVALID 0x02004B
890
891/* no space in leaf for checksum */
892#define PR_2_LEAF_NODE_MISSING_CSUM 0x02004C
893
894/* dir leaf node passes checks, but fails checksum */
895#define PR_2_LEAF_NODE_ONLY_CSUM_INVALID 0x02004D
896
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000897/*
898 * Pass 3 errors
899 */
900
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000901/* Pass 3: Checking directory connectivity */
902#define PR_3_PASS_HEADER 0x030000
903
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000904/* Root inode not allocated */
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000905#define PR_3_NO_ROOT_INODE 0x030001
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000906
907/* No room in lost+found */
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000908#define PR_3_EXPAND_LF_DIR 0x030002
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000909
910/* Unconnected directory inode */
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000911#define PR_3_UNCONNECTED_DIR 0x030003
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000912
913/* /lost+found not found */
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000914#define PR_3_NO_LF_DIR 0x030004
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000915
916/* .. entry is incorrect */
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000917#define PR_3_BAD_DOT_DOT 0x030005
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000918
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000919/* Bad or non-existent /lost+found. Cannot reconnect */
920#define PR_3_NO_LPF 0x030006
921
922/* Could not expand /lost+found */
923#define PR_3_CANT_EXPAND_LPF 0x030007
924
925/* Could not reconnect inode */
926#define PR_3_CANT_RECONNECT 0x030008
927
928/* Error while trying to find /lost+found */
929#define PR_3_ERR_FIND_LPF 0x030009
930
931/* Error in ext2fs_new_block while creating /lost+found */
932#define PR_3_ERR_LPF_NEW_BLOCK 0x03000A
933
934/* Error in ext2fs_new_inode while creating /lost+found */
935#define PR_3_ERR_LPF_NEW_INODE 0x03000B
936
Theodore Ts'odb0691b2008-03-31 12:16:51 -0400937/* Error in ext2fs_new_dir_block while creating /lost+found */
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000938#define PR_3_ERR_LPF_NEW_DIR_BLOCK 0x03000C
Theodore Ts'odb0691b2008-03-31 12:16:51 -0400939
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000940/* Error while writing directory block for /lost+found */
941#define PR_3_ERR_LPF_WRITE_BLOCK 0x03000D
942
943/* Error while adjusting inode count */
944#define PR_3_ADJUST_INODE 0x03000E
945
946/* Couldn't fix parent directory -- error */
947#define PR_3_FIX_PARENT_ERR 0x03000F
948
Theodore Ts'odb0691b2008-03-31 12:16:51 -0400949/* Couldn't fix parent directory -- couldn't find it */
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000950#define PR_3_FIX_PARENT_NOFIND 0x030010
Theodore Ts'odb0691b2008-03-31 12:16:51 -0400951
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000952/* Error allocating inode bitmap */
953#define PR_3_ALLOCATE_IBITMAP_ERROR 0x030011
Theodore Ts'odb0691b2008-03-31 12:16:51 -0400954
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000955/* Error creating root directory */
956#define PR_3_CREATE_ROOT_ERROR 0x030012
957
958/* Error creating lost and found directory */
959#define PR_3_CREATE_LPF_ERROR 0x030013
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000960
Theodore Ts'of8188ff1997-11-14 05:23:04 +0000961/* Root inode is not directory; aborting */
962#define PR_3_ROOT_NOT_DIR_ABORT 0x030014
963
964/* Cannot proceed without a root inode. */
965#define PR_3_NO_ROOT_INODE_ABORT 0x030015
966
Theodore Ts'o7f813ba1998-09-03 01:26:03 +0000967/* Internal error: couldn't find dir_info */
Theodore Ts'o4a9f5931999-03-16 19:32:52 +0000968#define PR_3_NO_DIRINFO 0x030016
969
970/* Lost+found is not a directory */
971#define PR_3_LPF_NOTDIR 0x030017
Theodore Ts'o7f813ba1998-09-03 01:26:03 +0000972
Zheng Liu9676f3a2014-03-03 01:02:52 -0500973/* Lost+found has inline data */
974#define PR_3_LPF_INLINE_DATA 0x030018
975
Darrick J. Wong09918962014-08-02 22:18:30 -0400976/* Cannot allocate lost+found */
977#define PR_3_LPF_NO_SPACE 0x030019
978
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000979/*
Theodore Ts'ob7a00562002-07-20 00:28:07 -0400980 * Pass 3a --- rehashing diretories
981 */
982/* Pass 3a: Reindexing directories */
983#define PR_3A_PASS_HEADER 0x031000
984
985/* Error iterating over directories */
Theodore Ts'o850d05e2002-07-25 00:00:08 -0400986#define PR_3A_OPTIMIZE_ITER 0x031001
Theodore Ts'ob7a00562002-07-20 00:28:07 -0400987
988/* Error rehash directory */
Theodore Ts'odb0691b2008-03-31 12:16:51 -0400989#define PR_3A_OPTIMIZE_DIR_ERR 0x031002
Theodore Ts'ob7a00562002-07-20 00:28:07 -0400990
991/* Rehashing dir header */
Andreas Dilgerae33f572009-04-28 12:59:07 -0600992#define PR_3A_OPTIMIZE_DIR_HEADER 0x031003
Theodore Ts'ob7a00562002-07-20 00:28:07 -0400993
994/* Rehashing directory %d */
Theodore Ts'o850d05e2002-07-25 00:00:08 -0400995#define PR_3A_OPTIMIZE_DIR 0x031004
Theodore Ts'odb0691b2008-03-31 12:16:51 -0400996
997/* Rehashing dir end */
Theodore Ts'o850d05e2002-07-25 00:00:08 -0400998#define PR_3A_OPTIMIZE_DIR_END 0x031005
999
Theodore Ts'ob7a00562002-07-20 00:28:07 -04001000/*
Theodore Ts'o21c84b71997-04-29 16:15:03 +00001001 * Pass 4 errors
1002 */
1003
Theodore Ts'o1b6bf171997-10-03 17:48:10 +00001004/* Pass 4: Checking reference counts */
Andreas Dilgerae33f572009-04-28 12:59:07 -06001005#define PR_4_PASS_HEADER 0x040000
Theodore Ts'o1b6bf171997-10-03 17:48:10 +00001006
Theodore Ts'o21c84b71997-04-29 16:15:03 +00001007/* Unattached zero-length inode */
Andreas Dilgerae33f572009-04-28 12:59:07 -06001008#define PR_4_ZERO_LEN_INODE 0x040001
Theodore Ts'o21c84b71997-04-29 16:15:03 +00001009
1010/* Unattached inode */
Andreas Dilgerae33f572009-04-28 12:59:07 -06001011#define PR_4_UNATTACHED_INODE 0x040002
Theodore Ts'o21c84b71997-04-29 16:15:03 +00001012
1013/* Inode ref count wrong */
Andreas Dilgerae33f572009-04-28 12:59:07 -06001014#define PR_4_BAD_REF_COUNT 0x040003
Theodore Ts'o21c84b71997-04-29 16:15:03 +00001015
Theodore Ts'o1b6bf171997-10-03 17:48:10 +00001016/* Inconsistent inode count information cached */
Andreas Dilgerae33f572009-04-28 12:59:07 -06001017#define PR_4_INCONSISTENT_COUNT 0x040004
Theodore Ts'o1b6bf171997-10-03 17:48:10 +00001018
Theodore Ts'o21c84b71997-04-29 16:15:03 +00001019/*
1020 * Pass 5 errors
1021 */
1022
Theodore Ts'o1b6bf171997-10-03 17:48:10 +00001023/* Pass 5: Checking group summary information */
1024#define PR_5_PASS_HEADER 0x050000
Theodore Ts'odb0691b2008-03-31 12:16:51 -04001025
Theodore Ts'o1b6bf171997-10-03 17:48:10 +00001026/* Padding at end of inode bitmap is not set. */
1027#define PR_5_INODE_BMAP_PADDING 0x050001
1028
1029/* Padding at end of block bitmap is not set. */
1030#define PR_5_BLOCK_BMAP_PADDING 0x050002
1031
1032/* Block bitmap differences header */
Andreas Dilgerae33f572009-04-28 12:59:07 -06001033#define PR_5_BLOCK_BITMAP_HEADER 0x050003
Theodore Ts'o1b6bf171997-10-03 17:48:10 +00001034
1035/* Block not used, but marked in bitmap */
Theodore Ts'of1226322002-03-07 02:47:07 -05001036#define PR_5_BLOCK_UNUSED 0x050004
Theodore Ts'odb0691b2008-03-31 12:16:51 -04001037
Theodore Ts'o1b6bf171997-10-03 17:48:10 +00001038/* Block used, but not marked used in bitmap */
1039#define PR_5_BLOCK_USED 0x050005
1040
Theodore Ts'odb0691b2008-03-31 12:16:51 -04001041/* Block bitmap differences end */
Theodore Ts'o1b6bf171997-10-03 17:48:10 +00001042#define PR_5_BLOCK_BITMAP_END 0x050006
1043
1044/* Inode bitmap differences header */
1045#define PR_5_INODE_BITMAP_HEADER 0x050007
1046
1047/* Inode not used, but marked in bitmap */
Theodore Ts'of1226322002-03-07 02:47:07 -05001048#define PR_5_INODE_UNUSED 0x050008
Theodore Ts'odb0691b2008-03-31 12:16:51 -04001049
Theodore Ts'o1b6bf171997-10-03 17:48:10 +00001050/* Inode used, but not marked used in bitmap */
1051#define PR_5_INODE_USED 0x050009
1052
Theodore Ts'odb0691b2008-03-31 12:16:51 -04001053/* Inode bitmap differences end */
Theodore Ts'o1b6bf171997-10-03 17:48:10 +00001054#define PR_5_INODE_BITMAP_END 0x05000A
1055
1056/* Free inodes count for group wrong */
1057#define PR_5_FREE_INODE_COUNT_GROUP 0x05000B
1058
1059/* Directories count for group wrong */
1060#define PR_5_FREE_DIR_COUNT_GROUP 0x05000C
1061
1062/* Free inodes count wrong */
Andreas Dilgerae33f572009-04-28 12:59:07 -06001063#define PR_5_FREE_INODE_COUNT 0x05000D
Theodore Ts'o1b6bf171997-10-03 17:48:10 +00001064
1065/* Free blocks count for group wrong */
1066#define PR_5_FREE_BLOCK_COUNT_GROUP 0x05000E
1067
1068/* Free blocks count wrong */
1069#define PR_5_FREE_BLOCK_COUNT 0x05000F
1070
1071/* Programming error: bitmap endpoints don't match */
1072#define PR_5_BMAP_ENDPOINTS 0x050010
Theodore Ts'obbd47d72000-06-10 19:21:33 +00001073
Theodore Ts'o1b6bf171997-10-03 17:48:10 +00001074/* Internal error: fudging end of bitmap */
1075#define PR_5_FUDGE_BITMAP_ERROR 0x050011
Theodore Ts'obbd47d72000-06-10 19:21:33 +00001076
1077/* Error copying in replacement inode bitmap */
1078#define PR_5_COPY_IBITMAP_ERROR 0x050012
1079
1080/* Error copying in replacement block bitmap */
1081#define PR_5_COPY_BBITMAP_ERROR 0x050013
1082
Theodore Ts'of1226322002-03-07 02:47:07 -05001083/* Block range not used, but marked in bitmap */
1084#define PR_5_BLOCK_RANGE_UNUSED 0x050014
Theodore Ts'odb0691b2008-03-31 12:16:51 -04001085
Theodore Ts'of1226322002-03-07 02:47:07 -05001086/* Block range used, but not marked used in bitmap */
1087#define PR_5_BLOCK_RANGE_USED 0x050015
1088
1089/* Inode range not used, but marked in bitmap */
1090#define PR_5_INODE_RANGE_UNUSED 0x050016
Jose R. Santos49a73602007-10-21 21:04:03 -05001091
Theodore Ts'of1226322002-03-07 02:47:07 -05001092/* Inode rangeused, but not marked used in bitmap */
1093#define PR_5_INODE_RANGE_USED 0x050017
1094
Jose R. Santos49a73602007-10-21 21:04:03 -05001095/* Block in use but group is marked BLOCK_UNINIT */
1096#define PR_5_BLOCK_UNINIT 0x050018
1097
1098/* Inode in use but group is marked INODE_UNINIT */
1099#define PR_5_INODE_UNINIT 0x050019
1100
Darrick J. Wong11ac7802012-07-30 19:02:04 -04001101/* Inode bitmap checksum does not match */
1102#define PR_5_INODE_BITMAP_CSUM_INVALID 0x05001A
1103
Darrick J. Wongda670fe2012-07-30 19:08:04 -04001104/* Block bitmap checksum does not match */
1105#define PR_5_BLOCK_BITMAP_CSUM_INVALID 0x05001B
1106
Theodore Ts'o21c84b71997-04-29 16:15:03 +00001107/*
Kalpak Shah5107d0d2007-06-21 11:59:06 -04001108 * Post-Pass 5 errors
1109 */
1110
1111/* Recreate the journal if E2F_FLAG_JOURNAL_INODE flag is set */
1112#define PR_6_RECREATE_JOURNAL 0x060001
1113
Aditya Kali7943ccf2012-04-24 14:46:08 -04001114/* Update quota information if it is inconsistent */
1115#define PR_6_UPDATE_QUOTAS 0x060002
1116
Kalpak Shah5107d0d2007-06-21 11:59:06 -04001117/*
Theodore Ts'o21c84b71997-04-29 16:15:03 +00001118 * Function declarations
1119 */
Theodore Ts'o1b6bf171997-10-03 17:48:10 +00001120int fix_problem(e2fsck_t ctx, problem_t code, struct problem_context *pctx);
1121int end_problem_latch(e2fsck_t ctx, int mask);
1122int set_latch_flags(int mask, int setflags, int clearflags);
1123int get_latch_flags(int mask, int *value);
Andreas Dilgerae33f572009-04-28 12:59:07 -06001124void clear_problem_context(struct problem_context *pctx);
Theodore Ts'o21c84b71997-04-29 16:15:03 +00001125
1126/* message.c */
Theodore Ts'ob0e91c82012-03-17 23:21:00 -04001127void print_e2fsck_message(FILE *f, e2fsck_t ctx, const char *msg,
Theodore Ts'odb0691b2008-03-31 12:16:51 -04001128 struct problem_context *pctx, int first,
Theodore Ts'o1a191d62007-07-02 19:04:31 -04001129 int recurse);
Theodore Ts'o21c84b71997-04-29 16:15:03 +00001130