Whamcloud - gitweb
a56c1265b35b8c998bfbd4658266edd8d98bb904
[tools/e2fsprogs.git] / e2fsck / problem.c
1 /*
2  * problem.c --- report filesystem problems to the user
3  *
4  * Copyright 1996, 1997 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
12 #include "config.h"
13 #include <stdlib.h>
14 #include <unistd.h>
15 #include <string.h>
16 #include <ctype.h>
17 #include <termios.h>
18
19 #include "e2fsck.h"
20
21 #include "problem.h"
22 #include "problemP.h"
23
24 #define PROMPT_NONE     0
25 #define PROMPT_FIX      1
26 #define PROMPT_CLEAR    2
27 #define PROMPT_RELOCATE 3
28 #define PROMPT_ALLOCATE 4
29 #define PROMPT_EXPAND   5
30 #define PROMPT_CONNECT  6
31 #define PROMPT_CREATE   7
32 #define PROMPT_SALVAGE  8
33 #define PROMPT_TRUNCATE 9
34 #define PROMPT_CLEAR_INODE 10
35 #define PROMPT_ABORT    11
36 #define PROMPT_SPLIT    12
37 #define PROMPT_CONTINUE 13
38 #define PROMPT_CLONE    14
39 #define PROMPT_DELETE   15
40 #define PROMPT_SUPPRESS 16
41 #define PROMPT_UNLINK   17
42 #define PROMPT_CLEAR_HTREE 18
43 #define PROMPT_RECREATE 19
44 #define PROMPT_NULL     20
45
46 /*
47  * These are the prompts which are used to ask the user if they want
48  * to fix a problem.
49  */
50 static const char *prompt[] = {
51         N_("(no prompt)"),      /* 0 */
52         N_("Fix"),              /* 1 */
53         N_("Clear"),            /* 2 */
54         N_("Relocate"),         /* 3 */
55         N_("Allocate"),         /* 4 */
56         N_("Expand"),           /* 5 */
57         N_("Connect to /lost+found"), /* 6 */
58         N_("Create"),           /* 7 */
59         N_("Salvage"),          /* 8 */
60         N_("Truncate"),         /* 9 */
61         N_("Clear inode"),      /* 10 */
62         N_("Abort"),            /* 11 */
63         N_("Split"),            /* 12 */
64         N_("Continue"),         /* 13 */
65         N_("Clone multiply-claimed blocks"), /* 14 */
66         N_("Delete file"),      /* 15 */
67         N_("Suppress messages"),/* 16 */
68         N_("Unlink"),           /* 17 */
69         N_("Clear HTree index"),/* 18 */
70         N_("Recreate"),         /* 19 */
71         "",                     /* 20 */
72 };
73
74 /*
75  * These messages are printed when we are preen mode and we will be
76  * automatically fixing the problem.
77  */
78 static const char *preen_msg[] = {
79         N_("(NONE)"),           /* 0 */
80         N_("FIXED"),            /* 1 */
81         N_("CLEARED"),          /* 2 */
82         N_("RELOCATED"),        /* 3 */
83         N_("ALLOCATED"),        /* 4 */
84         N_("EXPANDED"),         /* 5 */
85         N_("RECONNECTED"),      /* 6 */
86         N_("CREATED"),          /* 7 */
87         N_("SALVAGED"),         /* 8 */
88         N_("TRUNCATED"),        /* 9 */
89         N_("INODE CLEARED"),    /* 10 */
90         N_("ABORTED"),          /* 11 */
91         N_("SPLIT"),            /* 12 */
92         N_("CONTINUING"),       /* 13 */
93         N_("MULTIPLY-CLAIMED BLOCKS CLONED"), /* 14 */
94         N_("FILE DELETED"),     /* 15 */
95         N_("SUPPRESSED"),       /* 16 */
96         N_("UNLINKED"),         /* 17 */
97         N_("HTREE INDEX CLEARED"),/* 18 */
98         N_("WILL RECREATE"),    /* 19 */
99         "",                     /* 20 */
100 };
101
102 static struct e2fsck_problem problem_table[] = {
103
104         /* Pre-Pass 1 errors */
105
106         /* Block bitmap not in group */
107         { PR_0_BB_NOT_GROUP, N_("@b @B for @g %g is not in @g.  (@b %b)\n"),
108           PROMPT_RELOCATE, PR_LATCH_RELOC },
109
110         /* Inode bitmap not in group */
111         { PR_0_IB_NOT_GROUP, N_("@i @B for @g %g is not in @g.  (@b %b)\n"),
112           PROMPT_RELOCATE, PR_LATCH_RELOC },
113
114         /* Inode table not in group */
115         { PR_0_ITABLE_NOT_GROUP,
116           N_("@i table for @g %g is not in @g.  (@b %b)\n"
117           "WARNING: SEVERE DATA LOSS POSSIBLE.\n"),
118           PROMPT_RELOCATE, PR_LATCH_RELOC },
119
120         /* Superblock corrupt */
121         { PR_0_SB_CORRUPT,
122           N_("\nThe @S could not be read or does not describe a valid ext2/ext3/ext4\n"
123           "@f.  If the @v is valid and it really contains an ext2/ext3/ext4\n"
124           "@f (and not swap or ufs or something else), then the @S\n"
125           "is corrupt, and you might try running e2fsck with an alternate @S:\n"
126           "    e2fsck -b 8193 <@v>\n"
127           " or\n"
128           "    e2fsck -b 32768 <@v>\n\n"),
129           PROMPT_NONE, PR_FATAL },
130
131         /* Filesystem size is wrong */
132         { PR_0_FS_SIZE_WRONG,
133           N_("The @f size (according to the @S) is %b @bs\n"
134           "The physical size of the @v is %c @bs\n"
135           "Either the @S or the partition table is likely to be corrupt!\n"),
136           PROMPT_ABORT, 0 },
137
138         /* Fragments not supported */
139         { PR_0_NO_FRAGMENTS,
140           N_("@S @b_size = %b, fragsize = %c.\n"
141           "This version of e2fsck does not support fragment sizes different\n"
142           "from the @b size.\n"),
143           PROMPT_NONE, PR_FATAL },
144
145           /* Bad blocks_per_group */
146         { PR_0_BLOCKS_PER_GROUP,
147           N_("@S @bs_per_group = %b, should have been %c\n"),
148           PROMPT_NONE, PR_AFTER_CODE, PR_0_SB_CORRUPT },
149
150         /* Bad first_data_block */
151         { PR_0_FIRST_DATA_BLOCK,
152           N_("@S first_data_@b = %b, should have been %c\n"),
153           PROMPT_NONE, PR_AFTER_CODE, PR_0_SB_CORRUPT },
154
155         /* Adding UUID to filesystem */
156         { PR_0_ADD_UUID,
157           N_("@f did not have a UUID; generating one.\n\n"),
158           PROMPT_NONE, 0 },
159
160         /* Relocate hint */
161         { PR_0_RELOCATE_HINT,
162           N_("Note: if several inode or block bitmap blocks or part\n"
163           "of the inode table require relocation, you may wish to try\n"
164           "running e2fsck with the '-b %S' option first.  The problem\n"
165           "may lie only with the primary block group descriptors, and\n"
166           "the backup block group descriptors may be OK.\n\n"),
167           PROMPT_NONE, PR_PREEN_OK | PR_NOCOLLATE },
168
169         /* Miscellaneous superblock corruption */
170         { PR_0_MISC_CORRUPT_SUPER,
171           N_("Corruption found in @S.  (%s = %N).\n"),
172           PROMPT_NONE, PR_AFTER_CODE, PR_0_SB_CORRUPT },
173
174         /* Error determing physical device size of filesystem */
175         { PR_0_GETSIZE_ERROR,
176           N_("Error determining size of the physical @v: %m\n"),
177           PROMPT_NONE, PR_FATAL },
178
179         /* Inode count in superblock is incorrect */
180         { PR_0_INODE_COUNT_WRONG,
181           N_("@i count in @S is %i, @s %j.\n"),
182           PROMPT_FIX, 0 },
183
184         { PR_0_HURD_CLEAR_FILETYPE,
185           N_("The Hurd does not support the filetype feature.\n"),
186           PROMPT_CLEAR, 0 },
187
188         /* Journal inode is invalid */
189         { PR_0_JOURNAL_BAD_INODE,
190           N_("@S has an @n @j (@i %i).\n"),
191           PROMPT_CLEAR, PR_PREEN_OK },
192
193         /* The external journal has (unsupported) multiple filesystems */
194         { PR_0_JOURNAL_UNSUPP_MULTIFS,
195           N_("External @j has multiple @f users (unsupported).\n"),
196           PROMPT_NONE, PR_FATAL },
197
198         /* Can't find external journal */
199         { PR_0_CANT_FIND_JOURNAL,
200           N_("Can't find external @j\n"),
201           PROMPT_NONE, PR_FATAL },
202
203         /* External journal has bad superblock */
204         { PR_0_EXT_JOURNAL_BAD_SUPER,
205           N_("External @j has bad @S\n"),
206           PROMPT_NONE, PR_FATAL },
207
208         /* Superblock has a bad journal UUID */
209         { PR_0_JOURNAL_BAD_UUID,
210           N_("External @j does not support this @f\n"),
211           PROMPT_NONE, PR_FATAL },
212
213         /* Journal has an unknown superblock type */
214         { PR_0_JOURNAL_UNSUPP_SUPER,
215           N_("@f @j @S is unknown type %N (unsupported).\n"
216              "It is likely that your copy of e2fsck is old and/or doesn't "
217              "support this @j format.\n"
218              "It is also possible the @j @S is corrupt.\n"),
219           PROMPT_ABORT, PR_NO_OK | PR_AFTER_CODE, PR_0_JOURNAL_BAD_SUPER },
220
221         /* Journal superblock is corrupt */
222         { PR_0_JOURNAL_BAD_SUPER,
223           N_("@j @S is corrupt.\n"),
224           PROMPT_FIX, PR_PREEN_OK },
225
226         /* Superblock has_journal flag is clear but has a journal */
227         { PR_0_JOURNAL_HAS_JOURNAL,
228           N_("@S has_@j flag is clear, but a @j is present.\n"),
229           PROMPT_CLEAR, PR_PREEN_OK },
230
231         /* Superblock needs_recovery flag is set but not journal is present */
232         { PR_0_JOURNAL_RECOVER_SET,
233           N_("@S needs_recovery flag is set, but no @j is present.\n"),
234           PROMPT_CLEAR, PR_PREEN_OK },
235
236         /* Superblock needs_recovery flag is set, but journal has data */
237         { PR_0_JOURNAL_RECOVERY_CLEAR,
238           N_("@S needs_recovery flag is clear, but @j has data.\n"),
239           PROMPT_NONE, 0 },
240
241         /* Ask if we should clear the journal */
242         { PR_0_JOURNAL_RESET_JOURNAL,
243           N_("Clear @j"),
244           PROMPT_NULL, PR_PREEN_NOMSG },
245
246         /* Filesystem revision is 0, but feature flags are set */
247         { PR_0_FS_REV_LEVEL,
248           N_("@f has feature flag(s) set, but is a revision 0 @f.  "),
249           PROMPT_FIX, PR_PREEN_OK | PR_NO_OK },
250
251         /* Clearing orphan inode */
252         { PR_0_ORPHAN_CLEAR_INODE,
253           N_("%s @o @i %i (uid=%Iu, gid=%Ig, mode=%Im, size=%Is)\n"),
254           PROMPT_NONE, 0 },
255
256         /* Illegal block found in orphaned inode */
257         { PR_0_ORPHAN_ILLEGAL_BLOCK_NUM,
258            N_("@I %B (%b) found in @o @i %i.\n"),
259           PROMPT_NONE, 0 },
260
261         /* Already cleared block found in orphaned inode */
262         { PR_0_ORPHAN_ALREADY_CLEARED_BLOCK,
263            N_("Already cleared %B (%b) found in @o @i %i.\n"),
264           PROMPT_NONE, 0 },
265
266         /* Illegal orphan inode in superblock */
267         { PR_0_ORPHAN_ILLEGAL_HEAD_INODE,
268           N_("@I @o @i %i in @S.\n"),
269           PROMPT_NONE, 0 },
270
271         /* Illegal inode in orphaned inode list */
272         { PR_0_ORPHAN_ILLEGAL_INODE,
273           N_("@I @i %i in @o @i list.\n"),
274           PROMPT_NONE, 0 },
275
276         /* Journal superblock has an unknown read-only feature flag set */
277         { PR_0_JOURNAL_UNSUPP_ROCOMPAT,
278           N_("@j @S has an unknown read-only feature flag set.\n"),
279           PROMPT_ABORT, 0 },
280
281         /* Journal superblock has an unknown incompatible feature flag set */
282         { PR_0_JOURNAL_UNSUPP_INCOMPAT,
283           N_("@j @S has an unknown incompatible feature flag set.\n"),
284           PROMPT_ABORT, 0 },
285
286         /* Journal has unsupported version number */
287         { PR_0_JOURNAL_UNSUPP_VERSION,
288           N_("@j version not supported by this e2fsck.\n"),
289           PROMPT_ABORT, 0 },
290
291         /* Moving journal to hidden file */
292         { PR_0_MOVE_JOURNAL,
293           N_("Moving @j from /%s to hidden @i.\n\n"),
294           PROMPT_NONE, 0 },
295
296         /* Error moving journal to hidden file */
297         { PR_0_ERR_MOVE_JOURNAL,
298           N_("Error moving @j: %m\n\n"),
299           PROMPT_NONE, 0 },
300
301         /* Clearing V2 journal superblock */
302         { PR_0_CLEAR_V2_JOURNAL,
303           N_("Found @n V2 @j @S fields (from V1 @j).\n"
304              "Clearing fields beyond the V1 @j @S...\n\n"),
305           PROMPT_NONE, 0 },
306
307         /* Ask if we should run the journal anyway */
308         { PR_0_JOURNAL_RUN,
309           N_("Run @j anyway"),
310           PROMPT_NULL, 0 },
311
312         /* Run the journal by default */
313         { PR_0_JOURNAL_RUN_DEFAULT,
314           N_("Recovery flag not set in backup @S, so running @j anyway.\n"),
315           PROMPT_NONE, 0 },
316
317         /* Backup journal inode blocks */
318         { PR_0_BACKUP_JNL,
319           N_("Backing up @j @i @b information.\n\n"),
320           PROMPT_NONE, 0 },
321
322         /* Reserved blocks w/o resize_inode */
323         { PR_0_NONZERO_RESERVED_GDT_BLOCKS,
324           N_("@f does not have resize_@i enabled, but s_reserved_gdt_@bs\n"
325              "is %N; @s zero.  "),
326           PROMPT_FIX, 0 },
327
328         /* Resize_inode not enabled, but resize inode is non-zero */
329         { PR_0_CLEAR_RESIZE_INODE,
330           N_("Resize_@i not enabled, but the resize @i is non-zero.  "),
331           PROMPT_CLEAR, 0 },
332
333         /* Resize inode invalid */
334         { PR_0_RESIZE_INODE_INVALID,
335           N_("Resize @i not valid.  "),
336           PROMPT_RECREATE, 0 },
337
338         /* Last mount time is in the future */
339         { PR_0_FUTURE_SB_LAST_MOUNT,
340           N_("@S last mount time (%t,\n\tnow = %T) is in the future.\n"),
341           PROMPT_FIX, PR_PREEN_OK | PR_NO_OK },
342
343         /* Last write time is in the future */
344         { PR_0_FUTURE_SB_LAST_WRITE,
345           N_("@S last write time (%t,\n\tnow = %T) is in the future.\n"),
346           PROMPT_FIX, PR_PREEN_OK | PR_NO_OK },
347
348         { PR_0_EXTERNAL_JOURNAL_HINT,
349           N_("@S hint for external superblock @s %X.  "),
350              PROMPT_FIX, PR_PREEN_OK },
351
352         /* Adding dirhash hint */
353         { PR_0_DIRHASH_HINT,
354           N_("Adding dirhash hint to @f.\n\n"),
355           PROMPT_NONE, 0 },
356
357         /* group descriptor N checksum is invalid. */
358         { PR_0_GDT_CSUM,
359           N_("@g descriptor %g checksum is %04x, should be %04y.  "),
360              PROMPT_FIX, PR_LATCH_BG_CHECKSUM },
361
362         /* group descriptor N marked uninitialized without feature set. */
363         { PR_0_GDT_UNINIT,
364           N_("@g descriptor %g marked uninitialized without feature set.\n"),
365              PROMPT_FIX, PR_PREEN_OK },
366
367         /* Group descriptor N has invalid unused inodes count. */
368         { PR_0_GDT_ITABLE_UNUSED,
369           N_("@g descriptor %g has invalid unused inodes count %b.  "),
370              PROMPT_FIX, PR_PREEN_OK },
371
372         /* Last group block bitmap uninitialized. */
373         { PR_0_BB_UNINIT_LAST,
374           N_("Last @g @b @B uninitialized.  "),
375              PROMPT_FIX, PR_PREEN_OK },
376
377         /* Journal transaction found corrupt */
378         { PR_0_JNL_TXN_CORRUPT,
379           N_("Journal transaction %i was corrupt, replay was aborted.\n"),
380           PROMPT_NONE, 0 },
381
382         { PR_0_CLEAR_TESTFS_FLAG,
383           N_("The test_fs flag is set (and ext4 is available).  "),
384           PROMPT_CLEAR, PR_PREEN_OK },
385
386         /* Last mount time is in the future (fudged) */
387         { PR_0_FUTURE_SB_LAST_MOUNT_FUDGED,
388           N_("@S last mount time is in the future.\n\t(by less than a day, "
389              "probably due to the hardware clock being incorrectly set)\n"),
390           PROMPT_NONE, PR_PREEN_OK | PR_NO_OK },
391
392         /* Last write time is in the future (fudged) */
393         { PR_0_FUTURE_SB_LAST_WRITE_FUDGED,
394           N_("@S last write time is in the future.\n\t(by less than a day, "
395              "probably due to the hardware clock being incorrectly set)\n"),
396           PROMPT_NONE, PR_PREEN_OK | PR_NO_OK },
397
398         /* Block group checksum (latch question) is invalid. */
399         { PR_0_GDT_CSUM_LATCH,
400           N_("One or more @b @g descriptor checksums are invalid.  "),
401              PROMPT_FIX, PR_PREEN_OK },
402
403         /* Free inodes count wrong */
404         { PR_0_FREE_INODE_COUNT,
405           N_("Setting free @is count to %j (was %i)\n"),
406           PROMPT_NONE, PR_PREEN_NOMSG },
407
408         /* Free blocks count wrong */
409         { PR_0_FREE_BLOCK_COUNT,
410           N_("Setting free @bs count to %c (was %b)\n"),
411           PROMPT_NONE, PR_PREEN_NOMSG },
412
413         /* Making quota file hidden */
414         { PR_0_HIDE_QUOTA,
415           N_("Making @q @i %i (%Q) hidden.\n"),
416           PROMPT_NONE, PR_PREEN_OK },
417
418         /* Superblock has invalid MMP block. */
419         { PR_0_MMP_INVALID_BLK,
420           N_("@S has invalid MMP block.  "),
421           PROMPT_CLEAR, PR_PREEN_OK },
422
423         /* Superblock has invalid MMP magic. */
424         { PR_0_MMP_INVALID_MAGIC,
425           N_("@S has invalid MMP magic.  "),
426           PROMPT_FIX, PR_PREEN_OK | PR_NO_OK},
427
428         /* Opening file system failed */
429         { PR_0_OPEN_FAILED,
430           N_("ext2fs_open2: %m\n"),
431           PROMPT_NONE, 0 },
432
433         /* Checking group descriptor failed */
434         { PR_0_CHECK_DESC_FAILED,
435           N_("ext2fs_check_desc: %m\n"),
436           PROMPT_NONE, 0 },
437
438         /* 64bit is set but extents is unset. */
439         { PR_0_64BIT_WITHOUT_EXTENTS,
440           N_("@S 64bit filesystems needs extents to access the whole disk.  "),
441           PROMPT_FIX, PR_PREEN_OK | PR_NO_OK},
442
443         /* The first_meta_bg is too big */
444         { PR_0_FIRST_META_BG_TOO_BIG,
445           N_("First_meta_bg is too big.  (%N, max value %g).  "),
446           PROMPT_CLEAR, 0 },
447
448         { PR_0_MIN_EXTRA_ISIZE_INVALID,
449           N_("@S has invalid s_min_extra_isize.  "),
450           PROMPT_FIX, PR_PREEN_OK },
451
452         { PR_0_WANT_EXTRA_ISIZE_INVALID,
453           N_("@S has invalid s_want_extra_isize.  "),
454           PROMPT_FIX, PR_PREEN_OK },
455
456         /* Pass 1 errors */
457
458         /* Pass 1: Checking inodes, blocks, and sizes */
459         { PR_1_PASS_HEADER,
460           N_("Pass 1: Checking @is, @bs, and sizes\n"),
461           PROMPT_NONE, 0 },
462
463         /* Root inode is not a directory */
464         { PR_1_ROOT_NO_DIR, N_("@r is not a @d.  "),
465           PROMPT_CLEAR, 0 },
466
467         /* Root inode has dtime set */
468         { PR_1_ROOT_DTIME,
469           N_("@r has dtime set (probably due to old mke2fs).  "),
470           PROMPT_FIX, PR_PREEN_OK },
471
472         /* Reserved inode has bad mode */
473         { PR_1_RESERVED_BAD_MODE,
474           N_("Reserved @i %i (%Q) has @n mode.  "),
475           PROMPT_CLEAR, PR_PREEN_OK },
476
477         /* Deleted inode has zero dtime */
478         { PR_1_ZERO_DTIME,
479           N_("@D @i %i has zero dtime.  "),
480           PROMPT_FIX, PR_PREEN_OK },
481
482         /* Inode in use, but dtime set */
483         { PR_1_SET_DTIME,
484           N_("@i %i is in use, but has dtime set.  "),
485           PROMPT_FIX, PR_PREEN_OK },
486
487         /* Zero-length directory */
488         { PR_1_ZERO_LENGTH_DIR,
489           N_("@i %i is a @z @d.  "),
490           PROMPT_CLEAR, PR_PREEN_OK },
491
492         /* Block bitmap conflicts with some other fs block */
493         { PR_1_BB_CONFLICT,
494           N_("@g %g's @b @B at %b @C.\n"),
495           PROMPT_RELOCATE, 0 },
496
497         /* Inode bitmap conflicts with some other fs block */
498         { PR_1_IB_CONFLICT,
499           N_("@g %g's @i @B at %b @C.\n"),
500           PROMPT_RELOCATE, 0 },
501
502         /* Inode table conflicts with some other fs block */
503         { PR_1_ITABLE_CONFLICT,
504           N_("@g %g's @i table at %b @C.\n"),
505           PROMPT_RELOCATE, 0 },
506
507         /* Block bitmap is on a bad block */
508         { PR_1_BB_BAD_BLOCK,
509           N_("@g %g's @b @B (%b) is bad.  "),
510           PROMPT_RELOCATE, 0 },
511
512         /* Inode bitmap is on a bad block */
513         { PR_1_IB_BAD_BLOCK,
514           N_("@g %g's @i @B (%b) is bad.  "),
515           PROMPT_RELOCATE, 0 },
516
517         /* Inode has incorrect i_size */
518         { PR_1_BAD_I_SIZE,
519           N_("@i %i, i_size is %Is, @s %N.  "),
520           PROMPT_FIX, PR_PREEN_OK },
521
522         /* Inode has incorrect i_blocks */
523         { PR_1_BAD_I_BLOCKS,
524           N_("@i %i, i_@bs is %Ib, @s %N.  "),
525           PROMPT_FIX, PR_PREEN_OK },
526
527         /* Illegal blocknumber in inode */
528         { PR_1_ILLEGAL_BLOCK_NUM,
529           N_("@I %B (%b) in @i %i.  "),
530           PROMPT_CLEAR, PR_LATCH_BLOCK },
531
532         /* Block number overlaps fs metadata */
533         { PR_1_BLOCK_OVERLAPS_METADATA,
534           N_("%B (%b) overlaps @f metadata in @i %i.  "),
535           PROMPT_CLEAR, PR_LATCH_BLOCK },
536
537         /* Inode has illegal blocks (latch question) */
538         { PR_1_INODE_BLOCK_LATCH,
539           N_("@i %i has illegal @b(s).  "),
540           PROMPT_CLEAR, 0 },
541
542         /* Too many bad blocks in inode */
543         { PR_1_TOO_MANY_BAD_BLOCKS,
544           N_("Too many illegal @bs in @i %i.\n"),
545           PROMPT_CLEAR_INODE, PR_NO_OK },
546
547         /* Illegal block number in bad block inode */
548         { PR_1_BB_ILLEGAL_BLOCK_NUM,
549           N_("@I %B (%b) in bad @b @i.  "),
550           PROMPT_CLEAR, PR_LATCH_BBLOCK },
551
552         /* Bad block inode has illegal blocks (latch question) */
553         { PR_1_INODE_BBLOCK_LATCH,
554           N_("Bad @b @i has illegal @b(s).  "),
555           PROMPT_CLEAR, 0 },
556
557         /* Duplicate or bad blocks in use! */
558         { PR_1_DUP_BLOCKS_PREENSTOP,
559           N_("Duplicate or bad @b in use!\n"),
560           PROMPT_NONE, 0 },
561
562         /* Bad block used as bad block indirect block */
563         { PR_1_BBINODE_BAD_METABLOCK,
564           N_("Bad @b %b used as bad @b @i indirect @b.  "),
565           PROMPT_CLEAR, PR_LATCH_BBLOCK },
566
567         /* Inconsistency can't be fixed prompt */
568         { PR_1_BBINODE_BAD_METABLOCK_PROMPT,
569           N_("\nThe bad @b @i has probably been corrupted.  You probably\n"
570              "should stop now and run ""e2fsck -c"" to scan for bad blocks\n"
571              "in the @f.\n"),
572           PROMPT_CONTINUE, PR_PREEN_NOMSG },
573
574         /* Bad primary block */
575         { PR_1_BAD_PRIMARY_BLOCK,
576           N_("\nIf the @b is really bad, the @f can not be fixed.\n"),
577           PROMPT_NONE, PR_AFTER_CODE, PR_1_BAD_PRIMARY_BLOCK_PROMPT },
578
579         /* Bad primary block prompt */
580         { PR_1_BAD_PRIMARY_BLOCK_PROMPT,
581           N_("You can remove this @b from the bad @b list and hope\n"
582              "that the @b is really OK.  But there are no guarantees.\n\n"),
583           PROMPT_CLEAR, PR_PREEN_NOMSG },
584
585         /* Bad primary superblock */
586         { PR_1_BAD_PRIMARY_SUPERBLOCK,
587           N_("The primary @S (%b) is on the bad @b list.\n"),
588           PROMPT_NONE, PR_AFTER_CODE, PR_1_BAD_PRIMARY_BLOCK },
589
590         /* Bad primary block group descriptors */
591         { PR_1_BAD_PRIMARY_GROUP_DESCRIPTOR,
592           N_("Block %b in the primary @g descriptors "
593           "is on the bad @b list\n"),
594           PROMPT_NONE, PR_AFTER_CODE, PR_1_BAD_PRIMARY_BLOCK },
595
596         /* Bad superblock in group */
597         { PR_1_BAD_SUPERBLOCK,
598           N_("Warning: Group %g's @S (%b) is bad.\n"),
599           PROMPT_NONE, PR_PREEN_OK | PR_PREEN_NOMSG },
600
601         /* Bad block group descriptors in group */
602         { PR_1_BAD_GROUP_DESCRIPTORS,
603           N_("Warning: Group %g's copy of the @g descriptors has a bad "
604           "@b (%b).\n"),
605           PROMPT_NONE, PR_PREEN_OK | PR_PREEN_NOMSG },
606
607         /* Block claimed for no reason */
608         { PR_1_PROGERR_CLAIMED_BLOCK,
609           N_("Programming error?  @b #%b claimed for no reason in "
610           "process_bad_@b.\n"),
611           PROMPT_NONE, PR_PREEN_OK },
612
613         /* Error allocating blocks for relocating metadata */
614         { PR_1_RELOC_BLOCK_ALLOCATE,
615           N_("@A %N contiguous @b(s) in @b @g %g for %s: %m\n"),
616           PROMPT_NONE, PR_PREEN_OK },
617
618         /* Error allocating block buffer during relocation process */
619         { PR_1_RELOC_MEMORY_ALLOCATE,
620           N_("@A @b buffer for relocating %s\n"),
621           PROMPT_NONE, PR_PREEN_OK },
622
623         /* Relocating metadata group information from X to Y */
624         { PR_1_RELOC_FROM_TO,
625           N_("Relocating @g %g's %s from %b to %c...\n"),
626           PROMPT_NONE, PR_PREEN_OK },
627
628         /* Relocating metatdata group information to X */
629         { PR_1_RELOC_TO,
630           N_("Relocating @g %g's %s to %c...\n"), /* xgettext:no-c-format */
631           PROMPT_NONE, PR_PREEN_OK },
632
633         /* Block read error during relocation process */
634         { PR_1_RELOC_READ_ERR,
635           N_("Warning: could not read @b %b of %s: %m\n"),
636           PROMPT_NONE, PR_PREEN_OK },
637
638         /* Block write error during relocation process */
639         { PR_1_RELOC_WRITE_ERR,
640           N_("Warning: could not write @b %b for %s: %m\n"),
641           PROMPT_NONE, PR_PREEN_OK },
642
643         /* Error allocating inode bitmap */
644         { PR_1_ALLOCATE_IBITMAP_ERROR,
645           N_("@A @i @B (%N): %m\n"),
646           PROMPT_NONE, PR_FATAL },
647
648         /* Error allocating block bitmap */
649         { PR_1_ALLOCATE_BBITMAP_ERROR,
650           N_("@A @b @B (%N): %m\n"),
651           PROMPT_NONE, PR_FATAL },
652
653         /* Error allocating icount link information */
654         { PR_1_ALLOCATE_ICOUNT,
655           N_("@A icount link information: %m\n"),
656           PROMPT_NONE, PR_FATAL },
657
658         /* Error allocating directory block array */
659         { PR_1_ALLOCATE_DBCOUNT,
660           N_("@A @d @b array: %m\n"),
661           PROMPT_NONE, PR_FATAL },
662
663         /* Error while scanning inodes */
664         { PR_1_ISCAN_ERROR,
665           N_("Error while scanning @is (%i): %m\n"),
666           PROMPT_NONE, PR_FATAL },
667
668         /* Error while iterating over blocks */
669         { PR_1_BLOCK_ITERATE,
670           N_("Error while iterating over @bs in @i %i: %m\n"),
671           PROMPT_NONE, PR_FATAL },
672
673         /* Error while storing inode count information */
674         { PR_1_ICOUNT_STORE,
675           N_("Error storing @i count information (@i=%i, count=%N): %m\n"),
676           PROMPT_NONE, PR_FATAL },
677
678         /* Error while storing directory block information */
679         { PR_1_ADD_DBLOCK,
680           N_("Error storing @d @b information "
681           "(@i=%i, @b=%b, num=%N): %m\n"),
682           PROMPT_NONE, PR_FATAL },
683
684         /* Error while reading inode (for clearing) */
685         { PR_1_READ_INODE,
686           N_("Error reading @i %i: %m\n"),
687           PROMPT_NONE, PR_FATAL },
688
689         /* Suppress messages prompt */
690         { PR_1_SUPPRESS_MESSAGES, "", PROMPT_SUPPRESS, PR_NO_OK },
691
692         /* Imagic flag set on an inode when filesystem doesn't support it */
693         { PR_1_SET_IMAGIC,
694           N_("@i %i has imagic flag set.  "),
695           PROMPT_CLEAR, 0 },
696
697         /* Immutable flag set on a device or socket inode */
698         { PR_1_SET_IMMUTABLE,
699           N_("Special (@v/socket/fifo/symlink) file (@i %i) has immutable\n"
700              "or append-only flag set.  "),
701           PROMPT_CLEAR, PR_PREEN_OK | PR_PREEN_NO | PR_NO_OK },
702
703         /* Compression flag set on an inode when filesystem doesn't support it */
704         { PR_1_COMPR_SET,
705           N_("@i %i has @cion flag set on @f without @cion support.  "),
706           PROMPT_CLEAR, 0 },
707
708         /* Non-zero size for device, fifo or socket inode */
709         { PR_1_SET_NONZSIZE,
710           N_("Special (@v/socket/fifo) @i %i has non-zero size.  "),
711           PROMPT_FIX, PR_PREEN_OK },
712
713         /* Filesystem revision is 0, but feature flags are set */
714         { PR_1_FS_REV_LEVEL,
715           N_("@f has feature flag(s) set, but is a revision 0 @f.  "),
716           PROMPT_FIX, PR_PREEN_OK | PR_NO_OK },
717
718         /* Journal inode is not in use, but contains data */
719         { PR_1_JOURNAL_INODE_NOT_CLEAR,
720           N_("@j @i is not in use, but contains data.  "),
721           PROMPT_CLEAR, PR_PREEN_OK },
722
723         /* Journal has bad mode */
724         { PR_1_JOURNAL_BAD_MODE,
725           N_("@j is not regular file.  "),
726           PROMPT_FIX, PR_PREEN_OK },
727
728         /* Deal with inodes that were part of orphan linked list */
729         { PR_1_LOW_DTIME,
730           N_("@i %i was part of the @o @i list.  "),
731           PROMPT_FIX, PR_LATCH_LOW_DTIME, 0 },
732
733         /* Deal with inodes that were part of corrupted orphan linked
734            list (latch question) */
735         { PR_1_ORPHAN_LIST_REFUGEES,
736           N_("@is that were part of a corrupted orphan linked list found.  "),
737           PROMPT_FIX, 0 },
738
739         /* Error allocating refcount structure */
740         { PR_1_ALLOCATE_REFCOUNT,
741           N_("@A refcount structure (%N): %m\n"),
742           PROMPT_NONE, PR_FATAL },
743
744         /* Error reading extended attribute block */
745         { PR_1_READ_EA_BLOCK,
746           N_("Error reading @a @b %b for @i %i.  "),
747           PROMPT_CLEAR, 0 },
748
749         /* Invalid extended attribute block */
750         { PR_1_BAD_EA_BLOCK,
751           N_("@i %i has a bad @a @b %b.  "),
752           PROMPT_CLEAR, 0 },
753
754         /* Error reading Extended Attribute block while fixing refcount */
755         { PR_1_EXTATTR_READ_ABORT,
756           N_("Error reading @a @b %b (%m).  "),
757           PROMPT_NONE, PR_FATAL },
758
759         /* Extended attribute reference count incorrect */
760         { PR_1_EXTATTR_REFCOUNT,
761           N_("@a @b %b has reference count %r, @s %N.  "),
762           PROMPT_FIX, 0 },
763
764         /* Error writing Extended Attribute block while fixing refcount */
765         { PR_1_EXTATTR_WRITE_ABORT,
766           N_("Error writing @a @b %b (%m).  "),
767           PROMPT_NONE, PR_FATAL },
768
769         /* Multiple EA blocks not supported */
770         { PR_1_EA_MULTI_BLOCK,
771           N_("@a @b %b has h_@bs > 1.  "),
772           PROMPT_CLEAR, 0},
773
774         /* Error allocating EA region allocation structure */
775         { PR_1_EA_ALLOC_REGION_ABORT,
776           N_("@A @a @b %b.  "),
777           PROMPT_NONE, PR_FATAL},
778
779         /* Error EA allocation collision */
780         { PR_1_EA_ALLOC_COLLISION,
781           N_("@a @b %b is corrupt (allocation collision).  "),
782           PROMPT_CLEAR, 0},
783
784         /* Bad extended attribute name */
785         { PR_1_EA_BAD_NAME,
786           N_("@a @b %b is corrupt (@n name).  "),
787           PROMPT_CLEAR, 0},
788
789         /* Bad extended attribute value */
790         { PR_1_EA_BAD_VALUE,
791           N_("@a @b %b is corrupt (@n value).  "),
792           PROMPT_CLEAR, 0},
793
794         /* Inode too big (latch question) */
795         { PR_1_INODE_TOOBIG,
796           N_("@i %i is too big.  "), PROMPT_TRUNCATE, 0 },
797
798         /* Directory too big */
799         { PR_1_TOOBIG_DIR,
800           N_("%B (%b) causes @d to be too big.  "),
801           PROMPT_CLEAR, PR_LATCH_TOOBIG },
802
803         /* Regular file too big */
804         { PR_1_TOOBIG_REG,
805           N_("%B (%b) causes file to be too big.  "),
806           PROMPT_CLEAR, PR_LATCH_TOOBIG },
807
808         /* Symlink too big */
809         { PR_1_TOOBIG_SYMLINK,
810           N_("%B (%b) causes symlink to be too big.  "),
811           PROMPT_CLEAR, PR_LATCH_TOOBIG },
812
813         /* INDEX_FL flag set on a non-HTREE filesystem */
814         { PR_1_HTREE_SET,
815           N_("@i %i has INDEX_FL flag set on @f without htree support.\n"),
816           PROMPT_CLEAR_HTREE, PR_PREEN_OK },
817
818         /* INDEX_FL flag set on a non-directory */
819         { PR_1_HTREE_NODIR,
820           N_("@i %i has INDEX_FL flag set but is not a @d.\n"),
821           PROMPT_CLEAR_HTREE, PR_PREEN_OK },
822
823         /* Invalid root node in HTREE directory */
824         { PR_1_HTREE_BADROOT,
825           N_("@h %i has an @n root node.\n"),
826           PROMPT_CLEAR_HTREE, PR_PREEN_OK },
827
828         /* Unsupported hash version in HTREE directory */
829         { PR_1_HTREE_HASHV,
830           N_("@h %i has an unsupported hash version (%N)\n"),
831           PROMPT_CLEAR_HTREE, PR_PREEN_OK },
832
833         /* Incompatible flag in HTREE root node */
834         { PR_1_HTREE_INCOMPAT,
835           N_("@h %i uses an incompatible htree root node flag.\n"),
836           PROMPT_CLEAR_HTREE, PR_PREEN_OK },
837
838         /* HTREE too deep */
839         { PR_1_HTREE_DEPTH,
840           N_("@h %i has a tree depth (%N) which is too big\n"),
841           PROMPT_CLEAR_HTREE, PR_PREEN_OK },
842
843         /* Bad block has indirect block that conflicts with filesystem block */
844         { PR_1_BB_FS_BLOCK,
845           N_("Bad @b @i has an indirect @b (%b) that conflicts with\n"
846              "@f metadata.  "),
847           PROMPT_CLEAR, PR_LATCH_BBLOCK },
848
849         /* Resize inode failed */
850         { PR_1_RESIZE_INODE_CREATE,
851           N_("Resize @i (re)creation failed: %m."),
852           PROMPT_CONTINUE, 0 },
853
854         /* invalid inode->i_extra_isize */
855         { PR_1_EXTRA_ISIZE,
856           N_("@i %i has a extra size (%IS) which is @n\n"),
857           PROMPT_FIX, PR_PREEN_OK },
858
859         /* invalid ea entry->e_name_len */
860         { PR_1_ATTR_NAME_LEN,
861           N_("@a in @i %i has a namelen (%N) which is @n\n"),
862           PROMPT_CLEAR, PR_PREEN_OK },
863
864         /* invalid ea entry->e_value_offs */
865         { PR_1_ATTR_VALUE_OFFSET,
866           N_("@a in @i %i has a value offset (%N) which is @n\n"),
867           PROMPT_CLEAR, PR_PREEN_OK },
868
869         /* invalid ea entry->e_value_block */
870         { PR_1_ATTR_VALUE_BLOCK,
871           N_("@a in @i %i has a value @b (%N) which is @n (must be 0)\n"),
872           PROMPT_CLEAR, PR_PREEN_OK },
873
874         /* invalid ea entry->e_value_size */
875         { PR_1_ATTR_VALUE_SIZE,
876           N_("@a in @i %i has a value size (%N) which is @n\n"),
877           PROMPT_CLEAR, PR_PREEN_OK },
878
879         /* invalid ea entry->e_hash */
880         { PR_1_ATTR_HASH,
881           N_("@a in @i %i has a hash (%N) which is @n\n"),
882           PROMPT_CLEAR, PR_PREEN_OK },
883
884         /* inode appears to be a directory */
885         { PR_1_TREAT_AS_DIRECTORY,
886           N_("@i %i is a %It but it looks like it is really a directory.\n"),
887           PROMPT_FIX, 0 },
888
889         /* Error while reading extent tree */
890         { PR_1_READ_EXTENT,
891           N_("Error while reading over @x tree in @i %i: %m\n"),
892           PROMPT_CLEAR_INODE, 0 },
893
894         /* Failure to iterate extents */
895         { PR_1_EXTENT_ITERATE_FAILURE,
896           N_("Failed to iterate extents in @i %i\n"
897              "\t(op %s, blk %b, lblk %c): %m\n"),
898           PROMPT_CLEAR_INODE, 0 },
899
900         /* Bad starting block in extent */
901         { PR_1_EXTENT_BAD_START_BLK,
902           N_("@i %i has an @n extent\n\t(logical @b %c, @n physical @b %b, len %N)\n"),
903           PROMPT_CLEAR, 0 },
904
905         /* Extent ends beyond filesystem */
906         { PR_1_EXTENT_ENDS_BEYOND,
907           N_("@i %i has an @n extent\n\t(logical @b %c, physical @b %b, @n len %N)\n"),
908           PROMPT_CLEAR, 0 },
909
910         /* EXTENTS_FL flag set on a non-extents filesystem */
911         { PR_1_EXTENTS_SET,
912           N_("@i %i has EXTENTS_FL flag set on @f without extents support.\n"),
913           PROMPT_CLEAR, 0 },
914
915         /* inode has extents, superblock missing INCOMPAT_EXTENTS feature */
916         { PR_1_EXTENT_FEATURE,
917           N_("@i %i is in extent format, but @S is missing EXTENTS feature\n"),
918           PROMPT_FIX, 0 },
919
920         /* inode missing EXTENTS_FL, but is an extent inode */
921         { PR_1_UNSET_EXTENT_FL,
922           N_("@i %i missing EXTENT_FL, but is in extents format\n"),
923           PROMPT_FIX, PR_PREEN_OK },
924
925         /* Fast symlink has EXTENTS_FL set */
926         { PR_1_FAST_SYMLINK_EXTENT_FL,
927           N_("Fast symlink %i has EXTENT_FL set.  "),
928           PROMPT_CLEAR, 0 },
929
930         /* Extents are out of order */
931         { PR_1_OUT_OF_ORDER_EXTENTS,
932           N_("@i %i has out of order extents\n\t(@n logical @b %c, physical @b %b, len %N)\n"),
933           PROMPT_CLEAR, 0 },
934
935         { PR_1_EXTENT_HEADER_INVALID,
936           N_("@i %i has an invalid extent node (blk %b, lblk %c)\n"),
937           PROMPT_CLEAR, 0 },
938
939         /* Failed to convert subcluster bitmap */
940         { PR_1_CONVERT_SUBCLUSTER,
941           N_("Error converting subcluster @b @B: %m\n"),
942           PROMPT_NONE, PR_FATAL },
943
944         /* Quota inode has bad mode */
945         { PR_1_QUOTA_BAD_MODE,
946           N_("@q @i is not regular file.  "),
947           PROMPT_CLEAR, PR_PREEN_OK },
948
949         /* Quota inode is not in use, but contains data */
950         { PR_1_QUOTA_INODE_NOT_CLEAR,
951           N_("@q @i is not in use, but contains data.  "),
952           PROMPT_CLEAR, PR_PREEN_OK },
953
954         /* Quota inode is user visible */
955         { PR_1_QUOTA_INODE_NOT_HIDDEN,
956           N_("@q @i is visible to the user.  "),
957           PROMPT_CLEAR, PR_PREEN_OK },
958
959         /* Invalid bad inode */
960         { PR_1_INVALID_BAD_INODE,
961           N_("The bad @b @i looks @n.  "),
962           PROMPT_CLEAR, 0 },
963
964         /* Extent has zero length */
965         { PR_1_EXTENT_LENGTH_ZERO,
966           N_("@i %i has zero length extent\n\t(@n logical @b %c, physical @b %b)\n"),
967           PROMPT_CLEAR, 0 },
968
969         /*
970          * Interior extent node logical offset doesn't match first node below it
971          */
972         { PR_1_EXTENT_INDEX_START_INVALID,
973           N_("Interior @x node level %N of @i %i:\n"
974              "Logical start %b does not match logical start %c at next level.  "),
975           PROMPT_FIX, 0 },
976
977         /* Extent end is out of bounds for the tree */
978         { PR_1_EXTENT_END_OUT_OF_BOUNDS,
979           N_("@i %i, end of extent exceeds allowed value\n\t(logical @b %c, physical @b %b, len %N)\n"),
980           PROMPT_CLEAR, 0 },
981
982         /* Directory inode block <block> should be at block <otherblock> */
983         { PR_1_COLLAPSE_DBLOCK,
984           N_("@d @i %i @b %b should be at @b %c.  "),
985           PROMPT_FIX, 0 },
986
987         /* Extents/inlinedata flag set on a device or socket inode */
988         { PR_1_UNINIT_DBLOCK,
989           N_("@d @i %i has @x marked uninitialized at @b %c.  "),
990           PROMPT_FIX, PR_PREEN_OK },
991
992         /* Inode logical block (physical block ) is misaligned. */
993         { PR_1_MISALIGNED_CLUSTER,
994           N_("@i %i logical @b %b (physical @b %c) violates cluster allocation rules.\nWill fix in pass 1B.\n"),
995           PROMPT_NONE, 0 },
996
997         /* Bad extended attribute value in inode */
998         { PR_1_INODE_EA_BAD_VALUE,
999           N_("@a in @i %i is corrupt (@n value)."),
1000           PROMPT_CLEAR, 0},
1001
1002         /* expand inode */
1003         { PR_1_EXPAND_EISIZE_WARNING,
1004           N_("\ne2fsck is being run with \"expand_extra_isize\" option or\n"
1005              "s_min_extra_isize of %d bytes has been set in the superblock.\n"
1006              "Inode %i does not have enough free space.  Either some EAs\n"
1007              "need to be deleted from this inode or the RO_COMPAT_EXTRA_ISIZE\n"
1008              "flag must be cleared.\n\n"), PROMPT_NONE, PR_PREEN_OK | PR_NO_OK |
1009              PR_PREEN_NOMSG },
1010
1011         /* expand inode */
1012         { PR_1_EXPAND_EISIZE,
1013           N_("Expanding @i %i.\n"),
1014           PROMPT_NONE, PR_PREEN_OK | PR_NO_OK | PR_PREEN_NOMSG },
1015
1016         /* delete an EA so that EXTRA_ISIZE feature may be enabled */
1017         { PR_1_EISIZE_DELETE_EA,
1018           N_("Delete EA %s of @i %i so that EXTRA_ISIZE feature may be "
1019              "enabled?\n"), PROMPT_FIX, PR_NO_OK | PR_PREEN_NO },
1020
1021         /* an EA needs to be deleted by e2fsck is being run with -p or -y */
1022         { PR_1_EA_BLK_NOSPC,
1023           N_("An EA needs to be deleted for @i %i but e2fsck is being run\n"
1024              "with -p or -y mode.\n"),
1025           PROMPT_ABORT, 0 },
1026
1027         /* disable EXTRA_ISIZE feature since inode cannot be expanded */
1028         { PR_1_CLEAR_EXTRA_ISIZE,
1029           N_("Disable EXTRA_ISIZE feature since @i %i cannot be expanded\n"
1030              "without deletion of an EA.\n"),
1031           PROMPT_FIX, 0 },
1032
1033         /* invalid inode creation time */
1034         { PR_1_CRTIME_BAD,
1035           N_("@i %i creation time (%t) invalid.\n"),
1036           PROMPT_CLEAR, PR_PREEN_OK | PR_NO_OK },
1037
1038         /* Inode has illegal extended attribute value inode */
1039         { PR_1_ATTR_VALUE_EA_INODE,
1040           N_("@i %i has @I @a value @i %N.\n"),
1041           PROMPT_FIX, PR_PREEN_OK },
1042
1043         /* Invalid backpointer from extended attribute inode to parent inode */
1044         { PR_1_ATTR_INVAL_EA_INODE,
1045           N_("@n backpointer from @a @i %N to parent @i %i.\n"),
1046           PROMPT_CLEAR, PR_PREEN_OK },
1047
1048         /* Inode has invalid extended attribute. EA inode missing
1049          * EA_INODE flag. */
1050         { PR_1_ATTR_NO_EA_INODE_FL,
1051           N_("@i %i has @n @a. EA @i %N missing EA_INODE flag.\n"),
1052           PROMPT_CLEAR, PR_PREEN_OK },
1053
1054         /* EA inode for parent inode missing EA_INODE flag. */
1055         { PR_1_ATTR_SET_EA_INODE_FL,
1056           N_("EA @i %N for parent @i %i missing EA_INODE flag.\n "),
1057           PROMPT_FIX, PR_PREEN_OK },
1058
1059
1060         /* Pass 1b errors */
1061
1062         /* Pass 1B: Rescan for duplicate/bad blocks */
1063         { PR_1B_PASS_HEADER,
1064           N_("\nRunning additional passes to resolve @bs claimed by more than one @i...\n"
1065           "Pass 1B: Rescanning for @m @bs\n"),
1066           PROMPT_NONE, 0 },
1067
1068         /* Duplicate/bad block(s) header */
1069         { PR_1B_DUP_BLOCK_HEADER,
1070           N_("@m @b(s) in @i %i:"),
1071           PROMPT_NONE, 0 },
1072
1073         /* Duplicate/bad block(s) in inode */
1074         { PR_1B_DUP_BLOCK,
1075           " %b",
1076           PROMPT_NONE, PR_LATCH_DBLOCK | PR_PREEN_NOHDR },
1077
1078         /* Duplicate/bad block(s) end */
1079         { PR_1B_DUP_BLOCK_END,
1080           "\n",
1081           PROMPT_NONE, PR_PREEN_NOHDR },
1082
1083         /* Error while scanning inodes */
1084         { PR_1B_ISCAN_ERROR,
1085           N_("Error while scanning inodes (%i): %m\n"),
1086           PROMPT_NONE, PR_FATAL },
1087
1088         /* Error allocating inode bitmap */
1089         { PR_1B_ALLOCATE_IBITMAP_ERROR,
1090           N_("@A @i @B (@i_dup_map): %m\n"),
1091           PROMPT_NONE, PR_FATAL },
1092
1093         /* Error while iterating over blocks */
1094         { PR_1B_BLOCK_ITERATE,
1095           N_("Error while iterating over @bs in @i %i (%s): %m\n"),
1096           PROMPT_NONE, 0 },
1097
1098         /* Error adjusting EA refcount */
1099         { PR_1B_ADJ_EA_REFCOUNT,
1100           N_("Error adjusting refcount for @a @b %b (@i %i): %m\n"),
1101           PROMPT_NONE, 0 },
1102
1103         /* Pass 1C: Scan directories for inodes with multiply-claimed blocks. */
1104         { PR_1C_PASS_HEADER,
1105           N_("Pass 1C: Scanning directories for @is with @m @bs\n"),
1106           PROMPT_NONE, 0 },
1107
1108
1109         /* Pass 1D: Reconciling multiply-claimed blocks */
1110         { PR_1D_PASS_HEADER,
1111           N_("Pass 1D: Reconciling @m @bs\n"),
1112           PROMPT_NONE, 0 },
1113
1114         /* File has duplicate blocks */
1115         { PR_1D_DUP_FILE,
1116           N_("File %Q (@i #%i, mod time %IM) \n"
1117           "  has %r @m @b(s), shared with %N file(s):\n"),
1118           PROMPT_NONE, 0 },
1119
1120         /* List of files sharing duplicate blocks */
1121         { PR_1D_DUP_FILE_LIST,
1122           N_("\t%Q (@i #%i, mod time %IM)\n"),
1123           PROMPT_NONE, 0 },
1124
1125         /* File sharing blocks with filesystem metadata  */
1126         { PR_1D_SHARE_METADATA,
1127           N_("\t<@f metadata>\n"),
1128           PROMPT_NONE, 0 },
1129
1130         /* Report of how many duplicate/bad inodes */
1131         { PR_1D_NUM_DUP_INODES,
1132           N_("(There are %N @is containing @m @bs.)\n\n"),
1133           PROMPT_NONE, 0 },
1134
1135         /* Duplicated blocks already reassigned or cloned. */
1136         { PR_1D_DUP_BLOCKS_DEALT,
1137           N_("@m @bs already reassigned or cloned.\n\n"),
1138           PROMPT_NONE, 0 },
1139
1140         /* Clone duplicate/bad blocks? */
1141         { PR_1D_CLONE_QUESTION,
1142           "", PROMPT_CLONE, PR_NO_OK },
1143
1144         /* Delete file? */
1145         { PR_1D_DELETE_QUESTION,
1146           "", PROMPT_DELETE, 0 },
1147
1148         /* Couldn't clone file (error) */
1149         { PR_1D_CLONE_ERROR,
1150           N_("Couldn't clone file: %m\n"), PROMPT_NONE, 0 },
1151
1152         /* File with shared blocks found */
1153         { PR_1D_DISCONNECT_QUESTION,
1154           N_("File with shared blocks found\n"), PROMPT_CONNECT, 0 },
1155
1156         /* Couldn't unlink file (error) */
1157         { PR_1D_DISCONNECT_ERROR,
1158           N_("Couldn't unlink file: %m\n"), PROMPT_NONE, 0 },
1159
1160         /* Pass 2 errors */
1161
1162         /* Pass 2: Checking directory structure */
1163         { PR_2_PASS_HEADER,
1164           N_("Pass 2: Checking @d structure\n"),
1165           PROMPT_NONE, 0 },
1166
1167         /* Bad inode number for '.' */
1168         { PR_2_BAD_INODE_DOT,
1169           N_("@n @i number for '.' in @d @i %i.\n"),
1170           PROMPT_FIX, 0 },
1171
1172         /* Entry 'xxxx' in /a/b/c has bad inode number.*/
1173         { PR_2_BAD_INO,
1174           N_("@E has @n @i #: %Di.\n"),
1175           PROMPT_CLEAR, 0 },
1176
1177         /* Entry 'xxxx' in /a/b/c has deleted/unused inode nnnnn.*/
1178         { PR_2_UNUSED_INODE,
1179           N_("@E has @D/unused @i %Di.  "),
1180           PROMPT_CLEAR, PR_PREEN_OK },
1181
1182         /* Directry entry is link to '.' */
1183         { PR_2_LINK_DOT,
1184           N_("@E @L to '.'  "),
1185           PROMPT_CLEAR, 0 },
1186
1187         /* Directory entry points to inode now located in a bad block */
1188         { PR_2_BB_INODE,
1189           N_("@E points to @i (%Di) located in a bad @b.\n"),
1190           PROMPT_CLEAR, 0 },
1191
1192         /* Directory entry contains a link to a directory */
1193         { PR_2_LINK_DIR,
1194           N_("@E @L to @d %P (%Di).\n"),
1195           PROMPT_CLEAR, 0 },
1196
1197         /* Directory entry contains a link to the root directry */
1198         { PR_2_LINK_ROOT,
1199           N_("@E @L to the @r.\n"),
1200           PROMPT_CLEAR, 0 },
1201
1202         /* Directory entry has illegal characters in its name */
1203         { PR_2_BAD_NAME,
1204           N_("@E has illegal characters in its name.\n"),
1205           PROMPT_FIX, 0 },
1206
1207         /* Missing '.' in directory inode */
1208         { PR_2_MISSING_DOT,
1209           N_("Missing '.' in @d @i %i.\n"),
1210           PROMPT_FIX, 0 },
1211
1212         /* Missing '..' in directory inode */
1213         { PR_2_MISSING_DOT_DOT,
1214           N_("Missing '..' in @d @i %i.\n"),
1215           PROMPT_FIX, 0 },
1216
1217         /* First entry in directory inode doesn't contain '.' */
1218         { PR_2_1ST_NOT_DOT,
1219           N_("First @e '%Dn' (@i=%Di) in @d @i %i (%p) @s '.'\n"),
1220           PROMPT_FIX, 0 },
1221
1222         /* Second entry in directory inode doesn't contain '..' */
1223         { PR_2_2ND_NOT_DOT_DOT,
1224           N_("Second @e '%Dn' (@i=%Di) in @d @i %i @s '..'\n"),
1225           PROMPT_FIX, 0 },
1226
1227         /* i_faddr should be zero */
1228         { PR_2_FADDR_ZERO,
1229           N_("i_faddr @F %IF, @s zero.\n"),
1230           PROMPT_CLEAR, 0 },
1231
1232         /* i_file_acl should be zero */
1233         { PR_2_FILE_ACL_ZERO,
1234           N_("i_file_acl @F %If, @s zero.\n"),
1235           PROMPT_CLEAR, 0 },
1236
1237         /* i_dir_acl should be zero */
1238         { PR_2_DIR_ACL_ZERO,
1239           N_("i_dir_acl @F %Id, @s zero.\n"),
1240           PROMPT_CLEAR, 0 },
1241
1242         /* i_frag should be zero */
1243         { PR_2_FRAG_ZERO,
1244           N_("i_frag @F %N, @s zero.\n"),
1245           PROMPT_CLEAR, 0 },
1246
1247         /* i_fsize should be zero */
1248         { PR_2_FSIZE_ZERO,
1249           N_("i_fsize @F %N, @s zero.\n"),
1250           PROMPT_CLEAR, 0 },
1251
1252         /* inode has bad mode */
1253         { PR_2_BAD_MODE,
1254           N_("@i %i (%Q) has @n mode (%Im).\n"),
1255           PROMPT_CLEAR, 0 },
1256
1257         /* directory corrupted */
1258         { PR_2_DIR_CORRUPTED,
1259           N_("@d @i %i, %B, offset %N: @d corrupted\n"),
1260           PROMPT_SALVAGE, 0 },
1261
1262         /* filename too long */
1263         { PR_2_FILENAME_LONG,
1264           N_("@d @i %i, %B, offset %N: filename too long\n"),
1265           PROMPT_TRUNCATE, 0 },
1266
1267         /* Directory inode has a missing block (hole) */
1268         { PR_2_DIRECTORY_HOLE,
1269           N_("@d @i %i has an unallocated %B.  "),
1270           PROMPT_ALLOCATE, 0 },
1271
1272         /* '.' is not NULL terminated */
1273         { PR_2_DOT_NULL_TERM,
1274           N_("'.' @d @e in @d @i %i is not NULL terminated\n"),
1275           PROMPT_FIX, 0 },
1276
1277         /* '..' is not NULL terminated */
1278         { PR_2_DOT_DOT_NULL_TERM,
1279           N_("'..' @d @e in @d @i %i is not NULL terminated\n"),
1280           PROMPT_FIX, 0 },
1281
1282         /* Illegal character device inode */
1283         { PR_2_BAD_CHAR_DEV,
1284           N_("@i %i (%Q) is an @I character @v.\n"),
1285           PROMPT_CLEAR, 0 },
1286
1287         /* Illegal block device inode */
1288         { PR_2_BAD_BLOCK_DEV,
1289           N_("@i %i (%Q) is an @I @b @v.\n"),
1290           PROMPT_CLEAR, 0 },
1291
1292         /* Duplicate '.' entry */
1293         { PR_2_DUP_DOT,
1294           N_("@E is duplicate '.' @e.\n"),
1295           PROMPT_FIX, 0 },
1296
1297         /* Duplicate '..' entry */
1298         { PR_2_DUP_DOT_DOT,
1299           N_("@E is duplicate '..' @e.\n"),
1300           PROMPT_FIX, 0 },
1301
1302         /* Internal error: couldn't find dir_info */
1303         { PR_2_NO_DIRINFO,
1304           N_("Internal error: couldn't find dir_info for %i.\n"),
1305           PROMPT_NONE, PR_FATAL },
1306
1307         /* Final rec_len is wrong */
1308         { PR_2_FINAL_RECLEN,
1309           N_("@E has rec_len of %Dr, @s %N.\n"),
1310           PROMPT_FIX, 0 },
1311
1312         /* Error allocating icount structure */
1313         { PR_2_ALLOCATE_ICOUNT,
1314           N_("@A icount structure: %m\n"),
1315           PROMPT_NONE, PR_FATAL },
1316
1317         /* Error iterating over directory blocks */
1318         { PR_2_DBLIST_ITERATE,
1319           N_("Error iterating over @d @bs: %m\n"),
1320           PROMPT_NONE, PR_FATAL },
1321
1322         /* Error reading directory block */
1323         { PR_2_READ_DIRBLOCK,
1324           N_("Error reading @d @b %b (@i %i): %m\n"),
1325           PROMPT_CONTINUE, 0 },
1326
1327         /* Error writing directory block */
1328         { PR_2_WRITE_DIRBLOCK,
1329           N_("Error writing @d @b %b (@i %i): %m\n"),
1330           PROMPT_CONTINUE, 0 },
1331
1332         /* Error allocating new directory block */
1333         { PR_2_ALLOC_DIRBOCK,
1334           N_("@A new @d @b for @i %i (%s): %m\n"),
1335           PROMPT_NONE, 0 },
1336
1337         /* Error deallocating inode */
1338         { PR_2_DEALLOC_INODE,
1339           N_("Error deallocating @i %i: %m\n"),
1340           PROMPT_NONE, PR_FATAL },
1341
1342         /* Directory entry for '.' is big.  Split? */
1343         { PR_2_SPLIT_DOT,
1344           N_("@d @e for '.' in %p (%i) is big.\n"),
1345           PROMPT_SPLIT, PR_NO_OK },
1346
1347         /* Illegal FIFO inode */
1348         { PR_2_BAD_FIFO,
1349           N_("@i %i (%Q) is an @I FIFO.\n"),
1350           PROMPT_CLEAR, 0 },
1351
1352         /* Illegal socket inode */
1353         { PR_2_BAD_SOCKET,
1354           N_("@i %i (%Q) is an @I socket.\n"),
1355           PROMPT_CLEAR, 0 },
1356
1357         /* Directory filetype not set */
1358         { PR_2_SET_FILETYPE,
1359           N_("Setting filetype for @E to %N.\n"),
1360           PROMPT_NONE, PR_PREEN_OK | PR_NO_OK | PR_NO_NOMSG },
1361
1362         /* Directory filetype incorrect */
1363         { PR_2_BAD_FILETYPE,
1364           N_("@E has an incorrect filetype (was %Dt, @s %N).\n"),
1365           PROMPT_FIX, 0 },
1366
1367         /* Directory filetype set on filesystem */
1368         { PR_2_CLEAR_FILETYPE,
1369           N_("@E has filetype set.\n"),
1370           PROMPT_CLEAR, PR_PREEN_OK },
1371
1372         /* Directory filename is null */
1373         { PR_2_NULL_NAME,
1374           N_("@E has a @z name.\n"),
1375           PROMPT_CLEAR, 0 },
1376
1377         /* Invalid symlink */
1378         { PR_2_INVALID_SYMLINK,
1379           N_("Symlink %Q (@i #%i) is @n.\n"),
1380           PROMPT_CLEAR, 0 },
1381
1382         /* i_file_acl (extended attribute block) is bad */
1383         { PR_2_FILE_ACL_BAD,
1384           N_("@a @b @F @n (%If).\n"),
1385           PROMPT_CLEAR, 0 },
1386
1387         /* Filesystem contains large files, but has no such flag in sb */
1388         { PR_2_FEATURE_LARGE_FILES,
1389           N_("@f contains large files, but lacks LARGE_FILE flag in @S.\n"),
1390           PROMPT_FIX, 0 },
1391
1392         /* Node in HTREE directory not referenced */
1393         { PR_2_HTREE_NOTREF,
1394           N_("@p @h %d: %B not referenced\n"),
1395           PROMPT_NONE, 0 },
1396
1397         /* Node in HTREE directory referenced twice */
1398         { PR_2_HTREE_DUPREF,
1399           N_("@p @h %d: %B referenced twice\n"),
1400           PROMPT_NONE, 0 },
1401
1402         /* Node in HTREE directory has bad min hash */
1403         { PR_2_HTREE_MIN_HASH,
1404           N_("@p @h %d: %B has bad min hash\n"),
1405           PROMPT_NONE, 0 },
1406
1407         /* Node in HTREE directory has bad max hash */
1408         { PR_2_HTREE_MAX_HASH,
1409           N_("@p @h %d: %B has bad max hash\n"),
1410           PROMPT_NONE, 0 },
1411
1412         /* Clear invalid HTREE directory */
1413         { PR_2_HTREE_CLEAR,
1414           N_("@n @h %d (%q).  "), PROMPT_CLEAR_HTREE, 0 },
1415
1416         /* Bad block in htree interior node */
1417         { PR_2_HTREE_BADBLK,
1418           N_("@p @h %d (%q): bad @b number %b.\n"),
1419           PROMPT_CLEAR_HTREE, 0 },
1420
1421         /* Error adjusting EA refcount */
1422         { PR_2_ADJ_EA_REFCOUNT,
1423           N_("Error adjusting refcount for @a @b %b (@i %i): %m\n"),
1424           PROMPT_NONE, PR_FATAL },
1425
1426         /* Invalid HTREE root node */
1427         { PR_2_HTREE_BAD_ROOT,
1428           N_("@p @h %d: root node is @n\n"),
1429           PROMPT_CLEAR_HTREE, PR_PREEN_OK },
1430
1431         /* Invalid HTREE limit */
1432         { PR_2_HTREE_BAD_LIMIT,
1433           N_("@p @h %d: %B has @n limit (%N)\n"),
1434           PROMPT_CLEAR_HTREE, PR_PREEN_OK },
1435
1436         /* Invalid HTREE count */
1437         { PR_2_HTREE_BAD_COUNT,
1438           N_("@p @h %d: %B has @n count (%N)\n"),
1439           PROMPT_CLEAR_HTREE, PR_PREEN_OK },
1440
1441         /* HTREE interior node has out-of-order hashes in table */
1442         { PR_2_HTREE_HASH_ORDER,
1443           N_("@p @h %d: %B has an unordered hash table\n"),
1444           PROMPT_CLEAR_HTREE, PR_PREEN_OK },
1445
1446         /* Node in HTREE directory has invalid depth */
1447         { PR_2_HTREE_BAD_DEPTH,
1448           N_("@p @h %d: %B has @n depth (%N)\n"),
1449           PROMPT_NONE, 0 },
1450
1451         /* Duplicate directory entry found */
1452         { PR_2_DUPLICATE_DIRENT,
1453           N_("Duplicate @E found.  "),
1454           PROMPT_CLEAR, 0 },
1455
1456         /* Non-unique filename found */
1457         { PR_2_NON_UNIQUE_FILE, /* xgettext: no-c-format */
1458           N_("@E has a non-unique filename.\nRename to %s"),
1459           PROMPT_NULL, 0 },
1460
1461         /* Duplicate directory entry found */
1462         { PR_2_REPORT_DUP_DIRENT,
1463           N_("Duplicate @e '%Dn' found.\n\tMarking %p (%i) to be rebuilt.\n\n"),
1464           PROMPT_NONE, 0 },
1465
1466         /* i_blocks_hi should be zero */
1467         { PR_2_BLOCKS_HI_ZERO,
1468           N_("i_blocks_hi @F %N, @s zero.\n"),
1469           PROMPT_CLEAR, 0 },
1470
1471         /* Unexpected HTREE block */
1472         { PR_2_UNEXPECTED_HTREE_BLOCK,
1473           N_("Unexpected @b in @h %d (%q).\n"), PROMPT_CLEAR_HTREE, 0 },
1474
1475         /* Inode found in group where _INODE_UNINIT is set */
1476         { PR_2_INOREF_BG_INO_UNINIT,
1477           N_("@E references @i %Di in @g %g where _INODE_UNINIT is set.\n"),
1478           PROMPT_FIX, PR_PREEN_OK },
1479
1480         /* Inode found in group unused inodes area */
1481         { PR_2_INOREF_IN_UNUSED,
1482           N_("@E references @i %Di found in @g %g's unused inodes area.\n"),
1483           PROMPT_FIX, PR_PREEN_OK },
1484
1485         /* i_blocks_hi should be zero */
1486         { PR_2_I_FILE_ACL_HI_ZERO,
1487           N_("i_file_acl_hi @F %N, @s zero.\n"),
1488           PROMPT_CLEAR, PR_PREEN_OK },
1489
1490         /* Inode too bad */
1491         { PR_2_INODE_TOOBAD,
1492           N_("@i %i is badly corrupt (badness value = %N).  "),
1493           PROMPT_CLEAR, PR_PREEN_OK },
1494
1495         /* Directory entry dirdata length set incorrectly */
1496         { PR_2_CLEAR_DIRDATA,
1497           N_("@E dirdata length set incorrectly.\n"),
1498           PROMPT_CLEAR, PR_PREEN_OK },
1499
1500         /* Pass 3 errors */
1501
1502         /* Pass 3: Checking directory connectivity */
1503         { PR_3_PASS_HEADER,
1504           N_("Pass 3: Checking @d connectivity\n"),
1505           PROMPT_NONE, 0 },
1506
1507         /* Root inode not allocated */
1508         { PR_3_NO_ROOT_INODE,
1509           N_("@r not allocated.  "),
1510           PROMPT_ALLOCATE, 0 },
1511
1512         /* No room in lost+found */
1513         { PR_3_EXPAND_LF_DIR,
1514           N_("No room in @l @d.  "),
1515           PROMPT_EXPAND, 0 },
1516
1517         /* Unconnected directory inode */
1518         { PR_3_UNCONNECTED_DIR,
1519           N_("Unconnected @d @i %i (%p)\n"),
1520           PROMPT_CONNECT, 0 },
1521
1522         /* /lost+found not found */
1523         { PR_3_NO_LF_DIR,
1524           N_("/@l not found.  "),
1525           PROMPT_CREATE, PR_PREEN_OK },
1526
1527         /* .. entry is incorrect */
1528         { PR_3_BAD_DOT_DOT,
1529           N_("'..' in %Q (%i) is %P (%j), @s %q (%d).\n"),
1530           PROMPT_FIX, 0 },
1531
1532         /* Bad or non-existent /lost+found.  Cannot reconnect */
1533         { PR_3_NO_LPF,
1534           N_("Bad or non-existent /@l.  Cannot reconnect.\n"),
1535           PROMPT_NONE, 0 },
1536
1537         /* Could not expand /lost+found */
1538         { PR_3_CANT_EXPAND_LPF,
1539           N_("Could not expand /@l: %m\n"),
1540           PROMPT_NONE, 0 },
1541
1542         /* Could not reconnect inode */
1543         { PR_3_CANT_RECONNECT,
1544           N_("Could not reconnect %i: %m\n"),
1545           PROMPT_NONE, 0 },
1546
1547         /* Error while trying to find /lost+found */
1548         { PR_3_ERR_FIND_LPF,
1549           N_("Error while trying to find /@l: %m\n"),
1550           PROMPT_NONE, 0 },
1551
1552         /* Error in ext2fs_new_block while creating /lost+found */
1553         { PR_3_ERR_LPF_NEW_BLOCK,
1554           N_("ext2fs_new_@b: %m while trying to create /@l @d\n"),
1555           PROMPT_NONE, 0 },
1556
1557         /* Error in ext2fs_new_inode while creating /lost+found */
1558         { PR_3_ERR_LPF_NEW_INODE,
1559           N_("ext2fs_new_@i: %m while trying to create /@l @d\n"),
1560           PROMPT_NONE, 0 },
1561
1562         /* Error in ext2fs_new_dir_block while creating /lost+found */
1563         { PR_3_ERR_LPF_NEW_DIR_BLOCK,
1564           N_("ext2fs_new_dir_@b: %m while creating new @d @b\n"),
1565           PROMPT_NONE, 0 },
1566
1567         /* Error while writing directory block for /lost+found */
1568         { PR_3_ERR_LPF_WRITE_BLOCK,
1569           N_("ext2fs_write_dir_@b: %m while writing the @d @b for /@l\n"),
1570           PROMPT_NONE, 0 },
1571
1572         /* Error while adjusting inode count */
1573         { PR_3_ADJUST_INODE,
1574           N_("Error while adjusting @i count on @i %i\n"),
1575           PROMPT_NONE, 0 },
1576
1577         /* Couldn't fix parent directory -- error */
1578         { PR_3_FIX_PARENT_ERR,
1579           N_("Couldn't fix parent of @i %i: %m\n\n"),
1580           PROMPT_NONE, 0 },
1581
1582         /* Couldn't fix parent directory -- couldn't find it */
1583         { PR_3_FIX_PARENT_NOFIND,
1584           N_("Couldn't fix parent of @i %i: Couldn't find parent @d @e\n\n"),
1585           PROMPT_NONE, 0 },
1586
1587         /* Error allocating inode bitmap */
1588         { PR_3_ALLOCATE_IBITMAP_ERROR,
1589           N_("@A @i @B (%N): %m\n"),
1590           PROMPT_NONE, PR_FATAL },
1591
1592         /* Error creating root directory */
1593         { PR_3_CREATE_ROOT_ERROR,
1594           N_("Error creating root @d (%s): %m\n"),
1595           PROMPT_NONE, PR_FATAL },
1596
1597         /* Error creating lost and found directory */
1598         { PR_3_CREATE_LPF_ERROR,
1599           N_("Error creating /@l @d (%s): %m\n"),
1600           PROMPT_NONE, 0 },
1601
1602         /* Root inode is not directory; aborting */
1603         { PR_3_ROOT_NOT_DIR_ABORT,
1604           N_("@r is not a @d; aborting.\n"),
1605           PROMPT_NONE, PR_FATAL },
1606
1607         /* Cannot proceed without a root inode. */
1608         { PR_3_NO_ROOT_INODE_ABORT,
1609           N_("Cannot proceed without a @r.\n"),
1610           PROMPT_NONE, PR_FATAL },
1611
1612         /* Internal error: couldn't find dir_info */
1613         { PR_3_NO_DIRINFO,
1614           N_("Internal error: couldn't find dir_info for %i.\n"),
1615           PROMPT_NONE, PR_FATAL },
1616
1617         /* Lost+found not a directory */
1618         { PR_3_LPF_NOTDIR,
1619           N_("/@l is not a @d (ino=%i)\n"),
1620           PROMPT_UNLINK, 0 },
1621
1622         /* Pass 3A Directory Optimization       */
1623
1624         /* Pass 3A: Optimizing directories */
1625         { PR_3A_PASS_HEADER,
1626           N_("Pass 3A: Optimizing directories\n"),
1627           PROMPT_NONE, PR_PREEN_NOMSG },
1628
1629         /* Error iterating over directories */
1630         { PR_3A_OPTIMIZE_ITER,
1631           N_("Failed to create dirs_to_hash iterator: %m\n"),
1632           PROMPT_NONE, 0 },
1633
1634         /* Error rehash directory */
1635         { PR_3A_OPTIMIZE_DIR_ERR,
1636           N_("Failed to optimize directory %q (%d): %m\n"),
1637           PROMPT_NONE, 0 },
1638
1639         /* Rehashing dir header */
1640         { PR_3A_OPTIMIZE_DIR_HEADER,
1641           N_("Optimizing directories: "),
1642           PROMPT_NONE, PR_MSG_ONLY },
1643
1644         /* Rehashing directory %d */
1645         { PR_3A_OPTIMIZE_DIR,
1646           " %d",
1647           PROMPT_NONE, PR_LATCH_OPTIMIZE_DIR | PR_PREEN_NOHDR},
1648
1649         /* Rehashing dir end */
1650         { PR_3A_OPTIMIZE_DIR_END,
1651           "\n",
1652           PROMPT_NONE, PR_PREEN_NOHDR },
1653
1654         /* Pass 4 errors */
1655
1656         /* Pass 4: Checking reference counts */
1657         { PR_4_PASS_HEADER,
1658           N_("Pass 4: Checking reference counts\n"),
1659           PROMPT_NONE, 0 },
1660
1661         /* Unattached zero-length inode */
1662         { PR_4_ZERO_LEN_INODE,
1663           N_("@u @z @i %i.  "),
1664           PROMPT_CLEAR, PR_PREEN_OK|PR_NO_OK },
1665
1666         /* Unattached inode */
1667         { PR_4_UNATTACHED_INODE,
1668           N_("@u @i %i\n"),
1669           PROMPT_CONNECT, 0 },
1670
1671         /* Inode ref count wrong */
1672         { PR_4_BAD_REF_COUNT,
1673           N_("@i %i ref count is %Il, @s %N.  "),
1674           PROMPT_FIX, PR_PREEN_OK },
1675
1676         { PR_4_INCONSISTENT_COUNT,
1677           N_("WARNING: PROGRAMMING BUG IN E2FSCK!\n"
1678           "\tOR SOME BONEHEAD (YOU) IS CHECKING A MOUNTED (LIVE) FILESYSTEM.\n"
1679           "@i_link_info[%i] is %N, @i.i_links_count is %Il.  "
1680           "They @s the same!\n"),
1681           PROMPT_NONE, 0 },
1682
1683         /* Pass 5 errors */
1684
1685         /* Pass 5: Checking group summary information */
1686         { PR_5_PASS_HEADER,
1687           N_("Pass 5: Checking @g summary information\n"),
1688           PROMPT_NONE, 0 },
1689
1690         /* Padding at end of inode bitmap is not set. */
1691         { PR_5_INODE_BMAP_PADDING,
1692           N_("Padding at end of @i @B is not set. "),
1693           PROMPT_FIX, PR_PREEN_OK },
1694
1695         /* Padding at end of block bitmap is not set. */
1696         { PR_5_BLOCK_BMAP_PADDING,
1697           N_("Padding at end of @b @B is not set. "),
1698           PROMPT_FIX, PR_PREEN_OK },
1699
1700         /* Block bitmap differences header */
1701         { PR_5_BLOCK_BITMAP_HEADER,
1702           N_("@b @B differences: "),
1703           PROMPT_NONE, PR_PREEN_OK | PR_PREEN_NOMSG},
1704
1705         /* Block not used, but marked in bitmap */
1706         { PR_5_BLOCK_UNUSED,
1707           " -%b",
1708           PROMPT_NONE, PR_LATCH_BBITMAP | PR_PREEN_OK | PR_PREEN_NOMSG },
1709
1710         /* Block used, but not marked used in bitmap */
1711         { PR_5_BLOCK_USED,
1712           " +%b",
1713           PROMPT_NONE, PR_LATCH_BBITMAP | PR_PREEN_OK | PR_PREEN_NOMSG },
1714
1715         /* Block bitmap differences end */
1716         { PR_5_BLOCK_BITMAP_END,
1717           "\n",
1718           PROMPT_FIX, PR_PREEN_OK | PR_PREEN_NOMSG },
1719
1720         /* Inode bitmap differences header */
1721         { PR_5_INODE_BITMAP_HEADER,
1722           N_("@i @B differences: "),
1723           PROMPT_NONE, PR_PREEN_OK | PR_PREEN_NOMSG },
1724
1725         /* Inode not used, but marked in bitmap */
1726         { PR_5_INODE_UNUSED,
1727           " -%i",
1728           PROMPT_NONE, PR_LATCH_IBITMAP | PR_PREEN_OK | PR_PREEN_NOMSG },
1729
1730         /* Inode used, but not marked used in bitmap */
1731         { PR_5_INODE_USED,
1732           " +%i",
1733           PROMPT_NONE, PR_LATCH_IBITMAP | PR_PREEN_OK | PR_PREEN_NOMSG },
1734
1735         /* Inode bitmap differences end */
1736         { PR_5_INODE_BITMAP_END,
1737           "\n",
1738           PROMPT_FIX, PR_PREEN_OK | PR_PREEN_NOMSG },
1739
1740         /* Free inodes count for group wrong */
1741         { PR_5_FREE_INODE_COUNT_GROUP,
1742           N_("Free @is count wrong for @g #%g (%i, counted=%j).\n"),
1743           PROMPT_FIX, PR_PREEN_OK | PR_PREEN_NOMSG },
1744
1745         /* Directories count for group wrong */
1746         { PR_5_FREE_DIR_COUNT_GROUP,
1747           N_("Directories count wrong for @g #%g (%i, counted=%j).\n"),
1748           PROMPT_FIX, PR_PREEN_OK | PR_PREEN_NOMSG },
1749
1750         /* Free inodes count wrong */
1751         { PR_5_FREE_INODE_COUNT,
1752           N_("Free @is count wrong (%i, counted=%j).\n"),
1753           PROMPT_FIX, PR_PREEN_OK | PR_NO_OK | PR_PREEN_NOMSG },
1754
1755         /* Free blocks count for group wrong */
1756         { PR_5_FREE_BLOCK_COUNT_GROUP,
1757           N_("Free @bs count wrong for @g #%g (%b, counted=%c).\n"),
1758           PROMPT_FIX, PR_PREEN_OK | PR_PREEN_NOMSG },
1759
1760         /* Free blocks count wrong */
1761         { PR_5_FREE_BLOCK_COUNT,
1762           N_("Free @bs count wrong (%b, counted=%c).\n"),
1763           PROMPT_FIX, PR_PREEN_OK | PR_NO_OK | PR_PREEN_NOMSG },
1764
1765         /* Programming error: bitmap endpoints don't match */
1766         { PR_5_BMAP_ENDPOINTS,
1767           N_("PROGRAMMING ERROR: @f (#%N) @B endpoints (%b, %c) don't "
1768           "match calculated @B endpoints (%i, %j)\n"),
1769           PROMPT_NONE, PR_FATAL },
1770
1771         /* Internal error: fudging end of bitmap */
1772         { PR_5_FUDGE_BITMAP_ERROR,
1773           N_("Internal error: fudging end of bitmap (%N)\n"),
1774           PROMPT_NONE, PR_FATAL },
1775
1776         /* Error copying in replacement inode bitmap */
1777         { PR_5_COPY_IBITMAP_ERROR,
1778           N_("Error copying in replacement @i @B: %m\n"),
1779           PROMPT_NONE, PR_FATAL },
1780
1781         /* Error copying in replacement block bitmap */
1782         { PR_5_COPY_BBITMAP_ERROR,
1783           N_("Error copying in replacement @b @B: %m\n"),
1784           PROMPT_NONE, PR_FATAL },
1785
1786         /* Block range not used, but marked in bitmap */
1787         { PR_5_BLOCK_RANGE_UNUSED,
1788           " -(%b--%c)",
1789           PROMPT_NONE, PR_LATCH_BBITMAP | PR_PREEN_OK | PR_PREEN_NOMSG },
1790
1791         /* Block range used, but not marked used in bitmap */
1792         { PR_5_BLOCK_RANGE_USED,
1793           " +(%b--%c)",
1794           PROMPT_NONE, PR_LATCH_BBITMAP | PR_PREEN_OK | PR_PREEN_NOMSG },
1795
1796         /* Inode range not used, but marked in bitmap */
1797         { PR_5_INODE_RANGE_UNUSED,
1798           " -(%i--%j)",
1799           PROMPT_NONE, PR_LATCH_IBITMAP | PR_PREEN_OK | PR_PREEN_NOMSG },
1800
1801         /* Inode range used, but not marked used in bitmap */
1802         { PR_5_INODE_RANGE_USED,
1803           " +(%i--%j)",
1804           PROMPT_NONE, PR_LATCH_IBITMAP | PR_PREEN_OK | PR_PREEN_NOMSG },
1805
1806         /* Group N block(s) in use but group is marked BLOCK_UNINIT */
1807         { PR_5_BLOCK_UNINIT,
1808           N_("@g %g @b(s) in use but @g is marked BLOCK_UNINIT\n"),
1809           PROMPT_FIX, PR_PREEN_OK },
1810
1811         /* Group N inode(s) in use but group is marked INODE_UNINIT */
1812         { PR_5_INODE_UNINIT,
1813           N_("@g %g @i(s) in use but @g is marked INODE_UNINIT\n"),
1814           PROMPT_FIX, PR_PREEN_OK },
1815
1816         /* Expand inode */
1817         { PR_5_EXPAND_EISIZE,
1818           N_("Expanding @i %i.\n"),
1819           PROMPT_NONE, PR_PREEN_OK | PR_NO_OK | PR_PREEN_NOMSG },
1820
1821         /* Post-Pass 5 errors */
1822
1823         /* Recreate journal if E2F_FLAG_JOURNAL_INODE flag is set */
1824         { PR_6_RECREATE_JOURNAL,
1825           N_("Recreate @j"),
1826           PROMPT_NULL, PR_PREEN_OK | PR_NO_OK },
1827
1828         /* Update quota information if it is inconsistent */
1829         { PR_6_UPDATE_QUOTAS,
1830           N_("Update quota info for quota type %N"),
1831           PROMPT_NULL, PR_PREEN_OK },
1832
1833         /* Error setting block group checksum info */
1834         { PR_6_SET_BG_CHECKSUM,
1835           N_("Error setting @b @g checksum info: %m\n"),
1836           PROMPT_NULL, PR_FATAL },
1837
1838         /* Error writing file system info */
1839         { PR_6_FLUSH_FILESYSTEM,
1840           N_("Error writing file system info: %m\n"),
1841           PROMPT_NULL, PR_FATAL },
1842
1843         /* Error flushing writes to storage device */
1844         { PR_6_IO_FLUSH,
1845           N_("Error flushing writes to storage device: %m\n"),
1846           PROMPT_NULL, PR_FATAL },
1847
1848         { 0 }
1849 };
1850
1851 /*
1852  * This is the latch flags register.  It allows several problems to be
1853  * "latched" together.  This means that the user has to answer but one
1854  * question for the set of problems, and all of the associated
1855  * problems will be either fixed or not fixed.
1856  */
1857 static struct latch_descr pr_latch_info[] = {
1858         { PR_LATCH_BLOCK, PR_1_INODE_BLOCK_LATCH, 0 },
1859         { PR_LATCH_BBLOCK, PR_1_INODE_BBLOCK_LATCH, 0 },
1860         { PR_LATCH_IBITMAP, PR_5_INODE_BITMAP_HEADER, PR_5_INODE_BITMAP_END },
1861         { PR_LATCH_BBITMAP, PR_5_BLOCK_BITMAP_HEADER, PR_5_BLOCK_BITMAP_END },
1862         { PR_LATCH_RELOC, PR_0_RELOCATE_HINT, 0 },
1863         { PR_LATCH_DBLOCK, PR_1B_DUP_BLOCK_HEADER, PR_1B_DUP_BLOCK_END },
1864         { PR_LATCH_LOW_DTIME, PR_1_ORPHAN_LIST_REFUGEES, 0 },
1865         { PR_LATCH_TOOBIG, PR_1_INODE_TOOBIG, 0 },
1866         { PR_LATCH_OPTIMIZE_DIR, PR_3A_OPTIMIZE_DIR_HEADER, PR_3A_OPTIMIZE_DIR_END },
1867         { PR_LATCH_BG_CHECKSUM, PR_0_GDT_CSUM_LATCH, 0 },
1868         { -1, 0, 0 },
1869 };
1870
1871 static struct e2fsck_problem *find_problem(problem_t code)
1872 {
1873         int     i;
1874
1875         for (i=0; problem_table[i].e2p_code; i++) {
1876                 if (problem_table[i].e2p_code == code)
1877                         return &problem_table[i];
1878         }
1879         return 0;
1880 }
1881
1882 static struct latch_descr *find_latch(int code)
1883 {
1884         int     i;
1885
1886         for (i=0; pr_latch_info[i].latch_code >= 0; i++) {
1887                 if (pr_latch_info[i].latch_code == code)
1888                         return &pr_latch_info[i];
1889         }
1890         return 0;
1891 }
1892
1893 int end_problem_latch(e2fsck_t ctx, int mask)
1894 {
1895         struct latch_descr *ldesc;
1896         struct problem_context pctx;
1897         int answer = -1;
1898
1899         ldesc = find_latch(mask);
1900         if (ldesc->end_message && (ldesc->flags & PRL_LATCHED)) {
1901                 clear_problem_context(&pctx);
1902                 answer = fix_problem(ctx, ldesc->end_message, &pctx);
1903         }
1904         ldesc->flags &= ~(PRL_VARIABLE);
1905         return answer;
1906 }
1907
1908 int set_latch_flags(int mask, int setflags, int clearflags)
1909 {
1910         struct latch_descr *ldesc;
1911
1912         ldesc = find_latch(mask);
1913         if (!ldesc)
1914                 return -1;
1915         ldesc->flags |= setflags;
1916         ldesc->flags &= ~clearflags;
1917         return 0;
1918 }
1919
1920 int get_latch_flags(int mask, int *value)
1921 {
1922         struct latch_descr *ldesc;
1923
1924         ldesc = find_latch(mask);
1925         if (!ldesc)
1926                 return -1;
1927         *value = ldesc->flags;
1928         return 0;
1929 }
1930
1931 void clear_problem_context(struct problem_context *ctx)
1932 {
1933         memset(ctx, 0, sizeof(struct problem_context));
1934         ctx->blkcount = -1;
1935         ctx->group = -1;
1936 }
1937
1938 static void reconfigure_bool(e2fsck_t ctx, struct e2fsck_problem *ptr,
1939                              const char *key, int mask, const char *name)
1940 {
1941         int     val;
1942
1943         val = (ptr->flags & mask);
1944         profile_get_boolean(ctx->profile, "problems", key, name, val, &val);
1945         if (val)
1946                 ptr->flags |= mask;
1947         else
1948                 ptr->flags &= ~mask;
1949 }
1950
1951
1952 int fix_problem(e2fsck_t ctx, problem_t code, struct problem_context *pctx)
1953 {
1954         ext2_filsys fs = ctx->fs;
1955         struct e2fsck_problem *ptr;
1956         struct latch_descr *ldesc = 0;
1957         const char *message;
1958         int             def_yn, answer, ans;
1959         int             print_answer = 0;
1960         int             suppress = 0;
1961
1962         ptr = find_problem(code);
1963         if (!ptr) {
1964                 printf(_("Unhandled error code (0x%x)!\n"), code);
1965                 return 0;
1966         }
1967         if (!(ptr->flags & PR_CONFIG)) {
1968                 char    key[9], *new_desc = NULL;
1969
1970                 sprintf(key, "0x%06x", code);
1971
1972                 profile_get_string(ctx->profile, "problems", key,
1973                                    "description", 0, &new_desc);
1974                 if (new_desc)
1975                         ptr->e2p_description = new_desc;
1976
1977                 reconfigure_bool(ctx, ptr, key, PR_PREEN_OK, "preen_ok");
1978                 reconfigure_bool(ctx, ptr, key, PR_NO_OK, "no_ok");
1979                 reconfigure_bool(ctx, ptr, key, PR_NO_DEFAULT, "no_default");
1980                 reconfigure_bool(ctx, ptr, key, PR_MSG_ONLY, "print_message_only");
1981                 reconfigure_bool(ctx, ptr, key, PR_PREEN_NOMSG, "preen_nomessage");
1982                 reconfigure_bool(ctx, ptr, key, PR_NOCOLLATE, "no_collate");
1983                 reconfigure_bool(ctx, ptr, key, PR_NO_NOMSG, "no_nomsg");
1984                 reconfigure_bool(ctx, ptr, key, PR_PREEN_NOHDR, "preen_noheader");
1985                 reconfigure_bool(ctx, ptr, key, PR_FORCE_NO, "force_no");
1986                 profile_get_integer(ctx->profile, "options",
1987                                     "max_count_problems", 0, 0,
1988                                     &ptr->max_count);
1989                 profile_get_integer(ctx->profile, "problems", key, "max_count",
1990                                     ptr->max_count, &ptr->max_count);
1991
1992                 ptr->flags |= PR_CONFIG;
1993         }
1994         def_yn = 1;
1995         ptr->count++;
1996         if ((ptr->flags & PR_NO_DEFAULT) ||
1997             ((ptr->flags & PR_PREEN_NO) && (ctx->options & E2F_OPT_PREEN)) ||
1998             (ctx->options & E2F_OPT_NO))
1999                 def_yn= 0;
2000
2001         /*
2002          * Do special latch processing.  This is where we ask the
2003          * latch question, if it exists
2004          */
2005         if (ptr->flags & PR_LATCH_MASK) {
2006                 ldesc = find_latch(ptr->flags & PR_LATCH_MASK);
2007                 if (ldesc->question && !(ldesc->flags & PRL_LATCHED)) {
2008                         ans = fix_problem(ctx, ldesc->question, pctx);
2009                         if (ans == 1)
2010                                 ldesc->flags |= PRL_YES;
2011                         if (ans == 0)
2012                                 ldesc->flags |= PRL_NO;
2013                         ldesc->flags |= PRL_LATCHED;
2014                 }
2015                 if (ldesc->flags & PRL_SUPPRESS)
2016                         suppress++;
2017         }
2018         if ((ptr->flags & PR_PREEN_NOMSG) &&
2019             (ctx->options & E2F_OPT_PREEN))
2020                 suppress++;
2021         if ((ptr->flags & PR_NO_NOMSG) &&
2022             ((ctx->options & E2F_OPT_NO) || (ptr->flags & PR_FORCE_NO)))
2023                 suppress++;
2024         if (ptr->max_count && (ptr->count > ptr->max_count)) {
2025                 if (ctx->options & (E2F_OPT_NO | E2F_OPT_YES))
2026                         suppress++;
2027                 if ((ctx->options & E2F_OPT_PREEN) &&
2028                     (ptr->flags & PR_PREEN_OK))
2029                         suppress++;
2030                 if ((ptr->flags & PR_LATCH_MASK) &&
2031                     (ldesc->flags & (PRL_YES | PRL_NO)))
2032                         suppress++;
2033                 if (ptr->count == ptr->max_count + 1) {
2034                         printf("...problem 0x%06x suppressed\n",
2035                                ptr->e2p_code);
2036                         fflush(stdout);
2037                 }
2038         }
2039         message = ptr->e2p_description;
2040         if (*message)
2041                 message = _(message);
2042         if (!suppress) {
2043                 if ((ctx->options & E2F_OPT_PREEN) &&
2044                     !(ptr->flags & PR_PREEN_NOHDR)) {
2045                         printf("%s: ", ctx->device_name ?
2046                                ctx->device_name : ctx->filesystem_name);
2047                 }
2048                 if (*message)
2049                         print_e2fsck_message(stdout, ctx, message, pctx, 1, 0);
2050         }
2051         if (ctx->logf && message)
2052                 print_e2fsck_message(ctx->logf, ctx, message, pctx, 1, 0);
2053         if (!(ptr->flags & PR_PREEN_OK) && (ptr->prompt != PROMPT_NONE))
2054                 preenhalt(ctx);
2055
2056         if (ptr->flags & PR_FATAL)
2057                 fatal_error(ctx, 0);
2058
2059         if (ptr->prompt == PROMPT_NONE) {
2060                 if (ptr->flags & PR_NOCOLLATE)
2061                         answer = -1;
2062                 else
2063                         answer = def_yn;
2064         } else {
2065                 if (ptr->flags & PR_FORCE_NO) {
2066                         answer = 0;
2067                         print_answer = 1;
2068                 } else if (ctx->options & E2F_OPT_PREEN) {
2069                         answer = def_yn;
2070                         if (!(ptr->flags & PR_PREEN_NOMSG))
2071                                 print_answer = 1;
2072                 } else if ((ptr->flags & PR_LATCH_MASK) &&
2073                            (ldesc->flags & (PRL_YES | PRL_NO))) {
2074                         print_answer = 1;
2075                         if (ldesc->flags & PRL_YES)
2076                                 answer = 1;
2077                         else
2078                                 answer = 0;
2079                 } else
2080                         answer = ask(ctx, (ptr->prompt == PROMPT_NULL) ? "" :
2081                                      _(prompt[(int) ptr->prompt]), def_yn);
2082                 if (!answer && !(ptr->flags & PR_NO_OK))
2083                         ext2fs_unmark_valid(fs);
2084
2085                 if (print_answer) {
2086                         if (!suppress)
2087                                 printf("%s.\n", answer ?
2088                                        _(preen_msg[(int) ptr->prompt]) :
2089                                        _("IGNORED"));
2090                         if (ctx->logf)
2091                                 fprintf(ctx->logf, "%s.\n", answer ?
2092                                         _(preen_msg[(int) ptr->prompt]) :
2093                                         _("IGNORED"));
2094                 }
2095         }
2096
2097         if ((ptr->prompt == PROMPT_ABORT) && answer)
2098                 fatal_error(ctx, 0);
2099
2100         if (ptr->flags & PR_AFTER_CODE)
2101                 answer = fix_problem(ctx, ptr->second_code, pctx);
2102
2103         if (answer && (ptr->prompt != PROMPT_NONE))
2104                 ctx->flags |= E2F_FLAG_PROBLEMS_FIXED;
2105
2106         return answer;
2107 }
2108
2109 #ifdef UNITTEST
2110
2111 #include <stdlib.h>
2112 #include <stdio.h>
2113
2114 errcode_t
2115 profile_get_boolean(profile_t profile, const char *name, const char *subname,
2116                     const char *subsubname, int def_val, int *ret_boolean)
2117 {
2118         return 0;
2119 }
2120
2121 errcode_t
2122 profile_get_integer(profile_t profile, const char *name, const char *subname,
2123                     const char *subsubname, int def_val, int *ret_int)
2124 {
2125         return 0;
2126 }
2127
2128 void print_e2fsck_message(FILE *f, e2fsck_t ctx, const char *msg,
2129                           struct problem_context *pctx, int first,
2130                           int recurse)
2131 {
2132         return;
2133 }
2134
2135 void fatal_error(e2fsck_t ctx, const char *msg)
2136 {
2137         return;
2138 }
2139
2140 void preenhalt(e2fsck_t ctx)
2141 {
2142         return;
2143 }
2144
2145 errcode_t
2146 profile_get_string(profile_t profile, const char *name, const char *subname,
2147                    const char *subsubname, const char *def_val,
2148                    char **ret_string)
2149 {
2150         return 0;
2151 }
2152
2153 int ask (e2fsck_t ctx, const char * string, int def)
2154 {
2155         return 0;
2156 }
2157
2158 int verify_problem_table(e2fsck_t ctx)
2159 {
2160         struct e2fsck_problem *curr, *prev = NULL;
2161         int rc = 0;
2162
2163         for (prev = NULL, curr = problem_table; curr->e2p_code; prev = curr++) {
2164                 if (prev == NULL)
2165                         continue;
2166
2167                 if (curr->e2p_code > prev->e2p_code)
2168                         continue;
2169
2170                 if (curr->e2p_code == prev->e2p_code)
2171                         fprintf(stderr, "*** Duplicate in problem table:\n");
2172                 else
2173                         fprintf(stderr, "*** Unordered problem table:\n");
2174
2175                 fprintf(stderr, "curr code = 0x%08x: %s\n",
2176                         curr->e2p_code, curr->e2p_description);
2177                 fprintf(stderr, "*** prev code = 0x%08x: %s\n",
2178                         prev->e2p_code, prev->e2p_description);
2179
2180                 fprintf(stderr, "*** This is a %sprogramming error in e2fsck\n",
2181                         (curr->e2p_code == prev->e2p_code) ? "fatal " : "");
2182
2183                 rc = 1;
2184         }
2185
2186         return rc;
2187 }
2188
2189 int main(int argc, char *argv[])
2190 {
2191         e2fsck_t ctx;
2192         int rc;
2193
2194         memset(&ctx, 0, sizeof(ctx)); /* just to quiet compiler */
2195         rc = verify_problem_table(ctx);
2196         if (rc == 0)
2197                 printf("e2fsck problem table verified\n");
2198
2199         return rc;
2200 }
2201 #endif /* UNITTEST */