problem.c revision 80875db58a6db58e3e2f01caf1adabca068d3ffb
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 <stdlib.h>
13#include <unistd.h>
14#include <string.h>
15#include <ctype.h>
16#include <termios.h>
17
18#include "e2fsck.h"
19
20#include "problem.h"
21#include "problemP.h"
22
23#define PROMPT_NONE	0
24#define PROMPT_FIX	1
25#define PROMPT_CLEAR	2
26#define PROMPT_RELOCATE	3
27#define PROMPT_ALLOCATE 4
28#define PROMPT_EXPAND	5
29#define PROMPT_CONNECT 	6
30#define PROMPT_CREATE	7
31#define PROMPT_SALVAGE	8
32#define PROMPT_TRUNCATE	9
33#define PROMPT_CLEAR_INODE 10
34#define PROMPT_ABORT 	11
35#define PROMPT_SPLIT 	12
36#define PROMPT_CONTINUE	13
37#define PROMPT_CLONE	14
38#define PROMPT_DELETE 	15
39#define PROMPT_SUPPRESS 16
40#define PROMPT_UNLINK	17
41#define PROMPT_CLEAR_HTREE 18
42#define PROMPT_RECREATE 19
43#define PROMPT_NULL	20
44
45/*
46 * These are the prompts which are used to ask the user if they want
47 * to fix a problem.
48 */
49static const char *prompt[] = {
50	N_("(no prompt)"),	/* 0 */
51	N_("Fix"),		/* 1 */
52	N_("Clear"),		/* 2 */
53	N_("Relocate"),		/* 3 */
54	N_("Allocate"),		/* 4 */
55	N_("Expand"),		/* 5 */
56	N_("Connect to /lost+found"), /* 6 */
57	N_("Create"),		/* 7 */
58	N_("Salvage"),		/* 8 */
59	N_("Truncate"),		/* 9 */
60	N_("Clear inode"),	/* 10 */
61	N_("Abort"),		/* 11 */
62	N_("Split"),		/* 12 */
63	N_("Continue"),		/* 13 */
64	N_("Clone multiply-claimed blocks"), /* 14 */
65	N_("Delete file"),	/* 15 */
66	N_("Suppress messages"),/* 16 */
67	N_("Unlink"),		/* 17 */
68	N_("Clear HTree index"),/* 18 */
69	N_("Recreate"),		/* 19 */
70	"",			/* 20 */
71};
72
73/*
74 * These messages are printed when we are preen mode and we will be
75 * automatically fixing the problem.
76 */
77static const char *preen_msg[] = {
78	N_("(NONE)"),		/* 0 */
79	N_("FIXED"),		/* 1 */
80	N_("CLEARED"),		/* 2 */
81	N_("RELOCATED"),	/* 3 */
82	N_("ALLOCATED"),	/* 4 */
83	N_("EXPANDED"),		/* 5 */
84	N_("RECONNECTED"),	/* 6 */
85	N_("CREATED"),		/* 7 */
86	N_("SALVAGED"),		/* 8 */
87	N_("TRUNCATED"),	/* 9 */
88	N_("INODE CLEARED"),	/* 10 */
89	N_("ABORTED"),		/* 11 */
90	N_("SPLIT"),		/* 12 */
91	N_("CONTINUING"),	/* 13 */
92	N_("MULTIPLY-CLAIMED BLOCKS CLONED"), /* 14 */
93	N_("FILE DELETED"),	/* 15 */
94	N_("SUPPRESSED"),	/* 16 */
95	N_("UNLINKED"),		/* 17 */
96	N_("HTREE INDEX CLEARED"),/* 18 */
97	N_("WILL RECREATE"),	/* 19 */
98	"",			/* 20 */
99};
100
101static struct e2fsck_problem problem_table[] = {
102
103	/* Pre-Pass 1 errors */
104
105	/* Block bitmap not in group */
106	{ PR_0_BB_NOT_GROUP, N_("@b @B for @g %g is not in @g.  (@b %b)\n"),
107	  PROMPT_RELOCATE, PR_LATCH_RELOC },
108
109	/* Inode bitmap not in group */
110	{ PR_0_IB_NOT_GROUP, N_("@i @B for @g %g is not in @g.  (@b %b)\n"),
111	  PROMPT_RELOCATE, PR_LATCH_RELOC },
112
113	/* Inode table not in group */
114	{ PR_0_ITABLE_NOT_GROUP,
115	  N_("@i table for @g %g is not in @g.  (@b %b)\n"
116	  "WARNING: SEVERE DATA LOSS POSSIBLE.\n"),
117	  PROMPT_RELOCATE, PR_LATCH_RELOC },
118
119	/* Superblock corrupt */
120	{ PR_0_SB_CORRUPT,
121	  N_("\nThe @S could not be read or does not describe a correct ext2\n"
122	  "@f.  If the @v is valid and it really contains an ext2\n"
123	  "@f (and not swap or ufs or something else), then the @S\n"
124	  "is corrupt, and you might try running e2fsck with an alternate @S:\n"
125	  "    e2fsck -b %S <@v>\n\n"),
126	  PROMPT_NONE, PR_FATAL },
127
128	/* Filesystem size is wrong */
129	{ PR_0_FS_SIZE_WRONG,
130	  N_("The @f size (according to the @S) is %b @bs\n"
131	  "The physical size of the @v is %c @bs\n"
132	  "Either the @S or the partition table is likely to be corrupt!\n"),
133	  PROMPT_ABORT, 0 },
134
135	/* Fragments not supported */
136	{ PR_0_NO_FRAGMENTS,
137	  N_("@S @b_size = %b, fragsize = %c.\n"
138	  "This version of e2fsck does not support fragment sizes different\n"
139	  "from the @b size.\n"),
140	  PROMPT_NONE, PR_FATAL },
141
142	  /* Bad blocks_per_group */
143	{ PR_0_BLOCKS_PER_GROUP,
144	  N_("@S @bs_per_group = %b, should have been %c\n"),
145	  PROMPT_NONE, PR_AFTER_CODE, PR_0_SB_CORRUPT },
146
147	/* Bad first_data_block */
148	{ PR_0_FIRST_DATA_BLOCK,
149	  N_("@S first_data_@b = %b, should have been %c\n"),
150	  PROMPT_NONE, PR_AFTER_CODE, PR_0_SB_CORRUPT },
151
152	/* Adding UUID to filesystem */
153	{ PR_0_ADD_UUID,
154	  N_("@f did not have a UUID; generating one.\n\n"),
155	  PROMPT_NONE, 0 },
156
157	/* Relocate hint */
158	{ PR_0_RELOCATE_HINT,
159	  N_("Note: if several inode or block bitmap blocks or part\n"
160	  "of the inode table require relocation, you may wish to try\n"
161	  "running e2fsck with the '-b %S' option first.  The problem\n"
162	  "may lie only with the primary block group descriptors, and\n"
163	  "the backup block group descriptors may be OK.\n\n"),
164	  PROMPT_NONE, PR_PREEN_OK | PR_NOCOLLATE },
165
166	/* Miscellaneous superblock corruption */
167	{ PR_0_MISC_CORRUPT_SUPER,
168	  N_("Corruption found in @S.  (%s = %N).\n"),
169	  PROMPT_NONE, PR_AFTER_CODE, PR_0_SB_CORRUPT },
170
171	/* Error determing physical device size of filesystem */
172	{ PR_0_GETSIZE_ERROR,
173	  N_("Error determining size of the physical @v: %m\n"),
174	  PROMPT_NONE, PR_FATAL },
175
176	/* Inode count in superblock is incorrect */
177	{ PR_0_INODE_COUNT_WRONG,
178	  N_("@i count in @S is %i, @s %j.\n"),
179	  PROMPT_FIX, 0 },
180
181	{ PR_0_HURD_CLEAR_FILETYPE,
182	  N_("The Hurd does not support the filetype feature.\n"),
183	  PROMPT_CLEAR, 0 },
184
185	/* Journal inode is invalid */
186	{ PR_0_JOURNAL_BAD_INODE,
187	  N_("@S has an @n ext3 @j (@i %i).\n"),
188	  PROMPT_CLEAR, PR_PREEN_OK },
189
190	/* The external journal has (unsupported) multiple filesystems */
191	{ PR_0_JOURNAL_UNSUPP_MULTIFS,
192	  N_("External @j has multiple @f users (unsupported).\n"),
193	  PROMPT_NONE, PR_FATAL },
194
195	/* Can't find external journal */
196	{ PR_0_CANT_FIND_JOURNAL,
197	  N_("Can't find external @j\n"),
198	  PROMPT_NONE, PR_FATAL },
199
200	/* External journal has bad superblock */
201	{ PR_0_EXT_JOURNAL_BAD_SUPER,
202	  N_("External @j has bad @S\n"),
203	  PROMPT_NONE, PR_FATAL },
204
205	/* Superblock has a bad journal UUID */
206	{ PR_0_JOURNAL_BAD_UUID,
207	  N_("External @j does not support this @f\n"),
208	  PROMPT_NONE, PR_FATAL },
209
210	/* Journal has an unknown superblock type */
211	{ PR_0_JOURNAL_UNSUPP_SUPER,
212	  N_("Ext3 @j @S is unknown type %N (unsupported).\n"
213	     "It is likely that your copy of e2fsck is old and/or doesn't "
214	     "support this @j format.\n"
215	     "It is also possible the @j @S is corrupt.\n"),
216	  PROMPT_ABORT, PR_NO_OK | PR_AFTER_CODE, PR_0_JOURNAL_BAD_SUPER },
217
218	/* Journal superblock is corrupt */
219	{ PR_0_JOURNAL_BAD_SUPER,
220	  N_("Ext3 @j @S is corrupt.\n"),
221	  PROMPT_FIX, PR_PREEN_OK },
222
223	/* Superblock flag should be cleared */
224	{ PR_0_JOURNAL_HAS_JOURNAL,
225	  N_("@S doesn't have has_@j flag, but has ext3 @j %s.\n"),
226	  PROMPT_CLEAR, PR_PREEN_OK },
227
228	/* Superblock flag is incorrect */
229	{ PR_0_JOURNAL_RECOVER_SET,
230	  N_("@S has ext3 needs_recovery flag set, but no @j.\n"),
231	  PROMPT_CLEAR, PR_PREEN_OK },
232
233	/* Journal has data, but recovery flag is clear */
234	{ PR_0_JOURNAL_RECOVERY_CLEAR,
235	  N_("ext3 recovery flag is clear, but @j has data.\n"),
236	  PROMPT_NONE, 0 },
237
238	/* Ask if we should clear the journal */
239	{ PR_0_JOURNAL_RESET_JOURNAL,
240	  N_("Clear @j"),
241	  PROMPT_NULL, PR_PREEN_NOMSG },
242
243	/* Ask if we should run the journal anyway */
244	{ PR_0_JOURNAL_RUN,
245	  N_("Run @j anyway"),
246	  PROMPT_NULL, 0 },
247
248	/* Run the journal by default */
249	{ PR_0_JOURNAL_RUN_DEFAULT,
250	  N_("Recovery flag not set in backup @S, so running @j anyway.\n"),
251	  PROMPT_NONE, 0 },
252
253	/* Clearing orphan inode */
254	{ PR_0_ORPHAN_CLEAR_INODE,
255	  N_("%s @o @i %i (uid=%Iu, gid=%Ig, mode=%Im, size=%Is)\n"),
256	  PROMPT_NONE, 0 },
257
258	/* Illegal block found in orphaned inode */
259	{ PR_0_ORPHAN_ILLEGAL_BLOCK_NUM,
260	   N_("@I @b #%B (%b) found in @o @i %i.\n"),
261	  PROMPT_NONE, 0 },
262
263	/* Already cleared block found in orphaned inode */
264	{ PR_0_ORPHAN_ALREADY_CLEARED_BLOCK,
265	   N_("Already cleared @b #%B (%b) found in @o @i %i.\n"),
266	  PROMPT_NONE, 0 },
267
268	/* Illegal orphan inode in superblock */
269	{ PR_0_ORPHAN_ILLEGAL_HEAD_INODE,
270	  N_("@I @o @i %i in @S.\n"),
271	  PROMPT_NONE, 0 },
272
273	/* Illegal inode in orphaned inode list */
274	{ PR_0_ORPHAN_ILLEGAL_INODE,
275	  N_("@I @i %i in @o @i list.\n"),
276	  PROMPT_NONE, 0 },
277
278	/* Filesystem revision is 0, but feature flags are set */
279	{ PR_0_FS_REV_LEVEL,
280	  N_("@f has feature flag(s) set, but is a revision 0 @f.  "),
281	  PROMPT_FIX, PR_PREEN_OK | PR_NO_OK },
282
283	/* Journal superblock has an unknown read-only feature flag set */
284	{ PR_0_JOURNAL_UNSUPP_ROCOMPAT,
285	  N_("Ext3 @j @S has an unknown read-only feature flag set.\n"),
286	  PROMPT_ABORT, 0 },
287
288	/* Journal superblock has an unknown incompatible feature flag set */
289	{ PR_0_JOURNAL_UNSUPP_INCOMPAT,
290	  N_("Ext3 @j @S has an unknown incompatible feature flag set.\n"),
291	  PROMPT_ABORT, 0 },
292
293	/* Journal has unsupported version number */
294	{ PR_0_JOURNAL_UNSUPP_VERSION,
295	  N_("@j version not supported by this e2fsck.\n"),
296	  PROMPT_ABORT, 0 },
297
298	/* Moving journal to hidden file */
299	{ PR_0_MOVE_JOURNAL,
300	  N_("Moving @j from /%s to hidden @i.\n\n"),
301	  PROMPT_NONE, 0 },
302
303	/* Error moving journal to hidden file */
304	{ PR_0_ERR_MOVE_JOURNAL,
305	  N_("Error moving @j: %m\n\n"),
306	  PROMPT_NONE, 0 },
307
308	/* Clearing V2 journal superblock */
309	{ PR_0_CLEAR_V2_JOURNAL,
310	  N_("Found @n V2 @j @S fields (from V1 @j).\n"
311	     "Clearing fields beyond the V1 @j @S...\n\n"),
312	  PROMPT_NONE, 0 },
313
314	/* Backup journal inode blocks */
315	{ PR_0_BACKUP_JNL,
316	  N_("Backing up @j @i @b information.\n\n"),
317	  PROMPT_NONE, 0 },
318
319	/* Reserved blocks w/o resize_inode */
320	{ PR_0_NONZERO_RESERVED_GDT_BLOCKS,
321	  N_("@f does not have resize_@i enabled, but s_reserved_gdt_@bs\n"
322	     "is %N; @s zero.  "),
323	  PROMPT_FIX, 0 },
324
325	/* Resize_inode not enabled, but resize inode is non-zero */
326	{ PR_0_CLEAR_RESIZE_INODE,
327	  N_("Resize_@i not enabled, but the resize @i is non-zero.  "),
328	  PROMPT_CLEAR, 0 },
329
330	/* Resize inode invalid */
331	{ PR_0_RESIZE_INODE_INVALID,
332	  N_("Resize @i not valid.  "),
333	  PROMPT_RECREATE, 0 },
334
335	/* Last mount time is in the future */
336	{ PR_0_FUTURE_SB_LAST_MOUNT,
337	  N_("@S last mount time is in the future.  "),
338	  PROMPT_FIX, PR_PREEN_OK | PR_NO_OK },
339
340	/* Last write time is in the future */
341	{ PR_0_FUTURE_SB_LAST_WRITE,
342	  N_("@S last write time is in the future.  "),
343	  PROMPT_FIX, PR_PREEN_OK | PR_NO_OK },
344
345	{ PR_0_EXTERNAL_JOURNAL_HINT,
346	  N_("@S hint for external superblock @s %X.  "),
347	     PROMPT_FIX, PR_PREEN_OK },
348
349	/* Adding dirhash hint */
350	{ PR_0_DIRHASH_HINT,
351	  N_("Adding dirhash hint to @f.\n\n"),
352	  PROMPT_NONE, 0 },
353
354	/* group descriptor N checksum is invalid. */
355	{ PR_0_GDT_CSUM,
356	  N_("@g descriptor %g checksum is invalid.  "),
357	     PROMPT_FIX, PR_PREEN_OK },
358
359	/* group descriptor N marked uninitialized without feature set. */
360	{ PR_0_GDT_UNINIT,
361	  N_("@g descriptor %g marked uninitialized without feature set.\n"),
362	     PROMPT_FIX, PR_PREEN_OK },
363
364	/* group N block bitmap uninitialized but inode bitmap in use. */
365	{ PR_0_BB_UNINIT_IB_INIT,
366	  N_("@g %g @b @B uninitialized but @i @B in use.\n"),
367	     PROMPT_FIX, PR_PREEN_OK },
368
369	/* Group descriptor N has invalid unused inodes count. */
370	{ PR_0_GDT_ITABLE_UNUSED,
371	  N_("@g descriptor %g has invalid unused inodes count %b.  "),
372	     PROMPT_FIX, PR_PREEN_OK },
373
374	/* Last group block bitmap uninitialized. */
375	{ PR_0_BB_UNINIT_LAST,
376	  N_("Last @g @b @B uninitialized.  "),
377	     PROMPT_FIX, PR_PREEN_OK },
378
379	/* Journal transaction found corrupt */
380	{ PR_0_JNL_TXN_CORRUPT,
381	  N_("Journal transaction %i was corrupt, replay was aborted.\n"),
382	  PROMPT_NONE, 0 },
383
384	{ PR_0_CLEAR_TESTFS_FLAG,
385	  N_("The test_fs flag is set (and ext4 is available).  "),
386	  PROMPT_CLEAR, PR_PREEN_OK },
387
388	/* Pass 1 errors */
389
390	/* Pass 1: Checking inodes, blocks, and sizes */
391	{ PR_1_PASS_HEADER,
392	  N_("Pass 1: Checking @is, @bs, and sizes\n"),
393	  PROMPT_NONE, 0 },
394
395	/* Root directory is not an inode */
396	{ PR_1_ROOT_NO_DIR, N_("@r is not a @d.  "),
397	  PROMPT_CLEAR, 0 },
398
399	/* Root directory has dtime set */
400	{ PR_1_ROOT_DTIME,
401	  N_("@r has dtime set (probably due to old mke2fs).  "),
402	  PROMPT_FIX, PR_PREEN_OK },
403
404	/* Reserved inode has bad mode */
405	{ PR_1_RESERVED_BAD_MODE,
406	  N_("Reserved @i %i (%Q) has @n mode.  "),
407	  PROMPT_CLEAR, PR_PREEN_OK },
408
409	/* Deleted inode has zero dtime */
410	{ PR_1_ZERO_DTIME,
411	  N_("@D @i %i has zero dtime.  "),
412	  PROMPT_FIX, PR_PREEN_OK },
413
414	/* Inode in use, but dtime set */
415	{ PR_1_SET_DTIME,
416	  N_("@i %i is in use, but has dtime set.  "),
417	  PROMPT_FIX, PR_PREEN_OK },
418
419	/* Zero-length directory */
420	{ PR_1_ZERO_LENGTH_DIR,
421	  N_("@i %i is a @z @d.  "),
422	  PROMPT_CLEAR, PR_PREEN_OK },
423
424	/* Block bitmap conflicts with some other fs block */
425	{ PR_1_BB_CONFLICT,
426	  N_("@g %g's @b @B at %b @C.\n"),
427	  PROMPT_RELOCATE, 0 },
428
429	/* Inode bitmap conflicts with some other fs block */
430	{ PR_1_IB_CONFLICT,
431	  N_("@g %g's @i @B at %b @C.\n"),
432	  PROMPT_RELOCATE, 0 },
433
434	/* Inode table conflicts with some other fs block */
435	{ PR_1_ITABLE_CONFLICT,
436	  N_("@g %g's @i table at %b @C.\n"),
437	  PROMPT_RELOCATE, 0 },
438
439	/* Block bitmap is on a bad block */
440	{ PR_1_BB_BAD_BLOCK,
441	  N_("@g %g's @b @B (%b) is bad.  "),
442	  PROMPT_RELOCATE, 0 },
443
444	/* Inode bitmap is on a bad block */
445	{ PR_1_IB_BAD_BLOCK,
446	  N_("@g %g's @i @B (%b) is bad.  "),
447	  PROMPT_RELOCATE, 0 },
448
449	/* Inode has incorrect i_size */
450	{ PR_1_BAD_I_SIZE,
451	  N_("@i %i, i_size is %Is, @s %N.  "),
452	  PROMPT_FIX, PR_PREEN_OK },
453
454	/* Inode has incorrect i_blocks */
455	{ PR_1_BAD_I_BLOCKS,
456	  N_("@i %i, i_@bs is %Ib, @s %N.  "),
457	  PROMPT_FIX, PR_PREEN_OK },
458
459	/* Illegal blocknumber in inode */
460	{ PR_1_ILLEGAL_BLOCK_NUM,
461	  N_("@I @b #%B (%b) in @i %i.  "),
462	  PROMPT_CLEAR, PR_LATCH_BLOCK },
463
464	/* Block number overlaps fs metadata */
465	{ PR_1_BLOCK_OVERLAPS_METADATA,
466	  N_("@b #%B (%b) overlaps @f metadata in @i %i.  "),
467	  PROMPT_CLEAR, PR_LATCH_BLOCK },
468
469	/* Inode has illegal blocks (latch question) */
470	{ PR_1_INODE_BLOCK_LATCH,
471	  N_("@i %i has illegal @b(s).  "),
472	  PROMPT_CLEAR, 0 },
473
474	/* Too many bad blocks in inode */
475	{ PR_1_TOO_MANY_BAD_BLOCKS,
476	  N_("Too many illegal @bs in @i %i.\n"),
477	  PROMPT_CLEAR_INODE, PR_NO_OK },
478
479	/* Illegal block number in bad block inode */
480	{ PR_1_BB_ILLEGAL_BLOCK_NUM,
481	  N_("@I @b #%B (%b) in bad @b @i.  "),
482	  PROMPT_CLEAR, PR_LATCH_BBLOCK },
483
484	/* Bad block inode has illegal blocks (latch question) */
485	{ PR_1_INODE_BBLOCK_LATCH,
486	  N_("Bad @b @i has illegal @b(s).  "),
487	  PROMPT_CLEAR, 0 },
488
489	/* Duplicate or bad blocks in use! */
490	{ PR_1_DUP_BLOCKS_PREENSTOP,
491	  N_("Duplicate or bad @b in use!\n"),
492	  PROMPT_NONE, 0 },
493
494	/* Bad block used as bad block indirect block */
495	{ PR_1_BBINODE_BAD_METABLOCK,
496	  N_("Bad @b %b used as bad @b @i indirect @b.  "),
497	  PROMPT_CLEAR, PR_LATCH_BBLOCK },
498
499	/* Inconsistency can't be fixed prompt */
500	{ PR_1_BBINODE_BAD_METABLOCK_PROMPT,
501	  N_("\nThe bad @b @i has probably been corrupted.  You probably\n"
502	     "should stop now and run ""e2fsck -c"" to scan for bad blocks\n"
503	     "in the @f.\n"),
504	  PROMPT_CONTINUE, PR_PREEN_NOMSG },
505
506	/* Bad primary block */
507	{ PR_1_BAD_PRIMARY_BLOCK,
508	  N_("\nIf the @b is really bad, the @f can not be fixed.\n"),
509	  PROMPT_NONE, PR_AFTER_CODE, PR_1_BAD_PRIMARY_BLOCK_PROMPT },
510
511	/* Bad primary block prompt */
512	{ PR_1_BAD_PRIMARY_BLOCK_PROMPT,
513	  N_("You can remove this @b from the bad @b list and hope\n"
514	     "that the @b is really OK.  But there are no guarantees.\n\n"),
515	  PROMPT_CLEAR, PR_PREEN_NOMSG },
516
517	/* Bad primary superblock */
518	{ PR_1_BAD_PRIMARY_SUPERBLOCK,
519	  N_("The primary @S (%b) is on the bad @b list.\n"),
520	  PROMPT_NONE, PR_AFTER_CODE, PR_1_BAD_PRIMARY_BLOCK },
521
522	/* Bad primary block group descriptors */
523	{ PR_1_BAD_PRIMARY_GROUP_DESCRIPTOR,
524	  N_("Block %b in the primary @g descriptors "
525	  "is on the bad @b list\n"),
526	  PROMPT_NONE, PR_AFTER_CODE, PR_1_BAD_PRIMARY_BLOCK },
527
528	/* Bad superblock in group */
529	{ PR_1_BAD_SUPERBLOCK,
530	  N_("Warning: Group %g's @S (%b) is bad.\n"),
531	  PROMPT_NONE, PR_PREEN_OK | PR_PREEN_NOMSG },
532
533	/* Bad block group descriptors in group */
534	{ PR_1_BAD_GROUP_DESCRIPTORS,
535	  N_("Warning: Group %g's copy of the @g descriptors has a bad "
536	  "@b (%b).\n"),
537	  PROMPT_NONE, PR_PREEN_OK | PR_PREEN_NOMSG },
538
539	/* Block claimed for no reason */
540	{ PR_1_PROGERR_CLAIMED_BLOCK,
541	  N_("Programming error?  @b #%b claimed for no reason in "
542	  "process_bad_@b.\n"),
543	  PROMPT_NONE, PR_PREEN_OK },
544
545	/* Error allocating blocks for relocating metadata */
546	{ PR_1_RELOC_BLOCK_ALLOCATE,
547	  N_("@A %N contiguous @b(s) in @b @g %g for %s: %m\n"),
548	  PROMPT_NONE, PR_PREEN_OK },
549
550	/* Error allocating block buffer during relocation process */
551	{ PR_1_RELOC_MEMORY_ALLOCATE,
552	  N_("@A @b buffer for relocating %s\n"),
553	  PROMPT_NONE, PR_PREEN_OK },
554
555	/* Relocating metadata group information from X to Y */
556	{ PR_1_RELOC_FROM_TO,
557	  N_("Relocating @g %g's %s from %b to %c...\n"),
558	  PROMPT_NONE, PR_PREEN_OK },
559
560	/* Relocating metatdata group information to X */
561	{ PR_1_RELOC_TO,
562	  N_("Relocating @g %g's %s to %c...\n"), /* xgettext:no-c-format */
563	  PROMPT_NONE, PR_PREEN_OK },
564
565	/* Block read error during relocation process */
566	{ PR_1_RELOC_READ_ERR,
567	  N_("Warning: could not read @b %b of %s: %m\n"),
568	  PROMPT_NONE, PR_PREEN_OK },
569
570	/* Block write error during relocation process */
571	{ PR_1_RELOC_WRITE_ERR,
572	  N_("Warning: could not write @b %b for %s: %m\n"),
573	  PROMPT_NONE, PR_PREEN_OK },
574
575	/* Error allocating inode bitmap */
576	{ PR_1_ALLOCATE_IBITMAP_ERROR,
577	  N_("@A @i @B (%N): %m\n"),
578	  PROMPT_NONE, PR_FATAL },
579
580	/* Error allocating block bitmap */
581	{ PR_1_ALLOCATE_BBITMAP_ERROR,
582	  N_("@A @b @B (%N): %m\n"),
583	  PROMPT_NONE, PR_FATAL },
584
585	/* Error allocating icount link information */
586	{ PR_1_ALLOCATE_ICOUNT,
587	  N_("@A icount link information: %m\n"),
588	  PROMPT_NONE, PR_FATAL },
589
590	/* Error allocating directory block array */
591	{ PR_1_ALLOCATE_DBCOUNT,
592	  N_("@A @d @b array: %m\n"),
593	  PROMPT_NONE, PR_FATAL },
594
595	/* Error while scanning inodes */
596	{ PR_1_ISCAN_ERROR,
597	  N_("Error while scanning @is (%i): %m\n"),
598	  PROMPT_NONE, PR_FATAL },
599
600	/* Error while iterating over blocks */
601	{ PR_1_BLOCK_ITERATE,
602	  N_("Error while iterating over @bs in @i %i: %m\n"),
603	  PROMPT_NONE, PR_FATAL },
604
605	/* Error while storing inode count information */
606	{ PR_1_ICOUNT_STORE,
607	  N_("Error storing @i count information (@i=%i, count=%N): %m\n"),
608	  PROMPT_NONE, PR_FATAL },
609
610	/* Error while storing directory block information */
611	{ PR_1_ADD_DBLOCK,
612	  N_("Error storing @d @b information "
613	  "(@i=%i, @b=%b, num=%N): %m\n"),
614	  PROMPT_NONE, PR_FATAL },
615
616	/* Error while reading inode (for clearing) */
617	{ PR_1_READ_INODE,
618	  N_("Error reading @i %i: %m\n"),
619	  PROMPT_NONE, PR_FATAL },
620
621	/* Suppress messages prompt */
622	{ PR_1_SUPPRESS_MESSAGES, "", PROMPT_SUPPRESS, PR_NO_OK },
623
624	/* Imagic flag set on an inode when filesystem doesn't support it */
625	{ PR_1_SET_IMAGIC,
626	  N_("@i %i has imagic flag set.  "),
627	  PROMPT_CLEAR, 0 },
628
629	/* Immutable flag set on a device or socket inode */
630	{ PR_1_SET_IMMUTABLE,
631	  N_("Special (@v/socket/fifo/symlink) file (@i %i) has immutable\n"
632	     "or append-only flag set.  "),
633	  PROMPT_CLEAR, PR_PREEN_OK | PR_PREEN_NO | PR_NO_OK },
634
635	/* Compression flag set on an inode when filesystem doesn't support it */
636	{ PR_1_COMPR_SET,
637	  N_("@i %i has @cion flag set on @f without @cion support.  "),
638	  PROMPT_CLEAR, 0 },
639
640	/* Non-zero size for device, fifo or socket inode */
641	{ PR_1_SET_NONZSIZE,
642	  N_("Special (@v/socket/fifo) @i %i has non-zero size.  "),
643	  PROMPT_FIX, PR_PREEN_OK },
644
645	/* Filesystem revision is 0, but feature flags are set */
646	{ PR_1_FS_REV_LEVEL,
647	  N_("@f has feature flag(s) set, but is a revision 0 @f.  "),
648	  PROMPT_FIX, PR_PREEN_OK | PR_NO_OK },
649
650	/* Journal inode is not in use, but contains data */
651	{ PR_1_JOURNAL_INODE_NOT_CLEAR,
652	  N_("@j @i is not in use, but contains data.  "),
653	  PROMPT_CLEAR, PR_PREEN_OK },
654
655	/* Journal has bad mode */
656	{ PR_1_JOURNAL_BAD_MODE,
657	  N_("@j is not regular file.  "),
658	  PROMPT_FIX, PR_PREEN_OK },
659
660	/* Deal with inodes that were part of orphan linked list */
661	{ PR_1_LOW_DTIME,
662	  N_("@i %i was part of the @o @i list.  "),
663	  PROMPT_FIX, PR_LATCH_LOW_DTIME, 0 },
664
665	/* Deal with inodes that were part of corrupted orphan linked
666	   list (latch question) */
667	{ PR_1_ORPHAN_LIST_REFUGEES,
668	  N_("@is that were part of a corrupted orphan linked list found.  "),
669	  PROMPT_FIX, 0 },
670
671	/* Error allocating refcount structure */
672	{ PR_1_ALLOCATE_REFCOUNT,
673	  N_("@A refcount structure (%N): %m\n"),
674	  PROMPT_NONE, PR_FATAL },
675
676	/* Error reading extended attribute block */
677	{ PR_1_READ_EA_BLOCK,
678	  N_("Error reading @a @b %b for @i %i.  "),
679	  PROMPT_CLEAR, 0 },
680
681	/* Invalid extended attribute block */
682	{ PR_1_BAD_EA_BLOCK,
683	  N_("@i %i has a bad @a @b %b.  "),
684	  PROMPT_CLEAR, 0 },
685
686	/* Error reading Extended Attribute block while fixing refcount */
687	{ PR_1_EXTATTR_READ_ABORT,
688	  N_("Error reading @a @b %b (%m).  "),
689	  PROMPT_ABORT, 0 },
690
691	/* Extended attribute reference count incorrect */
692	{ PR_1_EXTATTR_REFCOUNT,
693	  N_("@a @b %b has reference count %B, @s %N.  "),
694	  PROMPT_FIX, 0 },
695
696	/* Error writing Extended Attribute block while fixing refcount */
697	{ PR_1_EXTATTR_WRITE,
698	  N_("Error writing @a @b %b (%m).  "),
699	  PROMPT_ABORT, 0 },
700
701	/* Multiple EA blocks not supported */
702	{ PR_1_EA_MULTI_BLOCK,
703	  N_("@a @b %b has h_@bs > 1.  "),
704	  PROMPT_CLEAR, 0},
705
706	/* Error allocating EA region allocation structure */
707	{ PR_1_EA_ALLOC_REGION,
708	  N_("@A @a @b %b.  "),
709	  PROMPT_ABORT, 0},
710
711	/* Error EA allocation collision */
712	{ PR_1_EA_ALLOC_COLLISION,
713	  N_("@a @b %b is corrupt (allocation collision).  "),
714	  PROMPT_CLEAR, 0},
715
716	/* Bad extended attribute name */
717	{ PR_1_EA_BAD_NAME,
718	  N_("@a @b %b is corrupt (@n name).  "),
719	  PROMPT_CLEAR, 0},
720
721	/* Bad extended attribute value */
722	{ PR_1_EA_BAD_VALUE,
723	  N_("@a @b %b is corrupt (@n value).  "),
724	  PROMPT_CLEAR, 0},
725
726	/* Inode too big (latch question) */
727	{ PR_1_INODE_TOOBIG,
728	  N_("@i %i is too big.  "), PROMPT_TRUNCATE, 0 },
729
730	/* Directory too big */
731	{ PR_1_TOOBIG_DIR,
732	  N_("@b #%B (%b) causes @d to be too big.  "),
733	  PROMPT_CLEAR, PR_LATCH_TOOBIG },
734
735	/* Regular file too big */
736	{ PR_1_TOOBIG_REG,
737	  N_("@b #%B (%b) causes file to be too big.  "),
738	  PROMPT_CLEAR, PR_LATCH_TOOBIG },
739
740	/* Symlink too big */
741	{ PR_1_TOOBIG_SYMLINK,
742	  N_("@b #%B (%b) causes symlink to be too big.  "),
743	  PROMPT_CLEAR, PR_LATCH_TOOBIG },
744
745	/* INDEX_FL flag set on a non-HTREE filesystem */
746	{ PR_1_HTREE_SET,
747	  N_("@i %i has INDEX_FL flag set on @f without htree support.\n"),
748	  PROMPT_CLEAR_HTREE, PR_PREEN_OK },
749
750	/* INDEX_FL flag set on a non-directory */
751	{ PR_1_HTREE_NODIR,
752	  N_("@i %i has INDEX_FL flag set but is not a @d.\n"),
753	  PROMPT_CLEAR_HTREE, PR_PREEN_OK },
754
755	/* Invalid root node in HTREE directory */
756	{ PR_1_HTREE_BADROOT,
757	  N_("@h %i has an @n root node.\n"),
758	  PROMPT_CLEAR_HTREE, PR_PREEN_OK },
759
760	/* Unsupported hash version in HTREE directory */
761	{ PR_1_HTREE_HASHV,
762	  N_("@h %i has an unsupported hash version (%N)\n"),
763	  PROMPT_CLEAR_HTREE, PR_PREEN_OK },
764
765	/* Incompatible flag in HTREE root node */
766	{ PR_1_HTREE_INCOMPAT,
767	  N_("@h %i uses an incompatible htree root node flag.\n"),
768	  PROMPT_CLEAR_HTREE, PR_PREEN_OK },
769
770	/* HTREE too deep */
771	{ PR_1_HTREE_DEPTH,
772	  N_("@h %i has a tree depth (%N) which is too big\n"),
773	  PROMPT_CLEAR_HTREE, PR_PREEN_OK },
774
775	/* Bad block has indirect block that conflicts with filesystem block */
776	{ PR_1_BB_FS_BLOCK,
777	  N_("Bad @b @i has an indirect @b (%b) that conflicts with\n"
778	     "@f metadata.  "),
779	  PROMPT_CLEAR, PR_LATCH_BBLOCK },
780
781	/* Resize inode failed */
782	{ PR_1_RESIZE_INODE_CREATE,
783	  N_("Resize @i (re)creation failed: %m."),
784	  PROMPT_ABORT, 0 },
785
786	/* invalid inode->i_extra_isize */
787	{ PR_1_EXTRA_ISIZE,
788	  N_("@i %i has a extra size (%IS) which is @n\n"),
789	  PROMPT_FIX, PR_PREEN_OK },
790
791	/* invalid ea entry->e_name_len */
792	{ PR_1_ATTR_NAME_LEN,
793	  N_("@a in @i %i has a namelen (%N) which is @n\n"),
794	  PROMPT_CLEAR, PR_PREEN_OK },
795
796	/* invalid ea entry->e_value_size */
797	{ PR_1_ATTR_VALUE_SIZE,
798	  N_("@a in @i %i has a value size (%N) which is @n\n"),
799	  PROMPT_CLEAR, PR_PREEN_OK },
800
801	/* invalid ea entry->e_value_offs */
802	{ PR_1_ATTR_VALUE_OFFSET,
803	  N_("@a in @i %i has a value offset (%N) which is @n\n"),
804	  PROMPT_CLEAR, PR_PREEN_OK },
805
806	/* invalid ea entry->e_value_block */
807	{ PR_1_ATTR_VALUE_BLOCK,
808	  N_("@a in @i %i has a value @b (%N) which is @n (must be 0)\n"),
809	  PROMPT_CLEAR, PR_PREEN_OK },
810
811	/* invalid ea entry->e_hash */
812	{ PR_1_ATTR_HASH,
813	  N_("@a in @i %i has a hash (%N) which is @n\n"),
814	  PROMPT_CLEAR, PR_PREEN_OK },
815
816	/* inode appears to be a directory */
817	{ PR_1_TREAT_AS_DIRECTORY,
818	  N_("@i %i is a %It but it looks like it is really a directory.\n"),
819	  PROMPT_FIX, 0 },
820
821	/* Error while reading extent tree */
822	{ PR_1_READ_EXTENT,
823	  N_("Error while reading over @x tree in @i %i: %m\n"),
824	  PROMPT_CLEAR_INODE, 0 },
825
826	/* Error deleting a bogus extent */
827	{ PR_1_EXTENT_DELETE_FAIL,
828	  N_("Error while deleting extent: %m\n"),
829	  PROMPT_ABORT, 0 },
830
831	/* Bad starting block in extent */
832	{ PR_1_EXTENT_BAD_START_BLK,
833	  N_("@i %i has an @n extent\n\t(logical @b %c, @n physical @b %b, len %N)\n"),
834	  PROMPT_CLEAR, 0 },
835
836	/* Extent ends beyond filesystem */
837	{ PR_1_EXTENT_ENDS_BEYOND,
838	  N_("@i %i has an @n extent\n\t(logical @b %c, physical @b %b, @n len %N)\n"),
839	  PROMPT_CLEAR, 0 },
840
841	/* EXTENTS_FL flag set on a non-extents filesystem */
842	{ PR_1_EXTENTS_SET,
843	  N_("@i %i has EXTENTS_FL flag set on @f without extents support.\n"),
844	  PROMPT_CLEAR, 0 },
845
846	/* inode has extents, superblock missing INCOMPAT_EXTENTS feature */
847	{ PR_1_EXTENT_FEATURE,
848	  N_("@i %i is in extent format, but @S is missing EXTENTS feature\n"),
849	  PROMPT_FIX, 0 },
850
851	/* inode missing EXTENTS_FL, but is an extent inode */
852	{ PR_1_UNSET_EXTENT_FL,
853	  N_("@i %i missing EXTENT_FL, but is in extents format\n"),
854	  PROMPT_FIX, PR_PREEN_OK },
855
856	/* Fast symlink has EXTENTS_FL set */
857	{ PR_1_FAST_SYMLINK_EXTENT_FL,
858	  N_("Fast symlink %i has EXTENT_FL set.  "),
859	  PROMPT_CLEAR, 0 },
860
861	/* Extents are out of order */
862	{ PR_1_OUT_OF_ORDER_EXTENTS,
863	  N_("@i %i has out of order extents\n\t(@n logical @b %c, physical @b %b, len %N)\n"),
864	  PROMPT_CLEAR, 0 },
865
866	/* Pass 1b errors */
867
868	/* Pass 1B: Rescan for duplicate/bad blocks */
869	{ PR_1B_PASS_HEADER,
870	  N_("\nRunning additional passes to resolve @bs claimed by more than one @i...\n"
871	  "Pass 1B: Rescanning for @m @bs\n"),
872	  PROMPT_NONE, 0 },
873
874	/* Duplicate/bad block(s) header */
875	{ PR_1B_DUP_BLOCK_HEADER,
876	  N_("@m @b(s) in @i %i:"),
877	  PROMPT_NONE, 0 },
878
879	/* Duplicate/bad block(s) in inode */
880	{ PR_1B_DUP_BLOCK,
881	  " %b",
882	  PROMPT_NONE, PR_LATCH_DBLOCK | PR_PREEN_NOHDR },
883
884	/* Duplicate/bad block(s) end */
885	{ PR_1B_DUP_BLOCK_END,
886	  "\n",
887	  PROMPT_NONE, PR_PREEN_NOHDR },
888
889	/* Error while scanning inodes */
890	{ PR_1B_ISCAN_ERROR,
891	  N_("Error while scanning inodes (%i): %m\n"),
892	  PROMPT_NONE, PR_FATAL },
893
894	/* Error allocating inode bitmap */
895	{ PR_1B_ALLOCATE_IBITMAP_ERROR,
896	  N_("@A @i @B (@i_dup_map): %m\n"),
897	  PROMPT_NONE, PR_FATAL },
898
899	/* Error while iterating over blocks */
900	{ PR_1B_BLOCK_ITERATE,
901	  N_("Error while iterating over @bs in @i %i (%s): %m\n"),
902	  PROMPT_NONE, 0 },
903
904	/* Error adjusting EA refcount */
905	{ PR_1B_ADJ_EA_REFCOUNT,
906	  N_("Error adjusting refcount for @a @b %b (@i %i): %m\n"),
907	  PROMPT_NONE, 0 },
908
909
910	/* Pass 1C: Scan directories for inodes with multiply-claimed blocks. */
911	{ PR_1C_PASS_HEADER,
912	  N_("Pass 1C: Scanning directories for @is with @m @bs\n"),
913	  PROMPT_NONE, 0 },
914
915
916	/* Pass 1D: Reconciling multiply-claimed blocks */
917	{ PR_1D_PASS_HEADER,
918	  N_("Pass 1D: Reconciling @m @bs\n"),
919	  PROMPT_NONE, 0 },
920
921	/* File has duplicate blocks */
922	{ PR_1D_DUP_FILE,
923	  N_("File %Q (@i #%i, mod time %IM) \n"
924	  "  has %B @m @b(s), shared with %N file(s):\n"),
925	  PROMPT_NONE, 0 },
926
927	/* List of files sharing duplicate blocks */
928	{ PR_1D_DUP_FILE_LIST,
929	  N_("\t%Q (@i #%i, mod time %IM)\n"),
930	  PROMPT_NONE, 0 },
931
932	/* File sharing blocks with filesystem metadata  */
933	{ PR_1D_SHARE_METADATA,
934	  N_("\t<@f metadata>\n"),
935	  PROMPT_NONE, 0 },
936
937	/* Report of how many duplicate/bad inodes */
938	{ PR_1D_NUM_DUP_INODES,
939	  N_("(There are %N @is containing @m @bs.)\n\n"),
940	  PROMPT_NONE, 0 },
941
942	/* Duplicated blocks already reassigned or cloned. */
943	{ PR_1D_DUP_BLOCKS_DEALT,
944	  N_("@m @bs already reassigned or cloned.\n\n"),
945	  PROMPT_NONE, 0 },
946
947	/* Clone duplicate/bad blocks? */
948	{ PR_1D_CLONE_QUESTION,
949	  "", PROMPT_CLONE, PR_NO_OK },
950
951	/* Delete file? */
952	{ PR_1D_DELETE_QUESTION,
953	  "", PROMPT_DELETE, 0 },
954
955	/* Couldn't clone file (error) */
956	{ PR_1D_CLONE_ERROR,
957	  N_("Couldn't clone file: %m\n"), PROMPT_NONE, 0 },
958
959	/* Pass 2 errors */
960
961	/* Pass 2: Checking directory structure */
962	{ PR_2_PASS_HEADER,
963	  N_("Pass 2: Checking @d structure\n"),
964	  PROMPT_NONE, 0 },
965
966	/* Bad inode number for '.' */
967	{ PR_2_BAD_INODE_DOT,
968	  N_("@n @i number for '.' in @d @i %i.\n"),
969	  PROMPT_FIX, 0 },
970
971	/* Directory entry has bad inode number */
972	{ PR_2_BAD_INO,
973	  N_("@E has @n @i #: %Di.\n"),
974	  PROMPT_CLEAR, 0 },
975
976	/* Directory entry has deleted or unused inode */
977	{ PR_2_UNUSED_INODE,
978	  N_("@E has @D/unused @i %Di.  "),
979	  PROMPT_CLEAR, PR_PREEN_OK },
980
981	/* Directry entry is link to '.' */
982	{ PR_2_LINK_DOT,
983	  N_("@E @L to '.'  "),
984	  PROMPT_CLEAR, 0 },
985
986	/* Directory entry points to inode now located in a bad block */
987	{ PR_2_BB_INODE,
988	  N_("@E points to @i (%Di) located in a bad @b.\n"),
989	  PROMPT_CLEAR, 0 },
990
991	/* Directory entry contains a link to a directory */
992	{ PR_2_LINK_DIR,
993	  N_("@E @L to @d %P (%Di).\n"),
994	  PROMPT_CLEAR, 0 },
995
996	/* Directory entry contains a link to the root directry */
997	{ PR_2_LINK_ROOT,
998	  N_("@E @L to the @r.\n"),
999	  PROMPT_CLEAR, 0 },
1000
1001	/* Directory entry has illegal characters in its name */
1002	{ PR_2_BAD_NAME,
1003	  N_("@E has illegal characters in its name.\n"),
1004	  PROMPT_FIX, 0 },
1005
1006	/* Missing '.' in directory inode */
1007	{ PR_2_MISSING_DOT,
1008	  N_("Missing '.' in @d @i %i.\n"),
1009	  PROMPT_FIX, 0 },
1010
1011	/* Missing '..' in directory inode */
1012	{ PR_2_MISSING_DOT_DOT,
1013	  N_("Missing '..' in @d @i %i.\n"),
1014	  PROMPT_FIX, 0 },
1015
1016	/* First entry in directory inode doesn't contain '.' */
1017	{ PR_2_1ST_NOT_DOT,
1018	  N_("First @e '%Dn' (@i=%Di) in @d @i %i (%p) @s '.'\n"),
1019	  PROMPT_FIX, 0 },
1020
1021	/* Second entry in directory inode doesn't contain '..' */
1022	{ PR_2_2ND_NOT_DOT_DOT,
1023	  N_("Second @e '%Dn' (@i=%Di) in @d @i %i @s '..'\n"),
1024	  PROMPT_FIX, 0 },
1025
1026	/* i_faddr should be zero */
1027	{ PR_2_FADDR_ZERO,
1028	  N_("i_faddr @F %IF, @s zero.\n"),
1029	  PROMPT_CLEAR, 0 },
1030
1031  	/* i_file_acl should be zero */
1032	{ PR_2_FILE_ACL_ZERO,
1033	  N_("i_file_acl @F %If, @s zero.\n"),
1034	  PROMPT_CLEAR, 0 },
1035
1036  	/* i_dir_acl should be zero */
1037	{ PR_2_DIR_ACL_ZERO,
1038	  N_("i_dir_acl @F %Id, @s zero.\n"),
1039	  PROMPT_CLEAR, 0 },
1040
1041  	/* i_frag should be zero */
1042	{ PR_2_FRAG_ZERO,
1043	  N_("i_frag @F %N, @s zero.\n"),
1044	  PROMPT_CLEAR, 0 },
1045
1046  	/* i_fsize should be zero */
1047	{ PR_2_FSIZE_ZERO,
1048	  N_("i_fsize @F %N, @s zero.\n"),
1049	  PROMPT_CLEAR, 0 },
1050
1051	/* inode has bad mode */
1052	{ PR_2_BAD_MODE,
1053	  N_("@i %i (%Q) has @n mode (%Im).\n"),
1054	  PROMPT_CLEAR, 0 },
1055
1056	/* directory corrupted */
1057	{ PR_2_DIR_CORRUPTED,
1058	  N_("@d @i %i, @b %B, offset %N: @d corrupted\n"),
1059	  PROMPT_SALVAGE, 0 },
1060
1061	/* filename too long */
1062	{ PR_2_FILENAME_LONG,
1063	  N_("@d @i %i, @b %B, offset %N: filename too long\n"),
1064	  PROMPT_TRUNCATE, 0 },
1065
1066	/* Directory inode has a missing block (hole) */
1067	{ PR_2_DIRECTORY_HOLE,
1068	  N_("@d @i %i has an unallocated @b #%B.  "),
1069	  PROMPT_ALLOCATE, 0 },
1070
1071	/* '.' is not NULL terminated */
1072	{ PR_2_DOT_NULL_TERM,
1073	  N_("'.' @d @e in @d @i %i is not NULL terminated\n"),
1074	  PROMPT_FIX, 0 },
1075
1076	/* '..' is not NULL terminated */
1077	{ PR_2_DOT_DOT_NULL_TERM,
1078	  N_("'..' @d @e in @d @i %i is not NULL terminated\n"),
1079	  PROMPT_FIX, 0 },
1080
1081	/* Illegal character device inode */
1082	{ PR_2_BAD_CHAR_DEV,
1083	  N_("@i %i (%Q) is an @I character @v.\n"),
1084	  PROMPT_CLEAR, 0 },
1085
1086	/* Illegal block device inode */
1087	{ PR_2_BAD_BLOCK_DEV,
1088	  N_("@i %i (%Q) is an @I @b @v.\n"),
1089	  PROMPT_CLEAR, 0 },
1090
1091	/* Duplicate '.' entry */
1092	{ PR_2_DUP_DOT,
1093	  N_("@E is duplicate '.' @e.\n"),
1094	  PROMPT_FIX, 0 },
1095
1096	/* Duplicate '..' entry */
1097	{ PR_2_DUP_DOT_DOT,
1098	  N_("@E is duplicate '..' @e.\n"),
1099	  PROMPT_FIX, 0 },
1100
1101	/* Internal error: couldn't find dir_info */
1102	{ PR_2_NO_DIRINFO,
1103	  N_("Internal error: couldn't find dir_info for %i.\n"),
1104	  PROMPT_NONE, PR_FATAL },
1105
1106	/* Final rec_len is wrong */
1107	{ PR_2_FINAL_RECLEN,
1108	  N_("@E has rec_len of %Dr, @s %N.\n"),
1109	  PROMPT_FIX, 0 },
1110
1111	/* Error allocating icount structure */
1112	{ PR_2_ALLOCATE_ICOUNT,
1113	  N_("@A icount structure: %m\n"),
1114	  PROMPT_NONE, PR_FATAL },
1115
1116	/* Error iterating over directory blocks */
1117	{ PR_2_DBLIST_ITERATE,
1118	  N_("Error iterating over @d @bs: %m\n"),
1119	  PROMPT_NONE, PR_FATAL },
1120
1121	/* Error reading directory block */
1122	{ PR_2_READ_DIRBLOCK,
1123	  N_("Error reading @d @b %b (@i %i): %m\n"),
1124	  PROMPT_CONTINUE, 0 },
1125
1126	/* Error writing directory block */
1127	{ PR_2_WRITE_DIRBLOCK,
1128	  N_("Error writing @d @b %b (@i %i): %m\n"),
1129	  PROMPT_CONTINUE, 0 },
1130
1131	/* Error allocating new directory block */
1132	{ PR_2_ALLOC_DIRBOCK,
1133	  N_("@A new @d @b for @i %i (%s): %m\n"),
1134	  PROMPT_NONE, 0 },
1135
1136	/* Error deallocating inode */
1137	{ PR_2_DEALLOC_INODE,
1138	  N_("Error deallocating @i %i: %m\n"),
1139	  PROMPT_NONE, PR_FATAL },
1140
1141	/* Directory entry for '.' is big.  Split? */
1142	{ PR_2_SPLIT_DOT,
1143	  N_("@d @e for '.' in %p (%i) is big.\n"),
1144	  PROMPT_SPLIT, PR_NO_OK },
1145
1146	/* Illegal FIFO inode */
1147	{ PR_2_BAD_FIFO,
1148	  N_("@i %i (%Q) is an @I FIFO.\n"),
1149	  PROMPT_CLEAR, 0 },
1150
1151	/* Illegal socket inode */
1152	{ PR_2_BAD_SOCKET,
1153	  N_("@i %i (%Q) is an @I socket.\n"),
1154	  PROMPT_CLEAR, 0 },
1155
1156	/* Directory filetype not set */
1157	{ PR_2_SET_FILETYPE,
1158	  N_("Setting filetype for @E to %N.\n"),
1159	  PROMPT_NONE, PR_PREEN_OK | PR_NO_OK | PR_NO_NOMSG },
1160
1161	/* Directory filetype incorrect */
1162	{ PR_2_BAD_FILETYPE,
1163	  N_("@E has an incorrect filetype (was %Dt, @s %N).\n"),
1164	  PROMPT_FIX, 0 },
1165
1166	/* Directory filetype set on filesystem */
1167	{ PR_2_CLEAR_FILETYPE,
1168	  N_("@E has filetype set.\n"),
1169	  PROMPT_CLEAR, PR_PREEN_OK },
1170
1171	/* Directory filename is null */
1172	{ PR_2_NULL_NAME,
1173	  N_("@E has a @z name.\n"),
1174	  PROMPT_CLEAR, 0 },
1175
1176	/* Invalid symlink */
1177	{ PR_2_INVALID_SYMLINK,
1178	  N_("Symlink %Q (@i #%i) is @n.\n"),
1179	  PROMPT_CLEAR, 0 },
1180
1181  	/* i_file_acl (extended attribute block) is bad */
1182	{ PR_2_FILE_ACL_BAD,
1183	  N_("@a @b @F @n (%If).\n"),
1184	  PROMPT_CLEAR, 0 },
1185
1186	/* Filesystem contains large files, but has no such flag in sb */
1187	{ PR_2_FEATURE_LARGE_FILES,
1188	  N_("@f contains large files, but lacks LARGE_FILE flag in @S.\n"),
1189	  PROMPT_FIX, 0 },
1190
1191	/* Node in HTREE directory not referenced */
1192	{ PR_2_HTREE_NOTREF,
1193	  N_("@p @h %d: node (%B) not referenced\n"),
1194	  PROMPT_NONE, 0 },
1195
1196	/* Node in HTREE directory referenced twice */
1197	{ PR_2_HTREE_DUPREF,
1198	  N_("@p @h %d: node (%B) referenced twice\n"),
1199	  PROMPT_NONE, 0 },
1200
1201	/* Node in HTREE directory has bad min hash */
1202	{ PR_2_HTREE_MIN_HASH,
1203	  N_("@p @h %d: node (%B) has bad min hash\n"),
1204	  PROMPT_NONE, 0 },
1205
1206	/* Node in HTREE directory has bad max hash */
1207	{ PR_2_HTREE_MAX_HASH,
1208	  N_("@p @h %d: node (%B) has bad max hash\n"),
1209	  PROMPT_NONE, 0 },
1210
1211	/* Clear invalid HTREE directory */
1212	{ PR_2_HTREE_CLEAR,
1213	  N_("@n @h %d (%q).  "), PROMPT_CLEAR_HTREE, 0 },
1214
1215	/* Bad block in htree interior node */
1216	{ PR_2_HTREE_BADBLK,
1217	  N_("@p @h %d (%q): bad @b number %b.\n"),
1218	  PROMPT_CLEAR_HTREE, 0 },
1219
1220	/* Error adjusting EA refcount */
1221	{ PR_2_ADJ_EA_REFCOUNT,
1222	  N_("Error adjusting refcount for @a @b %b (@i %i): %m\n"),
1223	  PROMPT_NONE, PR_FATAL },
1224
1225	/* Invalid HTREE root node */
1226	{ PR_2_HTREE_BAD_ROOT,
1227	  N_("@p @h %d: root node is @n\n"),
1228	  PROMPT_CLEAR_HTREE, PR_PREEN_OK },
1229
1230	/* Invalid HTREE limit */
1231	{ PR_2_HTREE_BAD_LIMIT,
1232	  N_("@p @h %d: node (%B) has @n limit (%N)\n"),
1233	  PROMPT_CLEAR_HTREE, PR_PREEN_OK },
1234
1235	/* Invalid HTREE count */
1236	{ PR_2_HTREE_BAD_COUNT,
1237	  N_("@p @h %d: node (%B) has @n count (%N)\n"),
1238	  PROMPT_CLEAR_HTREE, PR_PREEN_OK },
1239
1240	/* HTREE interior node has out-of-order hashes in table */
1241	{ PR_2_HTREE_HASH_ORDER,
1242	  N_("@p @h %d: node (%B) has an unordered hash table\n"),
1243	  PROMPT_CLEAR_HTREE, PR_PREEN_OK },
1244
1245	/* Node in HTREE directory has invalid depth */
1246	{ PR_2_HTREE_BAD_DEPTH,
1247	  N_("@p @h %d: node (%B) has @n depth (%N)\n"),
1248	  PROMPT_NONE, 0 },
1249
1250	/* Duplicate directory entry found */
1251	{ PR_2_DUPLICATE_DIRENT,
1252	  N_("Duplicate @E found.  "),
1253	  PROMPT_CLEAR, 0 },
1254
1255	/* Non-unique filename found */
1256	{ PR_2_NON_UNIQUE_FILE, /* xgettext: no-c-format */
1257	  N_("@E has a non-unique filename.\nRename to %s"),
1258	  PROMPT_NULL, 0 },
1259
1260	/* Duplicate directory entry found */
1261	{ PR_2_REPORT_DUP_DIRENT,
1262	  N_("Duplicate @e '%Dn' found.\n\tMarking %p (%i) to be rebuilt.\n\n"),
1263	  PROMPT_NONE, 0 },
1264
1265  	/* i_blocks_hi should be zero */
1266	{ PR_2_BLOCKS_HI_ZERO,
1267	  N_("i_blocks_hi @F %N, @s zero.\n"),
1268	  PROMPT_CLEAR, 0 },
1269
1270	/* Unexpected HTREE block */
1271	{ PR_2_UNEXPECTED_HTREE_BLOCK,
1272	  N_("Unexpected @b in @h %d (%q).\n"), PROMPT_CLEAR_HTREE, 0 },
1273
1274	/* Inode found in group where _INODE_UNINIT is set */
1275	{ PR_2_INOREF_BG_INO_UNINIT,
1276	  N_("@E references @i %Di in @g %g where _INODE_UNINIT is set.\n"),
1277	  PROMPT_FIX, PR_PREEN_OK },
1278
1279	/* Inode found in group unused inodes area */
1280	{ PR_2_INOREF_IN_UNUSED,
1281	  N_("@E references @i %Di found in @g %g's unused inodes area.\n"),
1282	  PROMPT_FIX, PR_PREEN_OK },
1283
1284	/* Pass 3 errors */
1285
1286	/* Pass 3: Checking directory connectivity */
1287	{ PR_3_PASS_HEADER,
1288	  N_("Pass 3: Checking @d connectivity\n"),
1289	  PROMPT_NONE, 0 },
1290
1291	/* Root inode not allocated */
1292	{ PR_3_NO_ROOT_INODE,
1293	  N_("@r not allocated.  "),
1294	  PROMPT_ALLOCATE, 0 },
1295
1296	/* No room in lost+found */
1297	{ PR_3_EXPAND_LF_DIR,
1298	  N_("No room in @l @d.  "),
1299	  PROMPT_EXPAND, 0 },
1300
1301	/* Unconnected directory inode */
1302	{ PR_3_UNCONNECTED_DIR,
1303	  N_("Unconnected @d @i %i (%p)\n"),
1304	  PROMPT_CONNECT, 0 },
1305
1306	/* /lost+found not found */
1307	{ PR_3_NO_LF_DIR,
1308	  N_("/@l not found.  "),
1309	  PROMPT_CREATE, PR_PREEN_OK },
1310
1311	/* .. entry is incorrect */
1312	{ PR_3_BAD_DOT_DOT,
1313	  N_("'..' in %Q (%i) is %P (%j), @s %q (%d).\n"),
1314	  PROMPT_FIX, 0 },
1315
1316	/* Bad or non-existent /lost+found.  Cannot reconnect */
1317	{ PR_3_NO_LPF,
1318	  N_("Bad or non-existent /@l.  Cannot reconnect.\n"),
1319	  PROMPT_NONE, 0 },
1320
1321	/* Could not expand /lost+found */
1322	{ PR_3_CANT_EXPAND_LPF,
1323	  N_("Could not expand /@l: %m\n"),
1324	  PROMPT_NONE, 0 },
1325
1326	/* Could not reconnect inode */
1327	{ PR_3_CANT_RECONNECT,
1328	  N_("Could not reconnect %i: %m\n"),
1329	  PROMPT_NONE, 0 },
1330
1331	/* Error while trying to find /lost+found */
1332	{ PR_3_ERR_FIND_LPF,
1333	  N_("Error while trying to find /@l: %m\n"),
1334	  PROMPT_NONE, 0 },
1335
1336	/* Error in ext2fs_new_block while creating /lost+found */
1337	{ PR_3_ERR_LPF_NEW_BLOCK,
1338	  N_("ext2fs_new_@b: %m while trying to create /@l @d\n"),
1339	  PROMPT_NONE, 0 },
1340
1341	/* Error in ext2fs_new_inode while creating /lost+found */
1342	{ PR_3_ERR_LPF_NEW_INODE,
1343	  N_("ext2fs_new_@i: %m while trying to create /@l @d\n"),
1344	  PROMPT_NONE, 0 },
1345
1346	/* Error in ext2fs_new_dir_block while creating /lost+found */
1347	{ PR_3_ERR_LPF_NEW_DIR_BLOCK,
1348	  N_("ext2fs_new_dir_@b: %m while creating new @d @b\n"),
1349	  PROMPT_NONE, 0 },
1350
1351	/* Error while writing directory block for /lost+found */
1352	{ PR_3_ERR_LPF_WRITE_BLOCK,
1353	  N_("ext2fs_write_dir_@b: %m while writing the @d @b for /@l\n"),
1354	  PROMPT_NONE, 0 },
1355
1356	/* Error while adjusting inode count */
1357	{ PR_3_ADJUST_INODE,
1358	  N_("Error while adjusting @i count on @i %i\n"),
1359	  PROMPT_NONE, 0 },
1360
1361	/* Couldn't fix parent directory -- error */
1362	{ PR_3_FIX_PARENT_ERR,
1363	  N_("Couldn't fix parent of @i %i: %m\n\n"),
1364	  PROMPT_NONE, 0 },
1365
1366	/* Couldn't fix parent directory -- couldn't find it */
1367	{ PR_3_FIX_PARENT_NOFIND,
1368	  N_("Couldn't fix parent of @i %i: Couldn't find parent @d @e\n\n"),
1369	  PROMPT_NONE, 0 },
1370
1371	/* Error allocating inode bitmap */
1372	{ PR_3_ALLOCATE_IBITMAP_ERROR,
1373	  N_("@A @i @B (%N): %m\n"),
1374	  PROMPT_NONE, PR_FATAL },
1375
1376	/* Error creating root directory */
1377	{ PR_3_CREATE_ROOT_ERROR,
1378	  N_("Error creating root @d (%s): %m\n"),
1379	  PROMPT_NONE, PR_FATAL },
1380
1381	/* Error creating lost and found directory */
1382	{ PR_3_CREATE_LPF_ERROR,
1383	  N_("Error creating /@l @d (%s): %m\n"),
1384	  PROMPT_NONE, PR_FATAL },
1385
1386	/* Root inode is not directory; aborting */
1387	{ PR_3_ROOT_NOT_DIR_ABORT,
1388	  N_("@r is not a @d; aborting.\n"),
1389	  PROMPT_NONE, PR_FATAL },
1390
1391	/* Cannot proceed without a root inode. */
1392	{ PR_3_NO_ROOT_INODE_ABORT,
1393	  N_("Cannot proceed without a @r.\n"),
1394	  PROMPT_NONE, PR_FATAL },
1395
1396	/* Internal error: couldn't find dir_info */
1397	{ PR_3_NO_DIRINFO,
1398	  N_("Internal error: couldn't find dir_info for %i.\n"),
1399	  PROMPT_NONE, PR_FATAL },
1400
1401	/* Lost+found not a directory */
1402	{ PR_3_LPF_NOTDIR,
1403	  N_("/@l is not a @d (ino=%i)\n"),
1404	  PROMPT_UNLINK, 0 },
1405
1406	/* Pass 3A Directory Optimization	*/
1407
1408	/* Pass 3A: Optimizing directories */
1409	{ PR_3A_PASS_HEADER,
1410	  N_("Pass 3A: Optimizing directories\n"),
1411	  PROMPT_NONE, PR_PREEN_NOMSG },
1412
1413	/* Error iterating over directories */
1414	{ PR_3A_OPTIMIZE_ITER,
1415	  N_("Failed to create dirs_to_hash iterator: %m"),
1416	  PROMPT_NONE, 0 },
1417
1418	/* Error rehash directory */
1419	{ PR_3A_OPTIMIZE_DIR_ERR,
1420	  N_("Failed to optimize directory %q (%d): %m"),
1421	  PROMPT_NONE, 0 },
1422
1423	/* Rehashing dir header */
1424	{ PR_3A_OPTIMIZE_DIR_HEADER,
1425	  N_("Optimizing directories: "),
1426	  PROMPT_NONE, PR_MSG_ONLY },
1427
1428	/* Rehashing directory %d */
1429	{ PR_3A_OPTIMIZE_DIR,
1430	  " %d",
1431	  PROMPT_NONE, PR_LATCH_OPTIMIZE_DIR | PR_PREEN_NOHDR},
1432
1433	/* Rehashing dir end */
1434	{ PR_3A_OPTIMIZE_DIR_END,
1435	  "\n",
1436	  PROMPT_NONE, PR_PREEN_NOHDR },
1437
1438	/* Pass 4 errors */
1439
1440	/* Pass 4: Checking reference counts */
1441	{ PR_4_PASS_HEADER,
1442	  N_("Pass 4: Checking reference counts\n"),
1443	  PROMPT_NONE, 0 },
1444
1445	/* Unattached zero-length inode */
1446	{ PR_4_ZERO_LEN_INODE,
1447	  N_("@u @z @i %i.  "),
1448	  PROMPT_CLEAR, PR_PREEN_OK|PR_NO_OK },
1449
1450	/* Unattached inode */
1451	{ PR_4_UNATTACHED_INODE,
1452	  N_("@u @i %i\n"),
1453	  PROMPT_CONNECT, 0 },
1454
1455	/* Inode ref count wrong */
1456	{ PR_4_BAD_REF_COUNT,
1457	  N_("@i %i ref count is %Il, @s %N.  "),
1458	  PROMPT_FIX, PR_PREEN_OK },
1459
1460	{ PR_4_INCONSISTENT_COUNT,
1461	  N_("WARNING: PROGRAMMING BUG IN E2FSCK!\n"
1462	  "\tOR SOME BONEHEAD (YOU) IS CHECKING A MOUNTED (LIVE) FILESYSTEM.\n"
1463	  "@i_link_info[%i] is %N, @i.i_links_count is %Il.  "
1464	  "They @s the same!\n"),
1465	  PROMPT_NONE, 0 },
1466
1467	/* Pass 5 errors */
1468
1469	/* Pass 5: Checking group summary information */
1470	{ PR_5_PASS_HEADER,
1471	  N_("Pass 5: Checking @g summary information\n"),
1472	  PROMPT_NONE, 0 },
1473
1474	/* Padding at end of inode bitmap is not set. */
1475	{ PR_5_INODE_BMAP_PADDING,
1476	  N_("Padding at end of @i @B is not set. "),
1477	  PROMPT_FIX, PR_PREEN_OK },
1478
1479	/* Padding at end of block bitmap is not set. */
1480	{ PR_5_BLOCK_BMAP_PADDING,
1481	  N_("Padding at end of @b @B is not set. "),
1482	  PROMPT_FIX, PR_PREEN_OK },
1483
1484	/* Block bitmap differences header */
1485	{ PR_5_BLOCK_BITMAP_HEADER,
1486	  N_("@b @B differences: "),
1487	  PROMPT_NONE, PR_PREEN_OK | PR_PREEN_NOMSG},
1488
1489	/* Block not used, but marked in bitmap */
1490	{ PR_5_BLOCK_UNUSED,
1491	  " -%b",
1492	  PROMPT_NONE, PR_LATCH_BBITMAP | PR_PREEN_OK | PR_PREEN_NOMSG },
1493
1494	/* Block used, but not marked used in bitmap */
1495	{ PR_5_BLOCK_USED,
1496	  " +%b",
1497	  PROMPT_NONE, PR_LATCH_BBITMAP | PR_PREEN_OK | PR_PREEN_NOMSG },
1498
1499	/* Block bitmap differences end */
1500	{ PR_5_BLOCK_BITMAP_END,
1501	  "\n",
1502	  PROMPT_FIX, PR_PREEN_OK | PR_PREEN_NOMSG },
1503
1504	/* Inode bitmap differences header */
1505	{ PR_5_INODE_BITMAP_HEADER,
1506	  N_("@i @B differences: "),
1507	  PROMPT_NONE, PR_PREEN_OK | PR_PREEN_NOMSG },
1508
1509	/* Inode not used, but marked in bitmap */
1510	{ PR_5_INODE_UNUSED,
1511	  " -%i",
1512	  PROMPT_NONE, PR_LATCH_IBITMAP | PR_PREEN_OK | PR_PREEN_NOMSG },
1513
1514	/* Inode used, but not marked used in bitmap */
1515	{ PR_5_INODE_USED,
1516	  " +%i",
1517	  PROMPT_NONE, PR_LATCH_IBITMAP | PR_PREEN_OK | PR_PREEN_NOMSG },
1518
1519	/* Inode bitmap differences end */
1520	{ PR_5_INODE_BITMAP_END,
1521	  "\n",
1522	  PROMPT_FIX, PR_PREEN_OK | PR_PREEN_NOMSG },
1523
1524	/* Free inodes count for group wrong */
1525	{ PR_5_FREE_INODE_COUNT_GROUP,
1526	  N_("Free @is count wrong for @g #%g (%i, counted=%j).\n"),
1527	  PROMPT_FIX, PR_PREEN_OK | PR_PREEN_NOMSG },
1528
1529	/* Directories count for group wrong */
1530	{ PR_5_FREE_DIR_COUNT_GROUP,
1531	  N_("Directories count wrong for @g #%g (%i, counted=%j).\n"),
1532	  PROMPT_FIX, PR_PREEN_OK | PR_PREEN_NOMSG },
1533
1534	/* Free inodes count wrong */
1535	{ PR_5_FREE_INODE_COUNT,
1536	  N_("Free @is count wrong (%i, counted=%j).\n"),
1537	  PROMPT_FIX, PR_PREEN_OK | PR_PREEN_NOMSG },
1538
1539	/* Free blocks count for group wrong */
1540	{ PR_5_FREE_BLOCK_COUNT_GROUP,
1541	  N_("Free @bs count wrong for @g #%g (%b, counted=%c).\n"),
1542	  PROMPT_FIX, PR_PREEN_OK | PR_PREEN_NOMSG },
1543
1544	/* Free blocks count wrong */
1545	{ PR_5_FREE_BLOCK_COUNT,
1546	  N_("Free @bs count wrong (%b, counted=%c).\n"),
1547	  PROMPT_FIX, PR_PREEN_OK | PR_PREEN_NOMSG },
1548
1549	/* Programming error: bitmap endpoints don't match */
1550	{ PR_5_BMAP_ENDPOINTS,
1551	  N_("PROGRAMMING ERROR: @f (#%N) @B endpoints (%b, %c) don't "
1552	  "match calculated @B endpoints (%i, %j)\n"),
1553	  PROMPT_NONE, PR_FATAL },
1554
1555	/* Internal error: fudging end of bitmap */
1556	{ PR_5_FUDGE_BITMAP_ERROR,
1557	  N_("Internal error: fudging end of bitmap (%N)\n"),
1558	  PROMPT_NONE, PR_FATAL },
1559
1560	/* Error copying in replacement inode bitmap */
1561	{ PR_5_COPY_IBITMAP_ERROR,
1562	  N_("Error copying in replacement @i @B: %m\n"),
1563	  PROMPT_NONE, PR_FATAL },
1564
1565	/* Error copying in replacement block bitmap */
1566	{ PR_5_COPY_BBITMAP_ERROR,
1567	  N_("Error copying in replacement @b @B: %m\n"),
1568	  PROMPT_NONE, PR_FATAL },
1569
1570	/* Block range not used, but marked in bitmap */
1571	{ PR_5_BLOCK_RANGE_UNUSED,
1572	  " -(%b--%c)",
1573	  PROMPT_NONE, PR_LATCH_BBITMAP | PR_PREEN_OK | PR_PREEN_NOMSG },
1574
1575	/* Block range used, but not marked used in bitmap */
1576	{ PR_5_BLOCK_RANGE_USED,
1577	  " +(%b--%c)",
1578	  PROMPT_NONE, PR_LATCH_BBITMAP | PR_PREEN_OK | PR_PREEN_NOMSG },
1579
1580	/* Inode range not used, but marked in bitmap */
1581	{ PR_5_INODE_RANGE_UNUSED,
1582	  " -(%i--%j)",
1583	  PROMPT_NONE, PR_LATCH_IBITMAP | PR_PREEN_OK | PR_PREEN_NOMSG },
1584
1585	/* Inode range used, but not marked used in bitmap */
1586	{ PR_5_INODE_RANGE_USED,
1587	  " +(%i--%j)",
1588	  PROMPT_NONE, PR_LATCH_IBITMAP | PR_PREEN_OK | PR_PREEN_NOMSG },
1589
1590	/* Recreate journal if E2F_FLAG_JOURNAL_INODE flag is set */
1591	{ PR_6_RECREATE_JOURNAL,
1592	  N_("Recreate journal to make the filesystem ext3 again?\n"),
1593	  PROMPT_FIX, PR_PREEN_OK | PR_NO_OK },
1594
1595	/* Group N block(s) in use but group is marked BLOCK_UNINIT */
1596	{ PR_5_BLOCK_UNINIT,
1597	  N_("@g %g @b(s) in use but @g is marked BLOCK_UNINIT\n"),
1598	  PROMPT_FIX, PR_PREEN_OK },
1599
1600	/* Group N inode(s) in use but group is marked INODE_UNINIT */
1601	{ PR_5_INODE_UNINIT,
1602	  N_("@g %g @i(s) in use but @g is marked INODE_UNINIT\n"),
1603	  PROMPT_FIX, PR_PREEN_OK },
1604
1605	{ 0 }
1606};
1607
1608/*
1609 * This is the latch flags register.  It allows several problems to be
1610 * "latched" together.  This means that the user has to answer but one
1611 * question for the set of problems, and all of the associated
1612 * problems will be either fixed or not fixed.
1613 */
1614static struct latch_descr pr_latch_info[] = {
1615	{ PR_LATCH_BLOCK, PR_1_INODE_BLOCK_LATCH, 0 },
1616	{ PR_LATCH_BBLOCK, PR_1_INODE_BBLOCK_LATCH, 0 },
1617	{ PR_LATCH_IBITMAP, PR_5_INODE_BITMAP_HEADER, PR_5_INODE_BITMAP_END },
1618	{ PR_LATCH_BBITMAP, PR_5_BLOCK_BITMAP_HEADER, PR_5_BLOCK_BITMAP_END },
1619	{ PR_LATCH_RELOC, PR_0_RELOCATE_HINT, 0 },
1620	{ PR_LATCH_DBLOCK, PR_1B_DUP_BLOCK_HEADER, PR_1B_DUP_BLOCK_END },
1621	{ PR_LATCH_LOW_DTIME, PR_1_ORPHAN_LIST_REFUGEES, 0 },
1622	{ PR_LATCH_TOOBIG, PR_1_INODE_TOOBIG, 0 },
1623	{ PR_LATCH_OPTIMIZE_DIR, PR_3A_OPTIMIZE_DIR_HEADER, PR_3A_OPTIMIZE_DIR_END },
1624	{ -1, 0, 0 },
1625};
1626
1627static struct e2fsck_problem *find_problem(problem_t code)
1628{
1629	int 	i;
1630
1631	for (i=0; problem_table[i].e2p_code; i++) {
1632		if (problem_table[i].e2p_code == code)
1633			return &problem_table[i];
1634	}
1635	return 0;
1636}
1637
1638static struct latch_descr *find_latch(int code)
1639{
1640	int	i;
1641
1642	for (i=0; pr_latch_info[i].latch_code >= 0; i++) {
1643		if (pr_latch_info[i].latch_code == code)
1644			return &pr_latch_info[i];
1645	}
1646	return 0;
1647}
1648
1649int end_problem_latch(e2fsck_t ctx, int mask)
1650{
1651	struct latch_descr *ldesc;
1652	struct problem_context pctx;
1653	int answer = -1;
1654
1655	ldesc = find_latch(mask);
1656	if (ldesc->end_message && (ldesc->flags & PRL_LATCHED)) {
1657		clear_problem_context(&pctx);
1658		answer = fix_problem(ctx, ldesc->end_message, &pctx);
1659	}
1660	ldesc->flags &= ~(PRL_VARIABLE);
1661	return answer;
1662}
1663
1664int set_latch_flags(int mask, int setflags, int clearflags)
1665{
1666	struct latch_descr *ldesc;
1667
1668	ldesc = find_latch(mask);
1669	if (!ldesc)
1670		return -1;
1671	ldesc->flags |= setflags;
1672	ldesc->flags &= ~clearflags;
1673	return 0;
1674}
1675
1676int get_latch_flags(int mask, int *value)
1677{
1678	struct latch_descr *ldesc;
1679
1680	ldesc = find_latch(mask);
1681	if (!ldesc)
1682		return -1;
1683	*value = ldesc->flags;
1684	return 0;
1685}
1686
1687void clear_problem_context(struct problem_context *ctx)
1688{
1689	memset(ctx, 0, sizeof(struct problem_context));
1690	ctx->blkcount = -1;
1691	ctx->group = -1;
1692}
1693
1694static void reconfigure_bool(e2fsck_t ctx, struct e2fsck_problem *ptr,
1695			     const char *key, int mask, const char *name)
1696{
1697	int	bool;
1698
1699	bool = (ptr->flags & mask);
1700	profile_get_boolean(ctx->profile, "problems", key, name, bool, &bool);
1701	if (bool)
1702		ptr->flags |= mask;
1703	else
1704		ptr->flags &= ~mask;
1705}
1706
1707
1708int fix_problem(e2fsck_t ctx, problem_t code, struct problem_context *pctx)
1709{
1710	ext2_filsys fs = ctx->fs;
1711	struct e2fsck_problem *ptr;
1712	struct latch_descr *ldesc = 0;
1713	const char *message;
1714	int 		def_yn, answer, ans;
1715	int		print_answer = 0;
1716	int		suppress = 0;
1717
1718	ptr = find_problem(code);
1719	if (!ptr) {
1720		printf(_("Unhandled error code (0x%x)!\n"), code);
1721		return 0;
1722	}
1723	if (!(ptr->flags & PR_CONFIG)) {
1724		char	key[9], *new_desc;
1725
1726		sprintf(key, "0x%06x", code);
1727
1728		profile_get_string(ctx->profile, "problems", key,
1729				   "description", 0, &new_desc);
1730		if (new_desc)
1731			ptr->e2p_description = new_desc;
1732
1733		reconfigure_bool(ctx, ptr, key, PR_PREEN_OK, "preen_ok");
1734		reconfigure_bool(ctx, ptr, key, PR_NO_OK, "no_ok");
1735		reconfigure_bool(ctx, ptr, key, PR_NO_DEFAULT, "no_default");
1736		reconfigure_bool(ctx, ptr, key, PR_MSG_ONLY, "print_message_only");
1737		reconfigure_bool(ctx, ptr, key, PR_PREEN_NOMSG, "preen_nomessage");
1738		reconfigure_bool(ctx, ptr, key, PR_NOCOLLATE, "no_collate");
1739		reconfigure_bool(ctx, ptr, key, PR_NO_NOMSG, "no_nomsg");
1740		reconfigure_bool(ctx, ptr, key, PR_PREEN_NOHDR, "preen_noheader");
1741
1742		ptr->flags |= PR_CONFIG;
1743	}
1744	def_yn = 1;
1745	if ((ptr->flags & PR_NO_DEFAULT) ||
1746	    ((ptr->flags & PR_PREEN_NO) && (ctx->options & E2F_OPT_PREEN)) ||
1747	    (ctx->options & E2F_OPT_NO))
1748		def_yn= 0;
1749
1750	/*
1751	 * Do special latch processing.  This is where we ask the
1752	 * latch question, if it exists
1753	 */
1754	if (ptr->flags & PR_LATCH_MASK) {
1755		ldesc = find_latch(ptr->flags & PR_LATCH_MASK);
1756		if (ldesc->question && !(ldesc->flags & PRL_LATCHED)) {
1757			ans = fix_problem(ctx, ldesc->question, pctx);
1758			if (ans == 1)
1759				ldesc->flags |= PRL_YES;
1760			if (ans == 0)
1761				ldesc->flags |= PRL_NO;
1762			ldesc->flags |= PRL_LATCHED;
1763		}
1764		if (ldesc->flags & PRL_SUPPRESS)
1765			suppress++;
1766	}
1767	if ((ptr->flags & PR_PREEN_NOMSG) &&
1768	    (ctx->options & E2F_OPT_PREEN))
1769		suppress++;
1770	if ((ptr->flags & PR_NO_NOMSG) &&
1771	    (ctx->options & E2F_OPT_NO))
1772		suppress++;
1773	if (!suppress) {
1774		message = ptr->e2p_description;
1775		if ((ctx->options & E2F_OPT_PREEN) &&
1776		    !(ptr->flags & PR_PREEN_NOHDR)) {
1777			printf("%s: ", ctx->device_name ?
1778			       ctx->device_name : ctx->filesystem_name);
1779		}
1780		if (*message)
1781			print_e2fsck_message(ctx, _(message), pctx, 1, 0);
1782	}
1783	if (!(ptr->flags & PR_PREEN_OK) && (ptr->prompt != PROMPT_NONE))
1784		preenhalt(ctx);
1785
1786	if (ptr->flags & PR_FATAL)
1787		fatal_error(ctx, 0);
1788
1789	if (ptr->prompt == PROMPT_NONE) {
1790		if (ptr->flags & PR_NOCOLLATE)
1791			answer = -1;
1792		else
1793			answer = def_yn;
1794	} else {
1795		if (ctx->options & E2F_OPT_PREEN) {
1796			answer = def_yn;
1797			if (!(ptr->flags & PR_PREEN_NOMSG))
1798				print_answer = 1;
1799		} else if ((ptr->flags & PR_LATCH_MASK) &&
1800			   (ldesc->flags & (PRL_YES | PRL_NO))) {
1801			if (!suppress)
1802				print_answer = 1;
1803			if (ldesc->flags & PRL_YES)
1804				answer = 1;
1805			else
1806				answer = 0;
1807		} else
1808			answer = ask(ctx, (ptr->prompt == PROMPT_NULL) ? "" :
1809				     _(prompt[(int) ptr->prompt]), def_yn);
1810		if (!answer && !(ptr->flags & PR_NO_OK))
1811			ext2fs_unmark_valid(fs);
1812
1813		if (print_answer)
1814			printf("%s.\n", answer ?
1815			       _(preen_msg[(int) ptr->prompt]) : _("IGNORED"));
1816
1817	}
1818
1819	if ((ptr->prompt == PROMPT_ABORT) && answer)
1820		fatal_error(ctx, 0);
1821
1822	if (ptr->flags & PR_AFTER_CODE)
1823		answer = fix_problem(ctx, ptr->second_code, pctx);
1824
1825	return answer;
1826}
1827