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