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