blob: 6766e01982a38df3ce25860889a4d74954d149ba [file] [log] [blame]
Theodore Ts'o21c84b71997-04-29 16:15:03 +00001/*
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 <stdlib.h>
13#include <unistd.h>
14#include <string.h>
15#include <ctype.h>
16#include <termios.h>
17
18#include "e2fsck.h"
19
20#include "problem.h"
Theodore Ts'of8188ff1997-11-14 05:23:04 +000021#include "problemP.h"
Theodore Ts'o21c84b71997-04-29 16:15:03 +000022
Theodore Ts'o1b6bf171997-10-03 17:48:10 +000023#define PROMPT_NONE 0
24#define PROMPT_FIX 1
25#define PROMPT_CLEAR 2
26#define PROMPT_RELOCATE 3
27#define PROMPT_ALLOCATE 4
28#define PROMPT_EXPAND 5
29#define PROMPT_CONNECT 6
30#define PROMPT_CREATE 7
31#define PROMPT_SALVAGE 8
32#define PROMPT_TRUNCATE 9
33#define PROMPT_CLEAR_INODE 10
34#define PROMPT_ABORT 11
35#define PROMPT_SPLIT 12
36#define PROMPT_CONTINUE 13
37#define PROMPT_CLONE 14
38#define PROMPT_DELETE 15
Theodore Ts'of8188ff1997-11-14 05:23:04 +000039#define PROMPT_SUPPRESS 16
Theodore Ts'o4a9f5931999-03-16 19:32:52 +000040#define PROMPT_UNLINK 17
Theodore Ts'o21c84b71997-04-29 16:15:03 +000041
42/*
43 * These are the prompts which are used to ask the user if they want
44 * to fix a problem.
45 */
46static const char *prompt[] = {
Theodore Ts'o0c4a0722000-02-07 03:11:03 +000047 N_("(no prompt)"), /* 0 */
48 N_("Fix"), /* 1 */
49 N_("Clear"), /* 2 */
50 N_("Relocate"), /* 3 */
51 N_("Allocate"), /* 4 */
52 N_("Expand"), /* 5 */
53 N_("Connect to /lost+found"), /* 6 */
54 N_("Create"), /* 7 */
55 N_("Salvage"), /* 8 */
56 N_("Truncate"), /* 9 */
57 N_("Clear inode"), /* 10 */
58 N_("Abort"), /* 11 */
59 N_("Split"), /* 12 */
60 N_("Continue"), /* 13 */
61 N_("Clone duplicate/bad blocks"), /* 14 */
62 N_("Delete file"), /* 15 */
63 N_("Suppress messages"),/* 16 */
64 N_("Unlink"), /* 17 */
Theodore Ts'o1b6bf171997-10-03 17:48:10 +000065};
Theodore Ts'o21c84b71997-04-29 16:15:03 +000066
67/*
68 * These messages are printed when we are preen mode and we will be
69 * automatically fixing the problem.
70 */
71static const char *preen_msg[] = {
Theodore Ts'o0c4a0722000-02-07 03:11:03 +000072 N_("(NONE)"), /* 0 */
73 N_("FIXED"), /* 1 */
74 N_("CLEARED"), /* 2 */
75 N_("RELOCATED"), /* 3 */
76 N_("ALLOCATED"), /* 4 */
77 N_("EXPANDED"), /* 5 */
78 N_("RECONNECTED"), /* 6 */
79 N_("CREATED"), /* 7 */
80 N_("SALVAGED"), /* 8 */
81 N_("TRUNCATED"), /* 9 */
82 N_("INODE CLEARED"), /* 10 */
83 N_("ABORTED"), /* 11 */
84 N_("SPLIT"), /* 12 */
85 N_("CONTINUING"), /* 13 */
86 N_("DUPLICATE/BAD BLOCKS CLONED"), /* 14 */
87 N_("FILE DELETED"), /* 15 */
88 N_("SUPPRESSED"), /* 16 */
89 N_("UNLINKED"), /* 17 */
Theodore Ts'o21c84b71997-04-29 16:15:03 +000090};
91
Theodore Ts'o1b6bf171997-10-03 17:48:10 +000092static const struct e2fsck_problem problem_table[] = {
Theodore Ts'o21c84b71997-04-29 16:15:03 +000093
94 /* Pre-Pass 1 errors */
95
96 /* Block bitmap not in group */
Theodore Ts'o0c4a0722000-02-07 03:11:03 +000097 { PR_0_BB_NOT_GROUP, N_("@b @B for @g %g is not in @g. (@b %b)\n"),
Theodore Ts'o1b6bf171997-10-03 17:48:10 +000098 PROMPT_RELOCATE, PR_LATCH_RELOC },
Theodore Ts'o21c84b71997-04-29 16:15:03 +000099
100 /* Inode bitmap not in group */
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000101 { PR_0_IB_NOT_GROUP, N_("@i @B for @g %g is not in @g. (@b %b)\n"),
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000102 PROMPT_RELOCATE, PR_LATCH_RELOC },
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000103
104 /* Inode table not in group */
105 { PR_0_ITABLE_NOT_GROUP,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000106 N_("@i table for @g %g is not in @g. (@b %b)\n"
107 "WARNING: SEVERE DATA LOSS POSSIBLE.\n"),
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000108 PROMPT_RELOCATE, PR_LATCH_RELOC },
109
110 /* Superblock corrupt */
111 { PR_0_SB_CORRUPT,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000112 N_("\nThe @S could not be read or does not describe a correct ext2\n"
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000113 "@f. If the device is valid and it really contains an ext2\n"
114 "@f (and not swap or ufs or something else), then the @S\n"
115 "is corrupt, and you might try running e2fsck with an alternate @S:\n"
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000116 " e2fsck -b %S <device>\n\n"),
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000117 PROMPT_NONE, PR_FATAL },
118
119 /* Filesystem size is wrong */
120 { PR_0_FS_SIZE_WRONG,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000121 N_("The @f size (according to the @S) is %b @bs\n"
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000122 "The physical size of the device is %c @bs\n"
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000123 "Either the @S or the partition table is likely to be corrupt!\n"),
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000124 PROMPT_ABORT, 0 },
125
126 /* Fragments not supported */
127 { PR_0_NO_FRAGMENTS,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000128 N_("@S @b_size = %b, fragsize = %c.\n"
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000129 "This version of e2fsck does not support fragment sizes different\n"
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000130 "from the @b size.\n"),
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000131 PROMPT_NONE, PR_FATAL },
132
133 /* Bad blocks_per_group */
134 { PR_0_BLOCKS_PER_GROUP,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000135 N_("@S @bs_per_group = %b, should have been %c\n"),
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000136 PROMPT_NONE, PR_AFTER_CODE, PR_0_SB_CORRUPT },
137
138 /* Bad first_data_block */
139 { PR_0_FIRST_DATA_BLOCK,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000140 N_("@S first_data_@b = %b, should have been %c\n"),
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000141 PROMPT_NONE, PR_AFTER_CODE, PR_0_SB_CORRUPT },
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000142
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000143 /* Adding UUID to filesystem */
144 { PR_0_ADD_UUID,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000145 N_("@f did not have a UUID; generating one.\n\n"),
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000146 PROMPT_NONE, 0 },
147
148 /* Relocate hint */
149 { PR_0_RELOCATE_HINT,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000150 N_("Note: if there is several inode or block bitmap blocks\n"
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000151 "which require relocation, or one part of the inode table\n"
152 "which must be moved, you may wish to try running e2fsck\n"
153 "with the '-b %S' option first. The problem may lie only\n"
154 "with the primary block group descriptor, and the backup\n"
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000155 "block group descriptor may be OK.\n\n"),
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000156 PROMPT_NONE, PR_PREEN_OK | PR_NOCOLLATE },
157
158 /* Miscellaneous superblock corruption */
159 { PR_0_MISC_CORRUPT_SUPER,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000160 N_("Corruption found in @S. (%s = %N).\n"),
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000161 PROMPT_NONE, PR_AFTER_CODE, PR_0_SB_CORRUPT },
162
163 /* Error determing physical device size of filesystem */
164 { PR_0_GETSIZE_ERROR,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000165 N_("Error determining size of the physical device: %m\n"),
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000166 PROMPT_NONE, PR_FATAL },
Theodore Ts'od4b0ce01999-06-18 01:09:29 +0000167
168 /* Inode count in superblock is incorrect */
169 { PR_0_INODE_COUNT_WRONG,
Theodore Ts'o4ea0a112000-05-08 13:33:17 +0000170 N_("@i count in @S is %i, should be %j.\n"),
Theodore Ts'od4b0ce01999-06-18 01:09:29 +0000171 PROMPT_FIX, 0 },
Theodore Ts'o4ea0a112000-05-08 13:33:17 +0000172
173 { PR_0_HURD_CLEAR_FILETYPE,
174 N_("The Hurd does not support the filetype feature.\n"),
175 PROMPT_CLEAR, 0 },
176
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000177 /* Pass 1 errors */
178
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000179 /* Pass 1: Checking inodes, blocks, and sizes */
180 { PR_1_PASS_HEADER,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000181 N_("Pass 1: Checking @is, @bs, and sizes\n"),
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000182 PROMPT_NONE, 0 },
183
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000184 /* Root directory is not an inode */
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000185 { PR_1_ROOT_NO_DIR, N_("@r is not a @d. "),
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000186 PROMPT_CLEAR, 0 },
187
188 /* Root directory has dtime set */
189 { PR_1_ROOT_DTIME,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000190 N_("@r has dtime set (probably due to old mke2fs). "),
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000191 PROMPT_FIX, PR_PREEN_OK },
192
193 /* Reserved inode has bad mode */
194 { PR_1_RESERVED_BAD_MODE,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000195 N_("Reserved @i %i has bad mode. "),
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000196 PROMPT_CLEAR, PR_PREEN_OK },
197
198 /* Deleted inode has zero dtime */
199 { PR_1_ZERO_DTIME,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000200 N_("@D @i %i has zero dtime. "),
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000201 PROMPT_FIX, PR_PREEN_OK },
202
203 /* Inode in use, but dtime set */
204 { PR_1_SET_DTIME,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000205 N_("@i %i is in use, but has dtime set. "),
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000206 PROMPT_FIX, PR_PREEN_OK },
207
208 /* Zero-length directory */
209 { PR_1_ZERO_LENGTH_DIR,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000210 N_("@i %i is a @z @d. "),
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000211 PROMPT_CLEAR, PR_PREEN_OK },
212
213 /* Block bitmap conflicts with some other fs block */
214 { PR_1_BB_CONFLICT,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000215 N_("@g %g's @b @B at %b @C.\n"),
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000216 PROMPT_RELOCATE, 0 },
217
218 /* Inode bitmap conflicts with some other fs block */
219 { PR_1_IB_CONFLICT,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000220 N_("@g %g's @i @B at %b @C.\n"),
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000221 PROMPT_RELOCATE, 0 },
222
223 /* Inode table conflicts with some other fs block */
224 { PR_1_ITABLE_CONFLICT,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000225 N_("@g %g's @i table at %b @C.\n"),
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000226 PROMPT_RELOCATE, 0 },
227
228 /* Block bitmap is on a bad block */
229 { PR_1_BB_BAD_BLOCK,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000230 N_("@g %g's @b @B (%b) is bad. "),
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000231 PROMPT_RELOCATE, 0 },
232
233 /* Inode bitmap is on a bad block */
234 { PR_1_IB_BAD_BLOCK,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000235 N_("@g %g's @i @B (%b) is bad. "),
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000236 PROMPT_RELOCATE, 0 },
237
238 /* Inode has incorrect i_size */
239 { PR_1_BAD_I_SIZE,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000240 N_("@i %i, i_size is %Is, @s %N. "),
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000241 PROMPT_FIX, PR_PREEN_OK },
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000242
243 /* Inode has incorrect i_blocks */
244 { PR_1_BAD_I_BLOCKS,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000245 N_("@i %i, i_@bs is %Ib, @s %N. "),
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000246 PROMPT_FIX, PR_PREEN_OK },
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000247
248 /* Illegal block number in inode */
249 { PR_1_ILLEGAL_BLOCK_NUM,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000250 N_("@I @b #%B (%b) in @i %i. "),
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000251 PROMPT_CLEAR, PR_LATCH_BLOCK },
252
253 /* Block number overlaps fs metadata */
254 { PR_1_BLOCK_OVERLAPS_METADATA,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000255 N_("@b #%B (%b) overlaps @f metadata in @i %i. "),
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000256 PROMPT_CLEAR, PR_LATCH_BLOCK },
257
258 /* Inode has illegal blocks (latch question) */
259 { PR_1_INODE_BLOCK_LATCH,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000260 N_("@i %i has illegal @b(s). "),
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000261 PROMPT_CLEAR, 0 },
262
263 /* Too many bad blocks in inode */
264 { PR_1_TOO_MANY_BAD_BLOCKS,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000265 N_("Too many illegal @bs in @i %i.\n"),
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000266 PROMPT_CLEAR_INODE, PR_NO_OK },
267
268 /* Illegal block number in bad block inode */
269 { PR_1_BB_ILLEGAL_BLOCK_NUM,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000270 N_("@I @b #%B (%b) in bad @b @i. "),
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000271 PROMPT_CLEAR, PR_LATCH_BBLOCK },
272
273 /* Bad block inode has illegal blocks (latch question) */
274 { PR_1_INODE_BBLOCK_LATCH,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000275 N_("Bad @b @i has illegal @b(s). "),
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000276 PROMPT_CLEAR, 0 },
277
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000278 /* Duplicate or bad blocks in use! */
279 { PR_1_DUP_BLOCKS_PREENSTOP,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000280 N_("Duplicate or bad @b in use!\n"),
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000281 PROMPT_NONE, 0 },
282
283 /* Bad block used as bad block indirect block */
284 { PR_1_BBINODE_BAD_METABLOCK,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000285 N_("Bad @b %b used as bad @b indirect @b?!?\n"),
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000286 PROMPT_NONE, PR_AFTER_CODE, PR_1_BBINODE_BAD_METABLOCK_PROMPT },
287
288 /* Inconsistency can't be fixed prompt */
289 { PR_1_BBINODE_BAD_METABLOCK_PROMPT,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000290 N_("\nThis inconsistency can not be fixed with e2fsck; to fix it, use\n"
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000291 """dumpe2fs -b"" to dump out the bad @b "
292 "list and ""e2fsck -L filename""\n"
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000293 "to read it back in again.\n"),
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000294 PROMPT_CONTINUE, PR_PREEN_NOMSG },
295
296 /* Bad primary block */
297 { PR_1_BAD_PRIMARY_BLOCK,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000298 N_("\nIf the @b is really bad, the @f can not be fixed.\n"),
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000299 PROMPT_NONE, PR_AFTER_CODE, PR_1_BAD_PRIMARY_BLOCK_PROMPT },
300
301 /* Bad primary block prompt */
302 { PR_1_BAD_PRIMARY_BLOCK_PROMPT,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000303 N_("You can clear the this @b (and hope for the best) from the\n"
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000304 "bad @b list and hope that @b is really OK, but there are no\n"
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000305 "guarantees.\n\n"),
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000306 PROMPT_CLEAR, PR_PREEN_NOMSG },
307
308 /* Bad primary superblock */
309 { PR_1_BAD_PRIMARY_SUPERBLOCK,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000310 N_("The primary @S (%b) is on the bad @b list.\n"),
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000311 PROMPT_NONE, PR_AFTER_CODE, PR_1_BAD_PRIMARY_BLOCK },
312
313 /* Bad primary block group descriptors */
314 { PR_1_BAD_PRIMARY_GROUP_DESCRIPTOR,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000315 N_("Block %b in the primary @g descriptors "
316 "is on the bad @b list\n"),
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000317 PROMPT_NONE, PR_AFTER_CODE, PR_1_BAD_PRIMARY_BLOCK },
318
319 /* Bad superblock in group */
320 { PR_1_BAD_SUPERBLOCK,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000321 N_("Warning: Group %g's @S (%b) is bad.\n"),
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000322 PROMPT_NONE, PR_PREEN_OK | PR_PREEN_NOMSG },
323
324 /* Bad block group descriptors in group */
325 { PR_1_BAD_GROUP_DESCRIPTORS,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000326 N_("Warning: Group %g's copy of the @g descriptors has a bad "
327 "@b (%b).\n"),
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000328 PROMPT_NONE, PR_PREEN_OK | PR_PREEN_NOMSG },
329
330 /* Block claimed for no reason */
331 { PR_1_PROGERR_CLAIMED_BLOCK,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000332 N_("Programming error? @b #%b claimed for no reason in "
333 "process_bad_@b.\n"),
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000334 PROMPT_NONE, PR_PREEN_OK },
335
Theodore Ts'of8188ff1997-11-14 05:23:04 +0000336 /* Error allocating blocks for relocating metadata */
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000337 { PR_1_RELOC_BLOCK_ALLOCATE,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000338 N_("@A %N @b(s) for %s: %m\n"),
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000339 PROMPT_NONE, PR_PREEN_OK },
340
Theodore Ts'of8188ff1997-11-14 05:23:04 +0000341 /* Error allocating block buffer during relocation process */
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000342 { PR_1_RELOC_MEMORY_ALLOCATE,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000343 N_("@A @b buffer for relocating %s\n"),
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000344 PROMPT_NONE, PR_PREEN_OK },
345
346 /* Relocating metadata group information from X to Y */
347 { PR_1_RELOC_FROM_TO,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000348 N_("Relocating @g %g's %s from %b to %c...\n"),
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000349 PROMPT_NONE, PR_PREEN_OK },
350
351 /* Relocating metatdata group information to X */
352 { PR_1_RELOC_TO,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000353 N_("Relocating @g %g's %s to %c...\n"),
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000354 PROMPT_NONE, PR_PREEN_OK },
355
356 /* Block read error during relocation process */
357 { PR_1_RELOC_READ_ERR,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000358 N_("Warning: could not read @b %b of %s: %m\n"),
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000359 PROMPT_NONE, PR_PREEN_OK },
360
361 /* Block write error during relocation process */
362 { PR_1_RELOC_WRITE_ERR,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000363 N_("Warning: could not write @b %b for %s: %m\n"),
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000364 PROMPT_NONE, PR_PREEN_OK },
365
366 /* Error allocating inode bitmap */
367 { PR_1_ALLOCATE_IBITMAP_ERROR,
Theodore Ts'of8188ff1997-11-14 05:23:04 +0000368 "@A @i @B (%N): %m\n",
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000369 PROMPT_NONE, PR_FATAL },
370
371 /* Error allocating block bitmap */
372 { PR_1_ALLOCATE_BBITMAP_ERROR,
Theodore Ts'of8188ff1997-11-14 05:23:04 +0000373 "@A @b @B (%N): %m\n",
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000374 PROMPT_NONE, PR_FATAL },
375
376 /* Error allocating icount structure */
377 { PR_1_ALLOCATE_ICOUNT,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000378 N_("@A icount link information: %m\n"),
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000379 PROMPT_NONE, PR_FATAL },
380
381 /* Error allocating dbcount */
382 { PR_1_ALLOCATE_DBCOUNT,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000383 N_("@A @d @b array: %m\n"),
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000384 PROMPT_NONE, PR_FATAL },
385
386 /* Error while scanning inodes */
387 { PR_1_ISCAN_ERROR,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000388 N_("Error while scanning @is (%i): %m\n"),
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000389 PROMPT_NONE, PR_FATAL },
390
391 /* Error while iterating over blocks */
392 { PR_1_BLOCK_ITERATE,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000393 N_("Error while iterating over blocks in @i %i: %m\n"),
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000394 PROMPT_NONE, PR_FATAL },
395
396 /* Error while storing inode count information */
397 { PR_1_ICOUNT_STORE,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000398 N_("Error storing @i count information (inode=%i, count=%N): %m\n"),
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000399 PROMPT_NONE, PR_FATAL },
400
401 /* Error while storing directory block information */
402 { PR_1_ADD_DBLOCK,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000403 N_("Error storing @d @b information "
404 "(inode=%i, block=%b, num=%N): %m\n"),
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000405 PROMPT_NONE, PR_FATAL },
406
407 /* Error while reading inode (for clearing) */
408 { PR_1_READ_INODE,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000409 N_("Error reading @i %i: %m\n"),
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000410 PROMPT_NONE, PR_FATAL },
Theodore Ts'of8188ff1997-11-14 05:23:04 +0000411
412 /* Suppress messages prompt */
413 { PR_1_SUPPRESS_MESSAGES, "", PROMPT_SUPPRESS, PR_NO_OK },
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000414
Theodore Ts'o246501c1998-03-24 16:22:38 +0000415 /* Filesystem contains large files, but has no such flag in sb */
416 { PR_1_FEATURE_LARGE_FILES,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000417 N_("@f contains large files, but lacks LARGE_FILE flag in @S.\n"),
Theodore Ts'o246501c1998-03-24 16:22:38 +0000418 PROMPT_FIX, 0 },
419
Theodore Ts'o6fdc7a31999-11-10 13:34:40 +0000420 /* Imagic flag set on an inode when filesystem doesn't support it */
421 { PR_1_SET_IMAGIC,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000422 N_("@i %i has imagic flag set. "),
Theodore Ts'o6fdc7a31999-11-10 13:34:40 +0000423 PROMPT_CLEAR, 0 },
424
425 /* Immutable flag set on a device or socket inode */
426 { PR_1_SET_IMMUTABLE,
Theodore Ts'o01fbc702000-04-03 13:57:21 +0000427 N_("Special (device/socket/fifo) @i %i has immutable or "
428 "append-only flag set.\n"),
Theodore Ts'oa846d2f1999-11-10 15:50:24 +0000429 PROMPT_CLEAR, PR_PREEN_OK | PR_PREEN_NO | PR_NO_OK },
Theodore Ts'o6fdc7a31999-11-10 13:34:40 +0000430
Theodore Ts'o01fbc702000-04-03 13:57:21 +0000431 /* Compression flag set on an inode when filesystem doesn't support it */
Theodore Ts'o19178752000-02-11 15:55:07 +0000432 { PR_1_COMPR_SET,
433 N_("@i %i has @cion flag set on @f without @cion support. "),
434 PROMPT_CLEAR, 0 },
435
Theodore Ts'od647a1e2000-05-27 14:40:09 +0000436 /* Non-zero size for device, fifo or socket inode */
437 { PR_1_SET_NONZSIZE,
438 "Special (device/socket/fifo) @i %i has non-zero size. ",
439 PROMPT_FIX, PR_PREEN_OK },
440
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000441 /* Pass 1b errors */
442
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000443 /* Pass 1B: Rescan for duplicate/bad blocks */
444 { PR_1B_PASS_HEADER,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000445 N_("Duplicate @bs found... invoking duplicate @b passes.\n"
446 "Pass 1B: Rescan for duplicate/bad @bs\n"),
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000447 PROMPT_NONE, 0 },
448
449 /* Duplicate/bad block(s) header */
450 { PR_1B_DUP_BLOCK_HEADER,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000451 N_("Duplicate/bad @b(s) in @i %i:"),
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000452 PROMPT_NONE, 0 },
453
454 /* Duplicate/bad block(s) in inode */
455 { PR_1B_DUP_BLOCK,
456 " %b",
457 PROMPT_NONE, PR_LATCH_DBLOCK },
458
459 /* Duplicate/bad block(s) end */
460 { PR_1B_DUP_BLOCK_END,
461 "\n",
462 PROMPT_NONE, 0 },
463
464 /* Error while scanning inodes */
465 { PR_1B_ISCAN_ERROR,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000466 N_("Error while scanning inodes (%i): %m\n"),
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000467 PROMPT_NONE, PR_FATAL },
468
469 /* Error allocating inode bitmap */
470 { PR_1B_ALLOCATE_IBITMAP_ERROR,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000471 N_("@A @i @B (inode_dup_map): %m\n"),
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000472 PROMPT_NONE, PR_FATAL },
473
474
475 /* Pass 1C: Scan directories for inodes with dup blocks. */
476 { PR_1C_PASS_HEADER,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000477 N_("Pass 1C: Scan directories for @is with dup @bs.\n"),
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000478 PROMPT_NONE, 0 },
479
480
481 /* Pass 1D: Reconciling duplicate blocks */
482 { PR_1D_PASS_HEADER,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000483 N_("Pass 1D: Reconciling duplicate @bs\n"),
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000484 PROMPT_NONE, 0 },
485
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000486 /* File has duplicate blocks */
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000487 { PR_1D_DUP_FILE,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000488 N_("File %Q (@i #%i, mod time %IM) \n"
489 " has %B duplicate @b(s), shared with %N file(s):\n"),
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000490 PROMPT_NONE, 0 },
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000491
492 /* List of files sharing duplicate blocks */
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000493 { PR_1D_DUP_FILE_LIST,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000494 N_("\t%Q (@i #%i, mod time %IM)\n"),
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000495 PROMPT_NONE, 0 },
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000496
Theodore Ts'o521e3681997-04-29 17:48:10 +0000497 /* File sharing blocks with filesystem metadata */
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000498 { PR_1D_SHARE_METADATA,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000499 N_("\t<@f metadata>\n"),
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000500 PROMPT_NONE, 0 },
501
502 /* Report of how many duplicate/bad inodes */
503 { PR_1D_NUM_DUP_INODES,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000504 N_("(There are %N @is containing duplicate/bad @bs.)\n\n"),
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000505 PROMPT_NONE, 0 },
506
507 /* Duplicated blocks already reassigned or cloned. */
508 { PR_1D_DUP_BLOCKS_DEALT,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000509 N_("Duplicated @bs already reassigned or cloned.\n\n"),
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000510 PROMPT_NONE, 0 },
511
512 /* Clone duplicate/bad blocks? */
513 { PR_1D_CLONE_QUESTION,
514 "", PROMPT_CLONE, PR_NO_OK },
515
516 /* Delete file? */
517 { PR_1D_DELETE_QUESTION,
518 "", PROMPT_DELETE, 0 },
519
520 /* Couldn't clone file (error) */
521 { PR_1D_CLONE_ERROR,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000522 N_("Couldn't clone file: %m\n"), PROMPT_NONE, 0 },
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000523
524 /* Pass 2 errors */
525
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000526 /* Pass 2: Checking directory structure */
527 { PR_2_PASS_HEADER,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000528 N_("Pass 2: Checking @d structure\n"),
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000529 PROMPT_NONE, 0 },
530
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000531 /* Bad inode number for '.' */
532 { PR_2_BAD_INODE_DOT,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000533 N_("Bad @i number for '.' in @d @i %i.\n"),
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000534 PROMPT_FIX, 0 },
535
536 /* Directory entry has bad inode number */
537 { PR_2_BAD_INO,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000538 N_("@E has bad @i #: %Di.\n"),
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000539 PROMPT_CLEAR, 0 },
540
541 /* Directory entry has deleted or unused inode */
542 { PR_2_UNUSED_INODE,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000543 N_("@E has @D/unused @i %Di. "),
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000544 PROMPT_CLEAR, PR_PREEN_OK },
545
546 /* Directry entry is link to '.' */
547 { PR_2_LINK_DOT,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000548 N_("@E @L to '.' "),
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000549 PROMPT_CLEAR, 0 },
550
551 /* Directory entry points to inode now located in a bad block */
552 { PR_2_BB_INODE,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000553 N_("@E points to @i (%Di) located in a bad @b.\n"),
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000554 PROMPT_CLEAR, 0 },
555
556 /* Directory entry contains a link to a directory */
557 { PR_2_LINK_DIR,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000558 N_("@E @L to @d %P (%Di).\n"),
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000559 PROMPT_CLEAR, 0 },
560
561 /* Directory entry contains a link to the root directry */
562 { PR_2_LINK_ROOT,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000563 N_("@E @L to the @r.\n"),
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000564 PROMPT_CLEAR, 0 },
565
566 /* Directory entry has illegal characters in its name */
567 { PR_2_BAD_NAME,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000568 N_("@E has illegal characters in its name.\n"),
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000569 PROMPT_FIX, 0 },
570
571 /* Missing '.' in directory inode */
572 { PR_2_MISSING_DOT,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000573 N_("Missing '.' in @d @i %i.\n"),
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000574 PROMPT_FIX, 0 },
575
576 /* Missing '..' in directory inode */
577 { PR_2_MISSING_DOT_DOT,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000578 N_("Missing '..' in @d @i %i.\n"),
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000579 PROMPT_FIX, 0 },
580
581 /* First entry in directory inode doesn't contain '.' */
582 { PR_2_1ST_NOT_DOT,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000583 N_("First @e '%Dn' (inode=%Di) in @d @i %i (%p) @s '.'\n"),
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000584 PROMPT_FIX, 0 },
585
586 /* Second entry in directory inode doesn't contain '..' */
587 { PR_2_2ND_NOT_DOT_DOT,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000588 N_("Second @e '%Dn' (inode=%Di) in @d @i %i @s '..'\n"),
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000589 PROMPT_FIX, 0 },
590
591 /* i_faddr should be zero */
592 { PR_2_FADDR_ZERO,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000593 N_("i_faddr @F %IF, @s zero.\n"),
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000594 PROMPT_CLEAR, 0 },
595
596 /* i_file_acl should be zero */
597 { PR_2_FILE_ACL_ZERO,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000598 N_("i_file_acl @F %If, @s zero.\n"),
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000599 PROMPT_CLEAR, 0 },
600
601 /* i_dir_acl should be zero */
602 { PR_2_DIR_ACL_ZERO,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000603 N_("i_dir_acl @F %Id, @s zero.\n"),
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000604 PROMPT_CLEAR, 0 },
605
606 /* i_frag should be zero */
607 { PR_2_FRAG_ZERO,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000608 N_("i_frag @F %N, @s zero.\n"),
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000609 PROMPT_CLEAR, 0 },
610
611 /* i_fsize should be zero */
612 { PR_2_FSIZE_ZERO,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000613 N_("i_fsize @F %N, @s zero.\n"),
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000614 PROMPT_CLEAR, 0 },
615
616 /* inode has bad mode */
617 { PR_2_BAD_MODE,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000618 N_("@i %i (%Q) has a bad mode (%Im).\n"),
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000619 PROMPT_CLEAR, 0 },
620
621 /* directory corrupted */
622 { PR_2_DIR_CORRUPTED,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000623 N_("@d @i %i, @b %B, offset %N: @d corrupted\n"),
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000624 PROMPT_SALVAGE, 0 },
625
626 /* filename too long */
627 { PR_2_FILENAME_LONG,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000628 N_("@d @i %i, @b %B, offset %N: filename too long\n"),
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000629 PROMPT_TRUNCATE, 0 },
630
631 /* Directory inode has a missing block (hole) */
632 { PR_2_DIRECTORY_HOLE,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000633 N_("@d @i %i has an unallocated @b #%B. "),
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000634 PROMPT_ALLOCATE, 0 },
635
636 /* '.' is not NULL terminated */
637 { PR_2_DOT_NULL_TERM,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000638 N_("'.' @d @e in @d @i %i is not NULL terminated\n"),
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000639 PROMPT_FIX, 0 },
640
641 /* '..' is not NULL terminated */
642 { PR_2_DOT_DOT_NULL_TERM,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000643 N_("'..' @d @e in @d @i %i is not NULL terminated\n"),
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000644 PROMPT_FIX, 0 },
645
Theodore Ts'o7cf73dc1997-08-14 17:17:16 +0000646 /* Illegal character device inode */
647 { PR_2_BAD_CHAR_DEV,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000648 N_("@i %i (%Q) is an @I character device.\n"),
Theodore Ts'o7cf73dc1997-08-14 17:17:16 +0000649 PROMPT_CLEAR, 0 },
650
651 /* Illegal block device inode */
652 { PR_2_BAD_BLOCK_DEV,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000653 N_("@i %i (%Q) is an @I @b device.\n"),
Theodore Ts'o7cf73dc1997-08-14 17:17:16 +0000654 PROMPT_CLEAR, 0 },
655
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000656 /* Duplicate '.' entry */
657 { PR_2_DUP_DOT,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000658 N_("@E is duplicate '.' @e.\n"),
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000659 PROMPT_FIX, 0 },
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000660
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000661 /* Duplicate '..' entry */
662 { PR_2_DUP_DOT_DOT,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000663 N_("@E is duplicate '..' @e.\n"),
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000664 PROMPT_FIX, 0 },
665
666 /* Internal error: couldn't find dir_info */
667 { PR_2_NO_DIRINFO,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000668 N_("Internal error: couldn't find dir_info for %i.\n"),
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000669 PROMPT_NONE, PR_FATAL },
670
671 /* Final rec_len is wrong */
672 { PR_2_FINAL_RECLEN,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000673 N_("@E has rec_len of %dr, should be %N.\n"),
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000674 PROMPT_FIX, 0 },
675
676 /* Error allocating icount structure */
677 { PR_2_ALLOCATE_ICOUNT,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000678 N_("@A icount structure: %m\n"),
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000679 PROMPT_NONE, PR_FATAL },
680
681 /* Error iterating over directory blocks */
682 { PR_2_DBLIST_ITERATE,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000683 N_("Error interating over @d @bs: %m\n"),
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000684 PROMPT_NONE, PR_FATAL },
685
686 /* Error reading directory block */
687 { PR_2_READ_DIRBLOCK,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000688 N_("Error reading @d @b %b (@i %i): %m\n"),
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000689 PROMPT_CONTINUE, 0 },
690
691 /* Error writing directory block */
692 { PR_2_WRITE_DIRBLOCK,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000693 N_("Error writing @d @b %b (@i %i): %m\n"),
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000694 PROMPT_CONTINUE, 0 },
695
696 /* Error allocating new directory block */
697 { PR_2_ALLOC_DIRBOCK,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000698 N_("@A new @d @b for @i %i (%s): %m\n"),
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000699 PROMPT_NONE, 0 },
700
701 /* Error deallocating inode */
702 { PR_2_DEALLOC_INODE,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000703 N_("Error deallocating @i %i: %m\n"),
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000704 PROMPT_NONE, PR_FATAL },
705
Theodore Ts'of8188ff1997-11-14 05:23:04 +0000706 /* Directory entry for '.' is big. Split? */
707 { PR_2_SPLIT_DOT,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000708 N_("@d @e for '.' is big. "),
Theodore Ts'of8188ff1997-11-14 05:23:04 +0000709 PROMPT_SPLIT, PR_NO_OK },
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000710
Theodore Ts'o1dde43f1998-11-14 04:18:28 +0000711 /* Illegal FIFO inode */
712 { PR_2_BAD_FIFO,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000713 N_("@i %i (%Q) is an @I FIFO.\n"),
Theodore Ts'o1dde43f1998-11-14 04:18:28 +0000714 PROMPT_CLEAR, 0 },
715
716 /* Illegal socket inode */
717 { PR_2_BAD_SOCKET,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000718 N_("@i %i (%Q) is an @I socket.\n"),
Theodore Ts'o1dde43f1998-11-14 04:18:28 +0000719 PROMPT_CLEAR, 0 },
720
Theodore Ts'oaa4115a1999-10-21 19:33:18 +0000721 /* Directory filetype not set */
722 { PR_2_SET_FILETYPE,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000723 N_("Setting filetype for @E to %N.\n"),
Theodore Ts'oaa4115a1999-10-21 19:33:18 +0000724 PROMPT_NONE, PR_PREEN_OK | PR_NO_OK | PR_NO_NOMSG },
725
726 /* Directory filetype incorrect */
727 { PR_2_BAD_FILETYPE,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000728 N_("@E has an incorrect filetype (was %dt, should be %N)\n"),
Theodore Ts'oaa4115a1999-10-21 19:33:18 +0000729 PROMPT_FIX, 0 },
730
Theodore Ts'o7847c1d1999-10-22 15:11:42 +0000731 /* Directory filetype set on filesystem */
732 { PR_2_CLEAR_FILETYPE,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000733 N_("@E has filetype set\n"),
Theodore Ts'o7847c1d1999-10-22 15:11:42 +0000734 PROMPT_CLEAR, PR_PREEN_OK },
735
Theodore Ts'oc40db6d1999-10-25 21:03:34 +0000736 /* Directory filename is null */
737 { PR_2_NULL_NAME,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000738 N_("@E has a zero-length name\n"),
Theodore Ts'oc40db6d1999-10-25 21:03:34 +0000739 PROMPT_CLEAR, 0 },
740
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000741 /* Pass 3 errors */
742
743 /* Pass 3: Checking directory connectivity */
744 { PR_3_PASS_HEADER,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000745 N_("Pass 3: Checking @d connectivity\n"),
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000746 PROMPT_NONE, 0 },
747
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000748 /* Root inode not allocated */
749 { PR_3_NO_ROOT_INODE,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000750 N_("@r not allocated. "),
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000751 PROMPT_ALLOCATE, 0 },
752
753 /* No room in lost+found */
754 { PR_3_EXPAND_LF_DIR,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000755 N_("No room in @l @d. "),
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000756 PROMPT_EXPAND, 0 },
757
758 /* Unconnected directory inode */
759 { PR_3_UNCONNECTED_DIR,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000760 N_("Unconnected @d @i %i (%p)\n"),
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000761 PROMPT_CONNECT, 0 },
762
763 /* /lost+found not found */
764 { PR_3_NO_LF_DIR,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000765 N_("/@l not found. "),
Theodore Ts'o5a679c81998-12-03 16:40:38 +0000766 PROMPT_CREATE, PR_PREEN_OK },
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000767
768 /* .. entry is incorrect */
769 { PR_3_BAD_DOT_DOT,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000770 N_("'..' in %Q (%i) is %P (%j), @s %q (%d).\n"),
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000771 PROMPT_FIX, 0 },
772
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000773 /* Bad or non-existent /lost+found. Cannot reconnect */
774 { PR_3_NO_LPF,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000775 N_("Bad or non-existent /@l. Cannot reconnect\n"),
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000776 PROMPT_NONE, 0 },
777
778 /* Could not expand /lost+found */
779 { PR_3_CANT_EXPAND_LPF,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000780 N_("Could not expand /@l: %m\n"),
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000781 PROMPT_NONE, 0 },
782
783 /* Could not reconnect inode */
784 { PR_3_CANT_RECONNECT,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000785 N_("Could not reconnect %i: %m\n"),
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000786 PROMPT_NONE, 0 },
787
788 /* Error while trying to find /lost+found */
789 { PR_3_ERR_FIND_LPF,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000790 N_("Error while trying to find /@l: %m\n"),
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000791 PROMPT_NONE, 0 },
792
793 /* Error in ext2fs_new_block while creating /lost+found */
794 { PR_3_ERR_LPF_NEW_BLOCK,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000795 N_("ext2fs_new_@b: %m while trying to create /@l @d\n"),
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000796 PROMPT_NONE, 0 },
797
798 /* Error in ext2fs_new_inode while creating /lost+found */
799 { PR_3_ERR_LPF_NEW_INODE,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000800 N_("ext2fs_new_@i: %m while trying to create /@l @d\n"),
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000801 PROMPT_NONE, 0 },
802
803 /* Error in ext2fs_new_dir_block while creating /lost+found */
804 { PR_3_ERR_LPF_NEW_DIR_BLOCK,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000805 N_("ext2fs_new_dir_@b: %m while creating new @d @b\n"),
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000806 PROMPT_NONE, 0 },
807
808 /* Error while writing directory block for /lost+found */
809 { PR_3_ERR_LPF_WRITE_BLOCK,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000810 N_("ext2fs_write_dir_@b: %m while writing the @d @b for /@l\n"),
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000811 PROMPT_NONE, 0 },
812
813 /* Error while adjusting inode count */
814 { PR_3_ADJUST_INODE,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000815 N_("Error while adjusting @i count on @i %i\n"),
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000816 PROMPT_NONE, 0 },
817
818 /* Couldn't fix parent directory -- error */
819 { PR_3_FIX_PARENT_ERR,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000820 N_("Couldn't fix parent of @i %i: %m\n\n"),
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000821 PROMPT_NONE, 0 },
822
823 /* Couldn't fix parent directory -- couldn't find it */
824 { PR_3_FIX_PARENT_NOFIND,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000825 N_("Couldn't fix parent of @i %i: Couldn't find parent @d entry\n\n"),
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000826 PROMPT_NONE, 0 },
827
828 /* Error allocating inode bitmap */
829 { PR_3_ALLOCATE_IBITMAP_ERROR,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000830 N_("@A @i @B (%N): %m\n"),
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000831 PROMPT_NONE, PR_FATAL },
832
833 /* Error creating root directory */
834 { PR_3_CREATE_ROOT_ERROR,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000835 N_("Error creating root @d (%s): %m\n"),
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000836 PROMPT_NONE, PR_FATAL },
837
838 /* Error creating lost and found directory */
839 { PR_3_CREATE_LPF_ERROR,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000840 N_("Error creating /@l @d (%s): %m\n"),
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000841 PROMPT_NONE, PR_FATAL },
842
Theodore Ts'of8188ff1997-11-14 05:23:04 +0000843 /* Root inode is not directory; aborting */
844 { PR_3_ROOT_NOT_DIR_ABORT,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000845 N_("@r is not a @d; aborting.\n"),
Theodore Ts'of8188ff1997-11-14 05:23:04 +0000846 PROMPT_NONE, PR_FATAL },
847
848 /* Cannot proceed without a root inode. */
849 { PR_3_NO_ROOT_INODE_ABORT,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000850 N_("Cannot proceed without a @r.\n"),
Theodore Ts'of8188ff1997-11-14 05:23:04 +0000851 PROMPT_NONE, PR_FATAL },
852
Theodore Ts'o7f813ba1998-09-03 01:26:03 +0000853 /* Internal error: couldn't find dir_info */
854 { PR_3_NO_DIRINFO,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000855 N_("Internal error: couldn't find dir_info for %i.\n"),
Theodore Ts'o7f813ba1998-09-03 01:26:03 +0000856 PROMPT_NONE, PR_FATAL },
857
Theodore Ts'o4a9f5931999-03-16 19:32:52 +0000858 /* Lost+found not a directory */
859 { PR_3_LPF_NOTDIR,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000860 N_("/@l is not a @d (ino=%i)\n"),
Theodore Ts'o4a9f5931999-03-16 19:32:52 +0000861 PROMPT_UNLINK, 0 },
862
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000863 /* Pass 4 errors */
864
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000865 /* Pass 4: Checking reference counts */
866 { PR_4_PASS_HEADER,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000867 N_("Pass 4: Checking reference counts\n"),
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000868 PROMPT_NONE, 0 },
869
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000870 /* Unattached zero-length inode */
871 { PR_4_ZERO_LEN_INODE,
872 "@u @z @i %i. ",
873 PROMPT_CLEAR, PR_PREEN_OK|PR_NO_OK },
874
875 /* Unattached inode */
876 { PR_4_UNATTACHED_INODE,
877 "@u @i %i\n",
878 PROMPT_CONNECT, 0 },
879
880 /* Inode ref count wrong */
881 { PR_4_BAD_REF_COUNT,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000882 N_("@i %i ref count is %Il, @s %N. "),
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000883 PROMPT_FIX, PR_PREEN_OK },
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000884
885 { PR_4_INCONSISTENT_COUNT,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000886 N_("WARNING: PROGRAMMING BUG IN E2FSCK!\n"
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000887 "\tOR SOME BONEHEAD (YOU) IS CHECKING A MOUNTED (LIVE) FILESYSTEM.\n"
888 "@i_link_info[%i] is %N, @i.i_links_count is %Il. "
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000889 "They should be the same!\n"),
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000890 PROMPT_NONE, 0 },
891
892 /* Pass 5 errors */
893
894 /* Pass 5: Checking group summary information */
895 { PR_5_PASS_HEADER,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000896 N_("Pass 5: Checking @g summary information\n"),
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000897 PROMPT_NONE, 0 },
898
899 /* Padding at end of inode bitmap is not set. */
900 { PR_5_INODE_BMAP_PADDING,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000901 N_("Padding at end of @i @B is not set. "),
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000902 PROMPT_FIX, PR_PREEN_OK },
903
904 /* Padding at end of block bitmap is not set. */
905 { PR_5_BLOCK_BMAP_PADDING,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000906 N_("Padding at end of @b @B is not set. "),
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000907 PROMPT_FIX, PR_PREEN_OK },
908
909 /* Block bitmap differences header */
910 { PR_5_BLOCK_BITMAP_HEADER,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000911 N_("@b @B differences: "),
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000912 PROMPT_NONE, PR_PREEN_OK | PR_PREEN_NOMSG},
913
914 /* Block not used, but marked in bitmap */
915 { PR_5_UNUSED_BLOCK,
916 " -%b",
917 PROMPT_NONE, PR_LATCH_BBITMAP | PR_PREEN_OK | PR_PREEN_NOMSG },
918
919 /* Block used, but not marked used in bitmap */
920 { PR_5_BLOCK_USED,
921 " +%b",
922 PROMPT_NONE, PR_LATCH_BBITMAP | PR_PREEN_OK | PR_PREEN_NOMSG },
923
924 /* Block bitmap differences end */
925 { PR_5_BLOCK_BITMAP_END,
926 "\n",
927 PROMPT_FIX, PR_PREEN_OK | PR_PREEN_NOMSG },
928
929 /* Inode bitmap differences header */
930 { PR_5_INODE_BITMAP_HEADER,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000931 N_("@i @B differences: "),
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000932 PROMPT_NONE, PR_PREEN_OK | PR_PREEN_NOMSG },
933
934 /* Inode not used, but marked in bitmap */
935 { PR_5_UNUSED_INODE,
936 " -%i",
937 PROMPT_NONE, PR_LATCH_IBITMAP | PR_PREEN_OK | PR_PREEN_NOMSG },
938
939 /* Inode used, but not marked used in bitmap */
940 { PR_5_INODE_USED,
941 " +%i",
942 PROMPT_NONE, PR_LATCH_IBITMAP | PR_PREEN_OK | PR_PREEN_NOMSG },
943
944 /* Inode bitmap differences end */
945 { PR_5_INODE_BITMAP_END,
946 "\n",
947 PROMPT_FIX, PR_PREEN_OK | PR_PREEN_NOMSG },
948
949 /* Free inodes count for group wrong */
950 { PR_5_FREE_INODE_COUNT_GROUP,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000951 N_("Free @is count wrong for @g #%g (%i, counted=%j).\n"),
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000952 PROMPT_FIX, PR_PREEN_OK | PR_PREEN_NOMSG },
953
954 /* Directories count for group wrong */
955 { PR_5_FREE_DIR_COUNT_GROUP,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000956 N_("Directories count wrong for @g #%g (%i, counted=%j).\n"),
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000957 PROMPT_FIX, PR_PREEN_OK | PR_PREEN_NOMSG },
958
959 /* Free inodes count wrong */
960 { PR_5_FREE_INODE_COUNT,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000961 N_("Free @is count wrong (%i, counted=%j).\n"),
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000962 PROMPT_FIX, PR_PREEN_OK | PR_PREEN_NOMSG },
963
964 /* Free blocks count for group wrong */
965 { PR_5_FREE_BLOCK_COUNT_GROUP,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000966 N_("Free @bs count wrong for @g #%g (%b, counted=%c).\n"),
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000967 PROMPT_FIX, PR_PREEN_OK | PR_PREEN_NOMSG },
968
969 /* Free blocks count wrong */
970 { PR_5_FREE_BLOCK_COUNT,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000971 N_("Free @bs count wrong (%b, counted=%c).\n"),
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000972 PROMPT_FIX, PR_PREEN_OK | PR_PREEN_NOMSG },
973
974 /* Programming error: bitmap endpoints don't match */
975 { PR_5_BMAP_ENDPOINTS,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000976 N_("PROGRAMMING ERROR: @f (#%N) @B endpoints (%b, %c) don't "
977 "match calculated @B endpoints (%i, %j)\n"),
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000978 PROMPT_NONE, PR_FATAL },
979
980 /* Internal error: fudging end of bitmap */
981 { PR_5_FUDGE_BITMAP_ERROR,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000982 N_("Internal error: fudging end of bitmap (%N)\n"),
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000983 PROMPT_NONE, PR_FATAL },
984
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000985 { 0 }
986};
987
988/*
989 * This is the latch flags register. It allows several problems to be
990 * "latched" together. This means that the user has to answer but one
991 * question for the set of problems, and all of the associated
992 * problems will be either fixed or not fixed.
993 */
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000994static struct latch_descr pr_latch_info[] = {
995 { PR_LATCH_BLOCK, PR_1_INODE_BLOCK_LATCH, 0 },
996 { PR_LATCH_BBLOCK, PR_1_INODE_BBLOCK_LATCH, 0 },
997 { PR_LATCH_IBITMAP, PR_5_INODE_BITMAP_HEADER, PR_5_INODE_BITMAP_END },
998 { PR_LATCH_BBITMAP, PR_5_BLOCK_BITMAP_HEADER, PR_5_BLOCK_BITMAP_END },
999 { PR_LATCH_RELOC, PR_0_RELOCATE_HINT, 0 },
1000 { PR_LATCH_DBLOCK, PR_1B_DUP_BLOCK_HEADER, PR_1B_DUP_BLOCK_END },
1001 { -1, 0, 0 },
Theodore Ts'o21c84b71997-04-29 16:15:03 +00001002};
1003
Theodore Ts'o1b6bf171997-10-03 17:48:10 +00001004static const struct e2fsck_problem *find_problem(int code)
Theodore Ts'o21c84b71997-04-29 16:15:03 +00001005{
1006 int i;
1007
1008 for (i=0; problem_table[i].e2p_code; i++) {
1009 if (problem_table[i].e2p_code == code)
1010 return &problem_table[i];
1011 }
1012 return 0;
1013}
1014
Theodore Ts'o1b6bf171997-10-03 17:48:10 +00001015static struct latch_descr *find_latch(int code)
Theodore Ts'o21c84b71997-04-29 16:15:03 +00001016{
Theodore Ts'o1b6bf171997-10-03 17:48:10 +00001017 int i;
1018
1019 for (i=0; pr_latch_info[i].latch_code >= 0; i++) {
1020 if (pr_latch_info[i].latch_code == code)
1021 return &pr_latch_info[i];
1022 }
1023 return 0;
Theodore Ts'o21c84b71997-04-29 16:15:03 +00001024}
1025
Theodore Ts'o1b6bf171997-10-03 17:48:10 +00001026int end_problem_latch(e2fsck_t ctx, int mask)
Theodore Ts'o21c84b71997-04-29 16:15:03 +00001027{
Theodore Ts'o1b6bf171997-10-03 17:48:10 +00001028 struct latch_descr *ldesc;
1029 struct problem_context pctx;
1030 int answer = -1;
1031
1032 ldesc = find_latch(mask);
1033 if (ldesc->end_message && (ldesc->flags & PRL_LATCHED)) {
1034 clear_problem_context(&pctx);
1035 answer = fix_problem(ctx, ldesc->end_message, &pctx);
1036 }
1037 ldesc->flags &= ~(PRL_VARIABLE);
1038 return answer;
1039}
1040
1041int set_latch_flags(int mask, int setflags, int clearflags)
1042{
1043 struct latch_descr *ldesc;
1044
1045 ldesc = find_latch(mask);
1046 if (!ldesc)
1047 return -1;
1048 ldesc->flags |= setflags;
1049 ldesc->flags &= ~clearflags;
1050 return 0;
1051}
1052
1053int get_latch_flags(int mask, int *value)
1054{
1055 struct latch_descr *ldesc;
1056
1057 ldesc = find_latch(mask);
1058 if (!ldesc)
1059 return -1;
1060 *value = ldesc->flags;
1061 return 0;
Theodore Ts'o21c84b71997-04-29 16:15:03 +00001062}
1063
1064void clear_problem_context(struct problem_context *ctx)
1065{
1066 memset(ctx, 0, sizeof(struct problem_context));
1067 ctx->blkcount = -1;
1068 ctx->group = -1;
1069}
1070
Theodore Ts'o1b6bf171997-10-03 17:48:10 +00001071int fix_problem(e2fsck_t ctx, problem_t code, struct problem_context *pctx)
Theodore Ts'o21c84b71997-04-29 16:15:03 +00001072{
Theodore Ts'o1b6bf171997-10-03 17:48:10 +00001073 ext2_filsys fs = ctx->fs;
1074 const struct e2fsck_problem *ptr;
1075 struct latch_descr *ldesc = 0;
1076 const char *message;
1077 int def_yn, answer, ans;
Theodore Ts'o21c84b71997-04-29 16:15:03 +00001078 int print_answer = 0;
1079 int suppress = 0;
1080
1081 ptr = find_problem(code);
1082 if (!ptr) {
Theodore Ts'o0c4a0722000-02-07 03:11:03 +00001083 printf(_("Unhandled error code (%d)!\n"), code);
Theodore Ts'o21c84b71997-04-29 16:15:03 +00001084 return 0;
1085 }
Theodore Ts'oaa4115a1999-10-21 19:33:18 +00001086 def_yn = 1;
Theodore Ts'oa846d2f1999-11-10 15:50:24 +00001087 if ((ptr->flags & PR_NO_DEFAULT) ||
1088 ((ptr->flags & PR_PREEN_NO) && (ctx->options & E2F_OPT_PREEN)) ||
1089 (ctx->options & E2F_OPT_NO))
Theodore Ts'oaa4115a1999-10-21 19:33:18 +00001090 def_yn= 0;
Theodore Ts'o21c84b71997-04-29 16:15:03 +00001091
1092 /*
1093 * Do special latch processing. This is where we ask the
1094 * latch question, if it exists
1095 */
1096 if (ptr->flags & PR_LATCH_MASK) {
Theodore Ts'o1b6bf171997-10-03 17:48:10 +00001097 ldesc = find_latch(ptr->flags & PR_LATCH_MASK);
1098 if (ldesc->question && !(ldesc->flags & PRL_LATCHED)) {
1099 ans = fix_problem(ctx, ldesc->question, pctx);
1100 if (ans == 1)
1101 ldesc->flags |= PRL_YES;
1102 if (ans == 0)
1103 ldesc->flags |= PRL_NO;
1104 ldesc->flags |= PRL_LATCHED;
1105 }
1106 if (ldesc->flags & PRL_SUPPRESS)
Theodore Ts'o21c84b71997-04-29 16:15:03 +00001107 suppress++;
1108 }
Theodore Ts'o1b6bf171997-10-03 17:48:10 +00001109 if ((ptr->flags & PR_PREEN_NOMSG) &&
1110 (ctx->options & E2F_OPT_PREEN))
1111 suppress++;
Theodore Ts'oaa4115a1999-10-21 19:33:18 +00001112 if ((ptr->flags & PR_NO_NOMSG) &&
1113 (ctx->options & E2F_OPT_NO))
1114 suppress++;
Theodore Ts'o21c84b71997-04-29 16:15:03 +00001115 if (!suppress) {
Theodore Ts'o1b6bf171997-10-03 17:48:10 +00001116 message = ptr->e2p_description;
1117 if (ctx->options & E2F_OPT_PREEN) {
1118 printf("%s: ", ctx->device_name);
1119#if 0
1120 if (ptr->e2p_preen_msg)
1121 message = ptr->e2p_preen_msg;
1122#endif
1123 }
Theodore Ts'o0c4a0722000-02-07 03:11:03 +00001124 print_e2fsck_message(ctx, _(message), pctx, 1);
Theodore Ts'o21c84b71997-04-29 16:15:03 +00001125 }
Theodore Ts'o1b6bf171997-10-03 17:48:10 +00001126 if (!(ptr->flags & PR_PREEN_OK) && (ptr->prompt != PROMPT_NONE))
1127 preenhalt(ctx);
Theodore Ts'o21c84b71997-04-29 16:15:03 +00001128
Theodore Ts'o1b6bf171997-10-03 17:48:10 +00001129 if (ptr->flags & PR_FATAL)
Theodore Ts'of8188ff1997-11-14 05:23:04 +00001130 fatal_error(ctx, 0);
Theodore Ts'o1b6bf171997-10-03 17:48:10 +00001131
1132 if (ptr->prompt == PROMPT_NONE) {
1133 if (ptr->flags & PR_NOCOLLATE)
1134 answer = -1;
Theodore Ts'o21c84b71997-04-29 16:15:03 +00001135 else
Theodore Ts'o1b6bf171997-10-03 17:48:10 +00001136 answer = def_yn;
1137 } else {
1138 if (ctx->options & E2F_OPT_PREEN) {
1139 answer = def_yn;
1140 if (!(ptr->flags & PR_PREEN_NOMSG))
1141 print_answer = 1;
1142 } else if ((ptr->flags & PR_LATCH_MASK) &&
1143 (ldesc->flags & (PRL_YES | PRL_NO))) {
1144 if (!suppress)
1145 print_answer = 1;
1146 if (ldesc->flags & PRL_YES)
1147 answer = 1;
1148 else
1149 answer = 0;
1150 } else
Theodore Ts'o0c4a0722000-02-07 03:11:03 +00001151 answer = ask(ctx, _(prompt[(int) ptr->prompt]), def_yn);
Theodore Ts'o1b6bf171997-10-03 17:48:10 +00001152 if (!answer && !(ptr->flags & PR_NO_OK))
1153 ext2fs_unmark_valid(fs);
Theodore Ts'o21c84b71997-04-29 16:15:03 +00001154
Theodore Ts'o1b6bf171997-10-03 17:48:10 +00001155 if (print_answer)
1156 printf("%s.\n", answer ?
Theodore Ts'o0c4a0722000-02-07 03:11:03 +00001157 _(preen_msg[(int) ptr->prompt]) : _("IGNORED"));
Theodore Ts'o21c84b71997-04-29 16:15:03 +00001158
Theodore Ts'o1b6bf171997-10-03 17:48:10 +00001159 }
1160
1161 if (ptr->flags & PR_AFTER_CODE)
1162 (void) fix_problem(ctx, ptr->second_code, pctx);
1163
Theodore Ts'of8188ff1997-11-14 05:23:04 +00001164 if ((ptr->prompt == PROMPT_ABORT) && answer)
1165 fatal_error(ctx, 0);
Theodore Ts'o1b6bf171997-10-03 17:48:10 +00001166
Theodore Ts'o21c84b71997-04-29 16:15:03 +00001167 return answer;
1168}