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