blob: 60ca1d266e40995e5dad97138fce89fd53d357d4 [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'o21c84b71997-04-29 16:15:03 +000016 ino_t ino, ino2, dir;
17 struct ext2_inode *inode;
18 struct ext2_dir_entry *dirent;
Theodore Ts'o1b6bf171997-10-03 17:48:10 +000019 blk_t blk, blk2;
Theodore Ts'o9d1bd3d1998-06-10 20:45:22 +000020 e2_blkcnt_t blkcount;
Theodore Ts'o246501c1998-03-24 16:22:38 +000021 int group;
22 __u64 num;
Theodore Ts'o1b6bf171997-10-03 17:48:10 +000023 const char *str;
Theodore Ts'o21c84b71997-04-29 16:15:03 +000024};
25
Theodore Ts'o21c84b71997-04-29 16:15:03 +000026/*
27 * We define a set of "latch groups"; these are problems which are
28 * handled as a set. The user answers once for a particular latch
29 * group.
30 */
31#define PR_LATCH_MASK 0x0070 /* Latch mask */
32#define PR_LATCH_BLOCK 0x0010 /* Latch for illegal blocks (pass 1) */
33#define PR_LATCH_BBLOCK 0x0020 /* Latch for bad block inode blocks (pass 1) */
Theodore Ts'o1b6bf171997-10-03 17:48:10 +000034#define PR_LATCH_IBITMAP 0x0030 /* Latch for pass 5 inode bitmap proc. */
35#define PR_LATCH_BBITMAP 0x0040 /* Latch for pass 5 inode bitmap proc. */
36#define PR_LATCH_RELOC 0x0050 /* Latch for superblock relocate hint */
37#define PR_LATCH_DBLOCK 0x0060 /* Latch for pass 1b dup block headers */
Theodore Ts'o21c84b71997-04-29 16:15:03 +000038
39#define PR_LATCH(x) ((((x) & PR_LATCH_MASK) >> 4) - 1)
40
41/*
Theodore Ts'o1b6bf171997-10-03 17:48:10 +000042 * Latch group descriptor flags
43 */
44#define PRL_YES 0x0001 /* Answer yes */
45#define PRL_NO 0x0002 /* Answer no */
46#define PRL_LATCHED 0x0004 /* The latch group is latched */
47#define PRL_SUPPRESS 0x0008 /* Suppress all latch group questions */
48
49#define PRL_VARIABLE 0x000f /* All the flags that need to be reset */
50
51/*
Theodore Ts'o21c84b71997-04-29 16:15:03 +000052 * Pre-Pass 1 errors
53 */
54
55/* Block bitmap not in group */
56#define PR_0_BB_NOT_GROUP 0x000001
57
58/* Inode bitmap not in group */
59#define PR_0_IB_NOT_GROUP 0x000002
60
61/* Inode table not in group */
62#define PR_0_ITABLE_NOT_GROUP 0x000003
63
Theodore Ts'o1b6bf171997-10-03 17:48:10 +000064/* Superblock corrupt */
65#define PR_0_SB_CORRUPT 0x000004
66
67/* Filesystem size is wrong */
68#define PR_0_FS_SIZE_WRONG 0x000005
69
70/* Fragments not supported */
71#define PR_0_NO_FRAGMENTS 0x000006
72
73/* Bad blocks_per_group */
74#define PR_0_BLOCKS_PER_GROUP 0x000007
75
76/* Bad first_data_block */
77#define PR_0_FIRST_DATA_BLOCK 0x000008
78
79/* Adding UUID to filesystem */
80#define PR_0_ADD_UUID 0x000009
81
82/* Relocate hint */
83#define PR_0_RELOCATE_HINT 0x00000A
84
85/* Miscellaneous superblock corruption */
86#define PR_0_MISC_CORRUPT_SUPER 0x00000B
87
88/* Error determing physical device size of filesystem */
89#define PR_0_GETSIZE_ERROR 0x00000C
90
Theodore Ts'od4b0ce01999-06-18 01:09:29 +000091/* Inode count in the superblock incorrect */
92#define PR_0_INODE_COUNT_WRONG 0x00000D
93
Theodore Ts'o4ea0a112000-05-08 13:33:17 +000094/* The Hurd does not support the filetype feature */
95#define PR_0_HURD_CLEAR_FILETYPE 0x00000E
Theodore Ts'o3b5386d2000-08-14 14:25:19 +000096
97/* Journal inode is invalid */
98#define PR_0_JOURNAL_BAD_INODE 0x00000F
99
100/* Superblock has a journal device (which we can't handle yet) */
101#define PR_0_JOURNAL_UNSUPP_DEV 0x000010
102
103/* Superblock has a bad journal device */
104#define PR_0_JOURNAL_BAD_DEV 0x000011
105
106/* Superblock has a journal UUID (which we can't handle yet) */
107#define PR_0_JOURNAL_UNSUPP_UUID 0x000012
108
109/* Superblock has a bad journal UUID */
110#define PR_0_JOURNAL_BAD_UUID 0x000013
111
112/* Journal has an unknown superblock type */
113#define PR_0_JOURNAL_UNSUPP_SUPER 0x000014
114
115/* Journal superblock is corrupt */
116#define PR_0_JOURNAL_BAD_SUPER 0x000015
117
118/* Journal superblock is corrupt */
119#define PR_0_JOURNAL_HAS_JOURNAL 0x000016
120
121/* Superblock has recovery flag set but no journal */
122#define PR_0_JOURNAL_RECOVER_SET 0x000017
123
124/* Warning message about leaving data in the journal */
125#define PR_0_JOURNAL_RESET_JOURNAL 0x000018
126
127/* Superblock recovery flag clear - journal needs to be reset */
128#define PR_0_JOURNAL_RESET_PROMPT 0x000019
129
Theodore Ts'oecf1b772000-08-20 22:06:31 +0000130/* Clearing orphan inode */
131#define PR_0_CLEAR_ORPHAN_INODE 0x000020
132
Theodore Ts'o80bfaa32000-08-18 15:08:37 +0000133/* Illegal block found in orphaned inode */
Theodore Ts'oecf1b772000-08-20 22:06:31 +0000134#define PR_0_ORPHAN_ILLEGAL_BLOCK_NUM 0x000021
Theodore Ts'o80bfaa32000-08-18 15:08:37 +0000135
136/* Already cleared block found in orphaned inode */
Theodore Ts'oecf1b772000-08-20 22:06:31 +0000137#define PR_0_ORPHAN_ALREADY_CLEARED_BLOCK 0x000022
Theodore Ts'o80bfaa32000-08-18 15:08:37 +0000138
139/* Illegal orphan inode in superblock */
Theodore Ts'oecf1b772000-08-20 22:06:31 +0000140#define PR_0_ORPHAN_ILLEGAL_HEAD_INODE 0x000023
Theodore Ts'o80bfaa32000-08-18 15:08:37 +0000141
142/* Illegal inode in orphaned inode list */
Theodore Ts'oecf1b772000-08-20 22:06:31 +0000143#define PR_0_ORPHAN_ILLEGAL_INODE 0x000024
Theodore Ts'o80bfaa32000-08-18 15:08:37 +0000144
145/* Orphan inode has a non-zero link count */
Theodore Ts'oecf1b772000-08-20 22:06:31 +0000146#define PR_0_ORPHAN_INODE_INUSE 0x000025
Theodore Ts'o80bfaa32000-08-18 15:08:37 +0000147
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000148/*
149 * Pass 1 errors
150 */
151
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000152/* Pass 1: Checking inodes, blocks, and sizes */
153#define PR_1_PASS_HEADER 0x010000
154
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000155/* Root directory is not an inode */
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000156#define PR_1_ROOT_NO_DIR 0x010001
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000157
158/* Root directory has dtime set */
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000159#define PR_1_ROOT_DTIME 0x010002
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000160
161/* Reserved inode has bad mode */
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000162#define PR_1_RESERVED_BAD_MODE 0x010003
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000163
164/* Deleted inode has zero dtime */
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000165#define PR_1_ZERO_DTIME 0x010004
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000166
167/* Inode in use, but dtime set */
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000168#define PR_1_SET_DTIME 0x010005
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000169
170/* Zero-length directory */
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000171#define PR_1_ZERO_LENGTH_DIR 0x010006
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000172
173/* Block bitmap conflicts with some other fs block */
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000174#define PR_1_BB_CONFLICT 0x010007
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000175
176/* Inode bitmap conflicts with some other fs block */
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000177#define PR_1_IB_CONFLICT 0x010008
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000178
179/* Inode table conflicts with some other fs block */
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000180#define PR_1_ITABLE_CONFLICT 0x010009
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000181
182/* Block bitmap is on a bad block */
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000183#define PR_1_BB_BAD_BLOCK 0x01000A
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000184
185/* Inode bitmap is on a bad block */
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000186#define PR_1_IB_BAD_BLOCK 0x01000B
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000187
188/* Inode has incorrect i_size */
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000189#define PR_1_BAD_I_SIZE 0x01000C
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000190
191/* Inode has incorrect i_blocks */
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000192#define PR_1_BAD_I_BLOCKS 0x01000D
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000193
194/* Illegal block number in inode */
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000195#define PR_1_ILLEGAL_BLOCK_NUM 0x01000E
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000196
197/* Block number overlaps fs metadata */
198#define PR_1_BLOCK_OVERLAPS_METADATA 0x01000F
199
200/* Inode has illegal blocks (latch question) */
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000201#define PR_1_INODE_BLOCK_LATCH 0x010010
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000202
203/* Too many bad blocks in inode */
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000204#define PR_1_TOO_MANY_BAD_BLOCKS 0x010011
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000205
206/* Illegal block number in bad block inode */
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000207#define PR_1_BB_ILLEGAL_BLOCK_NUM 0x010012
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000208
209/* Bad block inode has illegal blocks (latch question) */
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000210#define PR_1_INODE_BBLOCK_LATCH 0x010013
211
212/* Duplicate or bad blocks in use! */
213#define PR_1_DUP_BLOCKS_PREENSTOP 0x010014
214
215/* Bad block used as bad block indirect block */
216#define PR_1_BBINODE_BAD_METABLOCK 0x010015
217
218/* Inconsistency can't be fixed prompt */
219#define PR_1_BBINODE_BAD_METABLOCK_PROMPT 0x010016
220
221/* Bad primary block */
222#define PR_1_BAD_PRIMARY_BLOCK 0x0100017
223
224/* Bad primary block prompt */
225#define PR_1_BAD_PRIMARY_BLOCK_PROMPT 0x0100018
226
227/* Bad primary superblock */
228#define PR_1_BAD_PRIMARY_SUPERBLOCK 0x0100019
229
230/* Bad primary block group descriptors */
231#define PR_1_BAD_PRIMARY_GROUP_DESCRIPTOR 0x010001A
232
233/* Bad superblock in group */
234#define PR_1_BAD_SUPERBLOCK 0x010001B
235
236/* Bad block group descriptors in group */
237#define PR_1_BAD_GROUP_DESCRIPTORS 0x010001C
238
239/* Block claimed for no reason */
240#define PR_1_PROGERR_CLAIMED_BLOCK 0x010001D
241
Theodore Ts'of8188ff1997-11-14 05:23:04 +0000242/* Error allocating blocks for relocating metadata */
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000243#define PR_1_RELOC_BLOCK_ALLOCATE 0x010001E
244
Theodore Ts'of8188ff1997-11-14 05:23:04 +0000245/* Error allocating block buffer during relocation process */
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000246#define PR_1_RELOC_MEMORY_ALLOCATE 0x010001F
247
248/* Relocating metadata group information from X to Y */
249#define PR_1_RELOC_FROM_TO 0x0100020
250
251/* Relocating metatdata group information to X */
252#define PR_1_RELOC_TO 0x0100021
253
254/* Block read error during relocation process */
255#define PR_1_RELOC_READ_ERR 0x0100022
256
257/* Block write error during relocation process */
258#define PR_1_RELOC_WRITE_ERR 0x0100023
259
260/* Error allocating inode bitmap */
261#define PR_1_ALLOCATE_IBITMAP_ERROR 0x0100024
262
263/* Error allocating block bitmap */
264#define PR_1_ALLOCATE_BBITMAP_ERROR 0x0100025
265
266/* Error allocating icount structure */
267#define PR_1_ALLOCATE_ICOUNT 0x0100026
268
269/* Error allocating dbcount */
270#define PR_1_ALLOCATE_DBCOUNT 0x0100027
271
272/* Error while scanning inodes */
273#define PR_1_ISCAN_ERROR 0x0100028
274
275/* Error while iterating over blocks */
276#define PR_1_BLOCK_ITERATE 0x0100029
277
278/* Error while storing inode count information */
279#define PR_1_ICOUNT_STORE 0x010002A
280
281/* Error while storing directory block information */
282#define PR_1_ADD_DBLOCK 0x010002B
283
284/* Error while reading inode (for clearing) */
285#define PR_1_READ_INODE 0x010002C
286
Theodore Ts'of8188ff1997-11-14 05:23:04 +0000287/* Suppress messages prompt */
288#define PR_1_SUPPRESS_MESSAGES 0x010002D
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000289
Theodore Ts'o246501c1998-03-24 16:22:38 +0000290/* Filesystem contains large files, but has no such flag in sb */
291#define PR_1_FEATURE_LARGE_FILES 0x01002E
292
Theodore Ts'o6fdc7a31999-11-10 13:34:40 +0000293/* Imagic flag set on an inode when filesystem doesn't support it */
294#define PR_1_SET_IMAGIC 0x01002F
295
296/* Immutable flag set on a device or socket inode */
297#define PR_1_SET_IMMUTABLE 0x010030
Theodore Ts'o19178752000-02-11 15:55:07 +0000298
299/* Compression flag set on a non-compressed filesystem */
300#define PR_1_COMPR_SET 0x010031
301
Theodore Ts'od647a1e2000-05-27 14:40:09 +0000302/* Non-zero size on on device, fifo or socket inode */
303#define PR_1_SET_NONZSIZE 0x010032
304
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000305/*
306 * Pass 1b errors
307 */
308
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000309/* Pass 1B: Rescan for duplicate/bad blocks */
310#define PR_1B_PASS_HEADER 0x011000
311
312/* Duplicate/bad block(s) header */
313#define PR_1B_DUP_BLOCK_HEADER 0x011001
314
315/* Duplicate/bad block(s) in inode */
316#define PR_1B_DUP_BLOCK 0x011002
317
318/* Duplicate/bad block(s) end */
319#define PR_1B_DUP_BLOCK_END 0x011003
320
321/* Error while scanning inodes */
322#define PR_1B_ISCAN_ERROR 0x011004
323
324/* Error allocating inode bitmap */
325#define PR_1B_ALLOCATE_IBITMAP_ERROR 0x011005
326
327
328/* Pass 1C: Scan directories for inodes with dup blocks. */
329#define PR_1C_PASS_HEADER 0x012000
330
331
332/* Pass 1D: Reconciling duplicate blocks */
333#define PR_1D_PASS_HEADER 0x013000
334
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000335/* File has duplicate blocks */
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000336#define PR_1D_DUP_FILE 0x013001
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000337
338/* List of files sharing duplicate blocks */
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000339#define PR_1D_DUP_FILE_LIST 0x013002
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000340
Theodore Ts'o521e3681997-04-29 17:48:10 +0000341/* File sharing blocks with filesystem metadata */
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000342#define PR_1D_SHARE_METADATA 0x013003
Theodore Ts'o521e3681997-04-29 17:48:10 +0000343
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000344/* Report of how many duplicate/bad inodes */
345#define PR_1D_NUM_DUP_INODES 0x013004
346
347/* Duplicated blocks already reassigned or cloned. */
348#define PR_1D_DUP_BLOCKS_DEALT 0x013005
349
350/* Clone duplicate/bad blocks? */
351#define PR_1D_CLONE_QUESTION 0x013006
352
353/* Delete file? */
354#define PR_1D_DELETE_QUESTION 0x013007
355
356/* Couldn't clone file (error) */
357#define PR_1D_CLONE_ERROR 0x013008
358
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000359/*
360 * Pass 2 errors
361 */
362
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000363/* Pass 2: Checking directory structure */
364#define PR_2_PASS_HEADER 0x020000
365
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000366/* Bad inode number for '.' */
367#define PR_2_BAD_INODE_DOT 0x020001
368
369/* Directory entry has bad inode number */
370#define PR_2_BAD_INO 0x020002
371
372/* Directory entry has deleted or unused inode */
373#define PR_2_UNUSED_INODE 0x020003
374
375/* Directry entry is link to '.' */
376#define PR_2_LINK_DOT 0x020004
377
378/* Directory entry points to inode now located in a bad block */
379#define PR_2_BB_INODE 0x020005
380
381/* Directory entry contains a link to a directory */
382#define PR_2_LINK_DIR 0x020006
383
384/* Directory entry contains a link to the root directry */
385#define PR_2_LINK_ROOT 0x020007
386
387/* Directory entry has illegal characters in its name */
388#define PR_2_BAD_NAME 0x020008
389
390/* Missing '.' in directory inode */
391#define PR_2_MISSING_DOT 0x020009
392
393/* Missing '..' in directory inode */
394#define PR_2_MISSING_DOT_DOT 0x02000A
395
396/* First entry in directory inode doesn't contain '.' */
397#define PR_2_1ST_NOT_DOT 0x02000B
398
399/* Second entry in directory inode doesn't contain '..' */
400#define PR_2_2ND_NOT_DOT_DOT 0x02000C
401
402/* i_faddr should be zero */
403#define PR_2_FADDR_ZERO 0x02000D
404
405/* i_file_acl should be zero */
406#define PR_2_FILE_ACL_ZERO 0x02000E
407
408/* i_dir_acl should be zero */
409#define PR_2_DIR_ACL_ZERO 0x02000F
410
411/* i_frag should be zero */
412#define PR_2_FRAG_ZERO 0x020010
413
414/* i_fsize should be zero */
415#define PR_2_FSIZE_ZERO 0x020011
416
417/* inode has bad mode */
418#define PR_2_BAD_MODE 0x020012
419
420/* directory corrupted */
421#define PR_2_DIR_CORRUPTED 0x020013
422
423/* filename too long */
424#define PR_2_FILENAME_LONG 0x020014
425
426/* Directory inode has a missing block (hole) */
427#define PR_2_DIRECTORY_HOLE 0x020015
428
429/* '.' is not NULL terminated */
430#define PR_2_DOT_NULL_TERM 0x020016
431
432/* '..' is not NULL terminated */
433#define PR_2_DOT_DOT_NULL_TERM 0x020017
434
Theodore Ts'o7cf73dc1997-08-14 17:17:16 +0000435/* Illegal character device in inode */
436#define PR_2_BAD_CHAR_DEV 0x020018
437
438/* Illegal block device in inode */
439#define PR_2_BAD_BLOCK_DEV 0x020019
440
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000441/* Duplicate '.' entry */
442#define PR_2_DUP_DOT 0x02001A
443
444/* Duplicate '..' entry */
445#define PR_2_DUP_DOT_DOT 0x02001B
446
447/* Internal error: couldn't find dir_info */
448#define PR_2_NO_DIRINFO 0x02001C
449
450/* Final rec_len is wrong */
451#define PR_2_FINAL_RECLEN 0x02001D
452
453/* Error allocating icount structure */
454#define PR_2_ALLOCATE_ICOUNT 0x02001E
455
456/* Error iterating over directory blocks */
457#define PR_2_DBLIST_ITERATE 0x02001F
458
459/* Error reading directory block */
460#define PR_2_READ_DIRBLOCK 0x020020
461
462/* Error writing directory block */
463#define PR_2_WRITE_DIRBLOCK 0x020021
464
465/* Error allocating new directory block */
466#define PR_2_ALLOC_DIRBOCK 0x020022
467
468/* Error deallocating inode */
469#define PR_2_DEALLOC_INODE 0x020023
470
Theodore Ts'of8188ff1997-11-14 05:23:04 +0000471/* Directory entry for '.' is big. Split? */
Theodore Ts'o7142db01999-11-08 18:46:54 +0000472#define PR_2_SPLIT_DOT 0x020024
Theodore Ts'of8188ff1997-11-14 05:23:04 +0000473
Theodore Ts'o1dde43f1998-11-14 04:18:28 +0000474/* Illegal FIFO */
475#define PR_2_BAD_FIFO 0x020025
476
477/* Illegal socket */
478#define PR_2_BAD_SOCKET 0x020026
479
Theodore Ts'oaa4115a1999-10-21 19:33:18 +0000480/* Directory filetype not set */
481#define PR_2_SET_FILETYPE 0x020027
482
483/* Directory filetype incorrect */
484#define PR_2_BAD_FILETYPE 0x020028
485
Theodore Ts'o7847c1d1999-10-22 15:11:42 +0000486/* Directory filetype set when it shouldn't be */
487#define PR_2_CLEAR_FILETYPE 0x020029
488
Theodore Ts'oc40db6d1999-10-25 21:03:34 +0000489/* Directory filename can't be zero-length */
490#define PR_2_NULL_NAME 0x020030
491
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000492/*
493 * Pass 3 errors
494 */
495
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000496/* Pass 3: Checking directory connectivity */
497#define PR_3_PASS_HEADER 0x030000
498
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000499/* Root inode not allocated */
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000500#define PR_3_NO_ROOT_INODE 0x030001
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000501
502/* No room in lost+found */
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000503#define PR_3_EXPAND_LF_DIR 0x030002
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000504
505/* Unconnected directory inode */
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000506#define PR_3_UNCONNECTED_DIR 0x030003
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000507
508/* /lost+found not found */
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000509#define PR_3_NO_LF_DIR 0x030004
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000510
511/* .. entry is incorrect */
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000512#define PR_3_BAD_DOT_DOT 0x030005
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000513
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000514/* Bad or non-existent /lost+found. Cannot reconnect */
515#define PR_3_NO_LPF 0x030006
516
517/* Could not expand /lost+found */
518#define PR_3_CANT_EXPAND_LPF 0x030007
519
520/* Could not reconnect inode */
521#define PR_3_CANT_RECONNECT 0x030008
522
523/* Error while trying to find /lost+found */
524#define PR_3_ERR_FIND_LPF 0x030009
525
526/* Error in ext2fs_new_block while creating /lost+found */
527#define PR_3_ERR_LPF_NEW_BLOCK 0x03000A
528
529/* Error in ext2fs_new_inode while creating /lost+found */
530#define PR_3_ERR_LPF_NEW_INODE 0x03000B
531
532/* Error in ext2fs_new_dir_block while creating /lost+found */
533#define PR_3_ERR_LPF_NEW_DIR_BLOCK 0x03000C
534
535/* Error while writing directory block for /lost+found */
536#define PR_3_ERR_LPF_WRITE_BLOCK 0x03000D
537
538/* Error while adjusting inode count */
539#define PR_3_ADJUST_INODE 0x03000E
540
541/* Couldn't fix parent directory -- error */
542#define PR_3_FIX_PARENT_ERR 0x03000F
543
544/* Couldn't fix parent directory -- couldn't find it */
545#define PR_3_FIX_PARENT_NOFIND 0x030010
546
547/* Error allocating inode bitmap */
548#define PR_3_ALLOCATE_IBITMAP_ERROR 0x030011
549
550/* Error creating root directory */
551#define PR_3_CREATE_ROOT_ERROR 0x030012
552
553/* Error creating lost and found directory */
554#define PR_3_CREATE_LPF_ERROR 0x030013
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000555
Theodore Ts'of8188ff1997-11-14 05:23:04 +0000556/* Root inode is not directory; aborting */
557#define PR_3_ROOT_NOT_DIR_ABORT 0x030014
558
559/* Cannot proceed without a root inode. */
560#define PR_3_NO_ROOT_INODE_ABORT 0x030015
561
Theodore Ts'o7f813ba1998-09-03 01:26:03 +0000562/* Internal error: couldn't find dir_info */
Theodore Ts'o4a9f5931999-03-16 19:32:52 +0000563#define PR_3_NO_DIRINFO 0x030016
564
565/* Lost+found is not a directory */
566#define PR_3_LPF_NOTDIR 0x030017
Theodore Ts'o7f813ba1998-09-03 01:26:03 +0000567
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000568/*
569 * Pass 4 errors
570 */
571
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000572/* Pass 4: Checking reference counts */
573#define PR_4_PASS_HEADER 0x040000
574
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000575/* Unattached zero-length inode */
576#define PR_4_ZERO_LEN_INODE 0x040001
577
578/* Unattached inode */
579#define PR_4_UNATTACHED_INODE 0x040002
580
581/* Inode ref count wrong */
582#define PR_4_BAD_REF_COUNT 0x040003
583
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000584/* Inconsistent inode count information cached */
585#define PR_4_INCONSISTENT_COUNT 0x040004
586
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000587/*
588 * Pass 5 errors
589 */
590
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000591/* Pass 5: Checking group summary information */
592#define PR_5_PASS_HEADER 0x050000
593
594/* Padding at end of inode bitmap is not set. */
595#define PR_5_INODE_BMAP_PADDING 0x050001
596
597/* Padding at end of block bitmap is not set. */
598#define PR_5_BLOCK_BMAP_PADDING 0x050002
599
600/* Block bitmap differences header */
601#define PR_5_BLOCK_BITMAP_HEADER 0x050003
602
603/* Block not used, but marked in bitmap */
604#define PR_5_UNUSED_BLOCK 0x050004
605
606/* Block used, but not marked used in bitmap */
607#define PR_5_BLOCK_USED 0x050005
608
609/* Block bitmap differences end */
610#define PR_5_BLOCK_BITMAP_END 0x050006
611
612/* Inode bitmap differences header */
613#define PR_5_INODE_BITMAP_HEADER 0x050007
614
615/* Inode not used, but marked in bitmap */
616#define PR_5_UNUSED_INODE 0x050008
617
618/* Inode used, but not marked used in bitmap */
619#define PR_5_INODE_USED 0x050009
620
621/* Inode bitmap differences end */
622#define PR_5_INODE_BITMAP_END 0x05000A
623
624/* Free inodes count for group wrong */
625#define PR_5_FREE_INODE_COUNT_GROUP 0x05000B
626
627/* Directories count for group wrong */
628#define PR_5_FREE_DIR_COUNT_GROUP 0x05000C
629
630/* Free inodes count wrong */
631#define PR_5_FREE_INODE_COUNT 0x05000D
632
633/* Free blocks count for group wrong */
634#define PR_5_FREE_BLOCK_COUNT_GROUP 0x05000E
635
636/* Free blocks count wrong */
637#define PR_5_FREE_BLOCK_COUNT 0x05000F
638
639/* Programming error: bitmap endpoints don't match */
640#define PR_5_BMAP_ENDPOINTS 0x050010
Theodore Ts'obbd47d72000-06-10 19:21:33 +0000641
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000642/* Internal error: fudging end of bitmap */
643#define PR_5_FUDGE_BITMAP_ERROR 0x050011
Theodore Ts'obbd47d72000-06-10 19:21:33 +0000644
645/* Error copying in replacement inode bitmap */
646#define PR_5_COPY_IBITMAP_ERROR 0x050012
647
648/* Error copying in replacement block bitmap */
649#define PR_5_COPY_BBITMAP_ERROR 0x050013
650
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000651/*
652 * Function declarations
653 */
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000654int fix_problem(e2fsck_t ctx, problem_t code, struct problem_context *pctx);
655int end_problem_latch(e2fsck_t ctx, int mask);
656int set_latch_flags(int mask, int setflags, int clearflags);
657int get_latch_flags(int mask, int *value);
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000658void clear_problem_context(struct problem_context *ctx);
659
660/* message.c */
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000661void print_e2fsck_message(e2fsck_t ctx, const char *msg,
662 struct problem_context *pctx, int first);
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000663