blob: aea5abc59364af2f2cce193d159ebcdf8841968d [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
JP Abgralle0ed7402014-03-19 19:08:39 -070012#include <stdint.h>
Theodore Ts'o1b6bf171997-10-03 17:48:10 +000013typedef __u32 problem_t;
14
Theodore Ts'o21c84b71997-04-29 16:15:03 +000015struct problem_context {
Theodore Ts'o1b6bf171997-10-03 17:48:10 +000016 errcode_t errcode;
Theodore Ts'o86c627e2001-01-11 15:12:14 +000017 ext2_ino_t ino, ino2, dir;
Theodore Ts'o21c84b71997-04-29 16:15:03 +000018 struct ext2_inode *inode;
19 struct ext2_dir_entry *dirent;
Theodore Ts'o15d482b2007-08-20 21:31:11 -040020 blk64_t blk, blk2;
Theodore Ts'o9d1bd3d1998-06-10 20:45:22 +000021 e2_blkcnt_t blkcount;
JP Abgralle0ed7402014-03-19 19:08:39 -070022 dgrp_t group;
23 __u32 csum1, csum2;
Theodore Ts'o246501c1998-03-24 16:22:38 +000024 __u64 num;
Theodore Ts'o1b6bf171997-10-03 17:48:10 +000025 const char *str;
Theodore Ts'o21c84b71997-04-29 16:15:03 +000026};
27
Theodore Ts'o21c84b71997-04-29 16:15:03 +000028/*
29 * We define a set of "latch groups"; these are problems which are
30 * handled as a set. The user answers once for a particular latch
31 * group.
32 */
Theodore Ts'o21afac02001-05-14 12:47:41 +000033#define PR_LATCH_MASK 0x0ff0 /* Latch mask */
Theodore Ts'o21c84b71997-04-29 16:15:03 +000034#define PR_LATCH_BLOCK 0x0010 /* Latch for illegal blocks (pass 1) */
35#define PR_LATCH_BBLOCK 0x0020 /* Latch for bad block inode blocks (pass 1) */
Theodore Ts'o1b6bf171997-10-03 17:48:10 +000036#define PR_LATCH_IBITMAP 0x0030 /* Latch for pass 5 inode bitmap proc. */
37#define PR_LATCH_BBITMAP 0x0040 /* Latch for pass 5 inode bitmap proc. */
38#define PR_LATCH_RELOC 0x0050 /* Latch for superblock relocate hint */
39#define PR_LATCH_DBLOCK 0x0060 /* Latch for pass 1b dup block headers */
Theodore Ts'o21afac02001-05-14 12:47:41 +000040#define PR_LATCH_LOW_DTIME 0x0070 /* Latch for pass1 orphaned list refugees */
Theodore Ts'oda307042002-05-21 21:19:14 -040041#define PR_LATCH_TOOBIG 0x0080 /* Latch for file to big errors */
Theodore Ts'o850d05e2002-07-25 00:00:08 -040042#define PR_LATCH_OPTIMIZE_DIR 0x0090 /* Latch for optimize directories */
Theodore Ts'o60139152009-08-19 01:06:50 -040043#define PR_LATCH_BG_CHECKSUM 0x00A0 /* Latch for block group checksums */
Theodore Ts'o21c84b71997-04-29 16:15:03 +000044
45#define PR_LATCH(x) ((((x) & PR_LATCH_MASK) >> 4) - 1)
46
47/*
Theodore Ts'o1b6bf171997-10-03 17:48:10 +000048 * Latch group descriptor flags
49 */
50#define PRL_YES 0x0001 /* Answer yes */
51#define PRL_NO 0x0002 /* Answer no */
52#define PRL_LATCHED 0x0004 /* The latch group is latched */
53#define PRL_SUPPRESS 0x0008 /* Suppress all latch group questions */
54
55#define PRL_VARIABLE 0x000f /* All the flags that need to be reset */
56
57/*
Theodore Ts'o21c84b71997-04-29 16:15:03 +000058 * Pre-Pass 1 errors
59 */
60
61/* Block bitmap not in group */
62#define PR_0_BB_NOT_GROUP 0x000001
63
64/* Inode bitmap not in group */
65#define PR_0_IB_NOT_GROUP 0x000002
66
67/* Inode table not in group */
68#define PR_0_ITABLE_NOT_GROUP 0x000003
69
Theodore Ts'o1b6bf171997-10-03 17:48:10 +000070/* Superblock corrupt */
71#define PR_0_SB_CORRUPT 0x000004
72
73/* Filesystem size is wrong */
74#define PR_0_FS_SIZE_WRONG 0x000005
75
76/* Fragments not supported */
77#define PR_0_NO_FRAGMENTS 0x000006
78
79/* Bad blocks_per_group */
80#define PR_0_BLOCKS_PER_GROUP 0x000007
81
82/* Bad first_data_block */
83#define PR_0_FIRST_DATA_BLOCK 0x000008
84
85/* Adding UUID to filesystem */
86#define PR_0_ADD_UUID 0x000009
87
Theodore Ts'odb0691b2008-03-31 12:16:51 -040088/* Relocate hint */
Theodore Ts'o1b6bf171997-10-03 17:48:10 +000089#define PR_0_RELOCATE_HINT 0x00000A
90
91/* Miscellaneous superblock corruption */
92#define PR_0_MISC_CORRUPT_SUPER 0x00000B
Theodore Ts'odb0691b2008-03-31 12:16:51 -040093
Theodore Ts'o1b6bf171997-10-03 17:48:10 +000094/* Error determing physical device size of filesystem */
95#define PR_0_GETSIZE_ERROR 0x00000C
96
Theodore Ts'od4b0ce01999-06-18 01:09:29 +000097/* Inode count in the superblock incorrect */
98#define PR_0_INODE_COUNT_WRONG 0x00000D
99
Theodore Ts'o4ea0a112000-05-08 13:33:17 +0000100/* The Hurd does not support the filetype feature */
101#define PR_0_HURD_CLEAR_FILETYPE 0x00000E
Theodore Ts'o3b5386d2000-08-14 14:25:19 +0000102
103/* Journal inode is invalid */
104#define PR_0_JOURNAL_BAD_INODE 0x00000F
105
Theodore Ts'oadee8d72001-07-23 00:17:49 -0400106/* The external journal has multiple filesystems (which we can't handle yet) */
107#define PR_0_JOURNAL_UNSUPP_MULTIFS 0x000010
Theodore Ts'o3b5386d2000-08-14 14:25:19 +0000108
Theodore Ts'oadee8d72001-07-23 00:17:49 -0400109/* Can't find external journal */
110#define PR_0_CANT_FIND_JOURNAL 0x000011
Theodore Ts'o3b5386d2000-08-14 14:25:19 +0000111
Theodore Ts'oadee8d72001-07-23 00:17:49 -0400112/* External journal has bad superblock */
113#define PR_0_EXT_JOURNAL_BAD_SUPER 0x000012
Theodore Ts'o3b5386d2000-08-14 14:25:19 +0000114
115/* Superblock has a bad journal UUID */
116#define PR_0_JOURNAL_BAD_UUID 0x000013
117
118/* Journal has an unknown superblock type */
119#define PR_0_JOURNAL_UNSUPP_SUPER 0x000014
120
121/* Journal superblock is corrupt */
122#define PR_0_JOURNAL_BAD_SUPER 0x000015
123
124/* Journal superblock is corrupt */
125#define PR_0_JOURNAL_HAS_JOURNAL 0x000016
126
127/* Superblock has recovery flag set but no journal */
128#define PR_0_JOURNAL_RECOVER_SET 0x000017
129
Theodore Ts'od37066a2001-12-21 23:28:54 -0500130/* Journal has data, but recovery flag is clear */
131#define PR_0_JOURNAL_RECOVERY_CLEAR 0x000018
Theodore Ts'o3b5386d2000-08-14 14:25:19 +0000132
Theodore Ts'od37066a2001-12-21 23:28:54 -0500133/* Ask if we should clear the journal */
134#define PR_0_JOURNAL_RESET_JOURNAL 0x000019
Theodore Ts'o3b5386d2000-08-14 14:25:19 +0000135
Theodore Ts'o060b5fb2000-12-13 18:07:23 +0000136/* Filesystem revision is 0, but feature flags are set */
137#define PR_0_FS_REV_LEVEL 0x00001A
138
Theodore Ts'oecf1b772000-08-20 22:06:31 +0000139/* Clearing orphan inode */
Theodore Ts'o83949022000-10-25 01:38:50 +0000140#define PR_0_ORPHAN_CLEAR_INODE 0x000020
Theodore Ts'odb0691b2008-03-31 12:16:51 -0400141
Theodore Ts'o80bfaa32000-08-18 15:08:37 +0000142/* Illegal block found in orphaned inode */
Theodore Ts'oecf1b772000-08-20 22:06:31 +0000143#define PR_0_ORPHAN_ILLEGAL_BLOCK_NUM 0x000021
Theodore Ts'o80bfaa32000-08-18 15:08:37 +0000144
145/* Already cleared block found in orphaned inode */
Theodore Ts'oecf1b772000-08-20 22:06:31 +0000146#define PR_0_ORPHAN_ALREADY_CLEARED_BLOCK 0x000022
Theodore Ts'odb0691b2008-03-31 12:16:51 -0400147
Theodore Ts'o80bfaa32000-08-18 15:08:37 +0000148/* Illegal orphan inode in superblock */
Theodore Ts'oecf1b772000-08-20 22:06:31 +0000149#define PR_0_ORPHAN_ILLEGAL_HEAD_INODE 0x000023
Theodore Ts'o80bfaa32000-08-18 15:08:37 +0000150
151/* Illegal inode in orphaned inode list */
Andreas Dilgerae33f572009-04-28 12:59:07 -0600152#define PR_0_ORPHAN_ILLEGAL_INODE 0x000024
Theodore Ts'o80bfaa32000-08-18 15:08:37 +0000153
Theodore Ts'o424cd2b2001-05-14 04:06:56 +0000154/* Journal has unsupported read-only feature - abort */
155#define PR_0_JOURNAL_UNSUPP_ROCOMPAT 0x000025
156
157/* Journal has unsupported incompatible feature - abort */
158#define PR_0_JOURNAL_UNSUPP_INCOMPAT 0x000026
159
Theodore Ts'oc7f23362001-05-23 22:19:47 +0000160/* Journal has unsupported version number */
Theodore Ts'o2f686ac2001-06-02 00:38:40 +0000161#define PR_0_JOURNAL_UNSUPP_VERSION 0x000027
Theodore Ts'oc7f23362001-05-23 22:19:47 +0000162
Theodore Ts'o773fd8a2001-10-06 21:26:27 -0400163/* Moving journal to hidden file */
164#define PR_0_MOVE_JOURNAL 0x000028
165
166/* Error moving journal */
167#define PR_0_ERR_MOVE_JOURNAL 0x000029
168
Theodore Ts'o62e3e7f2001-10-07 02:13:30 -0400169/* Clearing V2 journal superblock */
170#define PR_0_CLEAR_V2_JOURNAL 0x00002A
171
Theodore Ts'od37066a2001-12-21 23:28:54 -0500172/* Run journal anyway */
173#define PR_0_JOURNAL_RUN 0x00002B
174
175/* Run journal anyway by default */
176#define PR_0_JOURNAL_RUN_DEFAULT 0x00002C
177
Theodore Ts'oa435ec32003-08-21 00:40:26 -0400178/* Backup journal inode blocks */
179#define PR_0_BACKUP_JNL 0x00002D
180
Theodore Ts'oe75cfc52004-12-16 20:13:45 -0500181/* Reserved blocks w/o resize_inode */
182#define PR_0_NONZERO_RESERVED_GDT_BLOCKS 0x00002E
183
184/* Resize_inode not enabled, but resize inode is non-zero */
185#define PR_0_CLEAR_RESIZE_INODE 0x00002F
186
Theodore Ts'oc3ffaf82004-12-24 01:42:22 -0500187/* Resize inode invalid */
188#define PR_0_RESIZE_INODE_INVALID 0x000030
189
Theodore Ts'o8dceb922005-09-24 21:59:45 -0400190/* Last mount time is in the future */
191#define PR_0_FUTURE_SB_LAST_MOUNT 0x000031
192
193/* Last write time is in the future */
194#define PR_0_FUTURE_SB_LAST_WRITE 0x000032
195
Theodore Ts'ob1c52b22006-03-10 15:25:59 -0500196/* Superblock hint for external journal incorrect */
197#define PR_0_EXTERNAL_JOURNAL_HINT 0x000033
198
Theodore Ts'of77704e2006-11-11 22:32:35 -0500199/* Superblock hint for external journal incorrect */
200#define PR_0_DIRHASH_HINT 0x000034
201
Jose R. Santos49a73602007-10-21 21:04:03 -0500202/* Group descriptor N checksum is invalid */
203#define PR_0_GDT_CSUM 0x000035
204
205/* Group descriptor N marked uninitialized without feature set. */
206#define PR_0_GDT_UNINIT 0x000036
207
JP Abgralle0ed7402014-03-19 19:08:39 -0700208/* Block bitmap is not initialised and Inode bitmap is -- NO LONGER USED */
209/* #define PR_0_BB_UNINIT_IB_INIT 0x000037 */
Jose R. Santos49a73602007-10-21 21:04:03 -0500210
211/* Group descriptor N has invalid unused inodes count. */
212#define PR_0_GDT_ITABLE_UNUSED 0x000038
213
Andreas Dilger0d5439c2008-03-31 12:14:22 -0400214/* Last group block bitmap is uninitialized. */
215#define PR_0_BB_UNINIT_LAST 0x000039
216
Theodore Ts'o185c4ae2008-05-23 01:00:19 -0400217/* Journal transaction found corrupt */
218#define PR_0_JNL_TXN_CORRUPT 0x00003A
219
Theodore Ts'o80875db2008-10-12 23:09:26 -0400220/* The test_fs filesystem flag is set and ext4 is available */
221#define PR_0_CLEAR_TESTFS_FLAG 0x00003B
222
Theodore Ts'o26ea4892009-07-16 23:44:50 -0400223/* Last mount time is in the future (fudged) */
224#define PR_0_FUTURE_SB_LAST_MOUNT_FUDGED 0x00003C
225
226/* Last write time is in the future (fudged) */
227#define PR_0_FUTURE_SB_LAST_WRITE_FUDGED 0x00003D
228
Theodore Ts'o60139152009-08-19 01:06:50 -0400229/* Block group checksum (latch question) */
230#define PR_0_GDT_CSUM_LATCH 0x00003E
231
JP Abgralle0ed7402014-03-19 19:08:39 -0700232/* Free inodes count wrong */
233#define PR_0_FREE_INODE_COUNT 0x00003F
234
235/* Free blocks count wrong */
236#define PR_0_FREE_BLOCK_COUNT 0x000040
237
238/* Make quota file hidden */
239#define PR_0_HIDE_QUOTA 0x000041
240
241/* Superblock has invalid MMP block. */
242#define PR_0_MMP_INVALID_BLK 0x000042
243
244/* Superblock has invalid MMP magic. */
245#define PR_0_MMP_INVALID_MAGIC 0x000043
246
247/* Opening file system failed */
248#define PR_0_OPEN_FAILED 0x000044
249
250/* Checking group descriptor failed */
251#define PR_0_CHECK_DESC_FAILED 0x000045
252
253/* 64bit is set but extents are not set. */
254#define PR_0_64BIT_WITHOUT_EXTENTS 0x000048
Darrick J. Wong27b22972013-10-11 21:20:36 -0400255
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000256/*
257 * Pass 1 errors
258 */
259
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000260/* Pass 1: Checking inodes, blocks, and sizes */
261#define PR_1_PASS_HEADER 0x010000
262
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000263/* Root directory is not an inode */
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000264#define PR_1_ROOT_NO_DIR 0x010001
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000265
266/* Root directory has dtime set */
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000267#define PR_1_ROOT_DTIME 0x010002
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000268
269/* Reserved inode has bad mode */
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000270#define PR_1_RESERVED_BAD_MODE 0x010003
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000271
272/* Deleted inode has zero dtime */
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000273#define PR_1_ZERO_DTIME 0x010004
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000274
275/* Inode in use, but dtime set */
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000276#define PR_1_SET_DTIME 0x010005
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000277
278/* Zero-length directory */
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000279#define PR_1_ZERO_LENGTH_DIR 0x010006
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000280
281/* Block bitmap conflicts with some other fs block */
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000282#define PR_1_BB_CONFLICT 0x010007
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000283
284/* Inode bitmap conflicts with some other fs block */
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000285#define PR_1_IB_CONFLICT 0x010008
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000286
287/* Inode table conflicts with some other fs block */
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000288#define PR_1_ITABLE_CONFLICT 0x010009
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000289
290/* Block bitmap is on a bad block */
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000291#define PR_1_BB_BAD_BLOCK 0x01000A
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000292
293/* Inode bitmap is on a bad block */
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000294#define PR_1_IB_BAD_BLOCK 0x01000B
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000295
296/* Inode has incorrect i_size */
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000297#define PR_1_BAD_I_SIZE 0x01000C
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000298
299/* Inode has incorrect i_blocks */
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000300#define PR_1_BAD_I_BLOCKS 0x01000D
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000301
302/* Illegal block number in inode */
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000303#define PR_1_ILLEGAL_BLOCK_NUM 0x01000E
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000304
305/* Block number overlaps fs metadata */
306#define PR_1_BLOCK_OVERLAPS_METADATA 0x01000F
307
308/* Inode has illegal blocks (latch question) */
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000309#define PR_1_INODE_BLOCK_LATCH 0x010010
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000310
311/* Too many bad blocks in inode */
Andreas Dilgerae33f572009-04-28 12:59:07 -0600312#define PR_1_TOO_MANY_BAD_BLOCKS 0x010011
Theodore Ts'odb0691b2008-03-31 12:16:51 -0400313
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000314/* Illegal block number in bad block inode */
Andreas Dilgerae33f572009-04-28 12:59:07 -0600315#define PR_1_BB_ILLEGAL_BLOCK_NUM 0x010012
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000316
317/* Bad block inode has illegal blocks (latch question) */
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000318#define PR_1_INODE_BBLOCK_LATCH 0x010013
319
320/* Duplicate or bad blocks in use! */
321#define PR_1_DUP_BLOCKS_PREENSTOP 0x010014
Theodore Ts'odb0691b2008-03-31 12:16:51 -0400322
323/* Bad block used as bad block indirect block */
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000324#define PR_1_BBINODE_BAD_METABLOCK 0x010015
325
326/* Inconsistency can't be fixed prompt */
327#define PR_1_BBINODE_BAD_METABLOCK_PROMPT 0x010016
Theodore Ts'odb0691b2008-03-31 12:16:51 -0400328
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000329/* Bad primary block */
Theodore Ts'ob2f93192000-12-30 20:33:42 +0000330#define PR_1_BAD_PRIMARY_BLOCK 0x010017
Theodore Ts'odb0691b2008-03-31 12:16:51 -0400331
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000332/* Bad primary block prompt */
Theodore Ts'ob2f93192000-12-30 20:33:42 +0000333#define PR_1_BAD_PRIMARY_BLOCK_PROMPT 0x010018
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000334
335/* Bad primary superblock */
Theodore Ts'ob2f93192000-12-30 20:33:42 +0000336#define PR_1_BAD_PRIMARY_SUPERBLOCK 0x010019
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000337
338/* Bad primary block group descriptors */
Theodore Ts'ob2f93192000-12-30 20:33:42 +0000339#define PR_1_BAD_PRIMARY_GROUP_DESCRIPTOR 0x01001A
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000340
341/* Bad superblock in group */
Theodore Ts'ob2f93192000-12-30 20:33:42 +0000342#define PR_1_BAD_SUPERBLOCK 0x01001B
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000343
344/* Bad block group descriptors in group */
Theodore Ts'ob2f93192000-12-30 20:33:42 +0000345#define PR_1_BAD_GROUP_DESCRIPTORS 0x01001C
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000346
Theodore Ts'odb0691b2008-03-31 12:16:51 -0400347/* Block claimed for no reason */
Theodore Ts'ob2f93192000-12-30 20:33:42 +0000348#define PR_1_PROGERR_CLAIMED_BLOCK 0x01001D
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000349
Theodore Ts'of8188ff1997-11-14 05:23:04 +0000350/* Error allocating blocks for relocating metadata */
Theodore Ts'ob2f93192000-12-30 20:33:42 +0000351#define PR_1_RELOC_BLOCK_ALLOCATE 0x01001E
Theodore Ts'odb0691b2008-03-31 12:16:51 -0400352
Theodore Ts'of8188ff1997-11-14 05:23:04 +0000353/* Error allocating block buffer during relocation process */
Theodore Ts'ob2f93192000-12-30 20:33:42 +0000354#define PR_1_RELOC_MEMORY_ALLOCATE 0x01001F
Theodore Ts'odb0691b2008-03-31 12:16:51 -0400355
356/* Relocating metadata group information from X to Y */
Theodore Ts'ob2f93192000-12-30 20:33:42 +0000357#define PR_1_RELOC_FROM_TO 0x010020
Theodore Ts'odb0691b2008-03-31 12:16:51 -0400358
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000359/* Relocating metatdata group information to X */
Theodore Ts'ob2f93192000-12-30 20:33:42 +0000360#define PR_1_RELOC_TO 0x010021
Theodore Ts'odb0691b2008-03-31 12:16:51 -0400361
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000362/* Block read error during relocation process */
Theodore Ts'ob2f93192000-12-30 20:33:42 +0000363#define PR_1_RELOC_READ_ERR 0x010022
Theodore Ts'odb0691b2008-03-31 12:16:51 -0400364
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000365/* Block write error during relocation process */
Theodore Ts'ob2f93192000-12-30 20:33:42 +0000366#define PR_1_RELOC_WRITE_ERR 0x010023
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000367
368/* Error allocating inode bitmap */
Theodore Ts'ob2f93192000-12-30 20:33:42 +0000369#define PR_1_ALLOCATE_IBITMAP_ERROR 0x010024
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000370
371/* Error allocating block bitmap */
Theodore Ts'ob2f93192000-12-30 20:33:42 +0000372#define PR_1_ALLOCATE_BBITMAP_ERROR 0x010025
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000373
374/* Error allocating icount structure */
Theodore Ts'ob2f93192000-12-30 20:33:42 +0000375#define PR_1_ALLOCATE_ICOUNT 0x010026
Theodore Ts'odb0691b2008-03-31 12:16:51 -0400376
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000377/* Error allocating dbcount */
Theodore Ts'ob2f93192000-12-30 20:33:42 +0000378#define PR_1_ALLOCATE_DBCOUNT 0x010027
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000379
380/* Error while scanning inodes */
Theodore Ts'ob2f93192000-12-30 20:33:42 +0000381#define PR_1_ISCAN_ERROR 0x010028
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000382
383/* Error while iterating over blocks */
Theodore Ts'ob2f93192000-12-30 20:33:42 +0000384#define PR_1_BLOCK_ITERATE 0x010029
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000385
Theodore Ts'odb0691b2008-03-31 12:16:51 -0400386/* Error while storing inode count information */
Theodore Ts'ob2f93192000-12-30 20:33:42 +0000387#define PR_1_ICOUNT_STORE 0x01002A
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000388
Theodore Ts'odb0691b2008-03-31 12:16:51 -0400389/* Error while storing directory block information */
Theodore Ts'ob2f93192000-12-30 20:33:42 +0000390#define PR_1_ADD_DBLOCK 0x01002B
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000391
392/* Error while reading inode (for clearing) */
Theodore Ts'ob2f93192000-12-30 20:33:42 +0000393#define PR_1_READ_INODE 0x01002C
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000394
Theodore Ts'of8188ff1997-11-14 05:23:04 +0000395/* Suppress messages prompt */
Theodore Ts'ob2f93192000-12-30 20:33:42 +0000396#define PR_1_SUPPRESS_MESSAGES 0x01002D
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000397
Theodore Ts'o6fdc7a31999-11-10 13:34:40 +0000398/* Imagic flag set on an inode when filesystem doesn't support it */
399#define PR_1_SET_IMAGIC 0x01002F
400
401/* Immutable flag set on a device or socket inode */
402#define PR_1_SET_IMMUTABLE 0x010030
Theodore Ts'o19178752000-02-11 15:55:07 +0000403
404/* Compression flag set on a non-compressed filesystem */
405#define PR_1_COMPR_SET 0x010031
406
Theodore Ts'od647a1e2000-05-27 14:40:09 +0000407/* Non-zero size on on device, fifo or socket inode */
408#define PR_1_SET_NONZSIZE 0x010032
409
Theodore Ts'o060b5fb2000-12-13 18:07:23 +0000410/* Filesystem revision is 0, but feature flags are set */
411#define PR_1_FS_REV_LEVEL 0x010033
412
Theodore Ts'of18996c2001-01-03 16:57:24 +0000413/* Journal inode not in use, needs clearing */
Theodore Ts'oa9ca2012001-01-12 21:53:25 +0000414#define PR_1_JOURNAL_INODE_NOT_CLEAR 0x010034
Theodore Ts'of18996c2001-01-03 16:57:24 +0000415
Theodore Ts'oa9ca2012001-01-12 21:53:25 +0000416/* Journal inode has wrong mode */
417#define PR_1_JOURNAL_BAD_MODE 0x010035
Theodore Ts'o21afac02001-05-14 12:47:41 +0000418
419/* Inode that was part of orphan linked list */
420#define PR_1_LOW_DTIME 0x010036
421
422/* Latch question which asks how to deal with low dtime inodes */
423#define PR_1_ORPHAN_LIST_REFUGEES 0x010037
Theodore Ts'o342d8472001-07-02 11:54:09 -0400424
425/* Error allocating refcount structure */
426#define PR_1_ALLOCATE_REFCOUNT 0x010038
Theodore Ts'odb0691b2008-03-31 12:16:51 -0400427
Theodore Ts'o342d8472001-07-02 11:54:09 -0400428/* Error reading Extended Attribute block */
429#define PR_1_READ_EA_BLOCK 0x010039
430
431/* Invalid Extended Attribute block */
432#define PR_1_BAD_EA_BLOCK 0x01003A
433
Theodore Ts'oe8a3ee62001-07-07 11:12:50 -0400434/* Error reading Extended Attribute block while fixing refcount -- abort */
435#define PR_1_EXTATTR_READ_ABORT 0x01003B
436
437/* Extended attribute reference count incorrect */
438#define PR_1_EXTATTR_REFCOUNT 0x01003C
439
Theodore Ts'odb0691b2008-03-31 12:16:51 -0400440/* Error writing Extended Attribute block while fixing refcount */
Theodore Ts'oa6217f52010-05-12 18:58:53 -0400441#define PR_1_EXTATTR_WRITE_ABORT 0x01003D
Theodore Ts'o55fd07e2001-07-19 16:31:25 -0400442
443/* Multiple EA blocks not supported */
444#define PR_1_EA_MULTI_BLOCK 0x01003E
445
446/* Error allocating EA region allocation structure */
Theodore Ts'oa6217f52010-05-12 18:58:53 -0400447#define PR_1_EA_ALLOC_REGION_ABORT 0x01003F
Andreas Dilgerb94a0522002-05-18 13:16:30 -0600448
Theodore Ts'o55fd07e2001-07-19 16:31:25 -0400449/* Error EA allocation collision */
450#define PR_1_EA_ALLOC_COLLISION 0x010040
Andreas Dilgerb94a0522002-05-18 13:16:30 -0600451
Theodore Ts'o55fd07e2001-07-19 16:31:25 -0400452/* Bad extended attribute name */
453#define PR_1_EA_BAD_NAME 0x010041
454
455/* Bad extended attribute value */
Andreas Dilgerb94a0522002-05-18 13:16:30 -0600456#define PR_1_EA_BAD_VALUE 0x010042
457
Theodore Ts'oda307042002-05-21 21:19:14 -0400458/* Inode too big (latch question) */
459#define PR_1_INODE_TOOBIG 0x010043
460
461/* Directory too big */
462#define PR_1_TOOBIG_DIR 0x010044
463
464/* Regular file too big */
465#define PR_1_TOOBIG_REG 0x010045
466
467/* Symlink too big */
468#define PR_1_TOOBIG_SYMLINK 0x010046
469
Theodore Ts'o8fdc9982002-06-25 23:26:34 -0400470/* INDEX_FL flag set on a non-HTREE filesystem */
471#define PR_1_HTREE_SET 0x010047
472
Theodore Ts'odb0691b2008-03-31 12:16:51 -0400473/* INDEX_FL flag set on a non-directory */
Theodore Ts'o503f9e72002-06-26 16:52:10 -0400474#define PR_1_HTREE_NODIR 0x010048
475
Theodore Ts'odb0691b2008-03-31 12:16:51 -0400476/* Invalid root node in HTREE directory */
Theodore Ts'o503f9e72002-06-26 16:52:10 -0400477#define PR_1_HTREE_BADROOT 0x010049
478
Theodore Ts'odb0691b2008-03-31 12:16:51 -0400479/* Unsupported hash version in HTREE directory */
Theodore Ts'o503f9e72002-06-26 16:52:10 -0400480#define PR_1_HTREE_HASHV 0x01004A
481
Theodore Ts'odb0691b2008-03-31 12:16:51 -0400482/* Incompatible flag in HTREE root node */
Theodore Ts'o503f9e72002-06-26 16:52:10 -0400483#define PR_1_HTREE_INCOMPAT 0x01004B
484
Theodore Ts'odb0691b2008-03-31 12:16:51 -0400485/* HTREE too deep */
Theodore Ts'o503f9e72002-06-26 16:52:10 -0400486#define PR_1_HTREE_DEPTH 0x01004C
487
Theodore Ts'o000ba402003-11-21 10:41:58 -0500488/* Bad block has indirect block that conflicts with filesystem block */
489#define PR_1_BB_FS_BLOCK 0x01004D
490
Theodore Ts'oc3ffaf82004-12-24 01:42:22 -0500491/* Resize inode failed */
492#define PR_1_RESIZE_INODE_CREATE 0x01004E
493
Theodore Ts'odb0691b2008-03-31 12:16:51 -0400494/* inode->i_size is too long */
Theodore Ts'ocebe48a2005-03-21 13:15:45 -0500495#define PR_1_EXTRA_ISIZE 0x01004F
496
497/* attribute name is too long */
498#define PR_1_ATTR_NAME_LEN 0x010050
499
500/* wrong EA value offset */
501#define PR_1_ATTR_VALUE_OFFSET 0x010051
502
503/* wrong EA blocknumber */
504#define PR_1_ATTR_VALUE_BLOCK 0x010052
505
506/* wrong EA value size */
507#define PR_1_ATTR_VALUE_SIZE 0x010053
508
509/* wrong EA hash value */
510#define PR_1_ATTR_HASH 0x010054
511
Theodore Ts'ofbc3f902007-04-02 10:08:59 -0400512/* inode appears to be a directory */
513#define PR_1_TREAT_AS_DIRECTORY 0x010055
514
Theodore Ts'o15d482b2007-08-20 21:31:11 -0400515/* Error while reading extent tree */
516#define PR_1_READ_EXTENT 0x010056
517
Theodore Ts'o7518c172008-12-25 22:42:38 -0500518/* Failure to iterate extents */
519#define PR_1_EXTENT_ITERATE_FAILURE 0x010057
Theodore Ts'o15d482b2007-08-20 21:31:11 -0400520
521/* Bad starting block in extent */
522#define PR_1_EXTENT_BAD_START_BLK 0x010058
523
524/* Extent ends beyond filesystem */
525#define PR_1_EXTENT_ENDS_BEYOND 0x010059
526
527/* EXTENTS_FL flag set on a non-extents capable filesystem */
528#define PR_1_EXTENTS_SET 0x01005A
529
530/* inode has extents, superblock missing INCOMPAT_EXTENTS feature */
531#define PR_1_EXTENT_FEATURE 0x01005B
532
533/* inode missing EXTENTS_FL, but is an extent inode */
534#define PR_1_UNSET_EXTENT_FL 0x01005C
535
Theodore Ts'oee19c902008-03-13 23:13:18 -0400536/* Fast symlink has EXTENTS_FL set */
537#define PR_1_FAST_SYMLINK_EXTENT_FL 0x01005D
538
Theodore Ts'od5a8f9a2008-06-02 20:12:34 -0400539/* Extents are out of order */
540#define PR_1_OUT_OF_ORDER_EXTENTS 0x01005E
541
Theodore Ts'o7518c172008-12-25 22:42:38 -0500542/* Extent node header invalid */
543#define PR_1_EXTENT_HEADER_INVALID 0x01005F
544
JP Abgralle0ed7402014-03-19 19:08:39 -0700545/* PR_1_EOFBLOCKS_FL_SET 0x010060 was here */
Theodore Ts'o2291fbb2010-05-10 10:17:44 -0400546
JP Abgralle0ed7402014-03-19 19:08:39 -0700547/* Failed to convert subcluster bitmap */
548#define PR_1_CONVERT_SUBCLUSTER 0x010061
549
550/* Quota inode has wrong mode */
551#define PR_1_QUOTA_BAD_MODE 0x010062
552
553/* Quota inode is not in use, but contains data */
554#define PR_1_QUOTA_INODE_NOT_CLEAR 0x010063
555
556/* Quota inode is user visible */
557#define PR_1_QUOTA_INODE_NOT_HIDDEN 0x010064
558
559/* Invalid bad inode */
560#define PR_1_INVALID_BAD_INODE 0x010065
561
562/* Extent has zero length */
563#define PR_1_EXTENT_LENGTH_ZERO 0x010066
564
565/* Index start doesn't match start of next extent down */
566#define PR_1_EXTENT_INDEX_START_INVALID 0x01006D
567
568#define PR_1_EXTENT_END_OUT_OF_BOUNDS 0x01006E
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000569/*
570 * Pass 1b errors
571 */
572
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000573/* Pass 1B: Rescan for duplicate/bad blocks */
574#define PR_1B_PASS_HEADER 0x011000
575
576/* Duplicate/bad block(s) header */
577#define PR_1B_DUP_BLOCK_HEADER 0x011001
578
579/* Duplicate/bad block(s) in inode */
580#define PR_1B_DUP_BLOCK 0x011002
581
582/* Duplicate/bad block(s) end */
583#define PR_1B_DUP_BLOCK_END 0x011003
Theodore Ts'odb0691b2008-03-31 12:16:51 -0400584
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000585/* Error while scanning inodes */
586#define PR_1B_ISCAN_ERROR 0x011004
587
588/* Error allocating inode bitmap */
589#define PR_1B_ALLOCATE_IBITMAP_ERROR 0x011005
590
Theodore Ts'o133a56d2000-11-17 05:40:49 +0000591/* Error while iterating over blocks */
Andreas Dilger7494cbf2009-04-27 16:59:24 -0600592#define PR_1B_BLOCK_ITERATE 0x011006
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000593
Theodore Ts'o0684a4f2002-08-17 10:19:44 -0400594/* Error adjusting EA refcount */
Andreas Dilger7494cbf2009-04-27 16:59:24 -0600595#define PR_1B_ADJ_EA_REFCOUNT 0x011007
Theodore Ts'o0684a4f2002-08-17 10:19:44 -0400596
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000597/* Pass 1C: Scan directories for inodes with dup blocks. */
598#define PR_1C_PASS_HEADER 0x012000
599
600
601/* Pass 1D: Reconciling duplicate blocks */
602#define PR_1D_PASS_HEADER 0x013000
603
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000604/* File has duplicate blocks */
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000605#define PR_1D_DUP_FILE 0x013001
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000606
Theodore Ts'odb0691b2008-03-31 12:16:51 -0400607/* List of files sharing duplicate blocks */
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000608#define PR_1D_DUP_FILE_LIST 0x013002
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000609
Theodore Ts'odb0691b2008-03-31 12:16:51 -0400610/* File sharing blocks with filesystem metadata */
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000611#define PR_1D_SHARE_METADATA 0x013003
Theodore Ts'o521e3681997-04-29 17:48:10 +0000612
Theodore Ts'odb0691b2008-03-31 12:16:51 -0400613/* Report of how many duplicate/bad inodes */
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000614#define PR_1D_NUM_DUP_INODES 0x013004
615
616/* Duplicated blocks already reassigned or cloned. */
617#define PR_1D_DUP_BLOCKS_DEALT 0x013005
618
619/* Clone duplicate/bad blocks? */
620#define PR_1D_CLONE_QUESTION 0x013006
621
622/* Delete file? */
623#define PR_1D_DELETE_QUESTION 0x013007
624
625/* Couldn't clone file (error) */
626#define PR_1D_CLONE_ERROR 0x013008
Theodore Ts'odb0691b2008-03-31 12:16:51 -0400627
Theodore Ts'o890a2f92015-07-14 22:50:51 -0400628/* Error allocating memory for encrypted directory list */
629#define PR_1_ALLOCATE_ENCRYPTED_DIRLIST 0x01007E
630
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000631/*
632 * Pass 2 errors
633 */
634
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000635/* Pass 2: Checking directory structure */
636#define PR_2_PASS_HEADER 0x020000
637
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000638/* Bad inode number for '.' */
639#define PR_2_BAD_INODE_DOT 0x020001
640
641/* Directory entry has bad inode number */
642#define PR_2_BAD_INO 0x020002
643
644/* Directory entry has deleted or unused inode */
645#define PR_2_UNUSED_INODE 0x020003
646
647/* Directry entry is link to '.' */
648#define PR_2_LINK_DOT 0x020004
649
650/* Directory entry points to inode now located in a bad block */
651#define PR_2_BB_INODE 0x020005
652
653/* Directory entry contains a link to a directory */
654#define PR_2_LINK_DIR 0x020006
655
656/* Directory entry contains a link to the root directry */
657#define PR_2_LINK_ROOT 0x020007
658
659/* Directory entry has illegal characters in its name */
660#define PR_2_BAD_NAME 0x020008
661
Theodore Ts'odb0691b2008-03-31 12:16:51 -0400662/* Missing '.' in directory inode */
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000663#define PR_2_MISSING_DOT 0x020009
664
Theodore Ts'odb0691b2008-03-31 12:16:51 -0400665/* Missing '..' in directory inode */
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000666#define PR_2_MISSING_DOT_DOT 0x02000A
667
668/* First entry in directory inode doesn't contain '.' */
669#define PR_2_1ST_NOT_DOT 0x02000B
670
671/* Second entry in directory inode doesn't contain '..' */
672#define PR_2_2ND_NOT_DOT_DOT 0x02000C
673
674/* i_faddr should be zero */
675#define PR_2_FADDR_ZERO 0x02000D
676
677/* i_file_acl should be zero */
678#define PR_2_FILE_ACL_ZERO 0x02000E
679
680/* i_dir_acl should be zero */
681#define PR_2_DIR_ACL_ZERO 0x02000F
682
683/* i_frag should be zero */
684#define PR_2_FRAG_ZERO 0x020010
685
686/* i_fsize should be zero */
687#define PR_2_FSIZE_ZERO 0x020011
Theodore Ts'odb0691b2008-03-31 12:16:51 -0400688
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000689/* inode has bad mode */
690#define PR_2_BAD_MODE 0x020012
691
692/* directory corrupted */
693#define PR_2_DIR_CORRUPTED 0x020013
Theodore Ts'odb0691b2008-03-31 12:16:51 -0400694
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000695/* filename too long */
696#define PR_2_FILENAME_LONG 0x020014
Theodore Ts'odb0691b2008-03-31 12:16:51 -0400697
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000698/* Directory inode has a missing block (hole) */
699#define PR_2_DIRECTORY_HOLE 0x020015
700
701/* '.' is not NULL terminated */
702#define PR_2_DOT_NULL_TERM 0x020016
703
704/* '..' is not NULL terminated */
705#define PR_2_DOT_DOT_NULL_TERM 0x020017
706
Theodore Ts'o7cf73dc1997-08-14 17:17:16 +0000707/* Illegal character device in inode */
708#define PR_2_BAD_CHAR_DEV 0x020018
709
710/* Illegal block device in inode */
711#define PR_2_BAD_BLOCK_DEV 0x020019
712
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000713/* Duplicate '.' entry */
714#define PR_2_DUP_DOT 0x02001A
715
716/* Duplicate '..' entry */
717#define PR_2_DUP_DOT_DOT 0x02001B
Theodore Ts'odb0691b2008-03-31 12:16:51 -0400718
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000719/* Internal error: couldn't find dir_info */
720#define PR_2_NO_DIRINFO 0x02001C
721
722/* Final rec_len is wrong */
723#define PR_2_FINAL_RECLEN 0x02001D
724
725/* Error allocating icount structure */
726#define PR_2_ALLOCATE_ICOUNT 0x02001E
727
728/* Error iterating over directory blocks */
729#define PR_2_DBLIST_ITERATE 0x02001F
730
731/* Error reading directory block */
732#define PR_2_READ_DIRBLOCK 0x020020
733
734/* Error writing directory block */
735#define PR_2_WRITE_DIRBLOCK 0x020021
736
737/* Error allocating new directory block */
738#define PR_2_ALLOC_DIRBOCK 0x020022
739
740/* Error deallocating inode */
741#define PR_2_DEALLOC_INODE 0x020023
742
Theodore Ts'of8188ff1997-11-14 05:23:04 +0000743/* Directory entry for '.' is big. Split? */
Theodore Ts'o7142db01999-11-08 18:46:54 +0000744#define PR_2_SPLIT_DOT 0x020024
Theodore Ts'of8188ff1997-11-14 05:23:04 +0000745
Theodore Ts'o1dde43f1998-11-14 04:18:28 +0000746/* Illegal FIFO */
747#define PR_2_BAD_FIFO 0x020025
748
749/* Illegal socket */
750#define PR_2_BAD_SOCKET 0x020026
751
Theodore Ts'oaa4115a1999-10-21 19:33:18 +0000752/* Directory filetype not set */
753#define PR_2_SET_FILETYPE 0x020027
754
755/* Directory filetype incorrect */
756#define PR_2_BAD_FILETYPE 0x020028
757
Theodore Ts'o7847c1d1999-10-22 15:11:42 +0000758/* Directory filetype set when it shouldn't be */
759#define PR_2_CLEAR_FILETYPE 0x020029
760
Theodore Ts'oc40db6d1999-10-25 21:03:34 +0000761/* Directory filename can't be zero-length */
762#define PR_2_NULL_NAME 0x020030
763
Theodore Ts'obcf9c5d2002-05-21 09:14:17 -0400764/* Invalid symlink */
765#define PR_2_INVALID_SYMLINK 0x020031
Theodore Ts'ofdbdea02001-06-02 04:26:26 +0000766
Theodore Ts'o342d8472001-07-02 11:54:09 -0400767/* i_file_acl (extended attribute) is bad */
768#define PR_2_FILE_ACL_BAD 0x020032
769
Theodore Ts'oa4742692001-08-09 04:14:04 -0400770/* Filesystem contains large files, but has no such flag in sb */
771#define PR_2_FEATURE_LARGE_FILES 0x020033
772
Theodore Ts'o8fdc9982002-06-25 23:26:34 -0400773/* Node in HTREE directory not referenced */
774#define PR_2_HTREE_NOTREF 0x020034
775
776/* Node in HTREE directory referenced twice */
777#define PR_2_HTREE_DUPREF 0x020035
778
779/* Node in HTREE directory has bad min hash */
780#define PR_2_HTREE_MIN_HASH 0x020036
781
782/* Node in HTREE directory has bad max hash */
783#define PR_2_HTREE_MAX_HASH 0x020037
784
785/* Clear invalid HTREE directory */
786#define PR_2_HTREE_CLEAR 0x020038
787
788/* Clear the htree flag forcibly */
Theodore Ts'o33db8f82005-02-05 10:28:15 -0500789/* #define PR_2_HTREE_FCLR 0x020039 */
Theodore Ts'o8fdc9982002-06-25 23:26:34 -0400790
791/* Bad block in htree interior node */
792#define PR_2_HTREE_BADBLK 0x02003A
793
Theodore Ts'o0684a4f2002-08-17 10:19:44 -0400794/* Error adjusting EA refcount */
795#define PR_2_ADJ_EA_REFCOUNT 0x02003B
796
Theodore Ts'oea1959f2002-08-31 02:32:41 -0400797/* Invalid HTREE root node */
798#define PR_2_HTREE_BAD_ROOT 0x02003C
799
Theodore Ts'oad4fa462002-09-30 11:19:19 -0400800/* Invalid HTREE limit */
801#define PR_2_HTREE_BAD_LIMIT 0x02003D
802
803/* Invalid HTREE count */
804#define PR_2_HTREE_BAD_COUNT 0x02003E
805
806/* HTREE interior node has out-of-order hashes in table */
807#define PR_2_HTREE_HASH_ORDER 0x02003F
808
809/* Node in HTREE directory has bad depth */
Theodore Ts'ob0700a12003-03-14 01:43:56 -0500810#define PR_2_HTREE_BAD_DEPTH 0x020040
811
812/* Duplicate directory entry found */
813#define PR_2_DUPLICATE_DIRENT 0x020041
814
815/* Non-unique filename found */
816#define PR_2_NON_UNIQUE_FILE 0x020042
Theodore Ts'oad4fa462002-09-30 11:19:19 -0400817
Theodore Ts'o09266682003-03-14 22:19:10 -0500818/* Duplicate directory entry found */
819#define PR_2_REPORT_DUP_DIRENT 0x020043
820
Theodore Ts'o5d171192006-11-11 06:32:03 -0500821/* i_blocks_hi should be zero */
822#define PR_2_BLOCKS_HI_ZERO 0x020044
823
Theodore Ts'od45edec2008-03-12 16:10:48 -0400824/* Unexpected HTREE block */
825#define PR_2_UNEXPECTED_HTREE_BLOCK 0x020045
826
Jose R. Santos49a73602007-10-21 21:04:03 -0500827/* Inode found in group where _INODE_UNINIT is set */
828#define PR_2_INOREF_BG_INO_UNINIT 0x020046
829
830/* Inode found in group unused inodes area */
831#define PR_2_INOREF_IN_UNUSED 0x020047
832
Theodore Ts'o911ec622009-04-23 21:31:16 -0400833/* i_file_acl_hi should be zero */
834#define PR_2_I_FILE_ACL_HI_ZERO 0x020048
835
Theodore Ts'o638c15d2015-10-25 22:19:04 -0400836/* Encrypted directory entry is too short */
837#define PR_2_BAD_ENCRYPTED_NAME 0x020050
838
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000839/*
840 * Pass 3 errors
841 */
842
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000843/* Pass 3: Checking directory connectivity */
844#define PR_3_PASS_HEADER 0x030000
845
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000846/* Root inode not allocated */
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000847#define PR_3_NO_ROOT_INODE 0x030001
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000848
849/* No room in lost+found */
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000850#define PR_3_EXPAND_LF_DIR 0x030002
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000851
852/* Unconnected directory inode */
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000853#define PR_3_UNCONNECTED_DIR 0x030003
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000854
855/* /lost+found not found */
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000856#define PR_3_NO_LF_DIR 0x030004
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000857
858/* .. entry is incorrect */
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000859#define PR_3_BAD_DOT_DOT 0x030005
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000860
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000861/* Bad or non-existent /lost+found. Cannot reconnect */
862#define PR_3_NO_LPF 0x030006
863
864/* Could not expand /lost+found */
865#define PR_3_CANT_EXPAND_LPF 0x030007
866
867/* Could not reconnect inode */
868#define PR_3_CANT_RECONNECT 0x030008
869
870/* Error while trying to find /lost+found */
871#define PR_3_ERR_FIND_LPF 0x030009
872
873/* Error in ext2fs_new_block while creating /lost+found */
874#define PR_3_ERR_LPF_NEW_BLOCK 0x03000A
875
876/* Error in ext2fs_new_inode while creating /lost+found */
877#define PR_3_ERR_LPF_NEW_INODE 0x03000B
878
Theodore Ts'odb0691b2008-03-31 12:16:51 -0400879/* Error in ext2fs_new_dir_block while creating /lost+found */
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000880#define PR_3_ERR_LPF_NEW_DIR_BLOCK 0x03000C
Theodore Ts'odb0691b2008-03-31 12:16:51 -0400881
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000882/* Error while writing directory block for /lost+found */
883#define PR_3_ERR_LPF_WRITE_BLOCK 0x03000D
884
885/* Error while adjusting inode count */
886#define PR_3_ADJUST_INODE 0x03000E
887
888/* Couldn't fix parent directory -- error */
889#define PR_3_FIX_PARENT_ERR 0x03000F
890
Theodore Ts'odb0691b2008-03-31 12:16:51 -0400891/* Couldn't fix parent directory -- couldn't find it */
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000892#define PR_3_FIX_PARENT_NOFIND 0x030010
Theodore Ts'odb0691b2008-03-31 12:16:51 -0400893
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000894/* Error allocating inode bitmap */
895#define PR_3_ALLOCATE_IBITMAP_ERROR 0x030011
Theodore Ts'odb0691b2008-03-31 12:16:51 -0400896
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000897/* Error creating root directory */
898#define PR_3_CREATE_ROOT_ERROR 0x030012
899
900/* Error creating lost and found directory */
901#define PR_3_CREATE_LPF_ERROR 0x030013
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000902
Theodore Ts'of8188ff1997-11-14 05:23:04 +0000903/* Root inode is not directory; aborting */
904#define PR_3_ROOT_NOT_DIR_ABORT 0x030014
905
906/* Cannot proceed without a root inode. */
907#define PR_3_NO_ROOT_INODE_ABORT 0x030015
908
Theodore Ts'o7f813ba1998-09-03 01:26:03 +0000909/* Internal error: couldn't find dir_info */
Theodore Ts'o4a9f5931999-03-16 19:32:52 +0000910#define PR_3_NO_DIRINFO 0x030016
911
912/* Lost+found is not a directory */
913#define PR_3_LPF_NOTDIR 0x030017
Theodore Ts'o7f813ba1998-09-03 01:26:03 +0000914
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000915/*
Theodore Ts'ob7a00562002-07-20 00:28:07 -0400916 * Pass 3a --- rehashing diretories
917 */
918/* Pass 3a: Reindexing directories */
919#define PR_3A_PASS_HEADER 0x031000
920
921/* Error iterating over directories */
Theodore Ts'o850d05e2002-07-25 00:00:08 -0400922#define PR_3A_OPTIMIZE_ITER 0x031001
Theodore Ts'ob7a00562002-07-20 00:28:07 -0400923
924/* Error rehash directory */
Theodore Ts'odb0691b2008-03-31 12:16:51 -0400925#define PR_3A_OPTIMIZE_DIR_ERR 0x031002
Theodore Ts'ob7a00562002-07-20 00:28:07 -0400926
927/* Rehashing dir header */
Andreas Dilgerae33f572009-04-28 12:59:07 -0600928#define PR_3A_OPTIMIZE_DIR_HEADER 0x031003
Theodore Ts'ob7a00562002-07-20 00:28:07 -0400929
930/* Rehashing directory %d */
Theodore Ts'o850d05e2002-07-25 00:00:08 -0400931#define PR_3A_OPTIMIZE_DIR 0x031004
Theodore Ts'odb0691b2008-03-31 12:16:51 -0400932
933/* Rehashing dir end */
Theodore Ts'o850d05e2002-07-25 00:00:08 -0400934#define PR_3A_OPTIMIZE_DIR_END 0x031005
935
Theodore Ts'ob7a00562002-07-20 00:28:07 -0400936/*
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000937 * Pass 4 errors
938 */
939
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000940/* Pass 4: Checking reference counts */
Andreas Dilgerae33f572009-04-28 12:59:07 -0600941#define PR_4_PASS_HEADER 0x040000
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000942
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000943/* Unattached zero-length inode */
Andreas Dilgerae33f572009-04-28 12:59:07 -0600944#define PR_4_ZERO_LEN_INODE 0x040001
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000945
946/* Unattached inode */
Andreas Dilgerae33f572009-04-28 12:59:07 -0600947#define PR_4_UNATTACHED_INODE 0x040002
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000948
949/* Inode ref count wrong */
Andreas Dilgerae33f572009-04-28 12:59:07 -0600950#define PR_4_BAD_REF_COUNT 0x040003
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000951
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000952/* Inconsistent inode count information cached */
Andreas Dilgerae33f572009-04-28 12:59:07 -0600953#define PR_4_INCONSISTENT_COUNT 0x040004
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000954
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000955/*
956 * Pass 5 errors
957 */
958
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000959/* Pass 5: Checking group summary information */
960#define PR_5_PASS_HEADER 0x050000
Theodore Ts'odb0691b2008-03-31 12:16:51 -0400961
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000962/* Padding at end of inode bitmap is not set. */
963#define PR_5_INODE_BMAP_PADDING 0x050001
964
965/* Padding at end of block bitmap is not set. */
966#define PR_5_BLOCK_BMAP_PADDING 0x050002
967
968/* Block bitmap differences header */
Andreas Dilgerae33f572009-04-28 12:59:07 -0600969#define PR_5_BLOCK_BITMAP_HEADER 0x050003
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000970
971/* Block not used, but marked in bitmap */
Theodore Ts'of1226322002-03-07 02:47:07 -0500972#define PR_5_BLOCK_UNUSED 0x050004
Theodore Ts'odb0691b2008-03-31 12:16:51 -0400973
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000974/* Block used, but not marked used in bitmap */
975#define PR_5_BLOCK_USED 0x050005
976
Theodore Ts'odb0691b2008-03-31 12:16:51 -0400977/* Block bitmap differences end */
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000978#define PR_5_BLOCK_BITMAP_END 0x050006
979
980/* Inode bitmap differences header */
981#define PR_5_INODE_BITMAP_HEADER 0x050007
982
983/* Inode not used, but marked in bitmap */
Theodore Ts'of1226322002-03-07 02:47:07 -0500984#define PR_5_INODE_UNUSED 0x050008
Theodore Ts'odb0691b2008-03-31 12:16:51 -0400985
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000986/* Inode used, but not marked used in bitmap */
987#define PR_5_INODE_USED 0x050009
988
Theodore Ts'odb0691b2008-03-31 12:16:51 -0400989/* Inode bitmap differences end */
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000990#define PR_5_INODE_BITMAP_END 0x05000A
991
992/* Free inodes count for group wrong */
993#define PR_5_FREE_INODE_COUNT_GROUP 0x05000B
994
995/* Directories count for group wrong */
996#define PR_5_FREE_DIR_COUNT_GROUP 0x05000C
997
998/* Free inodes count wrong */
Andreas Dilgerae33f572009-04-28 12:59:07 -0600999#define PR_5_FREE_INODE_COUNT 0x05000D
Theodore Ts'o1b6bf171997-10-03 17:48:10 +00001000
1001/* Free blocks count for group wrong */
1002#define PR_5_FREE_BLOCK_COUNT_GROUP 0x05000E
1003
1004/* Free blocks count wrong */
1005#define PR_5_FREE_BLOCK_COUNT 0x05000F
1006
1007/* Programming error: bitmap endpoints don't match */
1008#define PR_5_BMAP_ENDPOINTS 0x050010
Theodore Ts'obbd47d72000-06-10 19:21:33 +00001009
Theodore Ts'o1b6bf171997-10-03 17:48:10 +00001010/* Internal error: fudging end of bitmap */
1011#define PR_5_FUDGE_BITMAP_ERROR 0x050011
Theodore Ts'obbd47d72000-06-10 19:21:33 +00001012
1013/* Error copying in replacement inode bitmap */
1014#define PR_5_COPY_IBITMAP_ERROR 0x050012
1015
1016/* Error copying in replacement block bitmap */
1017#define PR_5_COPY_BBITMAP_ERROR 0x050013
1018
Theodore Ts'of1226322002-03-07 02:47:07 -05001019/* Block range not used, but marked in bitmap */
1020#define PR_5_BLOCK_RANGE_UNUSED 0x050014
Theodore Ts'odb0691b2008-03-31 12:16:51 -04001021
Theodore Ts'of1226322002-03-07 02:47:07 -05001022/* Block range used, but not marked used in bitmap */
1023#define PR_5_BLOCK_RANGE_USED 0x050015
1024
1025/* Inode range not used, but marked in bitmap */
1026#define PR_5_INODE_RANGE_UNUSED 0x050016
Jose R. Santos49a73602007-10-21 21:04:03 -05001027
Theodore Ts'of1226322002-03-07 02:47:07 -05001028/* Inode rangeused, but not marked used in bitmap */
1029#define PR_5_INODE_RANGE_USED 0x050017
1030
Jose R. Santos49a73602007-10-21 21:04:03 -05001031/* Block in use but group is marked BLOCK_UNINIT */
1032#define PR_5_BLOCK_UNINIT 0x050018
1033
1034/* Inode in use but group is marked INODE_UNINIT */
1035#define PR_5_INODE_UNINIT 0x050019
1036
Theodore Ts'o21c84b71997-04-29 16:15:03 +00001037/*
Kalpak Shah5107d0d2007-06-21 11:59:06 -04001038 * Post-Pass 5 errors
1039 */
1040
1041/* Recreate the journal if E2F_FLAG_JOURNAL_INODE flag is set */
1042#define PR_6_RECREATE_JOURNAL 0x060001
1043
JP Abgralle0ed7402014-03-19 19:08:39 -07001044/* Update quota information if it is inconsistent */
1045#define PR_6_UPDATE_QUOTAS 0x060002
1046
Kalpak Shah5107d0d2007-06-21 11:59:06 -04001047/*
Theodore Ts'o21c84b71997-04-29 16:15:03 +00001048 * Function declarations
1049 */
Theodore Ts'o1b6bf171997-10-03 17:48:10 +00001050int fix_problem(e2fsck_t ctx, problem_t code, struct problem_context *pctx);
1051int end_problem_latch(e2fsck_t ctx, int mask);
1052int set_latch_flags(int mask, int setflags, int clearflags);
1053int get_latch_flags(int mask, int *value);
Andreas Dilgerae33f572009-04-28 12:59:07 -06001054void clear_problem_context(struct problem_context *pctx);
Theodore Ts'o21c84b71997-04-29 16:15:03 +00001055
1056/* message.c */
JP Abgralle0ed7402014-03-19 19:08:39 -07001057void print_e2fsck_message(FILE *f, e2fsck_t ctx, const char *msg,
Theodore Ts'odb0691b2008-03-31 12:16:51 -04001058 struct problem_context *pctx, int first,
Theodore Ts'o1a191d62007-07-02 19:04:31 -04001059 int recurse);
Theodore Ts'o21c84b71997-04-29 16:15:03 +00001060