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