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