blob: df87bebb4f9c8c7807ead34a818efa1e10d787bc [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"),
Theodore Ts'o3b5386d2000-08-14 14:25:19 +0000175 PROMPT_CLEAR, 0 },
176
177 /* Journal inode is invalid */
178 { PR_0_JOURNAL_BAD_INODE,
179 N_("@S has a bad ext3 journal (@i %N).\n"),
180 PROMPT_CLEAR, PR_PREEN_OK },
181
182 /* Superblock has a journal device (which we can't handle yet) */
183 { PR_0_JOURNAL_UNSUPP_DEV,
184 N_("@S has external ext3 journal device (unsupported).\n"),
185 PROMPT_ABORT, PR_NO_OK | PR_AFTER_CODE, PR_0_JOURNAL_BAD_DEV },
186
187 /* Superblock has a bad journal device */
188 { PR_0_JOURNAL_BAD_DEV,
189 N_("@S has a bad ext3 journal (device %X).\n"),
190 PROMPT_CLEAR, PR_PREEN_OK },
191
192 /* Superblock has a journal UUID (which we can't handle yet) */
193 { PR_0_JOURNAL_UNSUPP_UUID,
194 N_("@S has an ext3 journal UUID (unsupported).\n"),
195 PROMPT_ABORT, PR_NO_OK | PR_AFTER_CODE, PR_0_JOURNAL_BAD_UUID },
196
197 /* Superblock has a bad journal UUID */
198 { PR_0_JOURNAL_BAD_UUID,
199 N_("@S has a bad ext3 journal (UUID %s).\n"),
200 PROMPT_CLEAR, PR_PREEN_OK },
201
202 /* Journal has an unknown superblock type */
203 { PR_0_JOURNAL_UNSUPP_SUPER,
204 N_("Ext3 journal @S is unknown type %N (unsupported).\n"),
205 PROMPT_ABORT, PR_NO_OK | PR_AFTER_CODE, PR_0_JOURNAL_BAD_SUPER },
206
207 /* Journal superblock is corrupt */
208 { PR_0_JOURNAL_BAD_SUPER,
209 N_("Ext3 journal @S is corrupt.\n"),
210 PROMPT_FIX, PR_PREEN_OK },
211
212 /* Superblock flag should be cleared */
213 { PR_0_JOURNAL_HAS_JOURNAL,
214 N_("@S doesn't have has_journal flag, but has ext3 journal %s.\n"),
215 PROMPT_DELETE, PR_PREEN_OK },
216
217 /* Superblock flag is incorrect */
218 { PR_0_JOURNAL_RECOVER_SET,
219 N_("@S has ext3 needs_recovery flag set, but no journal.\n"),
220 PROMPT_CLEAR, PR_PREEN_OK },
221
222 /* Journal should be reset */
223 { PR_0_JOURNAL_RESET_JOURNAL,
224 N_("*** WARNING *** leaving data in the journal may be DANGEROUS.\n"),
225 PROMPT_NONE, PR_PREEN_NOMSG|PR_AFTER_CODE, PR_0_JOURNAL_RESET_PROMPT},
226
227 /* Journal should be reset */
228 { PR_0_JOURNAL_RESET_PROMPT,
229 N_("ext3 recovery flag clear, but journal has data.\n"),
230 PROMPT_CLEAR, PR_PREEN_OK|PR_PREEN_NOMSG },
Theodore Ts'o4ea0a112000-05-08 13:33:17 +0000231
Theodore Ts'oecf1b772000-08-20 22:06:31 +0000232 /* Clearing orphan inode */
Theodore Ts'o83949022000-10-25 01:38:50 +0000233 { PR_0_ORPHAN_CLEAR_INODE,
234 N_("%s @o @i %i (uid=%Iu, gid=%Ig, mode=%Im, size=%Is)\n"),
Theodore Ts'oecf1b772000-08-20 22:06:31 +0000235 PROMPT_NONE, 0 },
236
Theodore Ts'o80bfaa32000-08-18 15:08:37 +0000237 /* Illegal block found in orphaned inode */
238 { PR_0_ORPHAN_ILLEGAL_BLOCK_NUM,
239 N_("@I @b #%B (%b) found in @o @i %i.\n"),
240 PROMPT_NONE, 0 },
241
242 /* Already cleared block found in orphaned inode */
243 { PR_0_ORPHAN_ALREADY_CLEARED_BLOCK,
244 N_("Already cleared @b #%B (%b) found in @o @i %i.\n"),
245 PROMPT_NONE, 0 },
246
247 /* Illegal orphan inode in superblock */
248 { PR_0_ORPHAN_ILLEGAL_HEAD_INODE,
249 N_("@I @o @i %i in @S.\n"),
250 PROMPT_NONE, 0 },
251
252 /* Illegal inode in orphaned inode list */
253 { PR_0_ORPHAN_ILLEGAL_INODE,
254 N_("@I @i %i in @o @i list.\n"),
255 PROMPT_NONE, 0 },
256
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000257 /* Pass 1 errors */
258
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000259 /* Pass 1: Checking inodes, blocks, and sizes */
260 { PR_1_PASS_HEADER,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000261 N_("Pass 1: Checking @is, @bs, and sizes\n"),
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000262 PROMPT_NONE, 0 },
263
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000264 /* Root directory is not an inode */
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000265 { PR_1_ROOT_NO_DIR, N_("@r is not a @d. "),
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000266 PROMPT_CLEAR, 0 },
267
268 /* Root directory has dtime set */
269 { PR_1_ROOT_DTIME,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000270 N_("@r has dtime set (probably due to old mke2fs). "),
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000271 PROMPT_FIX, PR_PREEN_OK },
272
273 /* Reserved inode has bad mode */
274 { PR_1_RESERVED_BAD_MODE,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000275 N_("Reserved @i %i has bad mode. "),
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000276 PROMPT_CLEAR, PR_PREEN_OK },
277
278 /* Deleted inode has zero dtime */
279 { PR_1_ZERO_DTIME,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000280 N_("@D @i %i has zero dtime. "),
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000281 PROMPT_FIX, PR_PREEN_OK },
282
283 /* Inode in use, but dtime set */
284 { PR_1_SET_DTIME,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000285 N_("@i %i is in use, but has dtime set. "),
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000286 PROMPT_FIX, PR_PREEN_OK },
287
288 /* Zero-length directory */
289 { PR_1_ZERO_LENGTH_DIR,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000290 N_("@i %i is a @z @d. "),
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000291 PROMPT_CLEAR, PR_PREEN_OK },
292
293 /* Block bitmap conflicts with some other fs block */
294 { PR_1_BB_CONFLICT,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000295 N_("@g %g's @b @B at %b @C.\n"),
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000296 PROMPT_RELOCATE, 0 },
297
298 /* Inode bitmap conflicts with some other fs block */
299 { PR_1_IB_CONFLICT,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000300 N_("@g %g's @i @B at %b @C.\n"),
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000301 PROMPT_RELOCATE, 0 },
302
303 /* Inode table conflicts with some other fs block */
304 { PR_1_ITABLE_CONFLICT,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000305 N_("@g %g's @i table at %b @C.\n"),
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000306 PROMPT_RELOCATE, 0 },
307
308 /* Block bitmap is on a bad block */
309 { PR_1_BB_BAD_BLOCK,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000310 N_("@g %g's @b @B (%b) is bad. "),
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000311 PROMPT_RELOCATE, 0 },
312
313 /* Inode bitmap is on a bad block */
314 { PR_1_IB_BAD_BLOCK,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000315 N_("@g %g's @i @B (%b) is bad. "),
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000316 PROMPT_RELOCATE, 0 },
317
318 /* Inode has incorrect i_size */
319 { PR_1_BAD_I_SIZE,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000320 N_("@i %i, i_size is %Is, @s %N. "),
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000321 PROMPT_FIX, PR_PREEN_OK },
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000322
323 /* Inode has incorrect i_blocks */
324 { PR_1_BAD_I_BLOCKS,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000325 N_("@i %i, i_@bs is %Ib, @s %N. "),
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000326 PROMPT_FIX, PR_PREEN_OK },
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000327
Theodore Ts'o80bfaa32000-08-18 15:08:37 +0000328 /* Illegal blocknumber in inode */
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000329 { PR_1_ILLEGAL_BLOCK_NUM,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000330 N_("@I @b #%B (%b) in @i %i. "),
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000331 PROMPT_CLEAR, PR_LATCH_BLOCK },
332
333 /* Block number overlaps fs metadata */
334 { PR_1_BLOCK_OVERLAPS_METADATA,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000335 N_("@b #%B (%b) overlaps @f metadata in @i %i. "),
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000336 PROMPT_CLEAR, PR_LATCH_BLOCK },
337
338 /* Inode has illegal blocks (latch question) */
339 { PR_1_INODE_BLOCK_LATCH,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000340 N_("@i %i has illegal @b(s). "),
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000341 PROMPT_CLEAR, 0 },
342
343 /* Too many bad blocks in inode */
344 { PR_1_TOO_MANY_BAD_BLOCKS,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000345 N_("Too many illegal @bs in @i %i.\n"),
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000346 PROMPT_CLEAR_INODE, PR_NO_OK },
347
348 /* Illegal block number in bad block inode */
349 { PR_1_BB_ILLEGAL_BLOCK_NUM,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000350 N_("@I @b #%B (%b) in bad @b @i. "),
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000351 PROMPT_CLEAR, PR_LATCH_BBLOCK },
352
353 /* Bad block inode has illegal blocks (latch question) */
354 { PR_1_INODE_BBLOCK_LATCH,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000355 N_("Bad @b @i has illegal @b(s). "),
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000356 PROMPT_CLEAR, 0 },
357
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000358 /* Duplicate or bad blocks in use! */
359 { PR_1_DUP_BLOCKS_PREENSTOP,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000360 N_("Duplicate or bad @b in use!\n"),
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000361 PROMPT_NONE, 0 },
362
363 /* Bad block used as bad block indirect block */
364 { PR_1_BBINODE_BAD_METABLOCK,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000365 N_("Bad @b %b used as bad @b indirect @b?!?\n"),
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000366 PROMPT_NONE, PR_AFTER_CODE, PR_1_BBINODE_BAD_METABLOCK_PROMPT },
367
368 /* Inconsistency can't be fixed prompt */
369 { PR_1_BBINODE_BAD_METABLOCK_PROMPT,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000370 N_("\nThis inconsistency can not be fixed with e2fsck; to fix it, use\n"
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000371 """dumpe2fs -b"" to dump out the bad @b "
372 "list and ""e2fsck -L filename""\n"
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000373 "to read it back in again.\n"),
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000374 PROMPT_CONTINUE, PR_PREEN_NOMSG },
375
376 /* Bad primary block */
377 { PR_1_BAD_PRIMARY_BLOCK,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000378 N_("\nIf the @b is really bad, the @f can not be fixed.\n"),
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000379 PROMPT_NONE, PR_AFTER_CODE, PR_1_BAD_PRIMARY_BLOCK_PROMPT },
380
381 /* Bad primary block prompt */
382 { PR_1_BAD_PRIMARY_BLOCK_PROMPT,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000383 N_("You can clear the this @b (and hope for the best) from the\n"
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000384 "bad @b list and hope that @b is really OK, but there are no\n"
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000385 "guarantees.\n\n"),
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000386 PROMPT_CLEAR, PR_PREEN_NOMSG },
387
388 /* Bad primary superblock */
389 { PR_1_BAD_PRIMARY_SUPERBLOCK,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000390 N_("The primary @S (%b) is on the bad @b list.\n"),
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000391 PROMPT_NONE, PR_AFTER_CODE, PR_1_BAD_PRIMARY_BLOCK },
392
393 /* Bad primary block group descriptors */
394 { PR_1_BAD_PRIMARY_GROUP_DESCRIPTOR,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000395 N_("Block %b in the primary @g descriptors "
396 "is on the bad @b list\n"),
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000397 PROMPT_NONE, PR_AFTER_CODE, PR_1_BAD_PRIMARY_BLOCK },
398
399 /* Bad superblock in group */
400 { PR_1_BAD_SUPERBLOCK,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000401 N_("Warning: Group %g's @S (%b) is bad.\n"),
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000402 PROMPT_NONE, PR_PREEN_OK | PR_PREEN_NOMSG },
403
404 /* Bad block group descriptors in group */
405 { PR_1_BAD_GROUP_DESCRIPTORS,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000406 N_("Warning: Group %g's copy of the @g descriptors has a bad "
407 "@b (%b).\n"),
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000408 PROMPT_NONE, PR_PREEN_OK | PR_PREEN_NOMSG },
409
410 /* Block claimed for no reason */
411 { PR_1_PROGERR_CLAIMED_BLOCK,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000412 N_("Programming error? @b #%b claimed for no reason in "
413 "process_bad_@b.\n"),
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000414 PROMPT_NONE, PR_PREEN_OK },
415
Theodore Ts'of8188ff1997-11-14 05:23:04 +0000416 /* Error allocating blocks for relocating metadata */
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000417 { PR_1_RELOC_BLOCK_ALLOCATE,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000418 N_("@A %N @b(s) for %s: %m\n"),
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000419 PROMPT_NONE, PR_PREEN_OK },
420
Theodore Ts'of8188ff1997-11-14 05:23:04 +0000421 /* Error allocating block buffer during relocation process */
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000422 { PR_1_RELOC_MEMORY_ALLOCATE,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000423 N_("@A @b buffer for relocating %s\n"),
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000424 PROMPT_NONE, PR_PREEN_OK },
425
426 /* Relocating metadata group information from X to Y */
427 { PR_1_RELOC_FROM_TO,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000428 N_("Relocating @g %g's %s from %b to %c...\n"),
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000429 PROMPT_NONE, PR_PREEN_OK },
430
431 /* Relocating metatdata group information to X */
432 { PR_1_RELOC_TO,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000433 N_("Relocating @g %g's %s to %c...\n"),
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000434 PROMPT_NONE, PR_PREEN_OK },
435
436 /* Block read error during relocation process */
437 { PR_1_RELOC_READ_ERR,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000438 N_("Warning: could not read @b %b of %s: %m\n"),
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000439 PROMPT_NONE, PR_PREEN_OK },
440
441 /* Block write error during relocation process */
442 { PR_1_RELOC_WRITE_ERR,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000443 N_("Warning: could not write @b %b for %s: %m\n"),
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000444 PROMPT_NONE, PR_PREEN_OK },
445
446 /* Error allocating inode bitmap */
447 { PR_1_ALLOCATE_IBITMAP_ERROR,
Theodore Ts'of8188ff1997-11-14 05:23:04 +0000448 "@A @i @B (%N): %m\n",
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000449 PROMPT_NONE, PR_FATAL },
450
451 /* Error allocating block bitmap */
452 { PR_1_ALLOCATE_BBITMAP_ERROR,
Theodore Ts'of8188ff1997-11-14 05:23:04 +0000453 "@A @b @B (%N): %m\n",
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000454 PROMPT_NONE, PR_FATAL },
455
456 /* Error allocating icount structure */
457 { PR_1_ALLOCATE_ICOUNT,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000458 N_("@A icount link information: %m\n"),
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000459 PROMPT_NONE, PR_FATAL },
460
461 /* Error allocating dbcount */
462 { PR_1_ALLOCATE_DBCOUNT,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000463 N_("@A @d @b array: %m\n"),
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000464 PROMPT_NONE, PR_FATAL },
465
466 /* Error while scanning inodes */
467 { PR_1_ISCAN_ERROR,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000468 N_("Error while scanning @is (%i): %m\n"),
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000469 PROMPT_NONE, PR_FATAL },
470
471 /* Error while iterating over blocks */
472 { PR_1_BLOCK_ITERATE,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000473 N_("Error while iterating over blocks in @i %i: %m\n"),
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000474 PROMPT_NONE, PR_FATAL },
475
476 /* Error while storing inode count information */
477 { PR_1_ICOUNT_STORE,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000478 N_("Error storing @i count information (inode=%i, count=%N): %m\n"),
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000479 PROMPT_NONE, PR_FATAL },
480
481 /* Error while storing directory block information */
482 { PR_1_ADD_DBLOCK,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000483 N_("Error storing @d @b information "
484 "(inode=%i, block=%b, num=%N): %m\n"),
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000485 PROMPT_NONE, PR_FATAL },
486
487 /* Error while reading inode (for clearing) */
488 { PR_1_READ_INODE,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000489 N_("Error reading @i %i: %m\n"),
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000490 PROMPT_NONE, PR_FATAL },
Theodore Ts'of8188ff1997-11-14 05:23:04 +0000491
492 /* Suppress messages prompt */
493 { PR_1_SUPPRESS_MESSAGES, "", PROMPT_SUPPRESS, PR_NO_OK },
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000494
Theodore Ts'o246501c1998-03-24 16:22:38 +0000495 /* Filesystem contains large files, but has no such flag in sb */
496 { PR_1_FEATURE_LARGE_FILES,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000497 N_("@f contains large files, but lacks LARGE_FILE flag in @S.\n"),
Theodore Ts'o246501c1998-03-24 16:22:38 +0000498 PROMPT_FIX, 0 },
499
Theodore Ts'o6fdc7a31999-11-10 13:34:40 +0000500 /* Imagic flag set on an inode when filesystem doesn't support it */
501 { PR_1_SET_IMAGIC,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000502 N_("@i %i has imagic flag set. "),
Theodore Ts'o6fdc7a31999-11-10 13:34:40 +0000503 PROMPT_CLEAR, 0 },
504
505 /* Immutable flag set on a device or socket inode */
506 { PR_1_SET_IMMUTABLE,
Theodore Ts'o01fbc702000-04-03 13:57:21 +0000507 N_("Special (device/socket/fifo) @i %i has immutable or "
508 "append-only flag set.\n"),
Theodore Ts'oa846d2f1999-11-10 15:50:24 +0000509 PROMPT_CLEAR, PR_PREEN_OK | PR_PREEN_NO | PR_NO_OK },
Theodore Ts'o6fdc7a31999-11-10 13:34:40 +0000510
Theodore Ts'o01fbc702000-04-03 13:57:21 +0000511 /* Compression flag set on an inode when filesystem doesn't support it */
Theodore Ts'o19178752000-02-11 15:55:07 +0000512 { PR_1_COMPR_SET,
513 N_("@i %i has @cion flag set on @f without @cion support. "),
514 PROMPT_CLEAR, 0 },
515
Theodore Ts'od647a1e2000-05-27 14:40:09 +0000516 /* Non-zero size for device, fifo or socket inode */
517 { PR_1_SET_NONZSIZE,
518 "Special (device/socket/fifo) @i %i has non-zero size. ",
519 PROMPT_FIX, PR_PREEN_OK },
520
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000521 /* Pass 1b errors */
522
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000523 /* Pass 1B: Rescan for duplicate/bad blocks */
524 { PR_1B_PASS_HEADER,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000525 N_("Duplicate @bs found... invoking duplicate @b passes.\n"
526 "Pass 1B: Rescan for duplicate/bad @bs\n"),
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000527 PROMPT_NONE, 0 },
528
529 /* Duplicate/bad block(s) header */
530 { PR_1B_DUP_BLOCK_HEADER,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000531 N_("Duplicate/bad @b(s) in @i %i:"),
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000532 PROMPT_NONE, 0 },
533
534 /* Duplicate/bad block(s) in inode */
535 { PR_1B_DUP_BLOCK,
536 " %b",
537 PROMPT_NONE, PR_LATCH_DBLOCK },
538
539 /* Duplicate/bad block(s) end */
540 { PR_1B_DUP_BLOCK_END,
541 "\n",
542 PROMPT_NONE, 0 },
543
544 /* Error while scanning inodes */
545 { PR_1B_ISCAN_ERROR,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000546 N_("Error while scanning inodes (%i): %m\n"),
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000547 PROMPT_NONE, PR_FATAL },
548
549 /* Error allocating inode bitmap */
550 { PR_1B_ALLOCATE_IBITMAP_ERROR,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000551 N_("@A @i @B (inode_dup_map): %m\n"),
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000552 PROMPT_NONE, PR_FATAL },
553
554
555 /* Pass 1C: Scan directories for inodes with dup blocks. */
556 { PR_1C_PASS_HEADER,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000557 N_("Pass 1C: Scan directories for @is with dup @bs.\n"),
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000558 PROMPT_NONE, 0 },
559
560
561 /* Pass 1D: Reconciling duplicate blocks */
562 { PR_1D_PASS_HEADER,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000563 N_("Pass 1D: Reconciling duplicate @bs\n"),
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000564 PROMPT_NONE, 0 },
565
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000566 /* File has duplicate blocks */
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000567 { PR_1D_DUP_FILE,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000568 N_("File %Q (@i #%i, mod time %IM) \n"
569 " has %B duplicate @b(s), shared with %N file(s):\n"),
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000570 PROMPT_NONE, 0 },
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000571
572 /* List of files sharing duplicate blocks */
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000573 { PR_1D_DUP_FILE_LIST,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000574 N_("\t%Q (@i #%i, mod time %IM)\n"),
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000575 PROMPT_NONE, 0 },
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000576
Theodore Ts'o521e3681997-04-29 17:48:10 +0000577 /* File sharing blocks with filesystem metadata */
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000578 { PR_1D_SHARE_METADATA,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000579 N_("\t<@f metadata>\n"),
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000580 PROMPT_NONE, 0 },
581
582 /* Report of how many duplicate/bad inodes */
583 { PR_1D_NUM_DUP_INODES,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000584 N_("(There are %N @is containing duplicate/bad @bs.)\n\n"),
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000585 PROMPT_NONE, 0 },
586
587 /* Duplicated blocks already reassigned or cloned. */
588 { PR_1D_DUP_BLOCKS_DEALT,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000589 N_("Duplicated @bs already reassigned or cloned.\n\n"),
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000590 PROMPT_NONE, 0 },
591
592 /* Clone duplicate/bad blocks? */
593 { PR_1D_CLONE_QUESTION,
594 "", PROMPT_CLONE, PR_NO_OK },
595
596 /* Delete file? */
597 { PR_1D_DELETE_QUESTION,
598 "", PROMPT_DELETE, 0 },
599
600 /* Couldn't clone file (error) */
601 { PR_1D_CLONE_ERROR,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000602 N_("Couldn't clone file: %m\n"), PROMPT_NONE, 0 },
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000603
604 /* Pass 2 errors */
605
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000606 /* Pass 2: Checking directory structure */
607 { PR_2_PASS_HEADER,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000608 N_("Pass 2: Checking @d structure\n"),
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000609 PROMPT_NONE, 0 },
610
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000611 /* Bad inode number for '.' */
612 { PR_2_BAD_INODE_DOT,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000613 N_("Bad @i number for '.' in @d @i %i.\n"),
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000614 PROMPT_FIX, 0 },
615
616 /* Directory entry has bad inode number */
617 { PR_2_BAD_INO,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000618 N_("@E has bad @i #: %Di.\n"),
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000619 PROMPT_CLEAR, 0 },
620
621 /* Directory entry has deleted or unused inode */
622 { PR_2_UNUSED_INODE,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000623 N_("@E has @D/unused @i %Di. "),
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000624 PROMPT_CLEAR, PR_PREEN_OK },
625
626 /* Directry entry is link to '.' */
627 { PR_2_LINK_DOT,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000628 N_("@E @L to '.' "),
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000629 PROMPT_CLEAR, 0 },
630
631 /* Directory entry points to inode now located in a bad block */
632 { PR_2_BB_INODE,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000633 N_("@E points to @i (%Di) located in a bad @b.\n"),
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000634 PROMPT_CLEAR, 0 },
635
636 /* Directory entry contains a link to a directory */
637 { PR_2_LINK_DIR,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000638 N_("@E @L to @d %P (%Di).\n"),
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000639 PROMPT_CLEAR, 0 },
640
641 /* Directory entry contains a link to the root directry */
642 { PR_2_LINK_ROOT,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000643 N_("@E @L to the @r.\n"),
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000644 PROMPT_CLEAR, 0 },
645
646 /* Directory entry has illegal characters in its name */
647 { PR_2_BAD_NAME,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000648 N_("@E has illegal characters in its name.\n"),
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000649 PROMPT_FIX, 0 },
650
651 /* Missing '.' in directory inode */
652 { PR_2_MISSING_DOT,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000653 N_("Missing '.' in @d @i %i.\n"),
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000654 PROMPT_FIX, 0 },
655
656 /* Missing '..' in directory inode */
657 { PR_2_MISSING_DOT_DOT,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000658 N_("Missing '..' in @d @i %i.\n"),
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000659 PROMPT_FIX, 0 },
660
661 /* First entry in directory inode doesn't contain '.' */
662 { PR_2_1ST_NOT_DOT,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000663 N_("First @e '%Dn' (inode=%Di) in @d @i %i (%p) @s '.'\n"),
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000664 PROMPT_FIX, 0 },
665
666 /* Second entry in directory inode doesn't contain '..' */
667 { PR_2_2ND_NOT_DOT_DOT,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000668 N_("Second @e '%Dn' (inode=%Di) in @d @i %i @s '..'\n"),
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000669 PROMPT_FIX, 0 },
670
671 /* i_faddr should be zero */
672 { PR_2_FADDR_ZERO,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000673 N_("i_faddr @F %IF, @s zero.\n"),
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000674 PROMPT_CLEAR, 0 },
675
676 /* i_file_acl should be zero */
677 { PR_2_FILE_ACL_ZERO,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000678 N_("i_file_acl @F %If, @s zero.\n"),
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000679 PROMPT_CLEAR, 0 },
680
681 /* i_dir_acl should be zero */
682 { PR_2_DIR_ACL_ZERO,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000683 N_("i_dir_acl @F %Id, @s zero.\n"),
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000684 PROMPT_CLEAR, 0 },
685
686 /* i_frag should be zero */
687 { PR_2_FRAG_ZERO,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000688 N_("i_frag @F %N, @s zero.\n"),
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000689 PROMPT_CLEAR, 0 },
690
691 /* i_fsize should be zero */
692 { PR_2_FSIZE_ZERO,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000693 N_("i_fsize @F %N, @s zero.\n"),
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000694 PROMPT_CLEAR, 0 },
695
696 /* inode has bad mode */
697 { PR_2_BAD_MODE,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000698 N_("@i %i (%Q) has a bad mode (%Im).\n"),
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000699 PROMPT_CLEAR, 0 },
700
701 /* directory corrupted */
702 { PR_2_DIR_CORRUPTED,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000703 N_("@d @i %i, @b %B, offset %N: @d corrupted\n"),
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000704 PROMPT_SALVAGE, 0 },
705
706 /* filename too long */
707 { PR_2_FILENAME_LONG,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000708 N_("@d @i %i, @b %B, offset %N: filename too long\n"),
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000709 PROMPT_TRUNCATE, 0 },
710
711 /* Directory inode has a missing block (hole) */
712 { PR_2_DIRECTORY_HOLE,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000713 N_("@d @i %i has an unallocated @b #%B. "),
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000714 PROMPT_ALLOCATE, 0 },
715
716 /* '.' is not NULL terminated */
717 { PR_2_DOT_NULL_TERM,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000718 N_("'.' @d @e in @d @i %i is not NULL terminated\n"),
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000719 PROMPT_FIX, 0 },
720
721 /* '..' is not NULL terminated */
722 { PR_2_DOT_DOT_NULL_TERM,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000723 N_("'..' @d @e in @d @i %i is not NULL terminated\n"),
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000724 PROMPT_FIX, 0 },
725
Theodore Ts'o7cf73dc1997-08-14 17:17:16 +0000726 /* Illegal character device inode */
727 { PR_2_BAD_CHAR_DEV,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000728 N_("@i %i (%Q) is an @I character device.\n"),
Theodore Ts'o7cf73dc1997-08-14 17:17:16 +0000729 PROMPT_CLEAR, 0 },
730
731 /* Illegal block device inode */
732 { PR_2_BAD_BLOCK_DEV,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000733 N_("@i %i (%Q) is an @I @b device.\n"),
Theodore Ts'o7cf73dc1997-08-14 17:17:16 +0000734 PROMPT_CLEAR, 0 },
735
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000736 /* Duplicate '.' entry */
737 { PR_2_DUP_DOT,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000738 N_("@E is duplicate '.' @e.\n"),
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000739 PROMPT_FIX, 0 },
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000740
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000741 /* Duplicate '..' entry */
742 { PR_2_DUP_DOT_DOT,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000743 N_("@E is duplicate '..' @e.\n"),
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000744 PROMPT_FIX, 0 },
745
746 /* Internal error: couldn't find dir_info */
747 { PR_2_NO_DIRINFO,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000748 N_("Internal error: couldn't find dir_info for %i.\n"),
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000749 PROMPT_NONE, PR_FATAL },
750
751 /* Final rec_len is wrong */
752 { PR_2_FINAL_RECLEN,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000753 N_("@E has rec_len of %dr, should be %N.\n"),
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000754 PROMPT_FIX, 0 },
755
756 /* Error allocating icount structure */
757 { PR_2_ALLOCATE_ICOUNT,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000758 N_("@A icount structure: %m\n"),
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000759 PROMPT_NONE, PR_FATAL },
760
761 /* Error iterating over directory blocks */
762 { PR_2_DBLIST_ITERATE,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000763 N_("Error interating over @d @bs: %m\n"),
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000764 PROMPT_NONE, PR_FATAL },
765
766 /* Error reading directory block */
767 { PR_2_READ_DIRBLOCK,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000768 N_("Error reading @d @b %b (@i %i): %m\n"),
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000769 PROMPT_CONTINUE, 0 },
770
771 /* Error writing directory block */
772 { PR_2_WRITE_DIRBLOCK,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000773 N_("Error writing @d @b %b (@i %i): %m\n"),
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000774 PROMPT_CONTINUE, 0 },
775
776 /* Error allocating new directory block */
777 { PR_2_ALLOC_DIRBOCK,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000778 N_("@A new @d @b for @i %i (%s): %m\n"),
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000779 PROMPT_NONE, 0 },
780
781 /* Error deallocating inode */
782 { PR_2_DEALLOC_INODE,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000783 N_("Error deallocating @i %i: %m\n"),
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000784 PROMPT_NONE, PR_FATAL },
785
Theodore Ts'of8188ff1997-11-14 05:23:04 +0000786 /* Directory entry for '.' is big. Split? */
787 { PR_2_SPLIT_DOT,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000788 N_("@d @e for '.' is big. "),
Theodore Ts'of8188ff1997-11-14 05:23:04 +0000789 PROMPT_SPLIT, PR_NO_OK },
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000790
Theodore Ts'o1dde43f1998-11-14 04:18:28 +0000791 /* Illegal FIFO inode */
792 { PR_2_BAD_FIFO,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000793 N_("@i %i (%Q) is an @I FIFO.\n"),
Theodore Ts'o1dde43f1998-11-14 04:18:28 +0000794 PROMPT_CLEAR, 0 },
795
796 /* Illegal socket inode */
797 { PR_2_BAD_SOCKET,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000798 N_("@i %i (%Q) is an @I socket.\n"),
Theodore Ts'o1dde43f1998-11-14 04:18:28 +0000799 PROMPT_CLEAR, 0 },
800
Theodore Ts'oaa4115a1999-10-21 19:33:18 +0000801 /* Directory filetype not set */
802 { PR_2_SET_FILETYPE,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000803 N_("Setting filetype for @E to %N.\n"),
Theodore Ts'oaa4115a1999-10-21 19:33:18 +0000804 PROMPT_NONE, PR_PREEN_OK | PR_NO_OK | PR_NO_NOMSG },
805
806 /* Directory filetype incorrect */
807 { PR_2_BAD_FILETYPE,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000808 N_("@E has an incorrect filetype (was %dt, should be %N)\n"),
Theodore Ts'oaa4115a1999-10-21 19:33:18 +0000809 PROMPT_FIX, 0 },
810
Theodore Ts'o7847c1d1999-10-22 15:11:42 +0000811 /* Directory filetype set on filesystem */
812 { PR_2_CLEAR_FILETYPE,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000813 N_("@E has filetype set\n"),
Theodore Ts'o7847c1d1999-10-22 15:11:42 +0000814 PROMPT_CLEAR, PR_PREEN_OK },
815
Theodore Ts'oc40db6d1999-10-25 21:03:34 +0000816 /* Directory filename is null */
817 { PR_2_NULL_NAME,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000818 N_("@E has a zero-length name\n"),
Theodore Ts'oc40db6d1999-10-25 21:03:34 +0000819 PROMPT_CLEAR, 0 },
820
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000821 /* Pass 3 errors */
822
823 /* Pass 3: Checking directory connectivity */
824 { PR_3_PASS_HEADER,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000825 N_("Pass 3: Checking @d connectivity\n"),
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000826 PROMPT_NONE, 0 },
827
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000828 /* Root inode not allocated */
829 { PR_3_NO_ROOT_INODE,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000830 N_("@r not allocated. "),
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000831 PROMPT_ALLOCATE, 0 },
832
833 /* No room in lost+found */
834 { PR_3_EXPAND_LF_DIR,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000835 N_("No room in @l @d. "),
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000836 PROMPT_EXPAND, 0 },
837
838 /* Unconnected directory inode */
839 { PR_3_UNCONNECTED_DIR,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000840 N_("Unconnected @d @i %i (%p)\n"),
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000841 PROMPT_CONNECT, 0 },
842
843 /* /lost+found not found */
844 { PR_3_NO_LF_DIR,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000845 N_("/@l not found. "),
Theodore Ts'o5a679c81998-12-03 16:40:38 +0000846 PROMPT_CREATE, PR_PREEN_OK },
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000847
848 /* .. entry is incorrect */
849 { PR_3_BAD_DOT_DOT,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000850 N_("'..' in %Q (%i) is %P (%j), @s %q (%d).\n"),
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000851 PROMPT_FIX, 0 },
852
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000853 /* Bad or non-existent /lost+found. Cannot reconnect */
854 { PR_3_NO_LPF,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000855 N_("Bad or non-existent /@l. Cannot reconnect\n"),
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000856 PROMPT_NONE, 0 },
857
858 /* Could not expand /lost+found */
859 { PR_3_CANT_EXPAND_LPF,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000860 N_("Could not expand /@l: %m\n"),
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000861 PROMPT_NONE, 0 },
862
863 /* Could not reconnect inode */
864 { PR_3_CANT_RECONNECT,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000865 N_("Could not reconnect %i: %m\n"),
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000866 PROMPT_NONE, 0 },
867
868 /* Error while trying to find /lost+found */
869 { PR_3_ERR_FIND_LPF,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000870 N_("Error while trying to find /@l: %m\n"),
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000871 PROMPT_NONE, 0 },
872
873 /* Error in ext2fs_new_block while creating /lost+found */
874 { PR_3_ERR_LPF_NEW_BLOCK,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000875 N_("ext2fs_new_@b: %m while trying to create /@l @d\n"),
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000876 PROMPT_NONE, 0 },
877
878 /* Error in ext2fs_new_inode while creating /lost+found */
879 { PR_3_ERR_LPF_NEW_INODE,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000880 N_("ext2fs_new_@i: %m while trying to create /@l @d\n"),
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000881 PROMPT_NONE, 0 },
882
883 /* Error in ext2fs_new_dir_block while creating /lost+found */
884 { PR_3_ERR_LPF_NEW_DIR_BLOCK,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000885 N_("ext2fs_new_dir_@b: %m while creating new @d @b\n"),
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000886 PROMPT_NONE, 0 },
887
888 /* Error while writing directory block for /lost+found */
889 { PR_3_ERR_LPF_WRITE_BLOCK,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000890 N_("ext2fs_write_dir_@b: %m while writing the @d @b for /@l\n"),
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000891 PROMPT_NONE, 0 },
892
893 /* Error while adjusting inode count */
894 { PR_3_ADJUST_INODE,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000895 N_("Error while adjusting @i count on @i %i\n"),
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000896 PROMPT_NONE, 0 },
897
898 /* Couldn't fix parent directory -- error */
899 { PR_3_FIX_PARENT_ERR,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000900 N_("Couldn't fix parent of @i %i: %m\n\n"),
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000901 PROMPT_NONE, 0 },
902
903 /* Couldn't fix parent directory -- couldn't find it */
904 { PR_3_FIX_PARENT_NOFIND,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000905 N_("Couldn't fix parent of @i %i: Couldn't find parent @d entry\n\n"),
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000906 PROMPT_NONE, 0 },
907
908 /* Error allocating inode bitmap */
909 { PR_3_ALLOCATE_IBITMAP_ERROR,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000910 N_("@A @i @B (%N): %m\n"),
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000911 PROMPT_NONE, PR_FATAL },
912
913 /* Error creating root directory */
914 { PR_3_CREATE_ROOT_ERROR,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000915 N_("Error creating root @d (%s): %m\n"),
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000916 PROMPT_NONE, PR_FATAL },
917
918 /* Error creating lost and found directory */
919 { PR_3_CREATE_LPF_ERROR,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000920 N_("Error creating /@l @d (%s): %m\n"),
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000921 PROMPT_NONE, PR_FATAL },
922
Theodore Ts'of8188ff1997-11-14 05:23:04 +0000923 /* Root inode is not directory; aborting */
924 { PR_3_ROOT_NOT_DIR_ABORT,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000925 N_("@r is not a @d; aborting.\n"),
Theodore Ts'of8188ff1997-11-14 05:23:04 +0000926 PROMPT_NONE, PR_FATAL },
927
928 /* Cannot proceed without a root inode. */
929 { PR_3_NO_ROOT_INODE_ABORT,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000930 N_("Cannot proceed without a @r.\n"),
Theodore Ts'of8188ff1997-11-14 05:23:04 +0000931 PROMPT_NONE, PR_FATAL },
932
Theodore Ts'o7f813ba1998-09-03 01:26:03 +0000933 /* Internal error: couldn't find dir_info */
934 { PR_3_NO_DIRINFO,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000935 N_("Internal error: couldn't find dir_info for %i.\n"),
Theodore Ts'o7f813ba1998-09-03 01:26:03 +0000936 PROMPT_NONE, PR_FATAL },
937
Theodore Ts'o4a9f5931999-03-16 19:32:52 +0000938 /* Lost+found not a directory */
939 { PR_3_LPF_NOTDIR,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000940 N_("/@l is not a @d (ino=%i)\n"),
Theodore Ts'o4a9f5931999-03-16 19:32:52 +0000941 PROMPT_UNLINK, 0 },
942
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000943 /* Pass 4 errors */
944
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000945 /* Pass 4: Checking reference counts */
946 { PR_4_PASS_HEADER,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000947 N_("Pass 4: Checking reference counts\n"),
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000948 PROMPT_NONE, 0 },
949
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000950 /* Unattached zero-length inode */
951 { PR_4_ZERO_LEN_INODE,
952 "@u @z @i %i. ",
953 PROMPT_CLEAR, PR_PREEN_OK|PR_NO_OK },
954
955 /* Unattached inode */
956 { PR_4_UNATTACHED_INODE,
957 "@u @i %i\n",
958 PROMPT_CONNECT, 0 },
959
960 /* Inode ref count wrong */
961 { PR_4_BAD_REF_COUNT,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000962 N_("@i %i ref count is %Il, @s %N. "),
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000963 PROMPT_FIX, PR_PREEN_OK },
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000964
965 { PR_4_INCONSISTENT_COUNT,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000966 N_("WARNING: PROGRAMMING BUG IN E2FSCK!\n"
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000967 "\tOR SOME BONEHEAD (YOU) IS CHECKING A MOUNTED (LIVE) FILESYSTEM.\n"
968 "@i_link_info[%i] is %N, @i.i_links_count is %Il. "
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000969 "They should be the same!\n"),
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000970 PROMPT_NONE, 0 },
971
972 /* Pass 5 errors */
973
974 /* Pass 5: Checking group summary information */
975 { PR_5_PASS_HEADER,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000976 N_("Pass 5: Checking @g summary information\n"),
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000977 PROMPT_NONE, 0 },
978
979 /* Padding at end of inode bitmap is not set. */
980 { PR_5_INODE_BMAP_PADDING,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000981 N_("Padding at end of @i @B is not set. "),
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000982 PROMPT_FIX, PR_PREEN_OK },
983
984 /* Padding at end of block bitmap is not set. */
985 { PR_5_BLOCK_BMAP_PADDING,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000986 N_("Padding at end of @b @B is not set. "),
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000987 PROMPT_FIX, PR_PREEN_OK },
988
989 /* Block bitmap differences header */
990 { PR_5_BLOCK_BITMAP_HEADER,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000991 N_("@b @B differences: "),
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000992 PROMPT_NONE, PR_PREEN_OK | PR_PREEN_NOMSG},
993
994 /* Block not used, but marked in bitmap */
995 { PR_5_UNUSED_BLOCK,
996 " -%b",
997 PROMPT_NONE, PR_LATCH_BBITMAP | PR_PREEN_OK | PR_PREEN_NOMSG },
998
999 /* Block used, but not marked used in bitmap */
1000 { PR_5_BLOCK_USED,
1001 " +%b",
1002 PROMPT_NONE, PR_LATCH_BBITMAP | PR_PREEN_OK | PR_PREEN_NOMSG },
1003
1004 /* Block bitmap differences end */
1005 { PR_5_BLOCK_BITMAP_END,
1006 "\n",
1007 PROMPT_FIX, PR_PREEN_OK | PR_PREEN_NOMSG },
1008
1009 /* Inode bitmap differences header */
1010 { PR_5_INODE_BITMAP_HEADER,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +00001011 N_("@i @B differences: "),
Theodore Ts'o1b6bf171997-10-03 17:48:10 +00001012 PROMPT_NONE, PR_PREEN_OK | PR_PREEN_NOMSG },
1013
1014 /* Inode not used, but marked in bitmap */
1015 { PR_5_UNUSED_INODE,
1016 " -%i",
1017 PROMPT_NONE, PR_LATCH_IBITMAP | PR_PREEN_OK | PR_PREEN_NOMSG },
1018
1019 /* Inode used, but not marked used in bitmap */
1020 { PR_5_INODE_USED,
1021 " +%i",
1022 PROMPT_NONE, PR_LATCH_IBITMAP | PR_PREEN_OK | PR_PREEN_NOMSG },
1023
1024 /* Inode bitmap differences end */
1025 { PR_5_INODE_BITMAP_END,
1026 "\n",
1027 PROMPT_FIX, PR_PREEN_OK | PR_PREEN_NOMSG },
1028
1029 /* Free inodes count for group wrong */
1030 { PR_5_FREE_INODE_COUNT_GROUP,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +00001031 N_("Free @is count wrong for @g #%g (%i, counted=%j).\n"),
Theodore Ts'o1b6bf171997-10-03 17:48:10 +00001032 PROMPT_FIX, PR_PREEN_OK | PR_PREEN_NOMSG },
1033
1034 /* Directories count for group wrong */
1035 { PR_5_FREE_DIR_COUNT_GROUP,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +00001036 N_("Directories count wrong for @g #%g (%i, counted=%j).\n"),
Theodore Ts'o1b6bf171997-10-03 17:48:10 +00001037 PROMPT_FIX, PR_PREEN_OK | PR_PREEN_NOMSG },
1038
1039 /* Free inodes count wrong */
1040 { PR_5_FREE_INODE_COUNT,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +00001041 N_("Free @is count wrong (%i, counted=%j).\n"),
Theodore Ts'o1b6bf171997-10-03 17:48:10 +00001042 PROMPT_FIX, PR_PREEN_OK | PR_PREEN_NOMSG },
1043
1044 /* Free blocks count for group wrong */
1045 { PR_5_FREE_BLOCK_COUNT_GROUP,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +00001046 N_("Free @bs count wrong for @g #%g (%b, counted=%c).\n"),
Theodore Ts'o1b6bf171997-10-03 17:48:10 +00001047 PROMPT_FIX, PR_PREEN_OK | PR_PREEN_NOMSG },
1048
1049 /* Free blocks count wrong */
1050 { PR_5_FREE_BLOCK_COUNT,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +00001051 N_("Free @bs count wrong (%b, counted=%c).\n"),
Theodore Ts'o1b6bf171997-10-03 17:48:10 +00001052 PROMPT_FIX, PR_PREEN_OK | PR_PREEN_NOMSG },
1053
1054 /* Programming error: bitmap endpoints don't match */
1055 { PR_5_BMAP_ENDPOINTS,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +00001056 N_("PROGRAMMING ERROR: @f (#%N) @B endpoints (%b, %c) don't "
1057 "match calculated @B endpoints (%i, %j)\n"),
Theodore Ts'o1b6bf171997-10-03 17:48:10 +00001058 PROMPT_NONE, PR_FATAL },
1059
1060 /* Internal error: fudging end of bitmap */
1061 { PR_5_FUDGE_BITMAP_ERROR,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +00001062 N_("Internal error: fudging end of bitmap (%N)\n"),
Theodore Ts'o1b6bf171997-10-03 17:48:10 +00001063 PROMPT_NONE, PR_FATAL },
Theodore Ts'obbd47d72000-06-10 19:21:33 +00001064
1065 /* Error copying in replacement inode bitmap */
1066 { PR_5_COPY_IBITMAP_ERROR,
1067 "Error copying in replacement @i @B: %m\n",
1068 PROMPT_NONE, PR_FATAL },
1069
1070 /* Error copying in replacement block bitmap */
1071 { PR_5_COPY_BBITMAP_ERROR,
1072 "Error copying in replacement @b @B: %m\n",
1073 PROMPT_NONE, PR_FATAL },
1074
Theodore Ts'o21c84b71997-04-29 16:15:03 +00001075 { 0 }
1076};
1077
1078/*
1079 * This is the latch flags register. It allows several problems to be
1080 * "latched" together. This means that the user has to answer but one
1081 * question for the set of problems, and all of the associated
1082 * problems will be either fixed or not fixed.
1083 */
Theodore Ts'o1b6bf171997-10-03 17:48:10 +00001084static struct latch_descr pr_latch_info[] = {
1085 { PR_LATCH_BLOCK, PR_1_INODE_BLOCK_LATCH, 0 },
1086 { PR_LATCH_BBLOCK, PR_1_INODE_BBLOCK_LATCH, 0 },
1087 { PR_LATCH_IBITMAP, PR_5_INODE_BITMAP_HEADER, PR_5_INODE_BITMAP_END },
1088 { PR_LATCH_BBITMAP, PR_5_BLOCK_BITMAP_HEADER, PR_5_BLOCK_BITMAP_END },
1089 { PR_LATCH_RELOC, PR_0_RELOCATE_HINT, 0 },
1090 { PR_LATCH_DBLOCK, PR_1B_DUP_BLOCK_HEADER, PR_1B_DUP_BLOCK_END },
1091 { -1, 0, 0 },
Theodore Ts'o21c84b71997-04-29 16:15:03 +00001092};
1093
Theodore Ts'o1b6bf171997-10-03 17:48:10 +00001094static const struct e2fsck_problem *find_problem(int code)
Theodore Ts'o21c84b71997-04-29 16:15:03 +00001095{
1096 int i;
1097
1098 for (i=0; problem_table[i].e2p_code; i++) {
1099 if (problem_table[i].e2p_code == code)
1100 return &problem_table[i];
1101 }
1102 return 0;
1103}
1104
Theodore Ts'o1b6bf171997-10-03 17:48:10 +00001105static struct latch_descr *find_latch(int code)
Theodore Ts'o21c84b71997-04-29 16:15:03 +00001106{
Theodore Ts'o1b6bf171997-10-03 17:48:10 +00001107 int i;
1108
1109 for (i=0; pr_latch_info[i].latch_code >= 0; i++) {
1110 if (pr_latch_info[i].latch_code == code)
1111 return &pr_latch_info[i];
1112 }
1113 return 0;
Theodore Ts'o21c84b71997-04-29 16:15:03 +00001114}
1115
Theodore Ts'o1b6bf171997-10-03 17:48:10 +00001116int end_problem_latch(e2fsck_t ctx, int mask)
Theodore Ts'o21c84b71997-04-29 16:15:03 +00001117{
Theodore Ts'o1b6bf171997-10-03 17:48:10 +00001118 struct latch_descr *ldesc;
1119 struct problem_context pctx;
1120 int answer = -1;
1121
1122 ldesc = find_latch(mask);
1123 if (ldesc->end_message && (ldesc->flags & PRL_LATCHED)) {
1124 clear_problem_context(&pctx);
1125 answer = fix_problem(ctx, ldesc->end_message, &pctx);
1126 }
1127 ldesc->flags &= ~(PRL_VARIABLE);
1128 return answer;
1129}
1130
1131int set_latch_flags(int mask, int setflags, int clearflags)
1132{
1133 struct latch_descr *ldesc;
1134
1135 ldesc = find_latch(mask);
1136 if (!ldesc)
1137 return -1;
1138 ldesc->flags |= setflags;
1139 ldesc->flags &= ~clearflags;
1140 return 0;
1141}
1142
1143int get_latch_flags(int mask, int *value)
1144{
1145 struct latch_descr *ldesc;
1146
1147 ldesc = find_latch(mask);
1148 if (!ldesc)
1149 return -1;
1150 *value = ldesc->flags;
1151 return 0;
Theodore Ts'o21c84b71997-04-29 16:15:03 +00001152}
1153
1154void clear_problem_context(struct problem_context *ctx)
1155{
1156 memset(ctx, 0, sizeof(struct problem_context));
1157 ctx->blkcount = -1;
1158 ctx->group = -1;
1159}
1160
Theodore Ts'o1b6bf171997-10-03 17:48:10 +00001161int fix_problem(e2fsck_t ctx, problem_t code, struct problem_context *pctx)
Theodore Ts'o21c84b71997-04-29 16:15:03 +00001162{
Theodore Ts'o1b6bf171997-10-03 17:48:10 +00001163 ext2_filsys fs = ctx->fs;
1164 const struct e2fsck_problem *ptr;
1165 struct latch_descr *ldesc = 0;
1166 const char *message;
1167 int def_yn, answer, ans;
Theodore Ts'o21c84b71997-04-29 16:15:03 +00001168 int print_answer = 0;
1169 int suppress = 0;
1170
1171 ptr = find_problem(code);
1172 if (!ptr) {
Theodore Ts'o0c4a0722000-02-07 03:11:03 +00001173 printf(_("Unhandled error code (%d)!\n"), code);
Theodore Ts'o21c84b71997-04-29 16:15:03 +00001174 return 0;
1175 }
Theodore Ts'oaa4115a1999-10-21 19:33:18 +00001176 def_yn = 1;
Theodore Ts'oa846d2f1999-11-10 15:50:24 +00001177 if ((ptr->flags & PR_NO_DEFAULT) ||
1178 ((ptr->flags & PR_PREEN_NO) && (ctx->options & E2F_OPT_PREEN)) ||
1179 (ctx->options & E2F_OPT_NO))
Theodore Ts'oaa4115a1999-10-21 19:33:18 +00001180 def_yn= 0;
Theodore Ts'o21c84b71997-04-29 16:15:03 +00001181
1182 /*
1183 * Do special latch processing. This is where we ask the
1184 * latch question, if it exists
1185 */
1186 if (ptr->flags & PR_LATCH_MASK) {
Theodore Ts'o1b6bf171997-10-03 17:48:10 +00001187 ldesc = find_latch(ptr->flags & PR_LATCH_MASK);
1188 if (ldesc->question && !(ldesc->flags & PRL_LATCHED)) {
1189 ans = fix_problem(ctx, ldesc->question, pctx);
1190 if (ans == 1)
1191 ldesc->flags |= PRL_YES;
1192 if (ans == 0)
1193 ldesc->flags |= PRL_NO;
1194 ldesc->flags |= PRL_LATCHED;
1195 }
1196 if (ldesc->flags & PRL_SUPPRESS)
Theodore Ts'o21c84b71997-04-29 16:15:03 +00001197 suppress++;
1198 }
Theodore Ts'o1b6bf171997-10-03 17:48:10 +00001199 if ((ptr->flags & PR_PREEN_NOMSG) &&
1200 (ctx->options & E2F_OPT_PREEN))
1201 suppress++;
Theodore Ts'oaa4115a1999-10-21 19:33:18 +00001202 if ((ptr->flags & PR_NO_NOMSG) &&
1203 (ctx->options & E2F_OPT_NO))
1204 suppress++;
Theodore Ts'o21c84b71997-04-29 16:15:03 +00001205 if (!suppress) {
Theodore Ts'o1b6bf171997-10-03 17:48:10 +00001206 message = ptr->e2p_description;
1207 if (ctx->options & E2F_OPT_PREEN) {
1208 printf("%s: ", ctx->device_name);
1209#if 0
1210 if (ptr->e2p_preen_msg)
1211 message = ptr->e2p_preen_msg;
1212#endif
1213 }
Theodore Ts'o0c4a0722000-02-07 03:11:03 +00001214 print_e2fsck_message(ctx, _(message), pctx, 1);
Theodore Ts'o21c84b71997-04-29 16:15:03 +00001215 }
Theodore Ts'o1b6bf171997-10-03 17:48:10 +00001216 if (!(ptr->flags & PR_PREEN_OK) && (ptr->prompt != PROMPT_NONE))
1217 preenhalt(ctx);
Theodore Ts'o21c84b71997-04-29 16:15:03 +00001218
Theodore Ts'o1b6bf171997-10-03 17:48:10 +00001219 if (ptr->flags & PR_FATAL)
Theodore Ts'of8188ff1997-11-14 05:23:04 +00001220 fatal_error(ctx, 0);
Theodore Ts'o1b6bf171997-10-03 17:48:10 +00001221
1222 if (ptr->prompt == PROMPT_NONE) {
1223 if (ptr->flags & PR_NOCOLLATE)
1224 answer = -1;
Theodore Ts'o21c84b71997-04-29 16:15:03 +00001225 else
Theodore Ts'o1b6bf171997-10-03 17:48:10 +00001226 answer = def_yn;
1227 } else {
1228 if (ctx->options & E2F_OPT_PREEN) {
1229 answer = def_yn;
1230 if (!(ptr->flags & PR_PREEN_NOMSG))
1231 print_answer = 1;
1232 } else if ((ptr->flags & PR_LATCH_MASK) &&
1233 (ldesc->flags & (PRL_YES | PRL_NO))) {
1234 if (!suppress)
1235 print_answer = 1;
1236 if (ldesc->flags & PRL_YES)
1237 answer = 1;
1238 else
1239 answer = 0;
1240 } else
Theodore Ts'o0c4a0722000-02-07 03:11:03 +00001241 answer = ask(ctx, _(prompt[(int) ptr->prompt]), def_yn);
Theodore Ts'o1b6bf171997-10-03 17:48:10 +00001242 if (!answer && !(ptr->flags & PR_NO_OK))
1243 ext2fs_unmark_valid(fs);
Theodore Ts'o21c84b71997-04-29 16:15:03 +00001244
Theodore Ts'o1b6bf171997-10-03 17:48:10 +00001245 if (print_answer)
1246 printf("%s.\n", answer ?
Theodore Ts'o0c4a0722000-02-07 03:11:03 +00001247 _(preen_msg[(int) ptr->prompt]) : _("IGNORED"));
Theodore Ts'o21c84b71997-04-29 16:15:03 +00001248
Theodore Ts'o1b6bf171997-10-03 17:48:10 +00001249 }
1250
Theodore Ts'of8188ff1997-11-14 05:23:04 +00001251 if ((ptr->prompt == PROMPT_ABORT) && answer)
1252 fatal_error(ctx, 0);
Theodore Ts'o1b6bf171997-10-03 17:48:10 +00001253
Theodore Ts'o3b5386d2000-08-14 14:25:19 +00001254 if (ptr->flags & PR_AFTER_CODE)
1255 answer = fix_problem(ctx, ptr->second_code, pctx);
1256
Theodore Ts'o21c84b71997-04-29 16:15:03 +00001257 return answer;
1258}