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