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