Whamcloud - gitweb
e2fsck: rebuild sparse extent trees & convert non-extent ext3 files
[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, 0 },
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         /*
439          * metadata_csum implies uninit_bg; both feature bits cannot
440          * be set simultaneously.
441          */
442         { PR_0_META_AND_GDT_CSUM_SET,
443           N_("@S metadata_csum supersedes uninit_bg; both feature "
444              "bits cannot be set simultaneously."),
445           PROMPT_FIX, PR_PREEN_OK | PR_NO_OK},
446
447         /* Superblock has invalid MMP checksum. */
448         { PR_0_MMP_CSUM_INVALID,
449           N_("@S MMP block checksum does not match MMP block.  "),
450           PROMPT_FIX, PR_PREEN_OK | PR_NO_OK},
451
452         /* 64bit is set but extents is unset. */
453         { PR_0_64BIT_WITHOUT_EXTENTS,
454           N_("@S 64bit filesystems needs extents to access the whole disk.  "),
455           PROMPT_FIX, PR_PREEN_OK | PR_NO_OK},
456
457         /* The first_meta_bg is too big */
458         { PR_0_FIRST_META_BG_TOO_BIG,
459           N_("First_meta_bg is too big.  (%N, max value %g).  "),
460           PROMPT_CLEAR, 0 },
461
462         /* External journal has corrupt superblock */
463         { PR_0_EXT_JOURNAL_SUPER_CSUM_INVALID,
464           N_("External @j @S checksum does not match @S.  "),
465           PROMPT_FIX, PR_PREEN_OK },
466
467         /* Pass 1 errors */
468
469         /* Pass 1: Checking inodes, blocks, and sizes */
470         { PR_1_PASS_HEADER,
471           N_("Pass 1: Checking @is, @bs, and sizes\n"),
472           PROMPT_NONE, 0 },
473
474         /* Root inode is not a directory */
475         { PR_1_ROOT_NO_DIR, N_("@r is not a @d.  "),
476           PROMPT_CLEAR, 0 },
477
478         /* Root inode has dtime set */
479         { PR_1_ROOT_DTIME,
480           N_("@r has dtime set (probably due to old mke2fs).  "),
481           PROMPT_FIX, PR_PREEN_OK },
482
483         /* Reserved inode has bad mode */
484         { PR_1_RESERVED_BAD_MODE,
485           N_("Reserved @i %i (%Q) has @n mode.  "),
486           PROMPT_CLEAR, PR_PREEN_OK },
487
488         /* Deleted inode has zero dtime */
489         { PR_1_ZERO_DTIME,
490           N_("@D @i %i has zero dtime.  "),
491           PROMPT_FIX, PR_PREEN_OK },
492
493         /* Inode in use, but dtime set */
494         { PR_1_SET_DTIME,
495           N_("@i %i is in use, but has dtime set.  "),
496           PROMPT_FIX, PR_PREEN_OK },
497
498         /* Zero-length directory */
499         { PR_1_ZERO_LENGTH_DIR,
500           N_("@i %i is a @z @d.  "),
501           PROMPT_CLEAR, PR_PREEN_OK },
502
503         /* Block bitmap conflicts with some other fs block */
504         { PR_1_BB_CONFLICT,
505           N_("@g %g's @b @B at %b @C.\n"),
506           PROMPT_RELOCATE, 0 },
507
508         /* Inode bitmap conflicts with some other fs block */
509         { PR_1_IB_CONFLICT,
510           N_("@g %g's @i @B at %b @C.\n"),
511           PROMPT_RELOCATE, 0 },
512
513         /* Inode table conflicts with some other fs block */
514         { PR_1_ITABLE_CONFLICT,
515           N_("@g %g's @i table at %b @C.\n"),
516           PROMPT_RELOCATE, 0 },
517
518         /* Block bitmap is on a bad block */
519         { PR_1_BB_BAD_BLOCK,
520           N_("@g %g's @b @B (%b) is bad.  "),
521           PROMPT_RELOCATE, 0 },
522
523         /* Inode bitmap is on a bad block */
524         { PR_1_IB_BAD_BLOCK,
525           N_("@g %g's @i @B (%b) is bad.  "),
526           PROMPT_RELOCATE, 0 },
527
528         /* Inode has incorrect i_size */
529         { PR_1_BAD_I_SIZE,
530           N_("@i %i, i_size is %Is, @s %N.  "),
531           PROMPT_FIX, PR_PREEN_OK },
532
533         /* Inode has incorrect i_blocks */
534         { PR_1_BAD_I_BLOCKS,
535           N_("@i %i, i_@bs is %Ib, @s %N.  "),
536           PROMPT_FIX, PR_PREEN_OK },
537
538         /* Illegal blocknumber in inode */
539         { PR_1_ILLEGAL_BLOCK_NUM,
540           N_("@I %B (%b) in @i %i.  "),
541           PROMPT_CLEAR, PR_LATCH_BLOCK },
542
543         /* Block number overlaps fs metadata */
544         { PR_1_BLOCK_OVERLAPS_METADATA,
545           N_("%B (%b) overlaps @f metadata in @i %i.  "),
546           PROMPT_CLEAR, PR_LATCH_BLOCK },
547
548         /* Inode has illegal blocks (latch question) */
549         { PR_1_INODE_BLOCK_LATCH,
550           N_("@i %i has illegal @b(s).  "),
551           PROMPT_CLEAR, 0 },
552
553         /* Too many bad blocks in inode */
554         { PR_1_TOO_MANY_BAD_BLOCKS,
555           N_("Too many illegal @bs in @i %i.\n"),
556           PROMPT_CLEAR_INODE, PR_NO_OK },
557
558         /* Illegal block number in bad block inode */
559         { PR_1_BB_ILLEGAL_BLOCK_NUM,
560           N_("@I %B (%b) in bad @b @i.  "),
561           PROMPT_CLEAR, PR_LATCH_BBLOCK },
562
563         /* Bad block inode has illegal blocks (latch question) */
564         { PR_1_INODE_BBLOCK_LATCH,
565           N_("Bad @b @i has illegal @b(s).  "),
566           PROMPT_CLEAR, 0 },
567
568         /* Duplicate or bad blocks in use! */
569         { PR_1_DUP_BLOCKS_PREENSTOP,
570           N_("Duplicate or bad @b in use!\n"),
571           PROMPT_NONE, 0 },
572
573         /* Bad block used as bad block indirect block */
574         { PR_1_BBINODE_BAD_METABLOCK,
575           N_("Bad @b %b used as bad @b @i indirect @b.  "),
576           PROMPT_CLEAR, PR_LATCH_BBLOCK },
577
578         /* Inconsistency can't be fixed prompt */
579         { PR_1_BBINODE_BAD_METABLOCK_PROMPT,
580           N_("\nThe bad @b @i has probably been corrupted.  You probably\n"
581              "should stop now and run ""e2fsck -c"" to scan for bad blocks\n"
582              "in the @f.\n"),
583           PROMPT_CONTINUE, PR_PREEN_NOMSG },
584
585         /* Bad primary block */
586         { PR_1_BAD_PRIMARY_BLOCK,
587           N_("\nIf the @b is really bad, the @f can not be fixed.\n"),
588           PROMPT_NONE, PR_AFTER_CODE, PR_1_BAD_PRIMARY_BLOCK_PROMPT },
589
590         /* Bad primary block prompt */
591         { PR_1_BAD_PRIMARY_BLOCK_PROMPT,
592           N_("You can remove this @b from the bad @b list and hope\n"
593              "that the @b is really OK.  But there are no guarantees.\n\n"),
594           PROMPT_CLEAR, PR_PREEN_NOMSG },
595
596         /* Bad primary superblock */
597         { PR_1_BAD_PRIMARY_SUPERBLOCK,
598           N_("The primary @S (%b) is on the bad @b list.\n"),
599           PROMPT_NONE, PR_AFTER_CODE, PR_1_BAD_PRIMARY_BLOCK },
600
601         /* Bad primary block group descriptors */
602         { PR_1_BAD_PRIMARY_GROUP_DESCRIPTOR,
603           N_("Block %b in the primary @g descriptors "
604           "is on the bad @b list\n"),
605           PROMPT_NONE, PR_AFTER_CODE, PR_1_BAD_PRIMARY_BLOCK },
606
607         /* Bad superblock in group */
608         { PR_1_BAD_SUPERBLOCK,
609           N_("Warning: Group %g's @S (%b) is bad.\n"),
610           PROMPT_NONE, PR_PREEN_OK | PR_PREEN_NOMSG },
611
612         /* Bad block group descriptors in group */
613         { PR_1_BAD_GROUP_DESCRIPTORS,
614           N_("Warning: Group %g's copy of the @g descriptors has a bad "
615           "@b (%b).\n"),
616           PROMPT_NONE, PR_PREEN_OK | PR_PREEN_NOMSG },
617
618         /* Block claimed for no reason */
619         { PR_1_PROGERR_CLAIMED_BLOCK,
620           N_("Programming error?  @b #%b claimed for no reason in "
621           "process_bad_@b.\n"),
622           PROMPT_NONE, PR_PREEN_OK },
623
624         /* Error allocating blocks for relocating metadata */
625         { PR_1_RELOC_BLOCK_ALLOCATE,
626           N_("@A %N contiguous @b(s) in @b @g %g for %s: %m\n"),
627           PROMPT_NONE, PR_PREEN_OK },
628
629         /* Error allocating block buffer during relocation process */
630         { PR_1_RELOC_MEMORY_ALLOCATE,
631           N_("@A @b buffer for relocating %s\n"),
632           PROMPT_NONE, PR_PREEN_OK },
633
634         /* Relocating metadata group information from X to Y */
635         { PR_1_RELOC_FROM_TO,
636           N_("Relocating @g %g's %s from %b to %c...\n"),
637           PROMPT_NONE, PR_PREEN_OK },
638
639         /* Relocating metatdata group information to X */
640         { PR_1_RELOC_TO,
641           N_("Relocating @g %g's %s to %c...\n"), /* xgettext:no-c-format */
642           PROMPT_NONE, PR_PREEN_OK },
643
644         /* Block read error during relocation process */
645         { PR_1_RELOC_READ_ERR,
646           N_("Warning: could not read @b %b of %s: %m\n"),
647           PROMPT_NONE, PR_PREEN_OK },
648
649         /* Block write error during relocation process */
650         { PR_1_RELOC_WRITE_ERR,
651           N_("Warning: could not write @b %b for %s: %m\n"),
652           PROMPT_NONE, PR_PREEN_OK },
653
654         /* Error allocating inode bitmap */
655         { PR_1_ALLOCATE_IBITMAP_ERROR,
656           N_("@A @i @B (%N): %m\n"),
657           PROMPT_NONE, PR_FATAL },
658
659         /* Error allocating block bitmap */
660         { PR_1_ALLOCATE_BBITMAP_ERROR,
661           N_("@A @b @B (%N): %m\n"),
662           PROMPT_NONE, PR_FATAL },
663
664         /* Error allocating icount link information */
665         { PR_1_ALLOCATE_ICOUNT,
666           N_("@A icount link information: %m\n"),
667           PROMPT_NONE, PR_FATAL },
668
669         /* Error allocating directory block array */
670         { PR_1_ALLOCATE_DBCOUNT,
671           N_("@A @d @b array: %m\n"),
672           PROMPT_NONE, PR_FATAL },
673
674         /* Error while scanning inodes */
675         { PR_1_ISCAN_ERROR,
676           N_("Error while scanning @is (%i): %m\n"),
677           PROMPT_NONE, PR_FATAL },
678
679         /* Error while iterating over blocks */
680         { PR_1_BLOCK_ITERATE,
681           N_("Error while iterating over @bs in @i %i: %m\n"),
682           PROMPT_NONE, PR_FATAL },
683
684         /* Error while storing inode count information */
685         { PR_1_ICOUNT_STORE,
686           N_("Error storing @i count information (@i=%i, count=%N): %m\n"),
687           PROMPT_NONE, PR_FATAL },
688
689         /* Error while storing directory block information */
690         { PR_1_ADD_DBLOCK,
691           N_("Error storing @d @b information "
692           "(@i=%i, @b=%b, num=%N): %m\n"),
693           PROMPT_NONE, PR_FATAL },
694
695         /* Error while reading inode (for clearing) */
696         { PR_1_READ_INODE,
697           N_("Error reading @i %i: %m\n"),
698           PROMPT_NONE, PR_FATAL },
699
700         /* Suppress messages prompt */
701         { PR_1_SUPPRESS_MESSAGES, "", PROMPT_SUPPRESS, PR_NO_OK },
702
703         /* Imagic flag set on an inode when filesystem doesn't support it */
704         { PR_1_SET_IMAGIC,
705           N_("@i %i has imagic flag set.  "),
706           PROMPT_CLEAR, 0 },
707
708         /* Immutable flag set on a device or socket inode */
709         { PR_1_SET_IMMUTABLE,
710           N_("Special (@v/socket/fifo/symlink) file (@i %i) has immutable\n"
711              "or append-only flag set.  "),
712           PROMPT_CLEAR, PR_PREEN_OK | PR_PREEN_NO | PR_NO_OK },
713
714         /* Non-zero size for device, fifo or socket inode */
715         { PR_1_SET_NONZSIZE,
716           N_("Special (@v/socket/fifo) @i %i has non-zero size.  "),
717           PROMPT_FIX, PR_PREEN_OK },
718
719         /* Filesystem revision is 0, but feature flags are set */
720         { PR_1_FS_REV_LEVEL,
721           N_("@f has feature flag(s) set, but is a revision 0 @f.  "),
722           PROMPT_FIX, PR_PREEN_OK | PR_NO_OK },
723
724         /* Journal inode is not in use, but contains data */
725         { PR_1_JOURNAL_INODE_NOT_CLEAR,
726           N_("@j @i is not in use, but contains data.  "),
727           PROMPT_CLEAR, PR_PREEN_OK },
728
729         /* Journal has bad mode */
730         { PR_1_JOURNAL_BAD_MODE,
731           N_("@j is not regular file.  "),
732           PROMPT_FIX, PR_PREEN_OK },
733
734         /* Deal with inodes that were part of orphan linked list */
735         { PR_1_LOW_DTIME,
736           N_("@i %i was part of the @o @i list.  "),
737           PROMPT_FIX, PR_LATCH_LOW_DTIME, 0 },
738
739         /* Deal with inodes that were part of corrupted orphan linked
740            list (latch question) */
741         { PR_1_ORPHAN_LIST_REFUGEES,
742           N_("@is that were part of a corrupted orphan linked list found.  "),
743           PROMPT_FIX, 0 },
744
745         /* Error allocating refcount structure */
746         { PR_1_ALLOCATE_REFCOUNT,
747           N_("@A refcount structure (%N): %m\n"),
748           PROMPT_NONE, PR_FATAL },
749
750         /* Error reading extended attribute block */
751         { PR_1_READ_EA_BLOCK,
752           N_("Error reading @a @b %b for @i %i.  "),
753           PROMPT_CLEAR, 0 },
754
755         /* Invalid extended attribute block */
756         { PR_1_BAD_EA_BLOCK,
757           N_("@i %i has a bad @a @b %b.  "),
758           PROMPT_CLEAR, 0 },
759
760         /* Error reading Extended Attribute block while fixing refcount */
761         { PR_1_EXTATTR_READ_ABORT,
762           N_("Error reading @a @b %b (%m).  "),
763           PROMPT_NONE, PR_FATAL },
764
765         /* Extended attribute reference count incorrect */
766         { PR_1_EXTATTR_REFCOUNT,
767           N_("@a @b %b has reference count %r, @s %N.  "),
768           PROMPT_FIX, 0 },
769
770         /* Error writing Extended Attribute block while fixing refcount */
771         { PR_1_EXTATTR_WRITE_ABORT,
772           N_("Error writing @a @b %b (%m).  "),
773           PROMPT_NONE, PR_FATAL },
774
775         /* Multiple EA blocks not supported */
776         { PR_1_EA_MULTI_BLOCK,
777           N_("@a @b %b has h_@bs > 1.  "),
778           PROMPT_CLEAR, 0},
779
780         /* Error allocating EA region allocation structure */
781         { PR_1_EA_ALLOC_REGION_ABORT,
782           N_("@A @a region allocation structure.  "),
783           PROMPT_NONE, PR_FATAL},
784
785         /* Error EA allocation collision */
786         { PR_1_EA_ALLOC_COLLISION,
787           N_("@a @b %b is corrupt (allocation collision).  "),
788           PROMPT_CLEAR, 0},
789
790         /* Bad extended attribute name */
791         { PR_1_EA_BAD_NAME,
792           N_("@a @b %b is corrupt (@n name).  "),
793           PROMPT_CLEAR, 0},
794
795         /* Bad extended attribute value */
796         { PR_1_EA_BAD_VALUE,
797           N_("@a @b %b is corrupt (@n value).  "),
798           PROMPT_CLEAR, 0},
799
800         /* Inode too big (latch question) */
801         { PR_1_INODE_TOOBIG,
802           N_("@i %i is too big.  "), PROMPT_TRUNCATE, 0 },
803
804         /* Directory too big */
805         { PR_1_TOOBIG_DIR,
806           N_("%B (%b) causes @d to be too big.  "),
807           PROMPT_CLEAR, PR_LATCH_TOOBIG },
808
809         /* Regular file too big */
810         { PR_1_TOOBIG_REG,
811           N_("%B (%b) causes file to be too big.  "),
812           PROMPT_CLEAR, PR_LATCH_TOOBIG },
813
814         /* Symlink too big */
815         { PR_1_TOOBIG_SYMLINK,
816           N_("%B (%b) causes symlink to be too big.  "),
817           PROMPT_CLEAR, PR_LATCH_TOOBIG },
818
819         /* INDEX_FL flag set on a non-HTREE filesystem */
820         { PR_1_HTREE_SET,
821           N_("@i %i has INDEX_FL flag set on @f without htree support.\n"),
822           PROMPT_CLEAR_HTREE, PR_PREEN_OK },
823
824         /* INDEX_FL flag set on a non-directory */
825         { PR_1_HTREE_NODIR,
826           N_("@i %i has INDEX_FL flag set but is not a @d.\n"),
827           PROMPT_CLEAR_HTREE, PR_PREEN_OK },
828
829         /* Invalid root node in HTREE directory */
830         { PR_1_HTREE_BADROOT,
831           N_("@h %i has an @n root node.\n"),
832           PROMPT_CLEAR_HTREE, PR_PREEN_OK },
833
834         /* Unsupported hash version in HTREE directory */
835         { PR_1_HTREE_HASHV,
836           N_("@h %i has an unsupported hash version (%N)\n"),
837           PROMPT_CLEAR_HTREE, PR_PREEN_OK },
838
839         /* Incompatible flag in HTREE root node */
840         { PR_1_HTREE_INCOMPAT,
841           N_("@h %i uses an incompatible htree root node flag.\n"),
842           PROMPT_CLEAR_HTREE, PR_PREEN_OK },
843
844         /* HTREE too deep */
845         { PR_1_HTREE_DEPTH,
846           N_("@h %i has a tree depth (%N) which is too big\n"),
847           PROMPT_CLEAR_HTREE, PR_PREEN_OK },
848
849         /* Bad block has indirect block that conflicts with filesystem block */
850         { PR_1_BB_FS_BLOCK,
851           N_("Bad @b @i has an indirect @b (%b) that conflicts with\n"
852              "@f metadata.  "),
853           PROMPT_CLEAR, PR_LATCH_BBLOCK },
854
855         /* Resize inode failed */
856         { PR_1_RESIZE_INODE_CREATE,
857           N_("Resize @i (re)creation failed: %m."),
858           PROMPT_CONTINUE, 0 },
859
860         /* invalid inode->i_extra_isize */
861         { PR_1_EXTRA_ISIZE,
862           N_("@i %i has a extra size (%IS) which is @n\n"),
863           PROMPT_FIX, PR_PREEN_OK },
864
865         /* invalid ea entry->e_name_len */
866         { PR_1_ATTR_NAME_LEN,
867           N_("@a in @i %i has a namelen (%N) which is @n\n"),
868           PROMPT_CLEAR, PR_PREEN_OK },
869
870         /* invalid ea entry->e_value_offs */
871         { PR_1_ATTR_VALUE_OFFSET,
872           N_("@a in @i %i has a value offset (%N) which is @n\n"),
873           PROMPT_CLEAR, PR_PREEN_OK },
874
875         /* invalid ea entry->e_value_block */
876         { PR_1_ATTR_VALUE_BLOCK,
877           N_("@a in @i %i has a value @b (%N) which is @n (must be 0)\n"),
878           PROMPT_CLEAR, PR_PREEN_OK },
879
880         /* invalid ea entry->e_value_size */
881         { PR_1_ATTR_VALUE_SIZE,
882           N_("@a in @i %i has a value size (%N) which is @n\n"),
883           PROMPT_CLEAR, PR_PREEN_OK },
884
885         /* invalid ea entry->e_hash */
886         { PR_1_ATTR_HASH,
887           N_("@a in @i %i has a hash (%N) which is @n\n"),
888           PROMPT_CLEAR, PR_PREEN_OK },
889
890         /* inode appears to be a directory */
891         { PR_1_TREAT_AS_DIRECTORY,
892           N_("@i %i is a %It but it looks like it is really a directory.\n"),
893           PROMPT_FIX, 0 },
894
895         /* Error while reading extent tree */
896         { PR_1_READ_EXTENT,
897           N_("Error while reading over @x tree in @i %i: %m\n"),
898           PROMPT_CLEAR_INODE, 0 },
899
900         /* Failure to iterate extents */
901         { PR_1_EXTENT_ITERATE_FAILURE,
902           N_("Failed to iterate extents in @i %i\n"
903              "\t(op %s, blk %b, lblk %c): %m\n"),
904           PROMPT_CLEAR_INODE, 0 },
905
906         /* Bad starting block in extent */
907         { PR_1_EXTENT_BAD_START_BLK,
908           N_("@i %i has an @n extent\n\t(logical @b %c, @n physical @b %b, len %N)\n"),
909           PROMPT_CLEAR, 0 },
910
911         /* Extent ends beyond filesystem */
912         { PR_1_EXTENT_ENDS_BEYOND,
913           N_("@i %i has an @n extent\n\t(logical @b %c, physical @b %b, @n len %N)\n"),
914           PROMPT_CLEAR, 0 },
915
916         /* EXTENTS_FL flag set on a non-extents filesystem */
917         { PR_1_EXTENTS_SET,
918           N_("@i %i has EXTENTS_FL flag set on @f without extents support.\n"),
919           PROMPT_CLEAR, 0 },
920
921         /* inode has extents, superblock missing INCOMPAT_EXTENTS feature */
922         { PR_1_EXTENT_FEATURE,
923           N_("@i %i is in extent format, but @S is missing EXTENTS feature\n"),
924           PROMPT_FIX, 0 },
925
926         /* inode missing EXTENTS_FL, but is an extent inode */
927         { PR_1_UNSET_EXTENT_FL,
928           N_("@i %i missing EXTENT_FL, but is in extents format\n"),
929           PROMPT_FIX, PR_PREEN_OK },
930
931         /* Fast symlink has EXTENTS_FL set */
932         { PR_1_FAST_SYMLINK_EXTENT_FL,
933           N_("Fast symlink %i has EXTENT_FL set.  "),
934           PROMPT_CLEAR, 0 },
935
936         /* Extents are out of order */
937         { PR_1_OUT_OF_ORDER_EXTENTS,
938           N_("@i %i has out of order extents\n\t(@n logical @b %c, physical @b %b, len %N)\n"),
939           PROMPT_CLEAR, 0 },
940
941         { PR_1_EXTENT_HEADER_INVALID,
942           N_("@i %i has an invalid extent node (blk %b, lblk %c)\n"),
943           PROMPT_CLEAR, 0 },
944
945         /* Failed to convert subcluster bitmap */
946         { PR_1_CONVERT_SUBCLUSTER,
947           N_("Error converting subcluster @b @B: %m\n"),
948           PROMPT_NONE, PR_FATAL },
949
950         /* Quota inode has bad mode */
951         { PR_1_QUOTA_BAD_MODE,
952           N_("@q @i is not regular file.  "),
953           PROMPT_CLEAR, PR_PREEN_OK },
954
955         /* Quota inode is not in use, but contains data */
956         { PR_1_QUOTA_INODE_NOT_CLEAR,
957           N_("@q @i is not in use, but contains data.  "),
958           PROMPT_CLEAR, PR_PREEN_OK },
959
960         /* Quota inode is user visible */
961         { PR_1_QUOTA_INODE_NOT_HIDDEN,
962           N_("@q @i is visible to the user.  "),
963           PROMPT_CLEAR, PR_PREEN_OK },
964
965         /* Invalid bad inode */
966         { PR_1_INVALID_BAD_INODE,
967           N_("The bad @b @i looks @n.  "),
968           PROMPT_CLEAR, 0 },
969
970         /* Extent has zero length */
971         { PR_1_EXTENT_LENGTH_ZERO,
972           N_("@i %i has zero length extent\n\t(@n logical @b %c, physical @b %b)\n"),
973           PROMPT_CLEAR, 0 },
974
975         /* inode seems to contain garbage */
976         { PR_1_INODE_IS_GARBAGE,
977           N_("@i %i seems to contain garbage.  "),
978           PROMPT_CLEAR, 0 },
979
980         /* inode passes checks, but checksum does not match inode */
981         { PR_1_INODE_ONLY_CSUM_INVALID,
982           N_("@i %i passes checks, but checksum does not match @i.  "),
983           PROMPT_FIX, PR_PREEN_OK },
984
985         /* Inode extended attribute is corrupt (allocation collision) */
986         { PR_1_INODE_EA_ALLOC_COLLISION,
987           N_("@i %i @a is corrupt (allocation collision).  "),
988           PROMPT_CLEAR, 0},
989
990         /*
991          * Inode extent block passes checks, but checksum does not match
992          * extent
993          */
994         { PR_1_EXTENT_ONLY_CSUM_INVALID,
995           N_("@i %i extent block passes checks, but checksum does not match "
996              "extent\n\t(logical @b %c, physical @b %b, len %N)\n"),
997           PROMPT_FIX, 0 },
998
999         /*
1000          * Inode extended attribute block passes checks, but checksum does not
1001          * match block.
1002          */
1003         { PR_1_EA_BLOCK_ONLY_CSUM_INVALID,
1004           N_("@i %i @a @b %b passes checks, but checksum does not match @b.  "),
1005           PROMPT_FIX, 0 },
1006
1007         /*
1008          * Interior extent node logical offset doesn't match first node below it
1009          */
1010         { PR_1_EXTENT_INDEX_START_INVALID,
1011           N_("Interior @x node level %N of @i %i:\n"
1012              "Logical start %b does not match logical start %c at next level.  "),
1013           PROMPT_FIX, 0 },
1014
1015         /* Extent end is out of bounds for the tree */
1016         { PR_1_EXTENT_END_OUT_OF_BOUNDS,
1017           N_("@i %i, end of extent exceeds allowed value\n\t(logical @b %c, physical @b %b, len %N)\n"),
1018           PROMPT_CLEAR, 0 },
1019
1020         /* Inode has inline data, but superblock is missing INLINE_DATA feature. */
1021         { PR_1_INLINE_DATA_FEATURE,
1022           N_("@i %i has inline data, but @S is missing INLINE_DATA feature\n"),
1023           PROMPT_CLEAR, PR_PREEN_OK },
1024
1025         /* INLINE_DATA feature is set in a non-inline-data filesystem */
1026         { PR_1_INLINE_DATA_SET,
1027           N_("@i %i has INLINE_DATA_FL flag on @f without inline data support.\n"),
1028           PROMPT_CLEAR, 0 },
1029
1030         /*
1031          * Inode block conflicts with critical metadata, skipping
1032          * block checks
1033          */
1034         { PR_1_CRITICAL_METADATA_COLLISION,
1035           N_("@i %i block %b conflicts with critical metadata, skipping block checks.\n"),
1036           PROMPT_NONE, 0 },
1037
1038         /* Directory inode block <block> should be at block <otherblock> */
1039         { PR_1_COLLAPSE_DBLOCK,
1040           N_("@d @i %i @b %b should be at @b %c.  "),
1041           PROMPT_FIX, 0 },
1042
1043         /* Extents/inlinedata flag set on a device or socket inode */
1044         { PR_1_UNINIT_DBLOCK,
1045           N_("@d @i %i has @x marked uninitialized at @b %c.  "),
1046           PROMPT_FIX, PR_PREEN_OK },
1047
1048         /* Inode logical block (physical block ) is misaligned. */
1049         { PR_1_MISALIGNED_CLUSTER,
1050           N_("@i %i logical @b %b (physical @b %c) violates cluster allocation rules.\nWill fix in pass 1B.\n"),
1051           PROMPT_NONE, 0 },
1052
1053         /* Inode has INLINE_DATA_FL flag but extended attribute not found */
1054         { PR_1_INLINE_DATA_NO_ATTR,
1055           N_("@i %i has INLINE_DATA_FL flag but @a not found.  "),
1056           PROMPT_TRUNCATE, 0 },
1057
1058         /* Extents/inlinedata flag set on a device or socket inode */
1059         { PR_1_SPECIAL_EXTENTS_IDATA,
1060           N_("Special (@v/socket/fifo) file (@i %i) has extents\n"
1061              "or inline-data flag set.  "),
1062           PROMPT_CLEAR, PR_PREEN_OK | PR_PREEN_NO | PR_NO_OK },
1063
1064         /* Inode has extent header but inline data flag is set */
1065         { PR_1_CLEAR_INLINE_DATA_FOR_EXTENT,
1066           N_("@i %i has @x header but inline data flag is set.\n"),
1067           PROMPT_FIX, 0 },
1068
1069         /* Inode seems to have inline data but extent flag is set */
1070         { PR_1_CLEAR_EXTENT_FOR_INLINE_DATA,
1071           N_("@i %i seems to have inline data but @x flag is set.\n"),
1072           PROMPT_FIX, 0 },
1073
1074         /* Inode seems to have block map but inline data and extent flags set */
1075         { PR_1_CLEAR_EXTENT_INLINE_DATA_FLAGS,
1076           N_("@i %i seems to have @b map but inline data and @x flags set.\n"),
1077           PROMPT_FIX, 0 },
1078
1079         /* Inode has inline data and extent flags but i_block contains junk */
1080         { PR_1_CLEAR_EXTENT_INLINE_DATA_INODE,
1081           N_("@i %i has inline data and @x flags set but i_block contains junk.\n"),
1082           PROMPT_CLEAR_INODE, 0 },
1083
1084         /* Bad block list says the bad block list inode is bad */
1085         { PR_1_BADBLOCKS_IN_BADBLOCKS,
1086           N_("Bad block list says the bad block list @i is bad.  "),
1087           PROMPT_CLEAR_INODE, 0 },
1088
1089         /* Error allocating extent region allocation structure */
1090         { PR_1_EXTENT_ALLOC_REGION_ABORT,
1091           N_("@A @x region allocation structure.  "),
1092           PROMPT_NONE, PR_FATAL},
1093
1094         /* Inode has a duplicate extent mapping */
1095         { PR_1_EXTENT_COLLISION,
1096           N_("@i %i has a duplicate @x mapping\n\t(logical @b %c, @n physical @b %b, len %N)\n"),
1097           PROMPT_CLEAR, 0 },
1098
1099         /* Error allocating memory for encrypted directory list */
1100         { PR_1_ALLOCATE_ENCRYPTED_DIRLIST,
1101           N_("@A memory for encrypted @d list\n"),
1102           PROMPT_NONE, PR_FATAL },
1103
1104         /* Inode extent tree could be more shallow */
1105         { PR_1_EXTENT_BAD_MAX_DEPTH,
1106           N_("@i %i @x tree could be more shallow (%b; could be <= %c)\n"),
1107           PROMPT_FIX, PR_NO_OK | PR_PREEN_NO | PR_PREEN_OK },
1108
1109         /* Pass 1b errors */
1110
1111         /* Pass 1B: Rescan for duplicate/bad blocks */
1112         { PR_1B_PASS_HEADER,
1113           N_("\nRunning additional passes to resolve @bs claimed by more than one @i...\n"
1114           "Pass 1B: Rescanning for @m @bs\n"),
1115           PROMPT_NONE, 0 },
1116
1117         /* Duplicate/bad block(s) header */
1118         { PR_1B_DUP_BLOCK_HEADER,
1119           N_("@m @b(s) in @i %i:"),
1120           PROMPT_NONE, 0 },
1121
1122         /* Duplicate/bad block(s) in inode */
1123         { PR_1B_DUP_BLOCK,
1124           " %b",
1125           PROMPT_NONE, PR_LATCH_DBLOCK | PR_PREEN_NOHDR },
1126
1127         /* Duplicate/bad block(s) end */
1128         { PR_1B_DUP_BLOCK_END,
1129           "\n",
1130           PROMPT_NONE, PR_PREEN_NOHDR },
1131
1132         /* Error while scanning inodes */
1133         { PR_1B_ISCAN_ERROR,
1134           N_("Error while scanning inodes (%i): %m\n"),
1135           PROMPT_NONE, PR_FATAL },
1136
1137         /* Error allocating inode bitmap */
1138         { PR_1B_ALLOCATE_IBITMAP_ERROR,
1139           N_("@A @i @B (@i_dup_map): %m\n"),
1140           PROMPT_NONE, PR_FATAL },
1141
1142         /* Error while iterating over blocks */
1143         { PR_1B_BLOCK_ITERATE,
1144           N_("Error while iterating over @bs in @i %i (%s): %m\n"),
1145           PROMPT_NONE, 0 },
1146
1147         /* Error adjusting EA refcount */
1148         { PR_1B_ADJ_EA_REFCOUNT,
1149           N_("Error adjusting refcount for @a @b %b (@i %i): %m\n"),
1150           PROMPT_NONE, 0 },
1151
1152         /* Duplicate/bad block range in inode */
1153         { PR_1B_DUP_RANGE,
1154           " %b--%c",
1155           PROMPT_NONE, PR_LATCH_DBLOCK | PR_PREEN_NOHDR },
1156
1157         /* Pass 1C: Scan directories for inodes with multiply-claimed blocks. */
1158         { PR_1C_PASS_HEADER,
1159           N_("Pass 1C: Scanning directories for @is with @m @bs\n"),
1160           PROMPT_NONE, 0 },
1161
1162
1163         /* Pass 1D: Reconciling multiply-claimed blocks */
1164         { PR_1D_PASS_HEADER,
1165           N_("Pass 1D: Reconciling @m @bs\n"),
1166           PROMPT_NONE, 0 },
1167
1168         /* File has duplicate blocks */
1169         { PR_1D_DUP_FILE,
1170           N_("File %Q (@i #%i, mod time %IM) \n"
1171           "  has %r @m @b(s), shared with %N file(s):\n"),
1172           PROMPT_NONE, 0 },
1173
1174         /* List of files sharing duplicate blocks */
1175         { PR_1D_DUP_FILE_LIST,
1176           N_("\t%Q (@i #%i, mod time %IM)\n"),
1177           PROMPT_NONE, 0 },
1178
1179         /* File sharing blocks with filesystem metadata  */
1180         { PR_1D_SHARE_METADATA,
1181           N_("\t<@f metadata>\n"),
1182           PROMPT_NONE, 0 },
1183
1184         /* Report of how many duplicate/bad inodes */
1185         { PR_1D_NUM_DUP_INODES,
1186           N_("(There are %N @is containing @m @bs.)\n\n"),
1187           PROMPT_NONE, 0 },
1188
1189         /* Duplicated blocks already reassigned or cloned. */
1190         { PR_1D_DUP_BLOCKS_DEALT,
1191           N_("@m @bs already reassigned or cloned.\n\n"),
1192           PROMPT_NONE, 0 },
1193
1194         /* Clone duplicate/bad blocks? */
1195         { PR_1D_CLONE_QUESTION,
1196           "", PROMPT_CLONE, PR_NO_OK },
1197
1198         /* Delete file? */
1199         { PR_1D_DELETE_QUESTION,
1200           "", PROMPT_DELETE, 0 },
1201
1202         /* Couldn't clone file (error) */
1203         { PR_1D_CLONE_ERROR,
1204           N_("Couldn't clone file: %m\n"), PROMPT_NONE, 0 },
1205
1206         /* Pass 1E Extent tree optimization     */
1207
1208         /* Pass 1E: Optimizing extent trees */
1209         { PR_1E_PASS_HEADER,
1210           N_("Pass 1E: Optimizing @x trees\n"),
1211           PROMPT_NONE, PR_PREEN_NOMSG },
1212
1213         /* Failed to optimize extent tree */
1214         { PR_1E_OPTIMIZE_EXT_ERR,
1215           N_("Failed to optimize @x tree %p (%i): %m\n"),
1216           PROMPT_NONE, 0 },
1217
1218         /* Optimizing extent trees */
1219         { PR_1E_OPTIMIZE_EXT_HEADER,
1220           N_("Optimizing @x trees: "),
1221           PROMPT_NONE, PR_MSG_ONLY },
1222
1223         /* Rebuilding extent tree %d */
1224         { PR_1E_OPTIMIZE_EXT,
1225           " %i",
1226           PROMPT_NONE, PR_LATCH_OPTIMIZE_EXT | PR_PREEN_NOHDR},
1227
1228         /* Rebuilding extent tree end */
1229         { PR_1E_OPTIMIZE_EXT_END,
1230           "\n",
1231           PROMPT_NONE, PR_PREEN_NOHDR },
1232
1233         /* Internal error: extent tree depth too large */
1234         { PR_1E_MAX_EXTENT_TREE_DEPTH,
1235           N_("Internal error: max extent tree depth too large (%b; expected=%c).\n"),
1236           PROMPT_NONE, PR_FATAL },
1237
1238         /* Inode extent tree could be shorter */
1239         { PR_1E_CAN_COLLAPSE_EXTENT_TREE,
1240           N_("@i %i @x tree (at level %b) could be shorter.  "),
1241           PROMPT_FIX, PR_NO_OK | PR_PREEN_NO | PR_PREEN_OK },
1242
1243         /* Inode extent tree could be narrower */
1244         { PR_1E_CAN_NARROW_EXTENT_TREE,
1245           N_("@i %i @x tree (at (level %b) could be narrower.  "),
1246           PROMPT_FIX, PR_NO_OK | PR_PREEN_NO | PR_PREEN_OK },
1247
1248         /* Pass 2 errors */
1249
1250         /* Pass 2: Checking directory structure */
1251         { PR_2_PASS_HEADER,
1252           N_("Pass 2: Checking @d structure\n"),
1253           PROMPT_NONE, 0 },
1254
1255         /* Bad inode number for '.' */
1256         { PR_2_BAD_INODE_DOT,
1257           N_("@n @i number for '.' in @d @i %i.\n"),
1258           PROMPT_FIX, 0 },
1259
1260         /* Entry 'xxxx' in /a/b/c has bad inode number.*/
1261         { PR_2_BAD_INO,
1262           N_("@E has @n @i #: %Di.\n"),
1263           PROMPT_CLEAR, 0 },
1264
1265         /* Entry 'xxxx' in /a/b/c has deleted/unused inode nnnnn.*/
1266         { PR_2_UNUSED_INODE,
1267           N_("@E has @D/unused @i %Di.  "),
1268           PROMPT_CLEAR, PR_PREEN_OK },
1269
1270         /* Directry entry is link to '.' */
1271         { PR_2_LINK_DOT,
1272           N_("@E @L to '.'  "),
1273           PROMPT_CLEAR, 0 },
1274
1275         /* Directory entry points to inode now located in a bad block */
1276         { PR_2_BB_INODE,
1277           N_("@E points to @i (%Di) located in a bad @b.\n"),
1278           PROMPT_CLEAR, 0 },
1279
1280         /* Directory entry contains a link to a directory */
1281         { PR_2_LINK_DIR,
1282           N_("@E @L to @d %P (%Di).\n"),
1283           PROMPT_CLEAR, 0 },
1284
1285         /* Directory entry contains a link to the root directry */
1286         { PR_2_LINK_ROOT,
1287           N_("@E @L to the @r.\n"),
1288           PROMPT_CLEAR, 0 },
1289
1290         /* Directory entry has illegal characters in its name */
1291         { PR_2_BAD_NAME,
1292           N_("@E has illegal characters in its name.\n"),
1293           PROMPT_FIX, 0 },
1294
1295         /* Missing '.' in directory inode */
1296         { PR_2_MISSING_DOT,
1297           N_("Missing '.' in @d @i %i.\n"),
1298           PROMPT_FIX, 0 },
1299
1300         /* Missing '..' in directory inode */
1301         { PR_2_MISSING_DOT_DOT,
1302           N_("Missing '..' in @d @i %i.\n"),
1303           PROMPT_FIX, 0 },
1304
1305         /* First entry in directory inode doesn't contain '.' */
1306         { PR_2_1ST_NOT_DOT,
1307           N_("First @e '%Dn' (@i=%Di) in @d @i %i (%p) @s '.'\n"),
1308           PROMPT_FIX, 0 },
1309
1310         /* Second entry in directory inode doesn't contain '..' */
1311         { PR_2_2ND_NOT_DOT_DOT,
1312           N_("Second @e '%Dn' (@i=%Di) in @d @i %i @s '..'\n"),
1313           PROMPT_FIX, 0 },
1314
1315         /* i_faddr should be zero */
1316         { PR_2_FADDR_ZERO,
1317           N_("i_faddr @F %IF, @s zero.\n"),
1318           PROMPT_CLEAR, 0 },
1319
1320         /* i_file_acl should be zero */
1321         { PR_2_FILE_ACL_ZERO,
1322           N_("i_file_acl @F %If, @s zero.\n"),
1323           PROMPT_CLEAR, 0 },
1324
1325         /* i_dir_acl should be zero */
1326         { PR_2_DIR_ACL_ZERO,
1327           N_("i_dir_acl @F %Id, @s zero.\n"),
1328           PROMPT_CLEAR, 0 },
1329
1330         /* i_frag should be zero */
1331         { PR_2_FRAG_ZERO,
1332           N_("i_frag @F %N, @s zero.\n"),
1333           PROMPT_CLEAR, 0 },
1334
1335         /* i_fsize should be zero */
1336         { PR_2_FSIZE_ZERO,
1337           N_("i_fsize @F %N, @s zero.\n"),
1338           PROMPT_CLEAR, 0 },
1339
1340         /* inode has bad mode */
1341         { PR_2_BAD_MODE,
1342           N_("@i %i (%Q) has @n mode (%Im).\n"),
1343           PROMPT_CLEAR, 0 },
1344
1345         /* directory corrupted */
1346         { PR_2_DIR_CORRUPTED,
1347           N_("@d @i %i, %B, offset %N: @d corrupted\n"),
1348           PROMPT_SALVAGE, 0 },
1349
1350         /* filename too long */
1351         { PR_2_FILENAME_LONG,
1352           N_("@d @i %i, %B, offset %N: filename too long\n"),
1353           PROMPT_TRUNCATE, 0 },
1354
1355         /* Directory inode has a missing block (hole) */
1356         { PR_2_DIRECTORY_HOLE,
1357           N_("@d @i %i has an unallocated %B.  "),
1358           PROMPT_ALLOCATE, 0 },
1359
1360         /* '.' is not NULL terminated */
1361         { PR_2_DOT_NULL_TERM,
1362           N_("'.' @d @e in @d @i %i is not NULL terminated\n"),
1363           PROMPT_FIX, 0 },
1364
1365         /* '..' is not NULL terminated */
1366         { PR_2_DOT_DOT_NULL_TERM,
1367           N_("'..' @d @e in @d @i %i is not NULL terminated\n"),
1368           PROMPT_FIX, 0 },
1369
1370         /* Illegal character device inode */
1371         { PR_2_BAD_CHAR_DEV,
1372           N_("@i %i (%Q) is an @I character @v.\n"),
1373           PROMPT_CLEAR, 0 },
1374
1375         /* Illegal block device inode */
1376         { PR_2_BAD_BLOCK_DEV,
1377           N_("@i %i (%Q) is an @I @b @v.\n"),
1378           PROMPT_CLEAR, 0 },
1379
1380         /* Duplicate '.' entry */
1381         { PR_2_DUP_DOT,
1382           N_("@E is duplicate '.' @e.\n"),
1383           PROMPT_FIX, 0 },
1384
1385         /* Duplicate '..' entry */
1386         { PR_2_DUP_DOT_DOT,
1387           N_("@E is duplicate '..' @e.\n"),
1388           PROMPT_FIX, 0 },
1389
1390         /* Internal error: couldn't find dir_info */
1391         { PR_2_NO_DIRINFO,
1392           N_("Internal error: couldn't find dir_info for %i.\n"),
1393           PROMPT_NONE, PR_FATAL },
1394
1395         /* Final rec_len is wrong */
1396         { PR_2_FINAL_RECLEN,
1397           N_("@E has rec_len of %Dr, @s %N.\n"),
1398           PROMPT_FIX, 0 },
1399
1400         /* Error allocating icount structure */
1401         { PR_2_ALLOCATE_ICOUNT,
1402           N_("@A icount structure: %m\n"),
1403           PROMPT_NONE, PR_FATAL },
1404
1405         /* Error iterating over directory blocks */
1406         { PR_2_DBLIST_ITERATE,
1407           N_("Error iterating over @d @bs: %m\n"),
1408           PROMPT_NONE, PR_FATAL },
1409
1410         /* Error reading directory block */
1411         { PR_2_READ_DIRBLOCK,
1412           N_("Error reading @d @b %b (@i %i): %m\n"),
1413           PROMPT_CONTINUE, 0 },
1414
1415         /* Error writing directory block */
1416         { PR_2_WRITE_DIRBLOCK,
1417           N_("Error writing @d @b %b (@i %i): %m\n"),
1418           PROMPT_CONTINUE, 0 },
1419
1420         /* Error allocating new directory block */
1421         { PR_2_ALLOC_DIRBOCK,
1422           N_("@A new @d @b for @i %i (%s): %m\n"),
1423           PROMPT_NONE, 0 },
1424
1425         /* Error deallocating inode */
1426         { PR_2_DEALLOC_INODE,
1427           N_("Error deallocating @i %i: %m\n"),
1428           PROMPT_NONE, PR_FATAL },
1429
1430         /* Directory entry for '.' is big.  Split? */
1431         { PR_2_SPLIT_DOT,
1432           N_("@d @e for '.' in %p (%i) is big.\n"),
1433           PROMPT_SPLIT, PR_NO_OK },
1434
1435         /* Illegal FIFO inode */
1436         { PR_2_BAD_FIFO,
1437           N_("@i %i (%Q) is an @I FIFO.\n"),
1438           PROMPT_CLEAR, 0 },
1439
1440         /* Illegal socket inode */
1441         { PR_2_BAD_SOCKET,
1442           N_("@i %i (%Q) is an @I socket.\n"),
1443           PROMPT_CLEAR, 0 },
1444
1445         /* Directory filetype not set */
1446         { PR_2_SET_FILETYPE,
1447           N_("Setting filetype for @E to %N.\n"),
1448           PROMPT_NONE, PR_PREEN_OK | PR_NO_OK | PR_NO_NOMSG },
1449
1450         /* Directory filetype incorrect */
1451         { PR_2_BAD_FILETYPE,
1452           N_("@E has an incorrect filetype (was %Dt, @s %N).\n"),
1453           PROMPT_FIX, 0 },
1454
1455         /* Directory filetype set on filesystem */
1456         { PR_2_CLEAR_FILETYPE,
1457           N_("@E has filetype set.\n"),
1458           PROMPT_CLEAR, PR_PREEN_OK },
1459
1460         /* Directory filename is null */
1461         { PR_2_NULL_NAME,
1462           N_("@E has a @z name.\n"),
1463           PROMPT_CLEAR, 0 },
1464
1465         /* Invalid symlink */
1466         { PR_2_INVALID_SYMLINK,
1467           N_("Symlink %Q (@i #%i) is @n.\n"),
1468           PROMPT_CLEAR, 0 },
1469
1470         /* i_file_acl (extended attribute block) is bad */
1471         { PR_2_FILE_ACL_BAD,
1472           N_("@a @b @F @n (%If).\n"),
1473           PROMPT_CLEAR, 0 },
1474
1475         /* Filesystem contains large files, but has no such flag in sb */
1476         { PR_2_FEATURE_LARGE_FILES,
1477           N_("@f contains large files, but lacks LARGE_FILE flag in @S.\n"),
1478           PROMPT_FIX, 0 },
1479
1480         /* Node in HTREE directory not referenced */
1481         { PR_2_HTREE_NOTREF,
1482           N_("@p @h %d: %B not referenced\n"),
1483           PROMPT_NONE, 0 },
1484
1485         /* Node in HTREE directory referenced twice */
1486         { PR_2_HTREE_DUPREF,
1487           N_("@p @h %d: %B referenced twice\n"),
1488           PROMPT_NONE, 0 },
1489
1490         /* Node in HTREE directory has bad min hash */
1491         { PR_2_HTREE_MIN_HASH,
1492           N_("@p @h %d: %B has bad min hash\n"),
1493           PROMPT_NONE, 0 },
1494
1495         /* Node in HTREE directory has bad max hash */
1496         { PR_2_HTREE_MAX_HASH,
1497           N_("@p @h %d: %B has bad max hash\n"),
1498           PROMPT_NONE, 0 },
1499
1500         /* Clear invalid HTREE directory */
1501         { PR_2_HTREE_CLEAR,
1502           N_("@n @h %d (%q).  "), PROMPT_CLEAR_HTREE, 0 },
1503
1504         /* Bad block in htree interior node */
1505         { PR_2_HTREE_BADBLK,
1506           N_("@p @h %d (%q): bad @b number %b.\n"),
1507           PROMPT_CLEAR_HTREE, 0 },
1508
1509         /* Error adjusting EA refcount */
1510         { PR_2_ADJ_EA_REFCOUNT,
1511           N_("Error adjusting refcount for @a @b %b (@i %i): %m\n"),
1512           PROMPT_NONE, PR_FATAL },
1513
1514         /* Invalid HTREE root node */
1515         { PR_2_HTREE_BAD_ROOT,
1516           N_("@p @h %d: root node is @n\n"),
1517           PROMPT_CLEAR_HTREE, PR_PREEN_OK },
1518
1519         /* Invalid HTREE limit */
1520         { PR_2_HTREE_BAD_LIMIT,
1521           N_("@p @h %d: %B has @n limit (%N)\n"),
1522           PROMPT_CLEAR_HTREE, PR_PREEN_OK },
1523
1524         /* Invalid HTREE count */
1525         { PR_2_HTREE_BAD_COUNT,
1526           N_("@p @h %d: %B has @n count (%N)\n"),
1527           PROMPT_CLEAR_HTREE, PR_PREEN_OK },
1528
1529         /* HTREE interior node has out-of-order hashes in table */
1530         { PR_2_HTREE_HASH_ORDER,
1531           N_("@p @h %d: %B has an unordered hash table\n"),
1532           PROMPT_CLEAR_HTREE, PR_PREEN_OK },
1533
1534         /* Node in HTREE directory has invalid depth */
1535         { PR_2_HTREE_BAD_DEPTH,
1536           N_("@p @h %d: %B has @n depth (%N)\n"),
1537           PROMPT_NONE, 0 },
1538
1539         /* Duplicate directory entry found */
1540         { PR_2_DUPLICATE_DIRENT,
1541           N_("Duplicate @E found.  "),
1542           PROMPT_CLEAR, 0 },
1543
1544         /* Non-unique filename found */
1545         { PR_2_NON_UNIQUE_FILE, /* xgettext: no-c-format */
1546           N_("@E has a non-unique filename.\nRename to %s"),
1547           PROMPT_NULL, 0 },
1548
1549         /* Duplicate directory entry found */
1550         { PR_2_REPORT_DUP_DIRENT,
1551           N_("Duplicate @e '%Dn' found.\n\tMarking %p (%i) to be rebuilt.\n\n"),
1552           PROMPT_NONE, 0 },
1553
1554         /* i_blocks_hi should be zero */
1555         { PR_2_BLOCKS_HI_ZERO,
1556           N_("i_blocks_hi @F %N, @s zero.\n"),
1557           PROMPT_CLEAR, 0 },
1558
1559         /* Unexpected HTREE block */
1560         { PR_2_UNEXPECTED_HTREE_BLOCK,
1561           N_("Unexpected @b in @h %d (%q).\n"), PROMPT_CLEAR_HTREE, 0 },
1562
1563         /* Inode found in group where _INODE_UNINIT is set */
1564         { PR_2_INOREF_BG_INO_UNINIT,
1565           N_("@E references @i %Di in @g %g where _INODE_UNINIT is set.\n"),
1566           PROMPT_FIX, PR_PREEN_OK },
1567
1568         /* Inode found in group unused inodes area */
1569         { PR_2_INOREF_IN_UNUSED,
1570           N_("@E references @i %Di found in @g %g's unused inodes area.\n"),
1571           PROMPT_FIX, PR_PREEN_OK },
1572
1573         /* i_blocks_hi should be zero */
1574         { PR_2_I_FILE_ACL_HI_ZERO,
1575           N_("i_file_acl_hi @F %N, @s zero.\n"),
1576           PROMPT_CLEAR, PR_PREEN_OK },
1577
1578         /* htree root node fails checksum */
1579         { PR_2_HTREE_ROOT_CSUM_INVALID,
1580           N_("@p @h %d: root node fails checksum.\n"),
1581           PROMPT_CLEAR_HTREE, PR_PREEN_OK },
1582
1583         /* htree internal node fails checksum */
1584         { PR_2_HTREE_NODE_CSUM_INVALID,
1585           N_("@p @h %d: internal node fails checksum.\n"),
1586           PROMPT_CLEAR_HTREE, PR_PREEN_OK },
1587
1588         /* leaf node has no checksum */
1589         { PR_2_LEAF_NODE_MISSING_CSUM,
1590           N_("@d @i %i, %B, offset %N: @d has no checksum.\n"),
1591           PROMPT_FIX, PR_PREEN_OK },
1592
1593         /* leaf node passes checks but fails checksum */
1594         { PR_2_LEAF_NODE_ONLY_CSUM_INVALID,
1595           N_("@d @i %i, %B, offset %N: @d passes checks but fails checksum.\n"),
1596           PROMPT_FIX, PR_PREEN_OK },
1597
1598         /* inline directory inode size must be a multiple of 4 */
1599         { PR_2_BAD_INLINE_DIR_SIZE,
1600           N_("Inline @d @i %i size (%N) must be a multiple of 4.\n"),
1601           PROMPT_FIX, 0 },
1602
1603         /* fixing size of inline directory inode failed */
1604         { PR_2_FIX_INLINE_DIR_FAILED,
1605           N_("Fixing size of inline @d @i %i failed.\n"),
1606           PROMPT_TRUNCATE, 0 },
1607
1608         /* Pass 3 errors */
1609
1610         /* Pass 3: Checking directory connectivity */
1611         { PR_3_PASS_HEADER,
1612           N_("Pass 3: Checking @d connectivity\n"),
1613           PROMPT_NONE, 0 },
1614
1615         /* Root inode not allocated */
1616         { PR_3_NO_ROOT_INODE,
1617           N_("@r not allocated.  "),
1618           PROMPT_ALLOCATE, 0 },
1619
1620         /* No room in lost+found */
1621         { PR_3_EXPAND_LF_DIR,
1622           N_("No room in @l @d.  "),
1623           PROMPT_EXPAND, 0 },
1624
1625         /* Unconnected directory inode */
1626         { PR_3_UNCONNECTED_DIR,
1627           N_("Unconnected @d @i %i (%p)\n"),
1628           PROMPT_CONNECT, 0 },
1629
1630         /* /lost+found not found */
1631         { PR_3_NO_LF_DIR,
1632           N_("/@l not found.  "),
1633           PROMPT_CREATE, PR_PREEN_OK },
1634
1635         /* .. entry is incorrect */
1636         { PR_3_BAD_DOT_DOT,
1637           N_("'..' in %Q (%i) is %P (%j), @s %q (%d).\n"),
1638           PROMPT_FIX, 0 },
1639
1640         /* Bad or non-existent /lost+found.  Cannot reconnect */
1641         { PR_3_NO_LPF,
1642           N_("Bad or non-existent /@l.  Cannot reconnect.\n"),
1643           PROMPT_NONE, 0 },
1644
1645         /* Could not expand /lost+found */
1646         { PR_3_CANT_EXPAND_LPF,
1647           N_("Could not expand /@l: %m\n"),
1648           PROMPT_NONE, 0 },
1649
1650         /* Could not reconnect inode */
1651         { PR_3_CANT_RECONNECT,
1652           N_("Could not reconnect %i: %m\n"),
1653           PROMPT_NONE, 0 },
1654
1655         /* Error while trying to find /lost+found */
1656         { PR_3_ERR_FIND_LPF,
1657           N_("Error while trying to find /@l: %m\n"),
1658           PROMPT_NONE, 0 },
1659
1660         /* Error in ext2fs_new_block while creating /lost+found */
1661         { PR_3_ERR_LPF_NEW_BLOCK,
1662           N_("ext2fs_new_@b: %m while trying to create /@l @d\n"),
1663           PROMPT_NONE, 0 },
1664
1665         /* Error in ext2fs_new_inode while creating /lost+found */
1666         { PR_3_ERR_LPF_NEW_INODE,
1667           N_("ext2fs_new_@i: %m while trying to create /@l @d\n"),
1668           PROMPT_NONE, 0 },
1669
1670         /* Error in ext2fs_new_dir_block while creating /lost+found */
1671         { PR_3_ERR_LPF_NEW_DIR_BLOCK,
1672           N_("ext2fs_new_dir_@b: %m while creating new @d @b\n"),
1673           PROMPT_NONE, 0 },
1674
1675         /* Error while writing directory block for /lost+found */
1676         { PR_3_ERR_LPF_WRITE_BLOCK,
1677           N_("ext2fs_write_dir_@b: %m while writing the @d @b for /@l\n"),
1678           PROMPT_NONE, 0 },
1679
1680         /* Error while adjusting inode count */
1681         { PR_3_ADJUST_INODE,
1682           N_("Error while adjusting @i count on @i %i\n"),
1683           PROMPT_NONE, 0 },
1684
1685         /* Couldn't fix parent directory -- error */
1686         { PR_3_FIX_PARENT_ERR,
1687           N_("Couldn't fix parent of @i %i: %m\n\n"),
1688           PROMPT_NONE, 0 },
1689
1690         /* Couldn't fix parent directory -- couldn't find it */
1691         { PR_3_FIX_PARENT_NOFIND,
1692           N_("Couldn't fix parent of @i %i: Couldn't find parent @d @e\n\n"),
1693           PROMPT_NONE, 0 },
1694
1695         /* Error allocating inode bitmap */
1696         { PR_3_ALLOCATE_IBITMAP_ERROR,
1697           N_("@A @i @B (%N): %m\n"),
1698           PROMPT_NONE, PR_FATAL },
1699
1700         /* Error creating root directory */
1701         { PR_3_CREATE_ROOT_ERROR,
1702           N_("Error creating root @d (%s): %m\n"),
1703           PROMPT_NONE, PR_FATAL },
1704
1705         /* Error creating lost and found directory */
1706         { PR_3_CREATE_LPF_ERROR,
1707           N_("Error creating /@l @d (%s): %m\n"),
1708           PROMPT_NONE, 0 },
1709
1710         /* Root inode is not directory; aborting */
1711         { PR_3_ROOT_NOT_DIR_ABORT,
1712           N_("@r is not a @d; aborting.\n"),
1713           PROMPT_NONE, PR_FATAL },
1714
1715         /* Cannot proceed without a root inode. */
1716         { PR_3_NO_ROOT_INODE_ABORT,
1717           N_("Cannot proceed without a @r.\n"),
1718           PROMPT_NONE, PR_FATAL },
1719
1720         /* Internal error: couldn't find dir_info */
1721         { PR_3_NO_DIRINFO,
1722           N_("Internal error: couldn't find dir_info for %i.\n"),
1723           PROMPT_NONE, PR_FATAL },
1724
1725         /* Lost+found not a directory */
1726         { PR_3_LPF_NOTDIR,
1727           N_("/@l is not a @d (ino=%i)\n"),
1728           PROMPT_UNLINK, 0 },
1729
1730         /* Lost+found has inline data */
1731         { PR_3_LPF_INLINE_DATA,
1732           N_("/@l has inline data\n"),
1733           PROMPT_CLEAR, 0 },
1734
1735         /* Cannot allocate /lost+found. */
1736         { PR_3_LPF_NO_SPACE,
1737           N_("Cannot allocate space for /@l.\nPlace lost files in root directory instead"),
1738           PROMPT_NULL, 0 },
1739
1740         /* Delete some files and re-run e2fsck. */
1741         { PR_3_NO_SPACE_TO_RECOVER,
1742           N_("Insufficient space to recover lost files!\nMove data off the @f and re-run e2fsck.\n\n"),
1743           PROMPT_NONE, 0 },
1744
1745         /* Pass 3A Directory Optimization       */
1746
1747         /* Pass 3A: Optimizing directories */
1748         { PR_3A_PASS_HEADER,
1749           N_("Pass 3A: Optimizing directories\n"),
1750           PROMPT_NONE, PR_PREEN_NOMSG },
1751
1752         /* Error iterating over directories */
1753         { PR_3A_OPTIMIZE_ITER,
1754           N_("Failed to create dirs_to_hash iterator: %m\n"),
1755           PROMPT_NONE, 0 },
1756
1757         /* Error rehash directory */
1758         { PR_3A_OPTIMIZE_DIR_ERR,
1759           N_("Failed to optimize directory %q (%d): %m\n"),
1760           PROMPT_NONE, 0 },
1761
1762         /* Rehashing dir header */
1763         { PR_3A_OPTIMIZE_DIR_HEADER,
1764           N_("Optimizing directories: "),
1765           PROMPT_NONE, PR_MSG_ONLY },
1766
1767         /* Rehashing directory %d */
1768         { PR_3A_OPTIMIZE_DIR,
1769           " %d",
1770           PROMPT_NONE, PR_LATCH_OPTIMIZE_DIR | PR_PREEN_NOHDR},
1771
1772         /* Rehashing dir end */
1773         { PR_3A_OPTIMIZE_DIR_END,
1774           "\n",
1775           PROMPT_NONE, PR_PREEN_NOHDR },
1776
1777         /* Pass 4 errors */
1778
1779         /* Pass 4: Checking reference counts */
1780         { PR_4_PASS_HEADER,
1781           N_("Pass 4: Checking reference counts\n"),
1782           PROMPT_NONE, 0 },
1783
1784         /* Unattached zero-length inode */
1785         { PR_4_ZERO_LEN_INODE,
1786           N_("@u @z @i %i.  "),
1787           PROMPT_CLEAR, PR_PREEN_OK|PR_NO_OK },
1788
1789         /* Unattached inode */
1790         { PR_4_UNATTACHED_INODE,
1791           N_("@u @i %i\n"),
1792           PROMPT_CONNECT, 0 },
1793
1794         /* Inode ref count wrong */
1795         { PR_4_BAD_REF_COUNT,
1796           N_("@i %i ref count is %Il, @s %N.  "),
1797           PROMPT_FIX, PR_PREEN_OK },
1798
1799         { PR_4_INCONSISTENT_COUNT,
1800           N_("WARNING: PROGRAMMING BUG IN E2FSCK!\n"
1801           "\tOR SOME BONEHEAD (YOU) IS CHECKING A MOUNTED (LIVE) FILESYSTEM.\n"
1802           "@i_link_info[%i] is %N, @i.i_links_count is %Il.  "
1803           "They @s the same!\n"),
1804           PROMPT_NONE, 0 },
1805
1806         /* Pass 5 errors */
1807
1808         /* Pass 5: Checking group summary information */
1809         { PR_5_PASS_HEADER,
1810           N_("Pass 5: Checking @g summary information\n"),
1811           PROMPT_NONE, 0 },
1812
1813         /* Padding at end of inode bitmap is not set. */
1814         { PR_5_INODE_BMAP_PADDING,
1815           N_("Padding at end of @i @B is not set. "),
1816           PROMPT_FIX, PR_PREEN_OK },
1817
1818         /* Padding at end of block bitmap is not set. */
1819         { PR_5_BLOCK_BMAP_PADDING,
1820           N_("Padding at end of @b @B is not set. "),
1821           PROMPT_FIX, PR_PREEN_OK },
1822
1823         /* Block bitmap differences header */
1824         { PR_5_BLOCK_BITMAP_HEADER,
1825           N_("@b @B differences: "),
1826           PROMPT_NONE, PR_PREEN_OK | PR_PREEN_NOMSG},
1827
1828         /* Block not used, but marked in bitmap */
1829         { PR_5_BLOCK_UNUSED,
1830           " -%b",
1831           PROMPT_NONE, PR_LATCH_BBITMAP | PR_PREEN_OK | PR_PREEN_NOMSG },
1832
1833         /* Block used, but not marked used in bitmap */
1834         { PR_5_BLOCK_USED,
1835           " +%b",
1836           PROMPT_NONE, PR_LATCH_BBITMAP | PR_PREEN_OK | PR_PREEN_NOMSG },
1837
1838         /* Block bitmap differences end */
1839         { PR_5_BLOCK_BITMAP_END,
1840           "\n",
1841           PROMPT_FIX, PR_PREEN_OK | PR_PREEN_NOMSG },
1842
1843         /* Inode bitmap differences header */
1844         { PR_5_INODE_BITMAP_HEADER,
1845           N_("@i @B differences: "),
1846           PROMPT_NONE, PR_PREEN_OK | PR_PREEN_NOMSG },
1847
1848         /* Inode not used, but marked in bitmap */
1849         { PR_5_INODE_UNUSED,
1850           " -%i",
1851           PROMPT_NONE, PR_LATCH_IBITMAP | PR_PREEN_OK | PR_PREEN_NOMSG },
1852
1853         /* Inode used, but not marked used in bitmap */
1854         { PR_5_INODE_USED,
1855           " +%i",
1856           PROMPT_NONE, PR_LATCH_IBITMAP | PR_PREEN_OK | PR_PREEN_NOMSG },
1857
1858         /* Inode bitmap differences end */
1859         { PR_5_INODE_BITMAP_END,
1860           "\n",
1861           PROMPT_FIX, PR_PREEN_OK | PR_PREEN_NOMSG },
1862
1863         /* Free inodes count for group wrong */
1864         { PR_5_FREE_INODE_COUNT_GROUP,
1865           N_("Free @is count wrong for @g #%g (%i, counted=%j).\n"),
1866           PROMPT_FIX, PR_PREEN_OK | PR_PREEN_NOMSG },
1867
1868         /* Directories count for group wrong */
1869         { PR_5_FREE_DIR_COUNT_GROUP,
1870           N_("Directories count wrong for @g #%g (%i, counted=%j).\n"),
1871           PROMPT_FIX, PR_PREEN_OK | PR_PREEN_NOMSG },
1872
1873         /* Free inodes count wrong */
1874         { PR_5_FREE_INODE_COUNT,
1875           N_("Free @is count wrong (%i, counted=%j).\n"),
1876           PROMPT_FIX, PR_PREEN_OK | PR_NO_OK | PR_PREEN_NOMSG },
1877
1878         /* Free blocks count for group wrong */
1879         { PR_5_FREE_BLOCK_COUNT_GROUP,
1880           N_("Free @bs count wrong for @g #%g (%b, counted=%c).\n"),
1881           PROMPT_FIX, PR_PREEN_OK | PR_PREEN_NOMSG },
1882
1883         /* Free blocks count wrong */
1884         { PR_5_FREE_BLOCK_COUNT,
1885           N_("Free @bs count wrong (%b, counted=%c).\n"),
1886           PROMPT_FIX, PR_PREEN_OK | PR_NO_OK | PR_PREEN_NOMSG },
1887
1888         /* Programming error: bitmap endpoints don't match */
1889         { PR_5_BMAP_ENDPOINTS,
1890           N_("PROGRAMMING ERROR: @f (#%N) @B endpoints (%b, %c) don't "
1891           "match calculated @B endpoints (%i, %j)\n"),
1892           PROMPT_NONE, PR_FATAL },
1893
1894         /* Internal error: fudging end of bitmap */
1895         { PR_5_FUDGE_BITMAP_ERROR,
1896           N_("Internal error: fudging end of bitmap (%N)\n"),
1897           PROMPT_NONE, PR_FATAL },
1898
1899         /* Error copying in replacement inode bitmap */
1900         { PR_5_COPY_IBITMAP_ERROR,
1901           N_("Error copying in replacement @i @B: %m\n"),
1902           PROMPT_NONE, PR_FATAL },
1903
1904         /* Error copying in replacement block bitmap */
1905         { PR_5_COPY_BBITMAP_ERROR,
1906           N_("Error copying in replacement @b @B: %m\n"),
1907           PROMPT_NONE, PR_FATAL },
1908
1909         /* Block range not used, but marked in bitmap */
1910         { PR_5_BLOCK_RANGE_UNUSED,
1911           " -(%b--%c)",
1912           PROMPT_NONE, PR_LATCH_BBITMAP | PR_PREEN_OK | PR_PREEN_NOMSG },
1913
1914         /* Block range used, but not marked used in bitmap */
1915         { PR_5_BLOCK_RANGE_USED,
1916           " +(%b--%c)",
1917           PROMPT_NONE, PR_LATCH_BBITMAP | PR_PREEN_OK | PR_PREEN_NOMSG },
1918
1919         /* Inode range not used, but marked in bitmap */
1920         { PR_5_INODE_RANGE_UNUSED,
1921           " -(%i--%j)",
1922           PROMPT_NONE, PR_LATCH_IBITMAP | PR_PREEN_OK | PR_PREEN_NOMSG },
1923
1924         /* Inode range used, but not marked used in bitmap */
1925         { PR_5_INODE_RANGE_USED,
1926           " +(%i--%j)",
1927           PROMPT_NONE, PR_LATCH_IBITMAP | PR_PREEN_OK | PR_PREEN_NOMSG },
1928
1929         /* Group N block(s) in use but group is marked BLOCK_UNINIT */
1930         { PR_5_BLOCK_UNINIT,
1931           N_("@g %g @b(s) in use but @g is marked BLOCK_UNINIT\n"),
1932           PROMPT_FIX, PR_PREEN_OK },
1933
1934         /* Group N inode(s) in use but group is marked INODE_UNINIT */
1935         { PR_5_INODE_UNINIT,
1936           N_("@g %g @i(s) in use but @g is marked INODE_UNINIT\n"),
1937           PROMPT_FIX, PR_PREEN_OK },
1938
1939         /* Group N inode bitmap does not match checksum */
1940         { PR_5_INODE_BITMAP_CSUM_INVALID,
1941           N_("@g %g @i @B does not match checksum.\n"),
1942           PROMPT_FIX, PR_LATCH_IBITMAP | PR_PREEN_OK },
1943
1944         /* Group N block bitmap does not match checksum */
1945         { PR_5_BLOCK_BITMAP_CSUM_INVALID,
1946           N_("@g %g @b @B does not match checksum.\n"),
1947           PROMPT_FIX, PR_LATCH_BBITMAP | PR_PREEN_OK },
1948
1949         /* Post-Pass 5 errors */
1950
1951         /* Recreate journal if E2F_FLAG_JOURNAL_INODE flag is set */
1952         { PR_6_RECREATE_JOURNAL,
1953           N_("Recreate @j"),
1954           PROMPT_NULL, PR_PREEN_OK | PR_NO_OK },
1955
1956         /* Update quota information if it is inconsistent */
1957         { PR_6_UPDATE_QUOTAS,
1958           N_("Update quota info for quota type %N"),
1959           PROMPT_NULL, PR_PREEN_OK },
1960
1961         /* Error setting block group checksum info */
1962         { PR_6_SET_BG_CHECKSUM,
1963           N_("Error setting @b @g checksum info: %m\n"),
1964           PROMPT_NULL, PR_FATAL },
1965
1966         /* Error writing file system info */
1967         { PR_6_FLUSH_FILESYSTEM,
1968           N_("Error writing file system info: %m\n"),
1969           PROMPT_NULL, PR_FATAL },
1970
1971         /* Error flushing writes to storage device */
1972         { PR_6_IO_FLUSH,
1973           N_("Error flushing writes to storage device: %m\n"),
1974           PROMPT_NULL, PR_FATAL },
1975
1976         { 0 }
1977 };
1978
1979 /*
1980  * This is the latch flags register.  It allows several problems to be
1981  * "latched" together.  This means that the user has to answer but one
1982  * question for the set of problems, and all of the associated
1983  * problems will be either fixed or not fixed.
1984  */
1985 static struct latch_descr pr_latch_info[] = {
1986         { PR_LATCH_BLOCK, PR_1_INODE_BLOCK_LATCH, 0 },
1987         { PR_LATCH_BBLOCK, PR_1_INODE_BBLOCK_LATCH, 0 },
1988         { PR_LATCH_IBITMAP, PR_5_INODE_BITMAP_HEADER, PR_5_INODE_BITMAP_END },
1989         { PR_LATCH_BBITMAP, PR_5_BLOCK_BITMAP_HEADER, PR_5_BLOCK_BITMAP_END },
1990         { PR_LATCH_RELOC, PR_0_RELOCATE_HINT, 0 },
1991         { PR_LATCH_DBLOCK, PR_1B_DUP_BLOCK_HEADER, PR_1B_DUP_BLOCK_END },
1992         { PR_LATCH_LOW_DTIME, PR_1_ORPHAN_LIST_REFUGEES, 0 },
1993         { PR_LATCH_TOOBIG, PR_1_INODE_TOOBIG, 0 },
1994         { PR_LATCH_OPTIMIZE_DIR, PR_3A_OPTIMIZE_DIR_HEADER, PR_3A_OPTIMIZE_DIR_END },
1995         { PR_LATCH_BG_CHECKSUM, PR_0_GDT_CSUM_LATCH, 0 },
1996         { PR_LATCH_OPTIMIZE_EXT, PR_1E_OPTIMIZE_EXT_HEADER, PR_1E_OPTIMIZE_EXT_END },
1997         { -1, 0, 0 },
1998 };
1999
2000 static struct e2fsck_problem *find_problem(problem_t code)
2001 {
2002         int     i;
2003
2004         for (i=0; problem_table[i].e2p_code; i++) {
2005                 if (problem_table[i].e2p_code == code)
2006                         return &problem_table[i];
2007         }
2008         return 0;
2009 }
2010
2011 static struct latch_descr *find_latch(int code)
2012 {
2013         int     i;
2014
2015         for (i=0; pr_latch_info[i].latch_code >= 0; i++) {
2016                 if (pr_latch_info[i].latch_code == code)
2017                         return &pr_latch_info[i];
2018         }
2019         return 0;
2020 }
2021
2022 int end_problem_latch(e2fsck_t ctx, int mask)
2023 {
2024         struct latch_descr *ldesc;
2025         struct problem_context pctx;
2026         int answer = -1;
2027
2028         ldesc = find_latch(mask);
2029         if (ldesc->end_message && (ldesc->flags & PRL_LATCHED)) {
2030                 clear_problem_context(&pctx);
2031                 answer = fix_problem(ctx, ldesc->end_message, &pctx);
2032         }
2033         ldesc->flags &= ~(PRL_VARIABLE);
2034         return answer;
2035 }
2036
2037 int set_latch_flags(int mask, int setflags, int clearflags)
2038 {
2039         struct latch_descr *ldesc;
2040
2041         ldesc = find_latch(mask);
2042         if (!ldesc)
2043                 return -1;
2044         ldesc->flags |= setflags;
2045         ldesc->flags &= ~clearflags;
2046         return 0;
2047 }
2048
2049 int get_latch_flags(int mask, int *value)
2050 {
2051         struct latch_descr *ldesc;
2052
2053         ldesc = find_latch(mask);
2054         if (!ldesc)
2055                 return -1;
2056         *value = ldesc->flags;
2057         return 0;
2058 }
2059
2060 void clear_problem_context(struct problem_context *ctx)
2061 {
2062         memset(ctx, 0, sizeof(struct problem_context));
2063         ctx->blkcount = -1;
2064         ctx->group = -1;
2065 }
2066
2067 static void reconfigure_bool(e2fsck_t ctx, struct e2fsck_problem *ptr,
2068                              const char *key, int mask, const char *name)
2069 {
2070         int     val;
2071
2072         val = (ptr->flags & mask);
2073         profile_get_boolean(ctx->profile, "problems", key, name, val, &val);
2074         if (val)
2075                 ptr->flags |= mask;
2076         else
2077                 ptr->flags &= ~mask;
2078 }
2079
2080
2081 int fix_problem(e2fsck_t ctx, problem_t code, struct problem_context *pctx)
2082 {
2083         ext2_filsys fs = ctx->fs;
2084         struct e2fsck_problem *ptr;
2085         struct latch_descr *ldesc = 0;
2086         const char *message;
2087         int             def_yn, answer, ans;
2088         int             print_answer = 0;
2089         int             suppress = 0;
2090
2091         ptr = find_problem(code);
2092         if (!ptr) {
2093                 printf(_("Unhandled error code (0x%x)!\n"), code);
2094                 return 0;
2095         }
2096         if (!(ptr->flags & PR_CONFIG)) {
2097                 char    key[9], *new_desc = NULL;
2098
2099                 sprintf(key, "0x%06x", code);
2100
2101                 profile_get_string(ctx->profile, "problems", key,
2102                                    "description", 0, &new_desc);
2103                 if (new_desc)
2104                         ptr->e2p_description = new_desc;
2105
2106                 reconfigure_bool(ctx, ptr, key, PR_PREEN_OK, "preen_ok");
2107                 reconfigure_bool(ctx, ptr, key, PR_NO_OK, "no_ok");
2108                 reconfigure_bool(ctx, ptr, key, PR_NO_DEFAULT, "no_default");
2109                 reconfigure_bool(ctx, ptr, key, PR_MSG_ONLY, "print_message_only");
2110                 reconfigure_bool(ctx, ptr, key, PR_PREEN_NOMSG, "preen_nomessage");
2111                 reconfigure_bool(ctx, ptr, key, PR_NOCOLLATE, "no_collate");
2112                 reconfigure_bool(ctx, ptr, key, PR_NO_NOMSG, "no_nomsg");
2113                 reconfigure_bool(ctx, ptr, key, PR_PREEN_NOHDR, "preen_noheader");
2114                 reconfigure_bool(ctx, ptr, key, PR_FORCE_NO, "force_no");
2115                 profile_get_integer(ctx->profile, "options",
2116                                     "max_count_problems", 0, 0,
2117                                     &ptr->max_count);
2118                 profile_get_integer(ctx->profile, "problems", key, "max_count",
2119                                     ptr->max_count, &ptr->max_count);
2120
2121                 ptr->flags |= PR_CONFIG;
2122         }
2123         def_yn = 1;
2124         ptr->count++;
2125         if ((ptr->flags & PR_NO_DEFAULT) ||
2126             ((ptr->flags & PR_PREEN_NO) && (ctx->options & E2F_OPT_PREEN)) ||
2127             (ctx->options & E2F_OPT_NO))
2128                 def_yn= 0;
2129
2130         /*
2131          * Do special latch processing.  This is where we ask the
2132          * latch question, if it exists
2133          */
2134         if (ptr->flags & PR_LATCH_MASK) {
2135                 ldesc = find_latch(ptr->flags & PR_LATCH_MASK);
2136                 if (ldesc->question && !(ldesc->flags & PRL_LATCHED)) {
2137                         ans = fix_problem(ctx, ldesc->question, pctx);
2138                         if (ans == 1)
2139                                 ldesc->flags |= PRL_YES;
2140                         if (ans == 0)
2141                                 ldesc->flags |= PRL_NO;
2142                         ldesc->flags |= PRL_LATCHED;
2143                 }
2144                 if (ldesc->flags & PRL_SUPPRESS)
2145                         suppress++;
2146         }
2147         if ((ptr->flags & PR_PREEN_NOMSG) &&
2148             (ctx->options & E2F_OPT_PREEN))
2149                 suppress++;
2150         if ((ptr->flags & PR_NO_NOMSG) &&
2151             ((ctx->options & E2F_OPT_NO) || (ptr->flags & PR_FORCE_NO)))
2152                 suppress++;
2153         if (ptr->max_count && (ptr->count > ptr->max_count)) {
2154                 if (ctx->options & (E2F_OPT_NO | E2F_OPT_YES))
2155                         suppress++;
2156                 if ((ctx->options & E2F_OPT_PREEN) &&
2157                     (ptr->flags & PR_PREEN_OK))
2158                         suppress++;
2159                 if ((ptr->flags & PR_LATCH_MASK) &&
2160                     (ldesc->flags & (PRL_YES | PRL_NO)))
2161                         suppress++;
2162                 if (ptr->count == ptr->max_count + 1) {
2163                         printf("...problem 0x%06x suppressed\n",
2164                                ptr->e2p_code);
2165                         fflush(stdout);
2166                 }
2167         }
2168         message = ptr->e2p_description;
2169         if (*message)
2170                 message = _(message);
2171         if (!suppress) {
2172                 if ((ctx->options & E2F_OPT_PREEN) &&
2173                     !(ptr->flags & PR_PREEN_NOHDR)) {
2174                         printf("%s: ", ctx->device_name ?
2175                                ctx->device_name : ctx->filesystem_name);
2176                 }
2177                 if (*message)
2178                         print_e2fsck_message(stdout, ctx, message, pctx, 1, 0);
2179         }
2180         if (ctx->logf && message)
2181                 print_e2fsck_message(ctx->logf, ctx, message, pctx, 1, 0);
2182         if (!(ptr->flags & PR_PREEN_OK) && (ptr->prompt != PROMPT_NONE))
2183                 preenhalt(ctx);
2184
2185         if (ptr->flags & PR_FATAL)
2186                 fatal_error(ctx, 0);
2187
2188         if (ptr->prompt == PROMPT_NONE) {
2189                 if (ptr->flags & PR_NOCOLLATE)
2190                         answer = -1;
2191                 else
2192                         answer = def_yn;
2193         } else {
2194                 if (ptr->flags & PR_FORCE_NO) {
2195                         answer = 0;
2196                         print_answer = 1;
2197                 } else if (ctx->options & E2F_OPT_PREEN) {
2198                         answer = def_yn;
2199                         if (!(ptr->flags & PR_PREEN_NOMSG))
2200                                 print_answer = 1;
2201                 } else if ((ptr->flags & PR_LATCH_MASK) &&
2202                            (ldesc->flags & (PRL_YES | PRL_NO))) {
2203                         print_answer = 1;
2204                         if (ldesc->flags & PRL_YES)
2205                                 answer = 1;
2206                         else
2207                                 answer = 0;
2208                 } else
2209                         answer = ask(ctx, (ptr->prompt == PROMPT_NULL) ? "" :
2210                                      _(prompt[(int) ptr->prompt]), def_yn);
2211                 if (!answer && !(ptr->flags & PR_NO_OK))
2212                         ext2fs_unmark_valid(fs);
2213
2214                 if (print_answer) {
2215                         if (!suppress)
2216                                 printf("%s.\n", answer ?
2217                                        _(preen_msg[(int) ptr->prompt]) :
2218                                        _("IGNORED"));
2219                         if (ctx->logf)
2220                                 fprintf(ctx->logf, "%s.\n", answer ?
2221                                         _(preen_msg[(int) ptr->prompt]) :
2222                                         _("IGNORED"));
2223                 }
2224         }
2225
2226         if ((ptr->prompt == PROMPT_ABORT) && answer)
2227                 fatal_error(ctx, 0);
2228
2229         if (ptr->flags & PR_AFTER_CODE)
2230                 answer = fix_problem(ctx, ptr->second_code, pctx);
2231
2232         if (answer && (ptr->prompt != PROMPT_NONE))
2233                 ctx->flags |= E2F_FLAG_PROBLEMS_FIXED;
2234
2235         return answer;
2236 }
2237
2238 #ifdef UNITTEST
2239
2240 #include <stdlib.h>
2241 #include <stdio.h>
2242
2243 errcode_t
2244 profile_get_boolean(profile_t profile, const char *name, const char *subname,
2245                     const char *subsubname, int def_val, int *ret_boolean)
2246 {
2247         return 0;
2248 }
2249
2250 errcode_t
2251 profile_get_integer(profile_t profile, const char *name, const char *subname,
2252                     const char *subsubname, int def_val, int *ret_int)
2253 {
2254         return 0;
2255 }
2256
2257 void print_e2fsck_message(FILE *f, e2fsck_t ctx, const char *msg,
2258                           struct problem_context *pctx, int first,
2259                           int recurse)
2260 {
2261         return;
2262 }
2263
2264 void fatal_error(e2fsck_t ctx, const char *msg)
2265 {
2266         return;
2267 }
2268
2269 void preenhalt(e2fsck_t ctx)
2270 {
2271         return;
2272 }
2273
2274 errcode_t
2275 profile_get_string(profile_t profile, const char *name, const char *subname,
2276                    const char *subsubname, const char *def_val,
2277                    char **ret_string)
2278 {
2279         return 0;
2280 }
2281
2282 int ask (e2fsck_t ctx, const char * string, int def)
2283 {
2284         return 0;
2285 }
2286
2287 int verify_problem_table(e2fsck_t ctx)
2288 {
2289         struct e2fsck_problem *curr, *prev = NULL;
2290         int rc = 0;
2291
2292         for (prev = NULL, curr = problem_table; curr->e2p_code; prev = curr++) {
2293                 if (prev == NULL)
2294                         continue;
2295
2296                 if (curr->e2p_code > prev->e2p_code)
2297                         continue;
2298
2299                 if (curr->e2p_code == prev->e2p_code)
2300                         fprintf(stderr, "*** Duplicate in problem table:\n");
2301                 else
2302                         fprintf(stderr, "*** Unordered problem table:\n");
2303
2304                 fprintf(stderr, "curr code = 0x%08x: %s\n",
2305                         curr->e2p_code, curr->e2p_description);
2306                 fprintf(stderr, "*** prev code = 0x%08x: %s\n",
2307                         prev->e2p_code, prev->e2p_description);
2308
2309                 fprintf(stderr, "*** This is a %sprogramming error in e2fsck\n",
2310                         (curr->e2p_code == prev->e2p_code) ? "fatal " : "");
2311
2312                 rc = 1;
2313         }
2314
2315         return rc;
2316 }
2317
2318 int main(int argc, char *argv[])
2319 {
2320         e2fsck_t ctx;
2321         int rc;
2322
2323         memset(&ctx, 0, sizeof(ctx)); /* just to quiet compiler */
2324         rc = verify_problem_table(ctx);
2325         if (rc == 0)
2326                 printf("e2fsck problem table verified\n");
2327
2328         return rc;
2329 }
2330 #endif /* UNITTEST */