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