]> git.ipfire.org Git - thirdparty/e2fsprogs.git/blob - e2fsck/problem.c
Merge branch 'maint' into next
[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 /* Meta_bg and resize_inode are not compatible, disable resize_inode*/
504 { PR_0_DISABLE_RESIZE_INODE,
505 N_("Resize_@i and meta_bg features are enabled. Those features are\n"
506 "not compatible. Resize @i should be disabled. "),
507 PROMPT_FIX, 0 },
508
509 /* Pass 1 errors */
510
511 /* Pass 1: Checking inodes, blocks, and sizes */
512 { PR_1_PASS_HEADER,
513 N_("Pass 1: Checking @is, @bs, and sizes\n"),
514 PROMPT_NONE, 0 },
515
516 /* Root inode is not a directory */
517 { PR_1_ROOT_NO_DIR, N_("@r is not a @d. "),
518 PROMPT_CLEAR, 0 },
519
520 /* Root inode has dtime set */
521 { PR_1_ROOT_DTIME,
522 N_("@r has dtime set (probably due to old mke2fs). "),
523 PROMPT_FIX, PR_PREEN_OK },
524
525 /* Reserved inode has bad mode */
526 { PR_1_RESERVED_BAD_MODE,
527 N_("Reserved @i %i (%Q) has @n mode. "),
528 PROMPT_CLEAR, PR_PREEN_OK },
529
530 /* Deleted inode inum has zero dtime */
531 { PR_1_ZERO_DTIME,
532 N_("@D @i %i has zero dtime. "),
533 PROMPT_FIX, PR_PREEN_OK },
534
535 /* Inode inum is in use, but has dtime set */
536 { PR_1_SET_DTIME,
537 N_("@i %i is in use, but has dtime set. "),
538 PROMPT_FIX, PR_PREEN_OK },
539
540 /* Inode inum is a zero-length directory */
541 { PR_1_ZERO_LENGTH_DIR,
542 N_("@i %i is a @z @d. "),
543 PROMPT_CLEAR, PR_PREEN_OK },
544
545 /* Group block bitmap at block conflicts with some other fs block */
546 { PR_1_BB_CONFLICT,
547 N_("@g %g's @b @B at %b @C.\n"),
548 PROMPT_RELOCATE, 0 },
549
550 /* Group inode bitmap at block conflicts with some other fs block */
551 { PR_1_IB_CONFLICT,
552 N_("@g %g's @i @B at %b @C.\n"),
553 PROMPT_RELOCATE, 0 },
554
555 /* Group inode table at block conflicts with some other fs block */
556 { PR_1_ITABLE_CONFLICT,
557 N_("@g %g's @i table at %b @C.\n"),
558 PROMPT_RELOCATE, 0 },
559
560 /* Group block bitmap (block) is bad */
561 { PR_1_BB_BAD_BLOCK,
562 N_("@g %g's @b @B (%b) is bad. "),
563 PROMPT_RELOCATE, 0 },
564
565 /* Group inode bitmap (block) is bad */
566 { PR_1_IB_BAD_BLOCK,
567 N_("@g %g's @i @B (%b) is bad. "),
568 PROMPT_RELOCATE, 0 },
569
570 /* Inode inum, i_size is small, should be larger */
571 { PR_1_BAD_I_SIZE,
572 N_("@i %i, i_size is %Is, @s %N. "),
573 PROMPT_FIX, PR_PREEN_OK },
574
575 /* Inode inum, i_blocks is small, should be larger */
576 { PR_1_BAD_I_BLOCKS,
577 N_("@i %i, i_@bs is %Ib, @s %N. "),
578 PROMPT_FIX, PR_PREEN_OK },
579
580 /* Illegal block number in inode */
581 { PR_1_ILLEGAL_BLOCK_NUM,
582 N_("@I %B (%b) in @i %i. "),
583 PROMPT_CLEAR, PR_LATCH_BLOCK },
584
585 /* Block number overlaps filesystem metadata in inode */
586 { PR_1_BLOCK_OVERLAPS_METADATA,
587 N_("%B (%b) overlaps @f metadata in @i %i. "),
588 PROMPT_CLEAR, PR_LATCH_BLOCK },
589
590 /* Inode has illegal blocks (latch question) */
591 { PR_1_INODE_BLOCK_LATCH,
592 N_("@i %i has illegal @b(s). "),
593 PROMPT_CLEAR, 0 },
594
595 /* Too many illegal blocks in inode */
596 { PR_1_TOO_MANY_BAD_BLOCKS,
597 N_("Too many illegal @bs in @i %i.\n"),
598 PROMPT_CLEAR_INODE, PR_NO_OK },
599
600 /* Illegal block number in bad block inode */
601 { PR_1_BB_ILLEGAL_BLOCK_NUM,
602 N_("@I %B (%b) in bad @b @i. "),
603 PROMPT_CLEAR, PR_LATCH_BBLOCK },
604
605 /* Bad block inode has illegal blocks (latch question) */
606 { PR_1_INODE_BBLOCK_LATCH,
607 N_("Bad @b @i has illegal @b(s). "),
608 PROMPT_CLEAR, 0 },
609
610 /* Duplicate or bad blocks in use! */
611 { PR_1_DUP_BLOCKS_PREENSTOP,
612 N_("Duplicate or bad @b in use!\n"),
613 PROMPT_NONE, 0 },
614
615 /* Bad block number used as bad block inode indirect block */
616 { PR_1_BBINODE_BAD_METABLOCK,
617 N_("Bad @b %b used as bad @b @i indirect @b. "),
618 PROMPT_CLEAR, PR_LATCH_BBLOCK },
619
620 /* Inconsistency can't be fixed prompt */
621 { PR_1_BBINODE_BAD_METABLOCK_PROMPT,
622 N_("\nThe bad @b @i has probably been corrupted. You probably\n"
623 "should stop now and run ""e2fsck -c"" to scan for bad blocks\n"
624 "in the @f.\n"),
625 PROMPT_CONTINUE, PR_PREEN_NOMSG },
626
627 /* Bad primary block */
628 { PR_1_BAD_PRIMARY_BLOCK,
629 N_("\nIf the @b is really bad, the @f can not be fixed.\n"),
630 PROMPT_NONE, PR_AFTER_CODE, PR_1_BAD_PRIMARY_BLOCK_PROMPT },
631
632 /* Bad primary block prompt */
633 { PR_1_BAD_PRIMARY_BLOCK_PROMPT,
634 N_("You can remove this @b from the bad @b list and hope\n"
635 "that the @b is really OK. But there are no guarantees.\n\n"),
636 PROMPT_CLEAR, PR_PREEN_NOMSG },
637
638 /* The primary superblock block is on the bad block list */
639 { PR_1_BAD_PRIMARY_SUPERBLOCK,
640 N_("The primary @S (%b) is on the bad @b list.\n"),
641 PROMPT_NONE, PR_AFTER_CODE, PR_1_BAD_PRIMARY_BLOCK },
642
643 /* Bad primary block group descriptors */
644 { PR_1_BAD_PRIMARY_GROUP_DESCRIPTOR,
645 N_("Block %b in the primary @g descriptors "
646 "is on the bad @b list\n"),
647 PROMPT_NONE, PR_AFTER_CODE, PR_1_BAD_PRIMARY_BLOCK },
648
649 /* Warning: Group number's superblock (block) is bad */
650 { PR_1_BAD_SUPERBLOCK,
651 N_("Warning: Group %g's @S (%b) is bad.\n"),
652 PROMPT_NONE, PR_PREEN_OK | PR_PREEN_NOMSG },
653
654 /* Warning: Group number's copy of the group descriptors has a bad
655 * block */
656 { PR_1_BAD_GROUP_DESCRIPTORS,
657 N_("Warning: Group %g's copy of the @g descriptors has a bad "
658 "@b (%b).\n"),
659 PROMPT_NONE, PR_PREEN_OK | PR_PREEN_NOMSG },
660
661 /* Block number claimed for no reason in process_bad_blocks */
662 { PR_1_PROGERR_CLAIMED_BLOCK,
663 N_("Programming error? @b #%b claimed for no reason in "
664 "process_bad_@b.\n"),
665 PROMPT_NONE, PR_PREEN_OK },
666
667 /* Allocating number contiguous block(s) in block group number */
668 { PR_1_RELOC_BLOCK_ALLOCATE,
669 N_("@A %N contiguous @b(s) in @b @g %g for %s: %m\n"),
670 PROMPT_NONE, PR_PREEN_OK },
671
672 /* Allocating block buffer for relocating process */
673 { PR_1_RELOC_MEMORY_ALLOCATE,
674 N_("@A @b buffer for relocating %s\n"),
675 PROMPT_NONE, PR_PREEN_OK },
676
677 /* Relocating group number's information from X to Y */
678 { PR_1_RELOC_FROM_TO,
679 N_("Relocating @g %g's %s from %b to %c...\n"),
680 PROMPT_NONE, PR_PREEN_OK },
681
682 /* Relocating group number's information to X */
683 { PR_1_RELOC_TO,
684 N_("Relocating @g %g's %s to %c...\n"), /* xgettext:no-c-format */
685 PROMPT_NONE, PR_PREEN_OK },
686
687 /* Warning: could not read block number of relocation process */
688 { PR_1_RELOC_READ_ERR,
689 N_("Warning: could not read @b %b of %s: %m\n"),
690 PROMPT_NONE, PR_PREEN_OK },
691
692 /* Warning: could not write block number of relocation process */
693 { PR_1_RELOC_WRITE_ERR,
694 N_("Warning: could not write @b %b for %s: %m\n"),
695 PROMPT_NONE, PR_PREEN_OK },
696
697 /* Error allocating inode bitmap */
698 { PR_1_ALLOCATE_IBITMAP_ERROR,
699 N_("@A @i @B (%N): %m\n"),
700 PROMPT_NONE, PR_FATAL },
701
702 /* Error allocating block bitmap */
703 { PR_1_ALLOCATE_BBITMAP_ERROR,
704 N_("@A @b @B (%N): %m\n"),
705 PROMPT_NONE, PR_FATAL },
706
707 /* Error allocating icount link information */
708 { PR_1_ALLOCATE_ICOUNT,
709 N_("@A icount link information: %m\n"),
710 PROMPT_NONE, PR_FATAL },
711
712 /* Error allocating directory block array */
713 { PR_1_ALLOCATE_DBCOUNT,
714 N_("@A @d @b array: %m\n"),
715 PROMPT_NONE, PR_FATAL },
716
717 /* Error while scanning inodes */
718 { PR_1_ISCAN_ERROR,
719 N_("Error while scanning @is (%i): %m\n"),
720 PROMPT_NONE, PR_FATAL },
721
722 /* Error while iterating over blocks in inode */
723 { PR_1_BLOCK_ITERATE,
724 N_("Error while iterating over @bs in @i %i: %m\n"),
725 PROMPT_NONE, PR_FATAL },
726
727 /* Error storing inode count information */
728 { PR_1_ICOUNT_STORE,
729 N_("Error storing @i count information (@i=%i, count=%N): %m\n"),
730 PROMPT_NONE, PR_FATAL },
731
732 /* Error storing directory block information */
733 { PR_1_ADD_DBLOCK,
734 N_("Error storing @d @b information "
735 "(@i=%i, @b=%b, num=%N): %m\n"),
736 PROMPT_NONE, PR_FATAL },
737
738 /* Error reading inode (for clearing) */
739 { PR_1_READ_INODE,
740 N_("Error reading @i %i: %m\n"),
741 PROMPT_NONE, PR_FATAL },
742
743 /* Suppress messages prompt */
744 { PR_1_SUPPRESS_MESSAGES, "", PROMPT_SUPPRESS, PR_NO_OK },
745
746 /* Imagic number has imagic flag set when fs doesn't support it */
747 { PR_1_SET_IMAGIC,
748 N_("@i %i has imagic flag set. "),
749 PROMPT_CLEAR, 0 },
750
751 /* Immutable flag set on a device or socket inode */
752 { PR_1_SET_IMMUTABLE,
753 N_("Special (@v/socket/fifo/symlink) file (@i %i) has immutable\n"
754 "or append-only flag set. "),
755 PROMPT_CLEAR, PR_PREEN_OK | PR_PREEN_NO | PR_NO_OK },
756
757 /* Non-zero size for device, fifo or socket inode */
758 { PR_1_SET_NONZSIZE,
759 N_("Special (@v/socket/fifo) @i %i has non-zero size. "),
760 PROMPT_FIX, PR_PREEN_OK },
761
762 /* Filesystem has feature flag(s) set, but is a revision 0 filesystem */
763 { PR_1_FS_REV_LEVEL,
764 N_("@f has feature flag(s) set, but is a revision 0 @f. "),
765 PROMPT_FIX, PR_PREEN_OK | PR_NO_OK },
766
767 /* Journal inode is not in use, but contains data */
768 { PR_1_JOURNAL_INODE_NOT_CLEAR,
769 N_("@j @i is not in use, but contains data. "),
770 PROMPT_CLEAR, PR_PREEN_OK },
771
772 /* Journal is not a regular file */
773 { PR_1_JOURNAL_BAD_MODE,
774 N_("@j is not regular file. "),
775 PROMPT_FIX, PR_PREEN_OK },
776
777 /* Inode that was part of the orphan list */
778 { PR_1_LOW_DTIME,
779 N_("@i %i was part of the @o @i list. "),
780 PROMPT_FIX, PR_LATCH_LOW_DTIME, 0 },
781
782 /* Inodes that were part of a corrupted orphan linked list found
783 * (latch question) */
784 { PR_1_ORPHAN_LIST_REFUGEES,
785 N_("@is that were part of a corrupted orphan linked list found. "),
786 PROMPT_FIX, 0 },
787
788 /* Error allocating refcount structure */
789 { PR_1_ALLOCATE_REFCOUNT,
790 N_("@A refcount structure (%N): %m\n"),
791 PROMPT_NONE, PR_FATAL },
792
793 /* Error reading extended attribute block */
794 { PR_1_READ_EA_BLOCK,
795 N_("Error reading @a @b %b for @i %i. "),
796 PROMPT_CLEAR, 0 },
797
798 /* Inode number has a bad extended attribute block */
799 { PR_1_BAD_EA_BLOCK,
800 N_("@i %i has a bad @a @b %b. "),
801 PROMPT_CLEAR, 0 },
802
803 /* Error reading Extended Attribute block while fixing refcount */
804 { PR_1_EXTATTR_READ_ABORT,
805 N_("Error reading @a @b %b (%m). "),
806 PROMPT_NONE, PR_FATAL },
807
808 /* Extended attribute number has reference count incorrect */
809 { PR_1_EXTATTR_REFCOUNT,
810 N_("@a @b %b has reference count %r, @s %N. "),
811 PROMPT_FIX, 0 },
812
813 /* Error writing Extended Attribute block while fixing refcount */
814 { PR_1_EXTATTR_WRITE_ABORT,
815 N_("Error writing @a @b %b (%m). "),
816 PROMPT_NONE, PR_FATAL },
817
818 /* Extended attribute block has h_blocks > 1 */
819 { PR_1_EA_MULTI_BLOCK,
820 N_("@a @b %b has h_@bs > 1. "),
821 PROMPT_CLEAR, 0},
822
823 /* Allocating extended attribute region allocation structure */
824 { PR_1_EA_ALLOC_REGION_ABORT,
825 N_("@A @a region allocation structure. "),
826 PROMPT_NONE, PR_FATAL},
827
828 /* Extended Attribute block number is corrupt (allocation collision) */
829 { PR_1_EA_ALLOC_COLLISION,
830 N_("@a @b %b is corrupt (allocation collision). "),
831 PROMPT_CLEAR, 0},
832
833 /* Extended attribute block number is corrupt (invalid name) */
834 { PR_1_EA_BAD_NAME,
835 N_("@a @b %b is corrupt (@n name). "),
836 PROMPT_CLEAR, 0},
837
838 /* Extended attribute block number is corrupt (invalid value) */
839 { PR_1_EA_BAD_VALUE,
840 N_("@a @b %b is corrupt (@n value). "),
841 PROMPT_CLEAR, 0},
842
843 /* Inode number is too big (latch question) */
844 { PR_1_INODE_TOOBIG,
845 N_("@i %i is too big. "), PROMPT_TRUNCATE, 0 },
846
847 /* Problem causes directory to be too big */
848 { PR_1_TOOBIG_DIR,
849 N_("%B (%b) causes @d to be too big. "),
850 PROMPT_CLEAR, PR_LATCH_TOOBIG },
851
852 /* Problem causes file to be too big */
853 { PR_1_TOOBIG_REG,
854 N_("%B (%b) causes file to be too big. "),
855 PROMPT_CLEAR, PR_LATCH_TOOBIG },
856
857 /* Problem causes symlink to be too big */
858 { PR_1_TOOBIG_SYMLINK,
859 N_("%B (%b) causes symlink to be too big. "),
860 PROMPT_CLEAR, PR_LATCH_TOOBIG },
861
862 /* Inode has INDEX_FL flag set on filesystem without htree support */
863 { PR_1_HTREE_SET,
864 N_("@i %i has INDEX_FL flag set on @f without htree support.\n"),
865 PROMPT_CLEAR_HTREE, PR_PREEN_OK },
866
867 /* Inode number has INDEX_FL flag set but is on a directory */
868 { PR_1_HTREE_NODIR,
869 N_("@i %i has INDEX_FL flag set but is not a @d.\n"),
870 PROMPT_CLEAR_HTREE, PR_PREEN_OK },
871
872 /* htree directory has an invalid root node */
873 { PR_1_HTREE_BADROOT,
874 N_("@h %i has an @n root node.\n"),
875 PROMPT_CLEAR_HTREE, PR_PREEN_OK },
876
877 /* Htree directory has an unsupported hash version */
878 { PR_1_HTREE_HASHV,
879 N_("@h %i has an unsupported hash version (%N)\n"),
880 PROMPT_CLEAR_HTREE, PR_PREEN_OK },
881
882 /* Htree directory uses an Incompatible htree root node flag */
883 { PR_1_HTREE_INCOMPAT,
884 N_("@h %i uses an incompatible htree root node flag.\n"),
885 PROMPT_CLEAR_HTREE, PR_PREEN_OK },
886
887 /* Htree directory has a tree depth which is too big */
888 { PR_1_HTREE_DEPTH,
889 N_("@h %i has a tree depth (%N) which is too big\n"),
890 PROMPT_CLEAR_HTREE, PR_PREEN_OK },
891
892 /* Bad block inode has an indirect block number that conflicts with
893 * filesystem metadata */
894 { PR_1_BB_FS_BLOCK,
895 N_("Bad @b @i has an indirect @b (%b) that conflicts with\n"
896 "@f metadata. "),
897 PROMPT_CLEAR, PR_LATCH_BBLOCK },
898
899 /* Resize inode (re)creation failed */
900 { PR_1_RESIZE_INODE_CREATE,
901 N_("Resize @i (re)creation failed: %m."),
902 PROMPT_CONTINUE, 0 },
903
904 /* inode has a extra size i_extra_isize which is invalid */
905 { PR_1_EXTRA_ISIZE,
906 N_("@i %i has a extra size (%IS) which is @n\n"),
907 PROMPT_FIX, PR_PREEN_OK },
908
909 /* Extended attribute in inode has a namelen which is invalid */
910 { PR_1_ATTR_NAME_LEN,
911 N_("@a in @i %i has a namelen (%N) which is @n\n"),
912 PROMPT_CLEAR, PR_PREEN_OK },
913
914 /* Extended attribute in inode has a value offset which is invalid */
915 { PR_1_ATTR_VALUE_OFFSET,
916 N_("@a in @i %i has a value offset (%N) which is @n\n"),
917 PROMPT_CLEAR, PR_PREEN_OK },
918
919 /* extended attribute in inode has a value block which is invalid */
920 { PR_1_ATTR_VALUE_BLOCK,
921 N_("@a in @i %i has a value @b (%N) which is @n (must be 0)\n"),
922 PROMPT_CLEAR, PR_PREEN_OK },
923
924 /* extended attribute in inode has a value size which is invalid */
925 { PR_1_ATTR_VALUE_SIZE,
926 N_("@a in @i %i has a value size (%N) which is @n\n"),
927 PROMPT_CLEAR, PR_PREEN_OK },
928
929 /* extended attribute in inode has a hash which is invalid */
930 { PR_1_ATTR_HASH,
931 N_("@a in @i %i has a hash (%N) which is @n\n"),
932 PROMPT_CLEAR, PR_PREEN_OK },
933
934 /* inode is a type but it looks like it is really a directory */
935 { PR_1_TREAT_AS_DIRECTORY,
936 N_("@i %i is a %It but it looks like it is really a directory.\n"),
937 PROMPT_FIX, 0 },
938
939 /* Error while reading extent tree in inode */
940 { PR_1_READ_EXTENT,
941 N_("Error while reading over @x tree in @i %i: %m\n"),
942 PROMPT_CLEAR_INODE, 0 },
943
944 /* Failure to iterate extents in inode */
945 { PR_1_EXTENT_ITERATE_FAILURE,
946 N_("Failed to iterate extents in @i %i\n"
947 "\t(op %s, blk %b, lblk %c): %m\n"),
948 PROMPT_CLEAR_INODE, 0 },
949
950 /* Inode has an invalid extent starting block */
951 { PR_1_EXTENT_BAD_START_BLK,
952 N_("@i %i has an @n extent\n\t(logical @b %c, @n physical @b %b, len %N)\n"),
953 PROMPT_CLEAR, 0 },
954
955 /* Inode has an invalid extent that ends beyond filesystem */
956 { PR_1_EXTENT_ENDS_BEYOND,
957 N_("@i %i has an @n extent\n\t(logical @b %c, physical @b %b, @n len %N)\n"),
958 PROMPT_CLEAR, 0 },
959
960 /* inode has EXTENTS_FL flag set on filesystem without extents support*/
961 { PR_1_EXTENTS_SET,
962 N_("@i %i has EXTENTS_FL flag set on @f without extents support.\n"),
963 PROMPT_CLEAR, 0 },
964
965 /* inode is in extents format, but superblock is missing EXTENTS feature */
966 { PR_1_EXTENT_FEATURE,
967 N_("@i %i is in extent format, but @S is missing EXTENTS feature\n"),
968 PROMPT_FIX, 0 },
969
970 /* inode missing EXTENTS_FL, but is an extent inode */
971 { PR_1_UNSET_EXTENT_FL,
972 N_("@i %i missing EXTENT_FL, but is in extents format\n"),
973 PROMPT_FIX, PR_PREEN_OK },
974
975 /* Fast symlink has EXTENTS_FL set */
976 { PR_1_FAST_SYMLINK_EXTENT_FL,
977 N_("Fast symlink %i has EXTENT_FL set. "),
978 PROMPT_CLEAR, 0 },
979
980 /* Extents are out of order */
981 { PR_1_OUT_OF_ORDER_EXTENTS,
982 N_("@i %i has out of order extents\n\t(@n logical @b %c, physical @b %b, len %N)\n"),
983 PROMPT_CLEAR, 0 },
984
985 { PR_1_EXTENT_HEADER_INVALID,
986 N_("@i %i has an invalid extent node (blk %b, lblk %c)\n"),
987 PROMPT_CLEAR, 0 },
988
989 /* Failed to convert subcluster block bitmap */
990 { PR_1_CONVERT_SUBCLUSTER,
991 N_("Error converting subcluster @b @B: %m\n"),
992 PROMPT_NONE, PR_FATAL },
993
994 /* Quota inode is not a regular file */
995 { PR_1_QUOTA_BAD_MODE,
996 N_("@q @i is not a regular file. "),
997 PROMPT_CLEAR, PR_PREEN_OK },
998
999 /* Quota inode is not in use, but contains data */
1000 { PR_1_QUOTA_INODE_NOT_CLEAR,
1001 N_("@q @i is not in use, but contains data. "),
1002 PROMPT_CLEAR, PR_PREEN_OK },
1003
1004 /* Quota inode is visible to the user */
1005 { PR_1_QUOTA_INODE_NOT_HIDDEN,
1006 N_("@q @i is visible to the user. "),
1007 PROMPT_CLEAR, PR_PREEN_OK },
1008
1009 /* The bad block inode looks invalid */
1010 { PR_1_INVALID_BAD_INODE,
1011 N_("The bad @b @i looks @n. "),
1012 PROMPT_CLEAR, 0 },
1013
1014 /* Extent has zero length extent */
1015 { PR_1_EXTENT_LENGTH_ZERO,
1016 N_("@i %i has zero length extent\n\t(@n logical @b %c, physical @b %b)\n"),
1017 PROMPT_CLEAR, 0 },
1018
1019 /* inode seems to contain garbage */
1020 { PR_1_INODE_IS_GARBAGE,
1021 N_("@i %i seems to contain garbage. "),
1022 PROMPT_CLEAR, 0 },
1023
1024 /* inode passes checks, but checksum does not match inode */
1025 { PR_1_INODE_ONLY_CSUM_INVALID,
1026 N_("@i %i passes checks, but checksum does not match @i. "),
1027 PROMPT_FIX, PR_PREEN_OK },
1028
1029 /* Inode extended attribute is corrupt (allocation collision) */
1030 { PR_1_INODE_EA_ALLOC_COLLISION,
1031 N_("@i %i @a is corrupt (allocation collision). "),
1032 PROMPT_CLEAR, 0},
1033
1034 /*
1035 * Inode extent block passes checks, but checksum does not match
1036 * extent
1037 */
1038 { PR_1_EXTENT_ONLY_CSUM_INVALID,
1039 N_("@i %i extent block passes checks, but checksum does not match "
1040 "extent\n\t(logical @b %c, physical @b %b, len %N)\n"),
1041 PROMPT_FIX, 0 },
1042
1043 /*
1044 * Inode extended attribute block passes checks, but checksum does not
1045 * match block.
1046 */
1047 { PR_1_EA_BLOCK_ONLY_CSUM_INVALID,
1048 N_("@i %i @a @b %b passes checks, but checksum does not match @b. "),
1049 PROMPT_FIX, 0 },
1050
1051 /* Interior extent node level number of inode doesn't first node down */
1052 { PR_1_EXTENT_INDEX_START_INVALID,
1053 N_("Interior @x node level %N of @i %i:\n"
1054 "Logical start %b does not match logical start %c at next level. "),
1055 PROMPT_FIX, 0 },
1056
1057 /* Inode end of extent exceeds allowed value */
1058 { PR_1_EXTENT_END_OUT_OF_BOUNDS,
1059 N_("@i %i, end of extent exceeds allowed value\n\t(logical @b %c, physical @b %b, len %N)\n"),
1060 PROMPT_CLEAR, 0 },
1061
1062 /* Inode has inline data, but superblock is missing INLINE_DATA feature */
1063 { PR_1_INLINE_DATA_FEATURE,
1064 N_("@i %i has inline data, but @S is missing INLINE_DATA feature\n"),
1065 PROMPT_CLEAR, PR_PREEN_OK },
1066
1067 /* inode has INLINE_DATA_FL flag on filesystem without inline data */
1068 { PR_1_INLINE_DATA_SET,
1069 N_("@i %i has INLINE_DATA_FL flag on @f without inline data support.\n"),
1070 PROMPT_CLEAR, 0 },
1071
1072 /*
1073 * Inode block conflicts with critical metadata, skipping block checks
1074 */
1075 { PR_1_CRITICAL_METADATA_COLLISION,
1076 N_("@i %i block %b conflicts with critical metadata, skipping block checks.\n"),
1077 PROMPT_NONE, 0 },
1078
1079 /* Directory inode block <block> should be at block <otherblock> */
1080 { PR_1_COLLAPSE_DBLOCK,
1081 N_("@d @i %i @b %b should be at @b %c. "),
1082 PROMPT_FIX, 0 },
1083
1084 /* Extents/inlinedata flag set on a device or socket inode */
1085 { PR_1_UNINIT_DBLOCK,
1086 N_("@d @i %i has @x marked uninitialized at @b %c. "),
1087 PROMPT_FIX, PR_PREEN_OK },
1088
1089 /* Inode logical block (physical block) violates cluster allocation */
1090 { PR_1_MISALIGNED_CLUSTER,
1091 N_("@i %i logical @b %b (physical @b %c) violates cluster allocation rules.\nWill fix in pass 1B.\n"),
1092 PROMPT_NONE, 0 },
1093
1094 /* Inode has INLINE_DATA_FL flag but extended attribute not found */
1095 { PR_1_INLINE_DATA_NO_ATTR,
1096 N_("@i %i has INLINE_DATA_FL flag but @a not found. "),
1097 PROMPT_TRUNCATE, 0 },
1098
1099 /* Special (device/socket/fifo) file (inode num) has extents
1100 * or inline-data flag set */
1101 { PR_1_SPECIAL_EXTENTS_IDATA,
1102 N_("Special (@v/socket/fifo) file (@i %i) has extents\n"
1103 "or inline-data flag set. "),
1104 PROMPT_CLEAR, PR_PREEN_OK | PR_PREEN_NO | PR_NO_OK },
1105
1106 /* Inode has extent header but inline data flag is set */
1107 { PR_1_CLEAR_INLINE_DATA_FOR_EXTENT,
1108 N_("@i %i has @x header but inline data flag is set.\n"),
1109 PROMPT_FIX, 0 },
1110
1111 /* Inode seems to have inline data but extent flag is set */
1112 { PR_1_CLEAR_EXTENT_FOR_INLINE_DATA,
1113 N_("@i %i seems to have inline data but @x flag is set.\n"),
1114 PROMPT_FIX, 0 },
1115
1116 /* Inode seems to have block map but inline data and extent flags set */
1117 { PR_1_CLEAR_EXTENT_INLINE_DATA_FLAGS,
1118 N_("@i %i seems to have @b map but inline data and @x flags set.\n"),
1119 PROMPT_FIX, 0 },
1120
1121 /* Inode has inline data and extent flags but i_block contains junk */
1122 { PR_1_CLEAR_EXTENT_INLINE_DATA_INODE,
1123 N_("@i %i has inline data and @x flags set but i_block contains junk.\n"),
1124 PROMPT_CLEAR_INODE, 0 },
1125
1126 /* Bad block list says the bad block list inode is bad */
1127 { PR_1_BADBLOCKS_IN_BADBLOCKS,
1128 N_("Bad block list says the bad block list @i is bad. "),
1129 PROMPT_CLEAR_INODE, 0 },
1130
1131 /* Error allocating extent region allocation structure */
1132 { PR_1_EXTENT_ALLOC_REGION_ABORT,
1133 N_("@A @x region allocation structure. "),
1134 PROMPT_NONE, PR_FATAL},
1135
1136 /* Inode leaf has a duplicate extent mapping */
1137 { PR_1_EXTENT_COLLISION,
1138 N_("@i %i has a duplicate @x mapping\n\t(logical @b %c, @n physical @b %b, len %N)\n"),
1139 PROMPT_CLEAR, 0 },
1140
1141 /* Error allocating memory for encrypted directory list */
1142 { PR_1_ALLOCATE_ENCRYPTED_DIRLIST,
1143 N_("@A memory for encrypted @d list\n"),
1144 PROMPT_NONE, PR_FATAL },
1145
1146 /* Inode extent tree could be more shallow */
1147 { PR_1_EXTENT_BAD_MAX_DEPTH,
1148 N_("@i %i @x tree could be more shallow (%b; could be <= %c)\n"),
1149 PROMPT_FIX, PR_NO_OK | PR_PREEN_NO | PR_PREEN_OK },
1150
1151 /* inode num on bigalloc filesystem cannot be block mapped */
1152 { PR_1_NO_BIGALLOC_BLOCKMAP_FILES,
1153 N_("@i %i on bigalloc @f cannot be @b mapped. "),
1154 PROMPT_FIX, 0 },
1155
1156 /* Inode has corrupt extent header */
1157 { PR_1_MISSING_EXTENT_HEADER,
1158 N_("@i %i has corrupt @x header. "),
1159 PROMPT_CLEAR_INODE, 0 },
1160
1161 /* Timestamp(s) on inode beyond 2310-04-04 are likely pre-1970. */
1162 { PR_1_EA_TIME_OUT_OF_RANGE,
1163 N_("Timestamp(s) on @i %i beyond 2310-04-04 are likely pre-1970.\n"),
1164 PROMPT_FIX, PR_PREEN_OK | PR_NO_OK },
1165
1166 /* Inode has illegal extended attribute value inode */
1167 { PR_1_ATTR_VALUE_EA_INODE,
1168 N_("@i %i has @I @a value @i %N.\n"),
1169 PROMPT_CLEAR, PR_PREEN_OK },
1170
1171 /* Inode has invalid extended attribute. EA inode missing
1172 * EA_INODE flag. */
1173 { PR_1_ATTR_NO_EA_INODE_FL,
1174 N_("@i %i has @n @a. EA @i %N missing EA_INODE flag.\n"),
1175 PROMPT_CLEAR, PR_PREEN_OK },
1176
1177 /* EA inode for parent inode missing EA_INODE flag. */
1178 { PR_1_ATTR_SET_EA_INODE_FL,
1179 N_("EA @i %N for parent @i %i missing EA_INODE flag.\n "),
1180 PROMPT_FIX, PR_PREEN_OK },
1181
1182
1183 /* Pass 1b errors */
1184
1185 /* Pass 1B: Rescan for duplicate/bad blocks */
1186 { PR_1B_PASS_HEADER,
1187 N_("\nRunning additional passes to resolve @bs claimed by more than one @i...\n"
1188 "Pass 1B: Rescanning for @m @bs\n"),
1189 PROMPT_NONE, 0 },
1190
1191 /* Duplicate/bad block(s) header */
1192 { PR_1B_DUP_BLOCK_HEADER,
1193 N_("@m @b(s) in @i %i:"),
1194 PROMPT_NONE, 0 },
1195
1196 /* Duplicate/bad block(s) in inode */
1197 { PR_1B_DUP_BLOCK,
1198 " %b",
1199 PROMPT_NONE, PR_LATCH_DBLOCK | PR_PREEN_NOHDR },
1200
1201 /* Duplicate/bad block(s) end */
1202 { PR_1B_DUP_BLOCK_END,
1203 "\n",
1204 PROMPT_NONE, PR_PREEN_NOHDR },
1205
1206 /* Error while scanning inodes */
1207 { PR_1B_ISCAN_ERROR,
1208 N_("Error while scanning inodes (%i): %m\n"),
1209 PROMPT_NONE, PR_FATAL },
1210
1211 /* Error allocating inode bitmap */
1212 { PR_1B_ALLOCATE_IBITMAP_ERROR,
1213 N_("@A @i @B (@i_dup_map): %m\n"),
1214 PROMPT_NONE, PR_FATAL },
1215
1216 /* Error while iterating over blocks */
1217 { PR_1B_BLOCK_ITERATE,
1218 N_("Error while iterating over @bs in @i %i (%s): %m\n"),
1219 PROMPT_NONE, 0 },
1220
1221 /* Error adjusting EA refcount */
1222 { PR_1B_ADJ_EA_REFCOUNT,
1223 N_("Error adjusting refcount for @a @b %b (@i %i): %m\n"),
1224 PROMPT_NONE, 0 },
1225
1226 /* Duplicate/bad block range in inode */
1227 { PR_1B_DUP_RANGE,
1228 " %b--%c",
1229 PROMPT_NONE, PR_LATCH_DBLOCK | PR_PREEN_NOHDR },
1230
1231 /* Pass 1C: Scan directories for inodes with multiply-claimed blocks. */
1232 { PR_1C_PASS_HEADER,
1233 N_("Pass 1C: Scanning directories for @is with @m @bs\n"),
1234 PROMPT_NONE, 0 },
1235
1236
1237 /* Pass 1D: Reconciling multiply-claimed blocks */
1238 { PR_1D_PASS_HEADER,
1239 N_("Pass 1D: Reconciling @m @bs\n"),
1240 PROMPT_NONE, 0 },
1241
1242 /* File has duplicate blocks */
1243 { PR_1D_DUP_FILE,
1244 N_("File %Q (@i #%i, mod time %IM) \n"
1245 " has %r @m @b(s), shared with %N file(s):\n"),
1246 PROMPT_NONE, 0 },
1247
1248 /* List of files sharing duplicate blocks */
1249 { PR_1D_DUP_FILE_LIST,
1250 N_("\t%Q (@i #%i, mod time %IM)\n"),
1251 PROMPT_NONE, 0 },
1252
1253 /* File sharing blocks with filesystem metadata */
1254 { PR_1D_SHARE_METADATA,
1255 N_("\t<@f metadata>\n"),
1256 PROMPT_NONE, 0 },
1257
1258 /* Report of how many duplicate/bad inodes */
1259 { PR_1D_NUM_DUP_INODES,
1260 N_("(There are %N @is containing @m @bs.)\n\n"),
1261 PROMPT_NONE, 0 },
1262
1263 /* Duplicated blocks already reassigned or cloned. */
1264 { PR_1D_DUP_BLOCKS_DEALT,
1265 N_("@m @bs already reassigned or cloned.\n\n"),
1266 PROMPT_NONE, 0 },
1267
1268 /* Clone duplicate/bad blocks? */
1269 { PR_1D_CLONE_QUESTION,
1270 "", PROMPT_CLONE, PR_NO_OK },
1271
1272 /* Delete file? */
1273 { PR_1D_DELETE_QUESTION,
1274 "", PROMPT_DELETE, 0 },
1275
1276 /* Couldn't clone file (error) */
1277 { PR_1D_CLONE_ERROR,
1278 N_("Couldn't clone file: %m\n"), PROMPT_NONE, 0 },
1279
1280 /* Pass 1E Extent tree optimization */
1281
1282 /* Pass 1E: Optimizing extent trees */
1283 { PR_1E_PASS_HEADER,
1284 N_("Pass 1E: Optimizing @x trees\n"),
1285 PROMPT_NONE, PR_PREEN_NOMSG },
1286
1287 /* Failed to optimize extent tree */
1288 { PR_1E_OPTIMIZE_EXT_ERR,
1289 N_("Failed to optimize @x tree %p (%i): %m\n"),
1290 PROMPT_NONE, 0 },
1291
1292 /* Optimizing extent trees */
1293 { PR_1E_OPTIMIZE_EXT_HEADER,
1294 N_("Optimizing @x trees: "),
1295 PROMPT_NONE, PR_MSG_ONLY },
1296
1297 /* Rebuilding extent tree %d */
1298 { PR_1E_OPTIMIZE_EXT,
1299 " %i",
1300 PROMPT_NONE, PR_LATCH_OPTIMIZE_EXT | PR_PREEN_NOHDR},
1301
1302 /* Rebuilding extent tree end */
1303 { PR_1E_OPTIMIZE_EXT_END,
1304 "\n",
1305 PROMPT_NONE, PR_PREEN_NOHDR },
1306
1307 /* Internal error: extent tree depth too large */
1308 { PR_1E_MAX_EXTENT_TREE_DEPTH,
1309 N_("Internal error: max extent tree depth too large (%b; expected=%c).\n"),
1310 PROMPT_NONE, PR_FATAL },
1311
1312 /* Inode extent tree could be shorter */
1313 { PR_1E_CAN_COLLAPSE_EXTENT_TREE,
1314 N_("@i %i @x tree (at level %b) could be shorter. "),
1315 PROMPT_FIX, PR_NO_OK | PR_PREEN_NO | PR_PREEN_OK | PR_NOT_A_FIX },
1316
1317 /* Inode extent tree could be narrower */
1318 { PR_1E_CAN_NARROW_EXTENT_TREE,
1319 N_("@i %i @x tree (at level %b) could be narrower. "),
1320 PROMPT_FIX, PR_NO_OK | PR_PREEN_NO | PR_PREEN_OK | PR_NOT_A_FIX },
1321
1322 /* Pass 2 errors */
1323
1324 /* Pass 2: Checking directory structure */
1325 { PR_2_PASS_HEADER,
1326 N_("Pass 2: Checking @d structure\n"),
1327 PROMPT_NONE, 0 },
1328
1329 /* Bad inode number for '.' */
1330 { PR_2_BAD_INODE_DOT,
1331 N_("@n @i number for '.' in @d @i %i.\n"),
1332 PROMPT_FIX, 0 },
1333
1334 /* Entry 'xxxx' in /a/b/c has bad inode number.*/
1335 { PR_2_BAD_INO,
1336 N_("@E has @n @i #: %Di.\n"),
1337 PROMPT_CLEAR, 0 },
1338
1339 /* Entry 'xxxx' in /a/b/c has deleted/unused inode nnnnn.*/
1340 { PR_2_UNUSED_INODE,
1341 N_("@E has @D/unused @i %Di. "),
1342 PROMPT_CLEAR, PR_PREEN_OK },
1343
1344 /* Directory entry is link to '.' */
1345 { PR_2_LINK_DOT,
1346 N_("@E @L to '.' "),
1347 PROMPT_CLEAR, 0 },
1348
1349 /* Directory entry points to inode now located in a bad block */
1350 { PR_2_BB_INODE,
1351 N_("@E points to @i (%Di) located in a bad @b.\n"),
1352 PROMPT_CLEAR, 0 },
1353
1354 /* Directory entry contains a link to a directory */
1355 { PR_2_LINK_DIR,
1356 N_("@E @L to @d %P (%Di).\n"),
1357 PROMPT_CLEAR, 0 },
1358
1359 /* Directory entry contains a link to the root directory */
1360 { PR_2_LINK_ROOT,
1361 N_("@E @L to the @r.\n"),
1362 PROMPT_CLEAR, 0 },
1363
1364 /* Directory entry has illegal characters in its name */
1365 { PR_2_BAD_NAME,
1366 N_("@E has illegal characters in its name.\n"),
1367 PROMPT_FIX, 0 },
1368
1369 /* Missing '.' in directory inode */
1370 { PR_2_MISSING_DOT,
1371 N_("Missing '.' in @d @i %i.\n"),
1372 PROMPT_FIX, 0 },
1373
1374 /* Missing '..' in directory inode */
1375 { PR_2_MISSING_DOT_DOT,
1376 N_("Missing '..' in @d @i %i.\n"),
1377 PROMPT_FIX, 0 },
1378
1379 /* First entry in directory inode doesn't contain '.' */
1380 { PR_2_1ST_NOT_DOT,
1381 N_("First @e '%Dn' (@i=%Di) in @d @i %i (%p) @s '.'\n"),
1382 PROMPT_FIX, 0 },
1383
1384 /* Second entry in directory inode doesn't contain '..' */
1385 { PR_2_2ND_NOT_DOT_DOT,
1386 N_("Second @e '%Dn' (@i=%Di) in @d @i %i @s '..'\n"),
1387 PROMPT_FIX, 0 },
1388
1389 /* i_faddr should be zero */
1390 { PR_2_FADDR_ZERO,
1391 N_("i_faddr @F %IF, @s zero.\n"),
1392 PROMPT_CLEAR, 0 },
1393
1394 /* i_file_acl should be zero */
1395 { PR_2_FILE_ACL_ZERO,
1396 N_("i_file_acl @F %If, @s zero.\n"),
1397 PROMPT_CLEAR, 0 },
1398
1399 /* i_size_high should be zero */
1400 { PR_2_DIR_SIZE_HIGH_ZERO,
1401 N_("i_size_high @F %Id, @s zero.\n"),
1402 PROMPT_CLEAR, 0 },
1403
1404 /* i_frag should be zero */
1405 { PR_2_FRAG_ZERO,
1406 N_("i_frag @F %N, @s zero.\n"),
1407 PROMPT_CLEAR, 0 },
1408
1409 /* i_fsize should be zero */
1410 { PR_2_FSIZE_ZERO,
1411 N_("i_fsize @F %N, @s zero.\n"),
1412 PROMPT_CLEAR, 0 },
1413
1414 /* inode has bad mode */
1415 { PR_2_BAD_MODE,
1416 N_("@i %i (%Q) has @n mode (%Im).\n"),
1417 PROMPT_CLEAR, 0 },
1418
1419 /* directory corrupted */
1420 { PR_2_DIR_CORRUPTED,
1421 N_("@d @i %i, %B, offset %N: @d corrupted\n"),
1422 PROMPT_SALVAGE, 0 },
1423
1424 /* filename too long */
1425 { PR_2_FILENAME_LONG,
1426 N_("@d @i %i, %B, offset %N: filename too long\n"),
1427 PROMPT_TRUNCATE, 0 },
1428
1429 /* Directory inode has a missing block (hole) */
1430 { PR_2_DIRECTORY_HOLE,
1431 N_("@d @i %i has an unallocated %B. "),
1432 PROMPT_ALLOCATE, 0 },
1433
1434 /* '.' is not NULL terminated */
1435 { PR_2_DOT_NULL_TERM,
1436 N_("'.' @d @e in @d @i %i is not NULL terminated\n"),
1437 PROMPT_FIX, 0 },
1438
1439 /* '..' is not NULL terminated */
1440 { PR_2_DOT_DOT_NULL_TERM,
1441 N_("'..' @d @e in @d @i %i is not NULL terminated\n"),
1442 PROMPT_FIX, 0 },
1443
1444 /* Illegal character device inode */
1445 { PR_2_BAD_CHAR_DEV,
1446 N_("@i %i (%Q) is an @I character @v.\n"),
1447 PROMPT_CLEAR, 0 },
1448
1449 /* Illegal block device inode */
1450 { PR_2_BAD_BLOCK_DEV,
1451 N_("@i %i (%Q) is an @I @b @v.\n"),
1452 PROMPT_CLEAR, 0 },
1453
1454 /* Duplicate '.' entry */
1455 { PR_2_DUP_DOT,
1456 N_("@E is duplicate '.' @e.\n"),
1457 PROMPT_FIX, 0 },
1458
1459 /* Duplicate '..' entry */
1460 { PR_2_DUP_DOT_DOT,
1461 N_("@E is duplicate '..' @e.\n"),
1462 PROMPT_FIX, 0 },
1463
1464 /* Internal error: couldn't find dir_info */
1465 { PR_2_NO_DIRINFO,
1466 N_("Internal error: couldn't find dir_info for %i.\n"),
1467 PROMPT_NONE, PR_FATAL },
1468
1469 /* Final rec_len is wrong */
1470 { PR_2_FINAL_RECLEN,
1471 N_("@E has rec_len of %Dr, @s %N.\n"),
1472 PROMPT_FIX, 0 },
1473
1474 /* Error allocating icount structure */
1475 { PR_2_ALLOCATE_ICOUNT,
1476 N_("@A icount structure: %m\n"),
1477 PROMPT_NONE, PR_FATAL },
1478
1479 /* Error iterating over directory blocks */
1480 { PR_2_DBLIST_ITERATE,
1481 N_("Error iterating over @d @bs: %m\n"),
1482 PROMPT_NONE, PR_FATAL },
1483
1484 /* Error reading directory block */
1485 { PR_2_READ_DIRBLOCK,
1486 N_("Error reading @d @b %b (@i %i): %m\n"),
1487 PROMPT_CONTINUE, 0 },
1488
1489 /* Error writing directory block */
1490 { PR_2_WRITE_DIRBLOCK,
1491 N_("Error writing @d @b %b (@i %i): %m\n"),
1492 PROMPT_CONTINUE, 0 },
1493
1494 /* Error allocating new directory block */
1495 { PR_2_ALLOC_DIRBOCK,
1496 N_("@A new @d @b for @i %i (%s): %m\n"),
1497 PROMPT_NONE, 0 },
1498
1499 /* Error deallocating inode */
1500 { PR_2_DEALLOC_INODE,
1501 N_("Error deallocating @i %i: %m\n"),
1502 PROMPT_NONE, PR_FATAL },
1503
1504 /* Directory entry for '.' is big. Split? */
1505 { PR_2_SPLIT_DOT,
1506 N_("@d @e for '.' in %p (%i) is big.\n"),
1507 PROMPT_SPLIT, PR_NO_OK },
1508
1509 /* Illegal FIFO inode */
1510 { PR_2_BAD_FIFO,
1511 N_("@i %i (%Q) is an @I FIFO.\n"),
1512 PROMPT_CLEAR, 0 },
1513
1514 /* Illegal socket inode */
1515 { PR_2_BAD_SOCKET,
1516 N_("@i %i (%Q) is an @I socket.\n"),
1517 PROMPT_CLEAR, 0 },
1518
1519 /* Directory filetype not set */
1520 { PR_2_SET_FILETYPE,
1521 N_("Setting filetype for @E to %N.\n"),
1522 PROMPT_NONE, PR_PREEN_OK | PR_NO_OK | PR_NO_NOMSG },
1523
1524 /* Directory filetype incorrect */
1525 { PR_2_BAD_FILETYPE,
1526 N_("@E has an incorrect filetype (was %Dt, @s %N).\n"),
1527 PROMPT_FIX, 0 },
1528
1529 /* Directory filetype set on filesystem */
1530 { PR_2_CLEAR_FILETYPE,
1531 N_("@E has filetype set.\n"),
1532 PROMPT_CLEAR, PR_PREEN_OK },
1533
1534 /* Directory filename is null */
1535 { PR_2_NULL_NAME,
1536 N_("@E has a @z name.\n"),
1537 PROMPT_CLEAR, 0 },
1538
1539 /* Invalid symlink */
1540 { PR_2_INVALID_SYMLINK,
1541 N_("Symlink %Q (@i #%i) is @n.\n"),
1542 PROMPT_CLEAR, 0 },
1543
1544 /* i_file_acl (extended attribute block) is bad */
1545 { PR_2_FILE_ACL_BAD,
1546 N_("@a @b @F @n (%If).\n"),
1547 PROMPT_CLEAR, 0 },
1548
1549 /* Filesystem contains large files, but has no such flag in sb */
1550 { PR_2_FEATURE_LARGE_FILES,
1551 N_("@f contains large files, but lacks LARGE_FILE flag in @S.\n"),
1552 PROMPT_FIX, 0 },
1553
1554 /* Node in HTREE directory not referenced */
1555 { PR_2_HTREE_NOTREF,
1556 N_("@p @h %d: %B not referenced\n"),
1557 PROMPT_NONE, 0 },
1558
1559 /* Node in HTREE directory referenced twice */
1560 { PR_2_HTREE_DUPREF,
1561 N_("@p @h %d: %B referenced twice\n"),
1562 PROMPT_NONE, 0 },
1563
1564 /* Node in HTREE directory has bad min hash */
1565 { PR_2_HTREE_MIN_HASH,
1566 N_("@p @h %d: %B has bad min hash\n"),
1567 PROMPT_NONE, 0 },
1568
1569 /* Node in HTREE directory has bad max hash */
1570 { PR_2_HTREE_MAX_HASH,
1571 N_("@p @h %d: %B has bad max hash\n"),
1572 PROMPT_NONE, 0 },
1573
1574 /* Clear invalid HTREE directory */
1575 { PR_2_HTREE_CLEAR,
1576 N_("@n @h %d (%q). "), PROMPT_CLEAR_HTREE, 0 },
1577
1578 /* Bad block in htree interior node */
1579 { PR_2_HTREE_BADBLK,
1580 N_("@p @h %d (%q): bad @b number %b.\n"),
1581 PROMPT_CLEAR_HTREE, 0 },
1582
1583 /* Error adjusting EA refcount */
1584 { PR_2_ADJ_EA_REFCOUNT,
1585 N_("Error adjusting refcount for @a @b %b (@i %i): %m\n"),
1586 PROMPT_NONE, PR_FATAL },
1587
1588 /* Invalid HTREE root node */
1589 { PR_2_HTREE_BAD_ROOT,
1590 N_("@p @h %d: root node is @n\n"),
1591 PROMPT_CLEAR_HTREE, PR_PREEN_OK },
1592
1593 /* Invalid HTREE limit */
1594 { PR_2_HTREE_BAD_LIMIT,
1595 N_("@p @h %d: %B has @n limit (%N)\n"),
1596 PROMPT_CLEAR_HTREE, PR_PREEN_OK },
1597
1598 /* Invalid HTREE count */
1599 { PR_2_HTREE_BAD_COUNT,
1600 N_("@p @h %d: %B has @n count (%N)\n"),
1601 PROMPT_CLEAR_HTREE, PR_PREEN_OK },
1602
1603 /* HTREE interior node has out-of-order hashes in table */
1604 { PR_2_HTREE_HASH_ORDER,
1605 N_("@p @h %d: %B has an unordered hash table\n"),
1606 PROMPT_CLEAR_HTREE, PR_PREEN_OK },
1607
1608 /* Node in HTREE directory has invalid depth */
1609 { PR_2_HTREE_BAD_DEPTH,
1610 N_("@p @h %d: %B has @n depth (%N)\n"),
1611 PROMPT_NONE, 0 },
1612
1613 /* Duplicate directory entry found */
1614 { PR_2_DUPLICATE_DIRENT,
1615 N_("Duplicate @E found. "),
1616 PROMPT_CLEAR, 0 },
1617
1618 /* Non-unique filename found */
1619 { PR_2_NON_UNIQUE_FILE, /* xgettext: no-c-format */
1620 N_("@E has a non-unique filename.\nRename to %s"),
1621 PROMPT_NULL, 0 },
1622
1623 /* Duplicate directory entry found */
1624 { PR_2_REPORT_DUP_DIRENT,
1625 N_("Duplicate @e '%Dn' found.\n\tMarking %p (%i) to be rebuilt.\n\n"),
1626 PROMPT_NONE, 0 },
1627
1628 /* i_blocks_hi should be zero */
1629 { PR_2_BLOCKS_HI_ZERO,
1630 N_("i_blocks_hi @F %N, @s zero.\n"),
1631 PROMPT_CLEAR, 0 },
1632
1633 /* Unexpected HTREE block */
1634 { PR_2_UNEXPECTED_HTREE_BLOCK,
1635 N_("Unexpected @b in @h %d (%q).\n"), PROMPT_CLEAR_HTREE, 0 },
1636
1637 /* Inode found in group where _INODE_UNINIT is set */
1638 { PR_2_INOREF_BG_INO_UNINIT,
1639 N_("@E references @i %Di in @g %g where _INODE_UNINIT is set.\n"),
1640 PROMPT_FIX, PR_PREEN_OK },
1641
1642 /* Inode found in group unused inodes area */
1643 { PR_2_INOREF_IN_UNUSED,
1644 N_("@E references @i %Di found in @g %g's unused inodes area.\n"),
1645 PROMPT_FIX, PR_PREEN_OK },
1646
1647 /* i_blocks_hi should be zero */
1648 { PR_2_I_FILE_ACL_HI_ZERO,
1649 N_("i_file_acl_hi @F %N, @s zero.\n"),
1650 PROMPT_CLEAR, PR_PREEN_OK },
1651
1652 /* htree root node fails checksum */
1653 { PR_2_HTREE_ROOT_CSUM_INVALID,
1654 N_("@p @h %d: root node fails checksum.\n"),
1655 PROMPT_CLEAR_HTREE, PR_PREEN_OK },
1656
1657 /* htree internal node fails checksum */
1658 { PR_2_HTREE_NODE_CSUM_INVALID,
1659 N_("@p @h %d: internal node fails checksum.\n"),
1660 PROMPT_CLEAR_HTREE, PR_PREEN_OK },
1661
1662 /* leaf node has no checksum */
1663 { PR_2_LEAF_NODE_MISSING_CSUM,
1664 N_("@d @i %i, %B, offset %N: @d has no checksum.\n"),
1665 PROMPT_FIX, PR_PREEN_OK },
1666
1667 /* leaf node passes checks but fails checksum */
1668 { PR_2_LEAF_NODE_ONLY_CSUM_INVALID,
1669 N_("@d @i %i, %B: @d passes checks but fails checksum.\n"),
1670 PROMPT_FIX, PR_PREEN_OK },
1671
1672 /* inline directory inode size must be a multiple of 4 */
1673 { PR_2_BAD_INLINE_DIR_SIZE,
1674 N_("Inline @d @i %i size (%N) must be a multiple of 4.\n"),
1675 PROMPT_FIX, 0 },
1676
1677 /* fixing size of inline directory inode failed */
1678 { PR_2_FIX_INLINE_DIR_FAILED,
1679 N_("Fixing size of inline @d @i %i failed.\n"),
1680 PROMPT_TRUNCATE, 0 },
1681
1682 /* Encrypted directory entry is too short */
1683 { PR_2_BAD_ENCRYPTED_NAME,
1684 N_("Encrypted @E is too short.\n"),
1685 PROMPT_CLEAR, 0 },
1686
1687 /* Pass 3 errors */
1688
1689 /* Pass 3: Checking directory connectivity */
1690 { PR_3_PASS_HEADER,
1691 N_("Pass 3: Checking @d connectivity\n"),
1692 PROMPT_NONE, 0 },
1693
1694 /* Root inode not allocated */
1695 { PR_3_NO_ROOT_INODE,
1696 N_("@r not allocated. "),
1697 PROMPT_ALLOCATE, 0 },
1698
1699 /* No room in lost+found */
1700 { PR_3_EXPAND_LF_DIR,
1701 N_("No room in @l @d. "),
1702 PROMPT_EXPAND, 0 },
1703
1704 /* Unconnected directory inode */
1705 { PR_3_UNCONNECTED_DIR,
1706 N_("Unconnected @d @i %i (%p)\n"),
1707 PROMPT_CONNECT, 0 },
1708
1709 /* /lost+found not found */
1710 { PR_3_NO_LF_DIR,
1711 N_("/@l not found. "),
1712 PROMPT_CREATE, PR_PREEN_OK },
1713
1714 /* .. entry is incorrect */
1715 { PR_3_BAD_DOT_DOT,
1716 N_("'..' in %Q (%i) is %P (%j), @s %q (%d).\n"),
1717 PROMPT_FIX, 0 },
1718
1719 /* Bad or non-existent /lost+found. Cannot reconnect */
1720 { PR_3_NO_LPF,
1721 N_("Bad or non-existent /@l. Cannot reconnect.\n"),
1722 PROMPT_NONE, 0 },
1723
1724 /* Could not expand /lost+found */
1725 { PR_3_CANT_EXPAND_LPF,
1726 N_("Could not expand /@l: %m\n"),
1727 PROMPT_NONE, 0 },
1728
1729 /* Could not reconnect inode */
1730 { PR_3_CANT_RECONNECT,
1731 N_("Could not reconnect %i: %m\n"),
1732 PROMPT_NONE, 0 },
1733
1734 /* Error while trying to find /lost+found */
1735 { PR_3_ERR_FIND_LPF,
1736 N_("Error while trying to find /@l: %m\n"),
1737 PROMPT_NONE, 0 },
1738
1739 /* Error in ext2fs_new_block while creating /lost+found */
1740 { PR_3_ERR_LPF_NEW_BLOCK,
1741 N_("ext2fs_new_@b: %m while trying to create /@l @d\n"),
1742 PROMPT_NONE, 0 },
1743
1744 /* Error in ext2fs_new_inode while creating /lost+found */
1745 { PR_3_ERR_LPF_NEW_INODE,
1746 N_("ext2fs_new_@i: %m while trying to create /@l @d\n"),
1747 PROMPT_NONE, 0 },
1748
1749 /* Error in ext2fs_new_dir_block while creating /lost+found */
1750 { PR_3_ERR_LPF_NEW_DIR_BLOCK,
1751 N_("ext2fs_new_dir_@b: %m while creating new @d @b\n"),
1752 PROMPT_NONE, 0 },
1753
1754 /* Error while writing directory block for /lost+found */
1755 { PR_3_ERR_LPF_WRITE_BLOCK,
1756 N_("ext2fs_write_dir_@b: %m while writing the @d @b for /@l\n"),
1757 PROMPT_NONE, 0 },
1758
1759 /* Error while adjusting inode count */
1760 { PR_3_ADJUST_INODE,
1761 N_("Error while adjusting @i count on @i %i\n"),
1762 PROMPT_NONE, 0 },
1763
1764 /* Couldn't fix parent directory -- error */
1765 { PR_3_FIX_PARENT_ERR,
1766 N_("Couldn't fix parent of @i %i: %m\n\n"),
1767 PROMPT_NONE, 0 },
1768
1769 /* Couldn't fix parent directory -- couldn't find it */
1770 { PR_3_FIX_PARENT_NOFIND,
1771 N_("Couldn't fix parent of @i %i: Couldn't find parent @d @e\n\n"),
1772 PROMPT_NONE, 0 },
1773
1774 /* Error allocating inode bitmap */
1775 { PR_3_ALLOCATE_IBITMAP_ERROR,
1776 N_("@A @i @B (%N): %m\n"),
1777 PROMPT_NONE, PR_FATAL },
1778
1779 /* Error creating root directory */
1780 { PR_3_CREATE_ROOT_ERROR,
1781 N_("Error creating root @d (%s): %m\n"),
1782 PROMPT_NONE, PR_FATAL },
1783
1784 /* Error creating lost and found directory */
1785 { PR_3_CREATE_LPF_ERROR,
1786 N_("Error creating /@l @d (%s): %m\n"),
1787 PROMPT_NONE, 0 },
1788
1789 /* Root inode is not directory; aborting */
1790 { PR_3_ROOT_NOT_DIR_ABORT,
1791 N_("@r is not a @d; aborting.\n"),
1792 PROMPT_NONE, PR_FATAL },
1793
1794 /* Cannot proceed without a root inode. */
1795 { PR_3_NO_ROOT_INODE_ABORT,
1796 N_("Cannot proceed without a @r.\n"),
1797 PROMPT_NONE, PR_FATAL },
1798
1799 /* Internal error: couldn't find dir_info */
1800 { PR_3_NO_DIRINFO,
1801 N_("Internal error: couldn't find dir_info for %i.\n"),
1802 PROMPT_NONE, PR_FATAL },
1803
1804 /* Lost+found not a directory */
1805 { PR_3_LPF_NOTDIR,
1806 N_("/@l is not a @d (ino=%i)\n"),
1807 PROMPT_UNLINK, 0 },
1808
1809 /* Lost+found has inline data */
1810 { PR_3_LPF_INLINE_DATA,
1811 N_("/@l has inline data\n"),
1812 PROMPT_CLEAR, 0 },
1813
1814 /* Cannot allocate /lost+found. */
1815 { PR_3_LPF_NO_SPACE,
1816 N_("Cannot allocate space for /@l.\nPlace lost files in root directory instead"),
1817 PROMPT_NULL, 0 },
1818
1819 /* Delete some files and re-run e2fsck. */
1820 { PR_3_NO_SPACE_TO_RECOVER,
1821 N_("Insufficient space to recover lost files!\nMove data off the @f and re-run e2fsck.\n\n"),
1822 PROMPT_NONE, 0 },
1823
1824 /* Lost+found is encrypted */
1825 { PR_3_LPF_ENCRYPTED,
1826 N_("/@l is encrypted\n"),
1827 PROMPT_CLEAR, 0 },
1828
1829 /* Pass 3A Directory Optimization */
1830
1831 /* Pass 3A: Optimizing directories */
1832 { PR_3A_PASS_HEADER,
1833 N_("Pass 3A: Optimizing directories\n"),
1834 PROMPT_NONE, PR_PREEN_NOMSG },
1835
1836 /* Error iterating over directories */
1837 { PR_3A_OPTIMIZE_ITER,
1838 N_("Failed to create dirs_to_hash iterator: %m\n"),
1839 PROMPT_NONE, 0 },
1840
1841 /* Error rehash directory */
1842 { PR_3A_OPTIMIZE_DIR_ERR,
1843 N_("Failed to optimize directory %q (%d): %m\n"),
1844 PROMPT_NONE, 0 },
1845
1846 /* Rehashing dir header */
1847 { PR_3A_OPTIMIZE_DIR_HEADER,
1848 N_("Optimizing directories: "),
1849 PROMPT_NONE, PR_MSG_ONLY },
1850
1851 /* Rehashing directory %d */
1852 { PR_3A_OPTIMIZE_DIR,
1853 " %d",
1854 PROMPT_NONE, PR_LATCH_OPTIMIZE_DIR | PR_PREEN_NOHDR},
1855
1856 /* Rehashing dir end */
1857 { PR_3A_OPTIMIZE_DIR_END,
1858 "\n",
1859 PROMPT_NONE, PR_PREEN_NOHDR },
1860
1861 /* Pass 4 errors */
1862
1863 /* Pass 4: Checking reference counts */
1864 { PR_4_PASS_HEADER,
1865 N_("Pass 4: Checking reference counts\n"),
1866 PROMPT_NONE, 0 },
1867
1868 /* Unattached zero-length inode */
1869 { PR_4_ZERO_LEN_INODE,
1870 N_("@u @z @i %i. "),
1871 PROMPT_CLEAR, PR_PREEN_OK|PR_NO_OK },
1872
1873 /* Unattached inode */
1874 { PR_4_UNATTACHED_INODE,
1875 N_("@u @i %i\n"),
1876 PROMPT_CONNECT, 0 },
1877
1878 /* Inode ref count wrong */
1879 { PR_4_BAD_REF_COUNT,
1880 N_("@i %i ref count is %Il, @s %N. "),
1881 PROMPT_FIX, PR_PREEN_OK },
1882
1883 { PR_4_INCONSISTENT_COUNT,
1884 N_("WARNING: PROGRAMMING BUG IN E2FSCK!\n"
1885 "\tOR SOME BONEHEAD (YOU) IS CHECKING A MOUNTED (LIVE) FILESYSTEM.\n"
1886 "@i_link_info[%i] is %N, @i.i_links_count is %Il. "
1887 "They @s the same!\n"),
1888 PROMPT_NONE, 0 },
1889
1890 { PR_4_EA_INODE_REF_COUNT,
1891 N_("@a @i %i ref count is %N, @s %n. "),
1892 PROMPT_FIX, PR_PREEN_OK },
1893
1894 /* directory exceeds max links, but no DIR_NLINK feature in superblock*/
1895 { PR_4_DIR_NLINK_FEATURE,
1896 N_("@d exceeds max links, but no DIR_NLINK feature in @S.\n"),
1897 PROMPT_FIX, 0 },
1898
1899 /* Pass 5 errors */
1900
1901 /* Pass 5: Checking group summary information */
1902 { PR_5_PASS_HEADER,
1903 N_("Pass 5: Checking @g summary information\n"),
1904 PROMPT_NONE, 0 },
1905
1906 /* Padding at end of inode bitmap is not set. */
1907 { PR_5_INODE_BMAP_PADDING,
1908 N_("Padding at end of @i @B is not set. "),
1909 PROMPT_FIX, PR_PREEN_OK },
1910
1911 /* Padding at end of block bitmap is not set. */
1912 { PR_5_BLOCK_BMAP_PADDING,
1913 N_("Padding at end of @b @B is not set. "),
1914 PROMPT_FIX, PR_PREEN_OK },
1915
1916 /* Block bitmap differences header */
1917 { PR_5_BLOCK_BITMAP_HEADER,
1918 N_("@b @B differences: "),
1919 PROMPT_NONE, PR_PREEN_OK | PR_PREEN_NOMSG},
1920
1921 /* Block not used, but marked in bitmap */
1922 { PR_5_BLOCK_UNUSED,
1923 " -%b",
1924 PROMPT_NONE, PR_LATCH_BBITMAP | PR_PREEN_OK | PR_PREEN_NOMSG },
1925
1926 /* Block used, but not marked used in bitmap */
1927 { PR_5_BLOCK_USED,
1928 " +%b",
1929 PROMPT_NONE, PR_LATCH_BBITMAP | PR_PREEN_OK | PR_PREEN_NOMSG },
1930
1931 /* Block bitmap differences end */
1932 { PR_5_BLOCK_BITMAP_END,
1933 "\n",
1934 PROMPT_FIX, PR_PREEN_OK | PR_PREEN_NOMSG },
1935
1936 /* Inode bitmap differences header */
1937 { PR_5_INODE_BITMAP_HEADER,
1938 N_("@i @B differences: "),
1939 PROMPT_NONE, PR_PREEN_OK | PR_PREEN_NOMSG },
1940
1941 /* Inode not used, but marked in bitmap */
1942 { PR_5_INODE_UNUSED,
1943 " -%i",
1944 PROMPT_NONE, PR_LATCH_IBITMAP | PR_PREEN_OK | PR_PREEN_NOMSG },
1945
1946 /* Inode used, but not marked used in bitmap */
1947 { PR_5_INODE_USED,
1948 " +%i",
1949 PROMPT_NONE, PR_LATCH_IBITMAP | PR_PREEN_OK | PR_PREEN_NOMSG },
1950
1951 /* Inode bitmap differences end */
1952 { PR_5_INODE_BITMAP_END,
1953 "\n",
1954 PROMPT_FIX, PR_PREEN_OK | PR_PREEN_NOMSG },
1955
1956 /* Free inodes count for group wrong */
1957 { PR_5_FREE_INODE_COUNT_GROUP,
1958 N_("Free @is count wrong for @g #%g (%i, counted=%j).\n"),
1959 PROMPT_FIX, PR_PREEN_OK | PR_PREEN_NOMSG },
1960
1961 /* Directories count for group wrong */
1962 { PR_5_FREE_DIR_COUNT_GROUP,
1963 N_("Directories count wrong for @g #%g (%i, counted=%j).\n"),
1964 PROMPT_FIX, PR_PREEN_OK | PR_PREEN_NOMSG },
1965
1966 /* Free inodes count wrong */
1967 { PR_5_FREE_INODE_COUNT,
1968 N_("Free @is count wrong (%i, counted=%j).\n"),
1969 PROMPT_FIX, PR_PREEN_OK | PR_NO_OK | PR_PREEN_NOMSG },
1970
1971 /* Free blocks count for group wrong */
1972 { PR_5_FREE_BLOCK_COUNT_GROUP,
1973 N_("Free @bs count wrong for @g #%g (%b, counted=%c).\n"),
1974 PROMPT_FIX, PR_PREEN_OK | PR_PREEN_NOMSG },
1975
1976 /* Free blocks count wrong */
1977 { PR_5_FREE_BLOCK_COUNT,
1978 N_("Free @bs count wrong (%b, counted=%c).\n"),
1979 PROMPT_FIX, PR_PREEN_OK | PR_NO_OK | PR_PREEN_NOMSG },
1980
1981 /* Programming error: bitmap endpoints don't match */
1982 { PR_5_BMAP_ENDPOINTS,
1983 N_("PROGRAMMING ERROR: @f (#%N) @B endpoints (%b, %c) don't "
1984 "match calculated @B endpoints (%i, %j)\n"),
1985 PROMPT_NONE, PR_FATAL },
1986
1987 /* Internal error: fudging end of bitmap */
1988 { PR_5_FUDGE_BITMAP_ERROR,
1989 N_("Internal error: fudging end of bitmap (%N)\n"),
1990 PROMPT_NONE, PR_FATAL },
1991
1992 /* Error copying in replacement inode bitmap */
1993 { PR_5_COPY_IBITMAP_ERROR,
1994 N_("Error copying in replacement @i @B: %m\n"),
1995 PROMPT_NONE, PR_FATAL },
1996
1997 /* Error copying in replacement block bitmap */
1998 { PR_5_COPY_BBITMAP_ERROR,
1999 N_("Error copying in replacement @b @B: %m\n"),
2000 PROMPT_NONE, PR_FATAL },
2001
2002 /* Block range not used, but marked in bitmap */
2003 { PR_5_BLOCK_RANGE_UNUSED,
2004 " -(%b--%c)",
2005 PROMPT_NONE, PR_LATCH_BBITMAP | PR_PREEN_OK | PR_PREEN_NOMSG },
2006
2007 /* Block range used, but not marked used in bitmap */
2008 { PR_5_BLOCK_RANGE_USED,
2009 " +(%b--%c)",
2010 PROMPT_NONE, PR_LATCH_BBITMAP | PR_PREEN_OK | PR_PREEN_NOMSG },
2011
2012 /* Inode range not used, but marked in bitmap */
2013 { PR_5_INODE_RANGE_UNUSED,
2014 " -(%i--%j)",
2015 PROMPT_NONE, PR_LATCH_IBITMAP | PR_PREEN_OK | PR_PREEN_NOMSG },
2016
2017 /* Inode range used, but not marked used in bitmap */
2018 { PR_5_INODE_RANGE_USED,
2019 " +(%i--%j)",
2020 PROMPT_NONE, PR_LATCH_IBITMAP | PR_PREEN_OK | PR_PREEN_NOMSG },
2021
2022 /* Group N block(s) in use but group is marked BLOCK_UNINIT */
2023 { PR_5_BLOCK_UNINIT,
2024 N_("@g %g @b(s) in use but @g is marked BLOCK_UNINIT\n"),
2025 PROMPT_FIX, PR_PREEN_OK },
2026
2027 /* Group N inode(s) in use but group is marked INODE_UNINIT */
2028 { PR_5_INODE_UNINIT,
2029 N_("@g %g @i(s) in use but @g is marked INODE_UNINIT\n"),
2030 PROMPT_FIX, PR_PREEN_OK },
2031
2032 /* Group N inode bitmap does not match checksum */
2033 { PR_5_INODE_BITMAP_CSUM_INVALID,
2034 N_("@g %g @i @B does not match checksum.\n"),
2035 PROMPT_FIX, PR_LATCH_IBITMAP | PR_PREEN_OK },
2036
2037 /* Group N block bitmap does not match checksum */
2038 { PR_5_BLOCK_BITMAP_CSUM_INVALID,
2039 N_("@g %g @b @B does not match checksum.\n"),
2040 PROMPT_FIX, PR_LATCH_BBITMAP | PR_PREEN_OK },
2041
2042 /* Post-Pass 5 errors */
2043
2044 /* Recreate journal if E2F_FLAG_JOURNAL_INODE flag is set */
2045 { PR_6_RECREATE_JOURNAL,
2046 N_("Recreate @j"),
2047 PROMPT_NULL, PR_PREEN_OK | PR_NO_OK },
2048
2049 /* Update quota information if it is inconsistent */
2050 { PR_6_UPDATE_QUOTAS,
2051 N_("Update quota info for quota type %N"),
2052 PROMPT_NULL, PR_PREEN_OK },
2053
2054 /* Error setting block group checksum info */
2055 { PR_6_SET_BG_CHECKSUM,
2056 N_("Error setting @b @g checksum info: %m\n"),
2057 PROMPT_NULL, PR_FATAL },
2058
2059 /* Error writing file system info */
2060 { PR_6_FLUSH_FILESYSTEM,
2061 N_("Error writing file system info: %m\n"),
2062 PROMPT_NULL, PR_FATAL },
2063
2064 /* Error flushing writes to storage device */
2065 { PR_6_IO_FLUSH,
2066 N_("Error flushing writes to storage device: %m\n"),
2067 PROMPT_NULL, PR_FATAL },
2068
2069 /* Error writing quota information */
2070 { PR_6_WRITE_QUOTAS,
2071 N_("Error writing quota info for quota type %N: %m\n"),
2072 PROMPT_NULL, 0 },
2073
2074 { 0 }
2075 };
2076
2077 /*
2078 * This is the latch flags register. It allows several problems to be
2079 * "latched" together. This means that the user has to answer but one
2080 * question for the set of problems, and all of the associated
2081 * problems will be either fixed or not fixed.
2082 */
2083 static struct latch_descr pr_latch_info[] = {
2084 { PR_LATCH_BLOCK, PR_1_INODE_BLOCK_LATCH, 0 },
2085 { PR_LATCH_BBLOCK, PR_1_INODE_BBLOCK_LATCH, 0 },
2086 { PR_LATCH_IBITMAP, PR_5_INODE_BITMAP_HEADER, PR_5_INODE_BITMAP_END },
2087 { PR_LATCH_BBITMAP, PR_5_BLOCK_BITMAP_HEADER, PR_5_BLOCK_BITMAP_END },
2088 { PR_LATCH_RELOC, PR_0_RELOCATE_HINT, 0 },
2089 { PR_LATCH_DBLOCK, PR_1B_DUP_BLOCK_HEADER, PR_1B_DUP_BLOCK_END },
2090 { PR_LATCH_LOW_DTIME, PR_1_ORPHAN_LIST_REFUGEES, 0 },
2091 { PR_LATCH_TOOBIG, PR_1_INODE_TOOBIG, 0 },
2092 { PR_LATCH_OPTIMIZE_DIR, PR_3A_OPTIMIZE_DIR_HEADER, PR_3A_OPTIMIZE_DIR_END },
2093 { PR_LATCH_BG_CHECKSUM, PR_0_GDT_CSUM_LATCH, 0 },
2094 { PR_LATCH_OPTIMIZE_EXT, PR_1E_OPTIMIZE_EXT_HEADER, PR_1E_OPTIMIZE_EXT_END },
2095 { -1, 0, 0 },
2096 };
2097 #if __GNUC_PREREQ (4, 6)
2098 #pragma GCC diagnostic pop
2099 #endif
2100
2101 static struct e2fsck_problem *find_problem(problem_t code)
2102 {
2103 int i;
2104
2105 for (i=0; problem_table[i].e2p_code; i++) {
2106 if (problem_table[i].e2p_code == code)
2107 return &problem_table[i];
2108 }
2109 return 0;
2110 }
2111
2112 static struct latch_descr *find_latch(int code)
2113 {
2114 int i;
2115
2116 for (i=0; pr_latch_info[i].latch_code >= 0; i++) {
2117 if (pr_latch_info[i].latch_code == code)
2118 return &pr_latch_info[i];
2119 }
2120 return 0;
2121 }
2122
2123 int end_problem_latch(e2fsck_t ctx, int mask)
2124 {
2125 struct latch_descr *ldesc;
2126 struct problem_context pctx;
2127 int answer = -1;
2128
2129 ldesc = find_latch(mask);
2130 if (ldesc->end_message && (ldesc->flags & PRL_LATCHED)) {
2131 clear_problem_context(&pctx);
2132 answer = fix_problem(ctx, ldesc->end_message, &pctx);
2133 }
2134 ldesc->flags &= ~(PRL_VARIABLE);
2135 return answer;
2136 }
2137
2138 int set_latch_flags(int mask, int setflags, int clearflags)
2139 {
2140 struct latch_descr *ldesc;
2141
2142 ldesc = find_latch(mask);
2143 if (!ldesc)
2144 return -1;
2145 ldesc->flags |= setflags;
2146 ldesc->flags &= ~clearflags;
2147 return 0;
2148 }
2149
2150 int get_latch_flags(int mask, int *value)
2151 {
2152 struct latch_descr *ldesc;
2153
2154 ldesc = find_latch(mask);
2155 if (!ldesc)
2156 return -1;
2157 *value = ldesc->flags;
2158 return 0;
2159 }
2160
2161 void clear_problem_context(struct problem_context *ctx)
2162 {
2163 memset(ctx, 0, sizeof(struct problem_context));
2164 ctx->blkcount = -1;
2165 ctx->group = -1;
2166 }
2167
2168 static void reconfigure_bool(e2fsck_t ctx, struct e2fsck_problem *ptr,
2169 const char *key, int mask, const char *name)
2170 {
2171 int val;
2172
2173 val = (ptr->flags & mask);
2174 profile_get_boolean(ctx->profile, "problems", key, name, val, &val);
2175 if (val)
2176 ptr->flags |= mask;
2177 else
2178 ptr->flags &= ~mask;
2179 }
2180
2181
2182 int fix_problem(e2fsck_t ctx, problem_t code, struct problem_context *pctx)
2183 {
2184 ext2_filsys fs = ctx->fs;
2185 struct e2fsck_problem *ptr;
2186 struct latch_descr *ldesc = 0;
2187 const char *message;
2188 int def_yn, answer, ans;
2189 int print_answer = 0;
2190 int suppress = 0;
2191
2192 ptr = find_problem(code);
2193 if (!ptr) {
2194 printf(_("Unhandled error code (0x%x)!\n"), code);
2195 return 0;
2196 }
2197 if (!(ptr->flags & PR_CONFIG)) {
2198 char key[9], *new_desc = NULL;
2199
2200 sprintf(key, "0x%06x", code);
2201
2202 profile_get_string(ctx->profile, "problems", key,
2203 "description", 0, &new_desc);
2204 if (new_desc)
2205 ptr->e2p_description = new_desc;
2206
2207 reconfigure_bool(ctx, ptr, key, PR_PREEN_OK, "preen_ok");
2208 reconfigure_bool(ctx, ptr, key, PR_NO_OK, "no_ok");
2209 reconfigure_bool(ctx, ptr, key, PR_NO_DEFAULT, "no_default");
2210 reconfigure_bool(ctx, ptr, key, PR_MSG_ONLY, "print_message_only");
2211 reconfigure_bool(ctx, ptr, key, PR_PREEN_NOMSG, "preen_nomessage");
2212 reconfigure_bool(ctx, ptr, key, PR_NOCOLLATE, "no_collate");
2213 reconfigure_bool(ctx, ptr, key, PR_NO_NOMSG, "no_nomsg");
2214 reconfigure_bool(ctx, ptr, key, PR_PREEN_NOHDR, "preen_noheader");
2215 reconfigure_bool(ctx, ptr, key, PR_FORCE_NO, "force_no");
2216 reconfigure_bool(ctx, ptr, key, PR_NOT_A_FIX, "not_a_fix");
2217 profile_get_integer(ctx->profile, "options",
2218 "max_count_problems", 0, 0,
2219 &ptr->max_count);
2220 profile_get_integer(ctx->profile, "problems", key, "max_count",
2221 ptr->max_count, &ptr->max_count);
2222
2223 ptr->flags |= PR_CONFIG;
2224 }
2225 def_yn = 1;
2226 ptr->count++;
2227 if ((ptr->flags & PR_NO_DEFAULT) ||
2228 ((ptr->flags & PR_PREEN_NO) && (ctx->options & E2F_OPT_PREEN)) ||
2229 (ctx->options & E2F_OPT_NO))
2230 def_yn= 0;
2231
2232 /*
2233 * Do special latch processing. This is where we ask the
2234 * latch question, if it exists
2235 */
2236 if (ptr->flags & PR_LATCH_MASK) {
2237 ldesc = find_latch(ptr->flags & PR_LATCH_MASK);
2238 if (ldesc->question && !(ldesc->flags & PRL_LATCHED)) {
2239 ans = fix_problem(ctx, ldesc->question, pctx);
2240 if (ans == 1)
2241 ldesc->flags |= PRL_YES;
2242 if (ans == 0)
2243 ldesc->flags |= PRL_NO;
2244 ldesc->flags |= PRL_LATCHED;
2245 }
2246 if (ldesc->flags & PRL_SUPPRESS)
2247 suppress++;
2248 }
2249 if ((ptr->flags & PR_PREEN_NOMSG) &&
2250 (ctx->options & E2F_OPT_PREEN))
2251 suppress++;
2252 if ((ptr->flags & PR_NO_NOMSG) &&
2253 ((ctx->options & E2F_OPT_NO) || (ptr->flags & PR_FORCE_NO)))
2254 suppress++;
2255 if (ptr->max_count && (ptr->count > ptr->max_count)) {
2256 if (ctx->options & (E2F_OPT_NO | E2F_OPT_YES))
2257 suppress++;
2258 if ((ctx->options & E2F_OPT_PREEN) &&
2259 (ptr->flags & PR_PREEN_OK))
2260 suppress++;
2261 if ((ptr->flags & PR_LATCH_MASK) &&
2262 (ldesc->flags & (PRL_YES | PRL_NO)))
2263 suppress++;
2264 if (ptr->count == ptr->max_count + 1) {
2265 printf("...problem 0x%06x suppressed\n",
2266 ptr->e2p_code);
2267 fflush(stdout);
2268 }
2269 }
2270 message = ptr->e2p_description;
2271 if (*message)
2272 message = _(message);
2273 if (!suppress) {
2274 if ((ctx->options & E2F_OPT_PREEN) &&
2275 !(ptr->flags & PR_PREEN_NOHDR)) {
2276 printf("%s: ", ctx->device_name ?
2277 ctx->device_name : ctx->filesystem_name);
2278 }
2279 if (*message)
2280 print_e2fsck_message(stdout, ctx, message, pctx, 1, 0);
2281 }
2282 if (ctx->logf && message)
2283 print_e2fsck_message(ctx->logf, ctx, message, pctx, 1, 0);
2284 if (!(ptr->flags & PR_PREEN_OK) && (ptr->prompt != PROMPT_NONE))
2285 preenhalt(ctx);
2286
2287 if (ptr->flags & PR_FATAL)
2288 fatal_error(ctx, 0);
2289
2290 if (ptr->prompt == PROMPT_NONE) {
2291 if (ptr->flags & PR_NOCOLLATE)
2292 answer = -1;
2293 else
2294 answer = def_yn;
2295 } else {
2296 if (ptr->flags & PR_FORCE_NO) {
2297 answer = 0;
2298 print_answer = 1;
2299 } else if (ctx->options & E2F_OPT_PREEN) {
2300 answer = def_yn;
2301 if (!(ptr->flags & PR_PREEN_NOMSG))
2302 print_answer = 1;
2303 } else if ((ptr->flags & PR_LATCH_MASK) &&
2304 (ldesc->flags & (PRL_YES | PRL_NO))) {
2305 print_answer = 1;
2306 if (ldesc->flags & PRL_YES)
2307 answer = 1;
2308 else
2309 answer = 0;
2310 } else
2311 answer = ask(ctx, (ptr->prompt == PROMPT_NULL) ? "" :
2312 _(prompt[(int) ptr->prompt]), def_yn);
2313 if (!answer && !(ptr->flags & PR_NO_OK))
2314 ext2fs_unmark_valid(fs);
2315
2316 if (print_answer) {
2317 if (!suppress)
2318 printf("%s.\n", answer ?
2319 _(preen_msg[(int) ptr->prompt]) :
2320 _("IGNORED"));
2321 if (ctx->logf)
2322 fprintf(ctx->logf, "%s.\n", answer ?
2323 _(preen_msg[(int) ptr->prompt]) :
2324 _("IGNORED"));
2325 }
2326 }
2327
2328 if ((ptr->prompt == PROMPT_ABORT) && answer)
2329 fatal_error(ctx, 0);
2330
2331 if (ptr->flags & PR_AFTER_CODE)
2332 answer = fix_problem(ctx, ptr->second_code, pctx);
2333
2334 if (answer && (ptr->prompt != PROMPT_NONE) &&
2335 !(ptr->flags & PR_NOT_A_FIX))
2336 ctx->flags |= E2F_FLAG_PROBLEMS_FIXED;
2337
2338 return answer;
2339 }
2340
2341 #ifdef UNITTEST
2342
2343 #include <stdlib.h>
2344 #include <stdio.h>
2345
2346 errcode_t
2347 profile_get_boolean(profile_t profile, const char *name, const char *subname,
2348 const char *subsubname, int def_val, int *ret_boolean)
2349 {
2350 return 0;
2351 }
2352
2353 errcode_t
2354 profile_get_integer(profile_t profile, const char *name, const char *subname,
2355 const char *subsubname, int def_val, int *ret_int)
2356 {
2357 return 0;
2358 }
2359
2360 void print_e2fsck_message(FILE *f, e2fsck_t ctx, const char *msg,
2361 struct problem_context *pctx, int first,
2362 int recurse)
2363 {
2364 return;
2365 }
2366
2367 void fatal_error(e2fsck_t ctx, const char *msg)
2368 {
2369 return;
2370 }
2371
2372 void preenhalt(e2fsck_t ctx)
2373 {
2374 return;
2375 }
2376
2377 errcode_t
2378 profile_get_string(profile_t profile, const char *name, const char *subname,
2379 const char *subsubname, const char *def_val,
2380 char **ret_string)
2381 {
2382 return 0;
2383 }
2384
2385 int ask (e2fsck_t ctx, const char * string, int def)
2386 {
2387 return 0;
2388 }
2389
2390 int verify_problem_table(e2fsck_t ctx)
2391 {
2392 struct e2fsck_problem *curr, *prev = NULL;
2393 int rc = 0;
2394
2395 for (prev = NULL, curr = problem_table; curr->e2p_code; prev = curr++) {
2396 if (prev == NULL)
2397 continue;
2398
2399 if (curr->e2p_code > prev->e2p_code)
2400 continue;
2401
2402 if (curr->e2p_code == prev->e2p_code)
2403 fprintf(stderr, "*** Duplicate in problem table:\n");
2404 else
2405 fprintf(stderr, "*** Unordered problem table:\n");
2406
2407 fprintf(stderr, "curr code = 0x%08x: %s\n",
2408 curr->e2p_code, curr->e2p_description);
2409 fprintf(stderr, "*** prev code = 0x%08x: %s\n",
2410 prev->e2p_code, prev->e2p_description);
2411
2412 fprintf(stderr, "*** This is a %sprogramming error in e2fsck\n",
2413 (curr->e2p_code == prev->e2p_code) ? "fatal " : "");
2414
2415 rc = 1;
2416 }
2417
2418 return rc;
2419 }
2420
2421 int main(int argc, char *argv[])
2422 {
2423 e2fsck_t ctx;
2424 int rc;
2425
2426 memset(&ctx, 0, sizeof(ctx)); /* just to quiet compiler */
2427 rc = verify_problem_table(ctx);
2428 if (rc == 0)
2429 printf("e2fsck problem table verified\n");
2430
2431 return rc;
2432 }
2433 #endif /* UNITTEST */