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