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