Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 1 | /* |
| 2 | * problem.c --- report filesystem problems to the user |
| 3 | * |
| 4 | * Copyright 1996, 1997 by Theodore Ts'o |
| 5 | * |
| 6 | * %Begin-Header% |
| 7 | * This file may be redistributed under the terms of the GNU Public |
| 8 | * License. |
| 9 | * %End-Header% |
| 10 | */ |
| 11 | |
| 12 | #include <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'o | f8188ff | 1997-11-14 05:23:04 +0000 | [diff] [blame] | 21 | #include "problemP.h" |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 22 | |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 23 | #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'o | f8188ff | 1997-11-14 05:23:04 +0000 | [diff] [blame] | 39 | #define PROMPT_SUPPRESS 16 |
Theodore Ts'o | 4a9f593 | 1999-03-16 19:32:52 +0000 | [diff] [blame] | 40 | #define PROMPT_UNLINK 17 |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 41 | |
| 42 | /* |
| 43 | * These are the prompts which are used to ask the user if they want |
| 44 | * to fix a problem. |
| 45 | */ |
| 46 | static const char *prompt[] = { |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 47 | 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'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 65 | }; |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 66 | |
| 67 | /* |
| 68 | * These messages are printed when we are preen mode and we will be |
| 69 | * automatically fixing the problem. |
| 70 | */ |
| 71 | static const char *preen_msg[] = { |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 72 | 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'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 90 | }; |
| 91 | |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 92 | static const struct e2fsck_problem problem_table[] = { |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 93 | |
| 94 | /* Pre-Pass 1 errors */ |
| 95 | |
| 96 | /* Block bitmap not in group */ |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 97 | { PR_0_BB_NOT_GROUP, N_("@b @B for @g %g is not in @g. (@b %b)\n"), |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 98 | PROMPT_RELOCATE, PR_LATCH_RELOC }, |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 99 | |
| 100 | /* Inode bitmap not in group */ |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 101 | { PR_0_IB_NOT_GROUP, N_("@i @B for @g %g is not in @g. (@b %b)\n"), |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 102 | PROMPT_RELOCATE, PR_LATCH_RELOC }, |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 103 | |
| 104 | /* Inode table not in group */ |
| 105 | { PR_0_ITABLE_NOT_GROUP, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 106 | N_("@i table for @g %g is not in @g. (@b %b)\n" |
| 107 | "WARNING: SEVERE DATA LOSS POSSIBLE.\n"), |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 108 | PROMPT_RELOCATE, PR_LATCH_RELOC }, |
| 109 | |
| 110 | /* Superblock corrupt */ |
| 111 | { PR_0_SB_CORRUPT, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 112 | N_("\nThe @S could not be read or does not describe a correct ext2\n" |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 113 | "@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'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 116 | " e2fsck -b %S <device>\n\n"), |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 117 | PROMPT_NONE, PR_FATAL }, |
| 118 | |
| 119 | /* Filesystem size is wrong */ |
| 120 | { PR_0_FS_SIZE_WRONG, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 121 | N_("The @f size (according to the @S) is %b @bs\n" |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 122 | "The physical size of the device is %c @bs\n" |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 123 | "Either the @S or the partition table is likely to be corrupt!\n"), |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 124 | PROMPT_ABORT, 0 }, |
| 125 | |
| 126 | /* Fragments not supported */ |
| 127 | { PR_0_NO_FRAGMENTS, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 128 | N_("@S @b_size = %b, fragsize = %c.\n" |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 129 | "This version of e2fsck does not support fragment sizes different\n" |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 130 | "from the @b size.\n"), |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 131 | PROMPT_NONE, PR_FATAL }, |
| 132 | |
| 133 | /* Bad blocks_per_group */ |
| 134 | { PR_0_BLOCKS_PER_GROUP, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 135 | N_("@S @bs_per_group = %b, should have been %c\n"), |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 136 | PROMPT_NONE, PR_AFTER_CODE, PR_0_SB_CORRUPT }, |
| 137 | |
| 138 | /* Bad first_data_block */ |
| 139 | { PR_0_FIRST_DATA_BLOCK, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 140 | N_("@S first_data_@b = %b, should have been %c\n"), |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 141 | PROMPT_NONE, PR_AFTER_CODE, PR_0_SB_CORRUPT }, |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 142 | |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 143 | /* Adding UUID to filesystem */ |
| 144 | { PR_0_ADD_UUID, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 145 | N_("@f did not have a UUID; generating one.\n\n"), |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 146 | PROMPT_NONE, 0 }, |
| 147 | |
| 148 | /* Relocate hint */ |
| 149 | { PR_0_RELOCATE_HINT, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 150 | N_("Note: if there is several inode or block bitmap blocks\n" |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 151 | "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'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 155 | "block group descriptor may be OK.\n\n"), |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 156 | PROMPT_NONE, PR_PREEN_OK | PR_NOCOLLATE }, |
| 157 | |
| 158 | /* Miscellaneous superblock corruption */ |
| 159 | { PR_0_MISC_CORRUPT_SUPER, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 160 | N_("Corruption found in @S. (%s = %N).\n"), |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 161 | 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'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 165 | N_("Error determining size of the physical device: %m\n"), |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 166 | PROMPT_NONE, PR_FATAL }, |
Theodore Ts'o | d4b0ce0 | 1999-06-18 01:09:29 +0000 | [diff] [blame] | 167 | |
| 168 | /* Inode count in superblock is incorrect */ |
| 169 | { PR_0_INODE_COUNT_WRONG, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 170 | N_("@i count in @S is %i, should be %j\n"), |
Theodore Ts'o | d4b0ce0 | 1999-06-18 01:09:29 +0000 | [diff] [blame] | 171 | PROMPT_FIX, 0 }, |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 172 | |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 173 | /* Pass 1 errors */ |
| 174 | |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 175 | /* Pass 1: Checking inodes, blocks, and sizes */ |
| 176 | { PR_1_PASS_HEADER, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 177 | N_("Pass 1: Checking @is, @bs, and sizes\n"), |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 178 | PROMPT_NONE, 0 }, |
| 179 | |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 180 | /* Root directory is not an inode */ |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 181 | { PR_1_ROOT_NO_DIR, N_("@r is not a @d. "), |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 182 | PROMPT_CLEAR, 0 }, |
| 183 | |
| 184 | /* Root directory has dtime set */ |
| 185 | { PR_1_ROOT_DTIME, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 186 | N_("@r has dtime set (probably due to old mke2fs). "), |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 187 | PROMPT_FIX, PR_PREEN_OK }, |
| 188 | |
| 189 | /* Reserved inode has bad mode */ |
| 190 | { PR_1_RESERVED_BAD_MODE, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 191 | N_("Reserved @i %i has bad mode. "), |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 192 | PROMPT_CLEAR, PR_PREEN_OK }, |
| 193 | |
| 194 | /* Deleted inode has zero dtime */ |
| 195 | { PR_1_ZERO_DTIME, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 196 | N_("@D @i %i has zero dtime. "), |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 197 | PROMPT_FIX, PR_PREEN_OK }, |
| 198 | |
| 199 | /* Inode in use, but dtime set */ |
| 200 | { PR_1_SET_DTIME, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 201 | N_("@i %i is in use, but has dtime set. "), |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 202 | PROMPT_FIX, PR_PREEN_OK }, |
| 203 | |
| 204 | /* Zero-length directory */ |
| 205 | { PR_1_ZERO_LENGTH_DIR, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 206 | N_("@i %i is a @z @d. "), |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 207 | PROMPT_CLEAR, PR_PREEN_OK }, |
| 208 | |
| 209 | /* Block bitmap conflicts with some other fs block */ |
| 210 | { PR_1_BB_CONFLICT, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 211 | N_("@g %g's @b @B at %b @C.\n"), |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 212 | PROMPT_RELOCATE, 0 }, |
| 213 | |
| 214 | /* Inode bitmap conflicts with some other fs block */ |
| 215 | { PR_1_IB_CONFLICT, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 216 | N_("@g %g's @i @B at %b @C.\n"), |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 217 | PROMPT_RELOCATE, 0 }, |
| 218 | |
| 219 | /* Inode table conflicts with some other fs block */ |
| 220 | { PR_1_ITABLE_CONFLICT, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 221 | N_("@g %g's @i table at %b @C.\n"), |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 222 | PROMPT_RELOCATE, 0 }, |
| 223 | |
| 224 | /* Block bitmap is on a bad block */ |
| 225 | { PR_1_BB_BAD_BLOCK, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 226 | N_("@g %g's @b @B (%b) is bad. "), |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 227 | PROMPT_RELOCATE, 0 }, |
| 228 | |
| 229 | /* Inode bitmap is on a bad block */ |
| 230 | { PR_1_IB_BAD_BLOCK, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 231 | N_("@g %g's @i @B (%b) is bad. "), |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 232 | PROMPT_RELOCATE, 0 }, |
| 233 | |
| 234 | /* Inode has incorrect i_size */ |
| 235 | { PR_1_BAD_I_SIZE, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 236 | N_("@i %i, i_size is %Is, @s %N. "), |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 237 | PROMPT_FIX, PR_PREEN_OK }, |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 238 | |
| 239 | /* Inode has incorrect i_blocks */ |
| 240 | { PR_1_BAD_I_BLOCKS, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 241 | N_("@i %i, i_@bs is %Ib, @s %N. "), |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 242 | PROMPT_FIX, PR_PREEN_OK }, |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 243 | |
| 244 | /* Illegal block number in inode */ |
| 245 | { PR_1_ILLEGAL_BLOCK_NUM, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 246 | N_("@I @b #%B (%b) in @i %i. "), |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 247 | PROMPT_CLEAR, PR_LATCH_BLOCK }, |
| 248 | |
| 249 | /* Block number overlaps fs metadata */ |
| 250 | { PR_1_BLOCK_OVERLAPS_METADATA, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 251 | N_("@b #%B (%b) overlaps @f metadata in @i %i. "), |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 252 | PROMPT_CLEAR, PR_LATCH_BLOCK }, |
| 253 | |
| 254 | /* Inode has illegal blocks (latch question) */ |
| 255 | { PR_1_INODE_BLOCK_LATCH, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 256 | N_("@i %i has illegal @b(s). "), |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 257 | PROMPT_CLEAR, 0 }, |
| 258 | |
| 259 | /* Too many bad blocks in inode */ |
| 260 | { PR_1_TOO_MANY_BAD_BLOCKS, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 261 | N_("Too many illegal @bs in @i %i.\n"), |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 262 | PROMPT_CLEAR_INODE, PR_NO_OK }, |
| 263 | |
| 264 | /* Illegal block number in bad block inode */ |
| 265 | { PR_1_BB_ILLEGAL_BLOCK_NUM, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 266 | N_("@I @b #%B (%b) in bad @b @i. "), |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 267 | PROMPT_CLEAR, PR_LATCH_BBLOCK }, |
| 268 | |
| 269 | /* Bad block inode has illegal blocks (latch question) */ |
| 270 | { PR_1_INODE_BBLOCK_LATCH, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 271 | N_("Bad @b @i has illegal @b(s). "), |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 272 | PROMPT_CLEAR, 0 }, |
| 273 | |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 274 | /* Duplicate or bad blocks in use! */ |
| 275 | { PR_1_DUP_BLOCKS_PREENSTOP, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 276 | N_("Duplicate or bad @b in use!\n"), |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 277 | PROMPT_NONE, 0 }, |
| 278 | |
| 279 | /* Bad block used as bad block indirect block */ |
| 280 | { PR_1_BBINODE_BAD_METABLOCK, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 281 | N_("Bad @b %b used as bad @b indirect @b?!?\n"), |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 282 | PROMPT_NONE, PR_AFTER_CODE, PR_1_BBINODE_BAD_METABLOCK_PROMPT }, |
| 283 | |
| 284 | /* Inconsistency can't be fixed prompt */ |
| 285 | { PR_1_BBINODE_BAD_METABLOCK_PROMPT, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 286 | N_("\nThis inconsistency can not be fixed with e2fsck; to fix it, use\n" |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 287 | """dumpe2fs -b"" to dump out the bad @b " |
| 288 | "list and ""e2fsck -L filename""\n" |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 289 | "to read it back in again.\n"), |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 290 | PROMPT_CONTINUE, PR_PREEN_NOMSG }, |
| 291 | |
| 292 | /* Bad primary block */ |
| 293 | { PR_1_BAD_PRIMARY_BLOCK, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 294 | N_("\nIf the @b is really bad, the @f can not be fixed.\n"), |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 295 | PROMPT_NONE, PR_AFTER_CODE, PR_1_BAD_PRIMARY_BLOCK_PROMPT }, |
| 296 | |
| 297 | /* Bad primary block prompt */ |
| 298 | { PR_1_BAD_PRIMARY_BLOCK_PROMPT, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 299 | N_("You can clear the this @b (and hope for the best) from the\n" |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 300 | "bad @b list and hope that @b is really OK, but there are no\n" |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 301 | "guarantees.\n\n"), |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 302 | PROMPT_CLEAR, PR_PREEN_NOMSG }, |
| 303 | |
| 304 | /* Bad primary superblock */ |
| 305 | { PR_1_BAD_PRIMARY_SUPERBLOCK, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 306 | N_("The primary @S (%b) is on the bad @b list.\n"), |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 307 | PROMPT_NONE, PR_AFTER_CODE, PR_1_BAD_PRIMARY_BLOCK }, |
| 308 | |
| 309 | /* Bad primary block group descriptors */ |
| 310 | { PR_1_BAD_PRIMARY_GROUP_DESCRIPTOR, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 311 | N_("Block %b in the primary @g descriptors " |
| 312 | "is on the bad @b list\n"), |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 313 | PROMPT_NONE, PR_AFTER_CODE, PR_1_BAD_PRIMARY_BLOCK }, |
| 314 | |
| 315 | /* Bad superblock in group */ |
| 316 | { PR_1_BAD_SUPERBLOCK, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 317 | N_("Warning: Group %g's @S (%b) is bad.\n"), |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 318 | PROMPT_NONE, PR_PREEN_OK | PR_PREEN_NOMSG }, |
| 319 | |
| 320 | /* Bad block group descriptors in group */ |
| 321 | { PR_1_BAD_GROUP_DESCRIPTORS, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 322 | N_("Warning: Group %g's copy of the @g descriptors has a bad " |
| 323 | "@b (%b).\n"), |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 324 | PROMPT_NONE, PR_PREEN_OK | PR_PREEN_NOMSG }, |
| 325 | |
| 326 | /* Block claimed for no reason */ |
| 327 | { PR_1_PROGERR_CLAIMED_BLOCK, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 328 | N_("Programming error? @b #%b claimed for no reason in " |
| 329 | "process_bad_@b.\n"), |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 330 | PROMPT_NONE, PR_PREEN_OK }, |
| 331 | |
Theodore Ts'o | f8188ff | 1997-11-14 05:23:04 +0000 | [diff] [blame] | 332 | /* Error allocating blocks for relocating metadata */ |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 333 | { PR_1_RELOC_BLOCK_ALLOCATE, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 334 | N_("@A %N @b(s) for %s: %m\n"), |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 335 | PROMPT_NONE, PR_PREEN_OK }, |
| 336 | |
Theodore Ts'o | f8188ff | 1997-11-14 05:23:04 +0000 | [diff] [blame] | 337 | /* Error allocating block buffer during relocation process */ |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 338 | { PR_1_RELOC_MEMORY_ALLOCATE, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 339 | N_("@A @b buffer for relocating %s\n"), |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 340 | PROMPT_NONE, PR_PREEN_OK }, |
| 341 | |
| 342 | /* Relocating metadata group information from X to Y */ |
| 343 | { PR_1_RELOC_FROM_TO, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 344 | N_("Relocating @g %g's %s from %b to %c...\n"), |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 345 | PROMPT_NONE, PR_PREEN_OK }, |
| 346 | |
| 347 | /* Relocating metatdata group information to X */ |
| 348 | { PR_1_RELOC_TO, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 349 | N_("Relocating @g %g's %s to %c...\n"), |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 350 | PROMPT_NONE, PR_PREEN_OK }, |
| 351 | |
| 352 | /* Block read error during relocation process */ |
| 353 | { PR_1_RELOC_READ_ERR, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 354 | N_("Warning: could not read @b %b of %s: %m\n"), |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 355 | PROMPT_NONE, PR_PREEN_OK }, |
| 356 | |
| 357 | /* Block write error during relocation process */ |
| 358 | { PR_1_RELOC_WRITE_ERR, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 359 | N_("Warning: could not write @b %b for %s: %m\n"), |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 360 | PROMPT_NONE, PR_PREEN_OK }, |
| 361 | |
| 362 | /* Error allocating inode bitmap */ |
| 363 | { PR_1_ALLOCATE_IBITMAP_ERROR, |
Theodore Ts'o | f8188ff | 1997-11-14 05:23:04 +0000 | [diff] [blame] | 364 | "@A @i @B (%N): %m\n", |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 365 | PROMPT_NONE, PR_FATAL }, |
| 366 | |
| 367 | /* Error allocating block bitmap */ |
| 368 | { PR_1_ALLOCATE_BBITMAP_ERROR, |
Theodore Ts'o | f8188ff | 1997-11-14 05:23:04 +0000 | [diff] [blame] | 369 | "@A @b @B (%N): %m\n", |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 370 | PROMPT_NONE, PR_FATAL }, |
| 371 | |
| 372 | /* Error allocating icount structure */ |
| 373 | { PR_1_ALLOCATE_ICOUNT, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 374 | N_("@A icount link information: %m\n"), |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 375 | PROMPT_NONE, PR_FATAL }, |
| 376 | |
| 377 | /* Error allocating dbcount */ |
| 378 | { PR_1_ALLOCATE_DBCOUNT, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 379 | N_("@A @d @b array: %m\n"), |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 380 | PROMPT_NONE, PR_FATAL }, |
| 381 | |
| 382 | /* Error while scanning inodes */ |
| 383 | { PR_1_ISCAN_ERROR, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 384 | N_("Error while scanning @is (%i): %m\n"), |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 385 | PROMPT_NONE, PR_FATAL }, |
| 386 | |
| 387 | /* Error while iterating over blocks */ |
| 388 | { PR_1_BLOCK_ITERATE, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 389 | N_("Error while iterating over blocks in @i %i: %m\n"), |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 390 | PROMPT_NONE, PR_FATAL }, |
| 391 | |
| 392 | /* Error while storing inode count information */ |
| 393 | { PR_1_ICOUNT_STORE, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 394 | N_("Error storing @i count information (inode=%i, count=%N): %m\n"), |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 395 | PROMPT_NONE, PR_FATAL }, |
| 396 | |
| 397 | /* Error while storing directory block information */ |
| 398 | { PR_1_ADD_DBLOCK, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 399 | N_("Error storing @d @b information " |
| 400 | "(inode=%i, block=%b, num=%N): %m\n"), |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 401 | PROMPT_NONE, PR_FATAL }, |
| 402 | |
| 403 | /* Error while reading inode (for clearing) */ |
| 404 | { PR_1_READ_INODE, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 405 | N_("Error reading @i %i: %m\n"), |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 406 | PROMPT_NONE, PR_FATAL }, |
Theodore Ts'o | f8188ff | 1997-11-14 05:23:04 +0000 | [diff] [blame] | 407 | |
| 408 | /* Suppress messages prompt */ |
| 409 | { PR_1_SUPPRESS_MESSAGES, "", PROMPT_SUPPRESS, PR_NO_OK }, |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 410 | |
Theodore Ts'o | 246501c | 1998-03-24 16:22:38 +0000 | [diff] [blame] | 411 | /* Filesystem contains large files, but has no such flag in sb */ |
| 412 | { PR_1_FEATURE_LARGE_FILES, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 413 | N_("@f contains large files, but lacks LARGE_FILE flag in @S.\n"), |
Theodore Ts'o | 246501c | 1998-03-24 16:22:38 +0000 | [diff] [blame] | 414 | PROMPT_FIX, 0 }, |
| 415 | |
Theodore Ts'o | 6fdc7a3 | 1999-11-10 13:34:40 +0000 | [diff] [blame] | 416 | /* Imagic flag set on an inode when filesystem doesn't support it */ |
| 417 | { PR_1_SET_IMAGIC, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 418 | N_("@i %i has imagic flag set. "), |
Theodore Ts'o | 6fdc7a3 | 1999-11-10 13:34:40 +0000 | [diff] [blame] | 419 | PROMPT_CLEAR, 0 }, |
| 420 | |
| 421 | /* Immutable flag set on a device or socket inode */ |
| 422 | { PR_1_SET_IMMUTABLE, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 423 | N_("Special (device/socket/fifo) @i %i has immutable flag set. "), |
Theodore Ts'o | a846d2f | 1999-11-10 15:50:24 +0000 | [diff] [blame] | 424 | PROMPT_CLEAR, PR_PREEN_OK | PR_PREEN_NO | PR_NO_OK }, |
Theodore Ts'o | 6fdc7a3 | 1999-11-10 13:34:40 +0000 | [diff] [blame] | 425 | |
Theodore Ts'o | 1917875 | 2000-02-11 15:55:07 +0000 | [diff] [blame^] | 426 | /* Imagic flag set on an inode when filesystem doesn't support it */ |
| 427 | { PR_1_COMPR_SET, |
| 428 | N_("@i %i has @cion flag set on @f without @cion support. "), |
| 429 | PROMPT_CLEAR, 0 }, |
| 430 | |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 431 | /* Pass 1b errors */ |
| 432 | |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 433 | /* Pass 1B: Rescan for duplicate/bad blocks */ |
| 434 | { PR_1B_PASS_HEADER, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 435 | N_("Duplicate @bs found... invoking duplicate @b passes.\n" |
| 436 | "Pass 1B: Rescan for duplicate/bad @bs\n"), |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 437 | PROMPT_NONE, 0 }, |
| 438 | |
| 439 | /* Duplicate/bad block(s) header */ |
| 440 | { PR_1B_DUP_BLOCK_HEADER, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 441 | N_("Duplicate/bad @b(s) in @i %i:"), |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 442 | PROMPT_NONE, 0 }, |
| 443 | |
| 444 | /* Duplicate/bad block(s) in inode */ |
| 445 | { PR_1B_DUP_BLOCK, |
| 446 | " %b", |
| 447 | PROMPT_NONE, PR_LATCH_DBLOCK }, |
| 448 | |
| 449 | /* Duplicate/bad block(s) end */ |
| 450 | { PR_1B_DUP_BLOCK_END, |
| 451 | "\n", |
| 452 | PROMPT_NONE, 0 }, |
| 453 | |
| 454 | /* Error while scanning inodes */ |
| 455 | { PR_1B_ISCAN_ERROR, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 456 | N_("Error while scanning inodes (%i): %m\n"), |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 457 | PROMPT_NONE, PR_FATAL }, |
| 458 | |
| 459 | /* Error allocating inode bitmap */ |
| 460 | { PR_1B_ALLOCATE_IBITMAP_ERROR, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 461 | N_("@A @i @B (inode_dup_map): %m\n"), |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 462 | PROMPT_NONE, PR_FATAL }, |
| 463 | |
| 464 | |
| 465 | /* Pass 1C: Scan directories for inodes with dup blocks. */ |
| 466 | { PR_1C_PASS_HEADER, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 467 | N_("Pass 1C: Scan directories for @is with dup @bs.\n"), |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 468 | PROMPT_NONE, 0 }, |
| 469 | |
| 470 | |
| 471 | /* Pass 1D: Reconciling duplicate blocks */ |
| 472 | { PR_1D_PASS_HEADER, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 473 | N_("Pass 1D: Reconciling duplicate @bs\n"), |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 474 | PROMPT_NONE, 0 }, |
| 475 | |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 476 | /* File has duplicate blocks */ |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 477 | { PR_1D_DUP_FILE, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 478 | N_("File %Q (@i #%i, mod time %IM) \n" |
| 479 | " has %B duplicate @b(s), shared with %N file(s):\n"), |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 480 | PROMPT_NONE, 0 }, |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 481 | |
| 482 | /* List of files sharing duplicate blocks */ |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 483 | { PR_1D_DUP_FILE_LIST, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 484 | N_("\t%Q (@i #%i, mod time %IM)\n"), |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 485 | PROMPT_NONE, 0 }, |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 486 | |
Theodore Ts'o | 521e368 | 1997-04-29 17:48:10 +0000 | [diff] [blame] | 487 | /* File sharing blocks with filesystem metadata */ |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 488 | { PR_1D_SHARE_METADATA, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 489 | N_("\t<@f metadata>\n"), |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 490 | PROMPT_NONE, 0 }, |
| 491 | |
| 492 | /* Report of how many duplicate/bad inodes */ |
| 493 | { PR_1D_NUM_DUP_INODES, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 494 | N_("(There are %N @is containing duplicate/bad @bs.)\n\n"), |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 495 | PROMPT_NONE, 0 }, |
| 496 | |
| 497 | /* Duplicated blocks already reassigned or cloned. */ |
| 498 | { PR_1D_DUP_BLOCKS_DEALT, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 499 | N_("Duplicated @bs already reassigned or cloned.\n\n"), |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 500 | PROMPT_NONE, 0 }, |
| 501 | |
| 502 | /* Clone duplicate/bad blocks? */ |
| 503 | { PR_1D_CLONE_QUESTION, |
| 504 | "", PROMPT_CLONE, PR_NO_OK }, |
| 505 | |
| 506 | /* Delete file? */ |
| 507 | { PR_1D_DELETE_QUESTION, |
| 508 | "", PROMPT_DELETE, 0 }, |
| 509 | |
| 510 | /* Couldn't clone file (error) */ |
| 511 | { PR_1D_CLONE_ERROR, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 512 | N_("Couldn't clone file: %m\n"), PROMPT_NONE, 0 }, |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 513 | |
| 514 | /* Pass 2 errors */ |
| 515 | |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 516 | /* Pass 2: Checking directory structure */ |
| 517 | { PR_2_PASS_HEADER, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 518 | N_("Pass 2: Checking @d structure\n"), |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 519 | PROMPT_NONE, 0 }, |
| 520 | |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 521 | /* Bad inode number for '.' */ |
| 522 | { PR_2_BAD_INODE_DOT, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 523 | N_("Bad @i number for '.' in @d @i %i.\n"), |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 524 | PROMPT_FIX, 0 }, |
| 525 | |
| 526 | /* Directory entry has bad inode number */ |
| 527 | { PR_2_BAD_INO, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 528 | N_("@E has bad @i #: %Di.\n"), |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 529 | PROMPT_CLEAR, 0 }, |
| 530 | |
| 531 | /* Directory entry has deleted or unused inode */ |
| 532 | { PR_2_UNUSED_INODE, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 533 | N_("@E has @D/unused @i %Di. "), |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 534 | PROMPT_CLEAR, PR_PREEN_OK }, |
| 535 | |
| 536 | /* Directry entry is link to '.' */ |
| 537 | { PR_2_LINK_DOT, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 538 | N_("@E @L to '.' "), |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 539 | PROMPT_CLEAR, 0 }, |
| 540 | |
| 541 | /* Directory entry points to inode now located in a bad block */ |
| 542 | { PR_2_BB_INODE, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 543 | N_("@E points to @i (%Di) located in a bad @b.\n"), |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 544 | PROMPT_CLEAR, 0 }, |
| 545 | |
| 546 | /* Directory entry contains a link to a directory */ |
| 547 | { PR_2_LINK_DIR, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 548 | N_("@E @L to @d %P (%Di).\n"), |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 549 | PROMPT_CLEAR, 0 }, |
| 550 | |
| 551 | /* Directory entry contains a link to the root directry */ |
| 552 | { PR_2_LINK_ROOT, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 553 | N_("@E @L to the @r.\n"), |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 554 | PROMPT_CLEAR, 0 }, |
| 555 | |
| 556 | /* Directory entry has illegal characters in its name */ |
| 557 | { PR_2_BAD_NAME, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 558 | N_("@E has illegal characters in its name.\n"), |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 559 | PROMPT_FIX, 0 }, |
| 560 | |
| 561 | /* Missing '.' in directory inode */ |
| 562 | { PR_2_MISSING_DOT, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 563 | N_("Missing '.' in @d @i %i.\n"), |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 564 | PROMPT_FIX, 0 }, |
| 565 | |
| 566 | /* Missing '..' in directory inode */ |
| 567 | { PR_2_MISSING_DOT_DOT, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 568 | N_("Missing '..' in @d @i %i.\n"), |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 569 | PROMPT_FIX, 0 }, |
| 570 | |
| 571 | /* First entry in directory inode doesn't contain '.' */ |
| 572 | { PR_2_1ST_NOT_DOT, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 573 | N_("First @e '%Dn' (inode=%Di) in @d @i %i (%p) @s '.'\n"), |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 574 | PROMPT_FIX, 0 }, |
| 575 | |
| 576 | /* Second entry in directory inode doesn't contain '..' */ |
| 577 | { PR_2_2ND_NOT_DOT_DOT, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 578 | N_("Second @e '%Dn' (inode=%Di) in @d @i %i @s '..'\n"), |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 579 | PROMPT_FIX, 0 }, |
| 580 | |
| 581 | /* i_faddr should be zero */ |
| 582 | { PR_2_FADDR_ZERO, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 583 | N_("i_faddr @F %IF, @s zero.\n"), |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 584 | PROMPT_CLEAR, 0 }, |
| 585 | |
| 586 | /* i_file_acl should be zero */ |
| 587 | { PR_2_FILE_ACL_ZERO, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 588 | N_("i_file_acl @F %If, @s zero.\n"), |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 589 | PROMPT_CLEAR, 0 }, |
| 590 | |
| 591 | /* i_dir_acl should be zero */ |
| 592 | { PR_2_DIR_ACL_ZERO, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 593 | N_("i_dir_acl @F %Id, @s zero.\n"), |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 594 | PROMPT_CLEAR, 0 }, |
| 595 | |
| 596 | /* i_frag should be zero */ |
| 597 | { PR_2_FRAG_ZERO, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 598 | N_("i_frag @F %N, @s zero.\n"), |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 599 | PROMPT_CLEAR, 0 }, |
| 600 | |
| 601 | /* i_fsize should be zero */ |
| 602 | { PR_2_FSIZE_ZERO, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 603 | N_("i_fsize @F %N, @s zero.\n"), |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 604 | PROMPT_CLEAR, 0 }, |
| 605 | |
| 606 | /* inode has bad mode */ |
| 607 | { PR_2_BAD_MODE, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 608 | N_("@i %i (%Q) has a bad mode (%Im).\n"), |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 609 | PROMPT_CLEAR, 0 }, |
| 610 | |
| 611 | /* directory corrupted */ |
| 612 | { PR_2_DIR_CORRUPTED, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 613 | N_("@d @i %i, @b %B, offset %N: @d corrupted\n"), |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 614 | PROMPT_SALVAGE, 0 }, |
| 615 | |
| 616 | /* filename too long */ |
| 617 | { PR_2_FILENAME_LONG, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 618 | N_("@d @i %i, @b %B, offset %N: filename too long\n"), |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 619 | PROMPT_TRUNCATE, 0 }, |
| 620 | |
| 621 | /* Directory inode has a missing block (hole) */ |
| 622 | { PR_2_DIRECTORY_HOLE, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 623 | N_("@d @i %i has an unallocated @b #%B. "), |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 624 | PROMPT_ALLOCATE, 0 }, |
| 625 | |
| 626 | /* '.' is not NULL terminated */ |
| 627 | { PR_2_DOT_NULL_TERM, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 628 | N_("'.' @d @e in @d @i %i is not NULL terminated\n"), |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 629 | PROMPT_FIX, 0 }, |
| 630 | |
| 631 | /* '..' is not NULL terminated */ |
| 632 | { PR_2_DOT_DOT_NULL_TERM, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 633 | N_("'..' @d @e in @d @i %i is not NULL terminated\n"), |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 634 | PROMPT_FIX, 0 }, |
| 635 | |
Theodore Ts'o | 7cf73dc | 1997-08-14 17:17:16 +0000 | [diff] [blame] | 636 | /* Illegal character device inode */ |
| 637 | { PR_2_BAD_CHAR_DEV, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 638 | N_("@i %i (%Q) is an @I character device.\n"), |
Theodore Ts'o | 7cf73dc | 1997-08-14 17:17:16 +0000 | [diff] [blame] | 639 | PROMPT_CLEAR, 0 }, |
| 640 | |
| 641 | /* Illegal block device inode */ |
| 642 | { PR_2_BAD_BLOCK_DEV, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 643 | N_("@i %i (%Q) is an @I @b device.\n"), |
Theodore Ts'o | 7cf73dc | 1997-08-14 17:17:16 +0000 | [diff] [blame] | 644 | PROMPT_CLEAR, 0 }, |
| 645 | |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 646 | /* Duplicate '.' entry */ |
| 647 | { PR_2_DUP_DOT, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 648 | N_("@E is duplicate '.' @e.\n"), |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 649 | PROMPT_FIX, 0 }, |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 650 | |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 651 | /* Duplicate '..' entry */ |
| 652 | { PR_2_DUP_DOT_DOT, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 653 | N_("@E is duplicate '..' @e.\n"), |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 654 | PROMPT_FIX, 0 }, |
| 655 | |
| 656 | /* Internal error: couldn't find dir_info */ |
| 657 | { PR_2_NO_DIRINFO, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 658 | N_("Internal error: couldn't find dir_info for %i.\n"), |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 659 | PROMPT_NONE, PR_FATAL }, |
| 660 | |
| 661 | /* Final rec_len is wrong */ |
| 662 | { PR_2_FINAL_RECLEN, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 663 | N_("@E has rec_len of %dr, should be %N.\n"), |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 664 | PROMPT_FIX, 0 }, |
| 665 | |
| 666 | /* Error allocating icount structure */ |
| 667 | { PR_2_ALLOCATE_ICOUNT, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 668 | N_("@A icount structure: %m\n"), |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 669 | PROMPT_NONE, PR_FATAL }, |
| 670 | |
| 671 | /* Error iterating over directory blocks */ |
| 672 | { PR_2_DBLIST_ITERATE, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 673 | N_("Error interating over @d @bs: %m\n"), |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 674 | PROMPT_NONE, PR_FATAL }, |
| 675 | |
| 676 | /* Error reading directory block */ |
| 677 | { PR_2_READ_DIRBLOCK, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 678 | N_("Error reading @d @b %b (@i %i): %m\n"), |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 679 | PROMPT_CONTINUE, 0 }, |
| 680 | |
| 681 | /* Error writing directory block */ |
| 682 | { PR_2_WRITE_DIRBLOCK, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 683 | N_("Error writing @d @b %b (@i %i): %m\n"), |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 684 | PROMPT_CONTINUE, 0 }, |
| 685 | |
| 686 | /* Error allocating new directory block */ |
| 687 | { PR_2_ALLOC_DIRBOCK, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 688 | N_("@A new @d @b for @i %i (%s): %m\n"), |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 689 | PROMPT_NONE, 0 }, |
| 690 | |
| 691 | /* Error deallocating inode */ |
| 692 | { PR_2_DEALLOC_INODE, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 693 | N_("Error deallocating @i %i: %m\n"), |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 694 | PROMPT_NONE, PR_FATAL }, |
| 695 | |
Theodore Ts'o | f8188ff | 1997-11-14 05:23:04 +0000 | [diff] [blame] | 696 | /* Directory entry for '.' is big. Split? */ |
| 697 | { PR_2_SPLIT_DOT, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 698 | N_("@d @e for '.' is big. "), |
Theodore Ts'o | f8188ff | 1997-11-14 05:23:04 +0000 | [diff] [blame] | 699 | PROMPT_SPLIT, PR_NO_OK }, |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 700 | |
Theodore Ts'o | 1dde43f | 1998-11-14 04:18:28 +0000 | [diff] [blame] | 701 | /* Illegal FIFO inode */ |
| 702 | { PR_2_BAD_FIFO, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 703 | N_("@i %i (%Q) is an @I FIFO.\n"), |
Theodore Ts'o | 1dde43f | 1998-11-14 04:18:28 +0000 | [diff] [blame] | 704 | PROMPT_CLEAR, 0 }, |
| 705 | |
| 706 | /* Illegal socket inode */ |
| 707 | { PR_2_BAD_SOCKET, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 708 | N_("@i %i (%Q) is an @I socket.\n"), |
Theodore Ts'o | 1dde43f | 1998-11-14 04:18:28 +0000 | [diff] [blame] | 709 | PROMPT_CLEAR, 0 }, |
| 710 | |
Theodore Ts'o | aa4115a | 1999-10-21 19:33:18 +0000 | [diff] [blame] | 711 | /* Directory filetype not set */ |
| 712 | { PR_2_SET_FILETYPE, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 713 | N_("Setting filetype for @E to %N.\n"), |
Theodore Ts'o | aa4115a | 1999-10-21 19:33:18 +0000 | [diff] [blame] | 714 | PROMPT_NONE, PR_PREEN_OK | PR_NO_OK | PR_NO_NOMSG }, |
| 715 | |
| 716 | /* Directory filetype incorrect */ |
| 717 | { PR_2_BAD_FILETYPE, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 718 | N_("@E has an incorrect filetype (was %dt, should be %N)\n"), |
Theodore Ts'o | aa4115a | 1999-10-21 19:33:18 +0000 | [diff] [blame] | 719 | PROMPT_FIX, 0 }, |
| 720 | |
Theodore Ts'o | 7847c1d | 1999-10-22 15:11:42 +0000 | [diff] [blame] | 721 | /* Directory filetype set on filesystem */ |
| 722 | { PR_2_CLEAR_FILETYPE, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 723 | N_("@E has filetype set\n"), |
Theodore Ts'o | 7847c1d | 1999-10-22 15:11:42 +0000 | [diff] [blame] | 724 | PROMPT_CLEAR, PR_PREEN_OK }, |
| 725 | |
Theodore Ts'o | c40db6d | 1999-10-25 21:03:34 +0000 | [diff] [blame] | 726 | /* Directory filename is null */ |
| 727 | { PR_2_NULL_NAME, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 728 | N_("@E has a zero-length name\n"), |
Theodore Ts'o | c40db6d | 1999-10-25 21:03:34 +0000 | [diff] [blame] | 729 | PROMPT_CLEAR, 0 }, |
| 730 | |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 731 | /* Pass 3 errors */ |
| 732 | |
| 733 | /* Pass 3: Checking directory connectivity */ |
| 734 | { PR_3_PASS_HEADER, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 735 | N_("Pass 3: Checking @d connectivity\n"), |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 736 | PROMPT_NONE, 0 }, |
| 737 | |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 738 | /* Root inode not allocated */ |
| 739 | { PR_3_NO_ROOT_INODE, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 740 | N_("@r not allocated. "), |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 741 | PROMPT_ALLOCATE, 0 }, |
| 742 | |
| 743 | /* No room in lost+found */ |
| 744 | { PR_3_EXPAND_LF_DIR, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 745 | N_("No room in @l @d. "), |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 746 | PROMPT_EXPAND, 0 }, |
| 747 | |
| 748 | /* Unconnected directory inode */ |
| 749 | { PR_3_UNCONNECTED_DIR, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 750 | N_("Unconnected @d @i %i (%p)\n"), |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 751 | PROMPT_CONNECT, 0 }, |
| 752 | |
| 753 | /* /lost+found not found */ |
| 754 | { PR_3_NO_LF_DIR, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 755 | N_("/@l not found. "), |
Theodore Ts'o | 5a679c8 | 1998-12-03 16:40:38 +0000 | [diff] [blame] | 756 | PROMPT_CREATE, PR_PREEN_OK }, |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 757 | |
| 758 | /* .. entry is incorrect */ |
| 759 | { PR_3_BAD_DOT_DOT, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 760 | N_("'..' in %Q (%i) is %P (%j), @s %q (%d).\n"), |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 761 | PROMPT_FIX, 0 }, |
| 762 | |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 763 | /* Bad or non-existent /lost+found. Cannot reconnect */ |
| 764 | { PR_3_NO_LPF, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 765 | N_("Bad or non-existent /@l. Cannot reconnect\n"), |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 766 | PROMPT_NONE, 0 }, |
| 767 | |
| 768 | /* Could not expand /lost+found */ |
| 769 | { PR_3_CANT_EXPAND_LPF, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 770 | N_("Could not expand /@l: %m\n"), |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 771 | PROMPT_NONE, 0 }, |
| 772 | |
| 773 | /* Could not reconnect inode */ |
| 774 | { PR_3_CANT_RECONNECT, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 775 | N_("Could not reconnect %i: %m\n"), |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 776 | PROMPT_NONE, 0 }, |
| 777 | |
| 778 | /* Error while trying to find /lost+found */ |
| 779 | { PR_3_ERR_FIND_LPF, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 780 | N_("Error while trying to find /@l: %m\n"), |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 781 | PROMPT_NONE, 0 }, |
| 782 | |
| 783 | /* Error in ext2fs_new_block while creating /lost+found */ |
| 784 | { PR_3_ERR_LPF_NEW_BLOCK, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 785 | N_("ext2fs_new_@b: %m while trying to create /@l @d\n"), |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 786 | PROMPT_NONE, 0 }, |
| 787 | |
| 788 | /* Error in ext2fs_new_inode while creating /lost+found */ |
| 789 | { PR_3_ERR_LPF_NEW_INODE, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 790 | N_("ext2fs_new_@i: %m while trying to create /@l @d\n"), |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 791 | PROMPT_NONE, 0 }, |
| 792 | |
| 793 | /* Error in ext2fs_new_dir_block while creating /lost+found */ |
| 794 | { PR_3_ERR_LPF_NEW_DIR_BLOCK, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 795 | N_("ext2fs_new_dir_@b: %m while creating new @d @b\n"), |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 796 | PROMPT_NONE, 0 }, |
| 797 | |
| 798 | /* Error while writing directory block for /lost+found */ |
| 799 | { PR_3_ERR_LPF_WRITE_BLOCK, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 800 | N_("ext2fs_write_dir_@b: %m while writing the @d @b for /@l\n"), |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 801 | PROMPT_NONE, 0 }, |
| 802 | |
| 803 | /* Error while adjusting inode count */ |
| 804 | { PR_3_ADJUST_INODE, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 805 | N_("Error while adjusting @i count on @i %i\n"), |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 806 | PROMPT_NONE, 0 }, |
| 807 | |
| 808 | /* Couldn't fix parent directory -- error */ |
| 809 | { PR_3_FIX_PARENT_ERR, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 810 | N_("Couldn't fix parent of @i %i: %m\n\n"), |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 811 | PROMPT_NONE, 0 }, |
| 812 | |
| 813 | /* Couldn't fix parent directory -- couldn't find it */ |
| 814 | { PR_3_FIX_PARENT_NOFIND, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 815 | N_("Couldn't fix parent of @i %i: Couldn't find parent @d entry\n\n"), |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 816 | PROMPT_NONE, 0 }, |
| 817 | |
| 818 | /* Error allocating inode bitmap */ |
| 819 | { PR_3_ALLOCATE_IBITMAP_ERROR, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 820 | N_("@A @i @B (%N): %m\n"), |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 821 | PROMPT_NONE, PR_FATAL }, |
| 822 | |
| 823 | /* Error creating root directory */ |
| 824 | { PR_3_CREATE_ROOT_ERROR, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 825 | N_("Error creating root @d (%s): %m\n"), |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 826 | PROMPT_NONE, PR_FATAL }, |
| 827 | |
| 828 | /* Error creating lost and found directory */ |
| 829 | { PR_3_CREATE_LPF_ERROR, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 830 | N_("Error creating /@l @d (%s): %m\n"), |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 831 | PROMPT_NONE, PR_FATAL }, |
| 832 | |
Theodore Ts'o | f8188ff | 1997-11-14 05:23:04 +0000 | [diff] [blame] | 833 | /* Root inode is not directory; aborting */ |
| 834 | { PR_3_ROOT_NOT_DIR_ABORT, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 835 | N_("@r is not a @d; aborting.\n"), |
Theodore Ts'o | f8188ff | 1997-11-14 05:23:04 +0000 | [diff] [blame] | 836 | PROMPT_NONE, PR_FATAL }, |
| 837 | |
| 838 | /* Cannot proceed without a root inode. */ |
| 839 | { PR_3_NO_ROOT_INODE_ABORT, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 840 | N_("Cannot proceed without a @r.\n"), |
Theodore Ts'o | f8188ff | 1997-11-14 05:23:04 +0000 | [diff] [blame] | 841 | PROMPT_NONE, PR_FATAL }, |
| 842 | |
Theodore Ts'o | 7f813ba | 1998-09-03 01:26:03 +0000 | [diff] [blame] | 843 | /* Internal error: couldn't find dir_info */ |
| 844 | { PR_3_NO_DIRINFO, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 845 | N_("Internal error: couldn't find dir_info for %i.\n"), |
Theodore Ts'o | 7f813ba | 1998-09-03 01:26:03 +0000 | [diff] [blame] | 846 | PROMPT_NONE, PR_FATAL }, |
| 847 | |
Theodore Ts'o | 4a9f593 | 1999-03-16 19:32:52 +0000 | [diff] [blame] | 848 | /* Lost+found not a directory */ |
| 849 | { PR_3_LPF_NOTDIR, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 850 | N_("/@l is not a @d (ino=%i)\n"), |
Theodore Ts'o | 4a9f593 | 1999-03-16 19:32:52 +0000 | [diff] [blame] | 851 | PROMPT_UNLINK, 0 }, |
| 852 | |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 853 | /* Pass 4 errors */ |
| 854 | |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 855 | /* Pass 4: Checking reference counts */ |
| 856 | { PR_4_PASS_HEADER, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 857 | N_("Pass 4: Checking reference counts\n"), |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 858 | PROMPT_NONE, 0 }, |
| 859 | |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 860 | /* Unattached zero-length inode */ |
| 861 | { PR_4_ZERO_LEN_INODE, |
| 862 | "@u @z @i %i. ", |
| 863 | PROMPT_CLEAR, PR_PREEN_OK|PR_NO_OK }, |
| 864 | |
| 865 | /* Unattached inode */ |
| 866 | { PR_4_UNATTACHED_INODE, |
| 867 | "@u @i %i\n", |
| 868 | PROMPT_CONNECT, 0 }, |
| 869 | |
| 870 | /* Inode ref count wrong */ |
| 871 | { PR_4_BAD_REF_COUNT, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 872 | N_("@i %i ref count is %Il, @s %N. "), |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 873 | PROMPT_FIX, PR_PREEN_OK }, |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 874 | |
| 875 | { PR_4_INCONSISTENT_COUNT, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 876 | N_("WARNING: PROGRAMMING BUG IN E2FSCK!\n" |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 877 | "\tOR SOME BONEHEAD (YOU) IS CHECKING A MOUNTED (LIVE) FILESYSTEM.\n" |
| 878 | "@i_link_info[%i] is %N, @i.i_links_count is %Il. " |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 879 | "They should be the same!\n"), |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 880 | PROMPT_NONE, 0 }, |
| 881 | |
| 882 | /* Pass 5 errors */ |
| 883 | |
| 884 | /* Pass 5: Checking group summary information */ |
| 885 | { PR_5_PASS_HEADER, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 886 | N_("Pass 5: Checking @g summary information\n"), |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 887 | PROMPT_NONE, 0 }, |
| 888 | |
| 889 | /* Padding at end of inode bitmap is not set. */ |
| 890 | { PR_5_INODE_BMAP_PADDING, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 891 | N_("Padding at end of @i @B is not set. "), |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 892 | PROMPT_FIX, PR_PREEN_OK }, |
| 893 | |
| 894 | /* Padding at end of block bitmap is not set. */ |
| 895 | { PR_5_BLOCK_BMAP_PADDING, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 896 | N_("Padding at end of @b @B is not set. "), |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 897 | PROMPT_FIX, PR_PREEN_OK }, |
| 898 | |
| 899 | /* Block bitmap differences header */ |
| 900 | { PR_5_BLOCK_BITMAP_HEADER, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 901 | N_("@b @B differences: "), |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 902 | PROMPT_NONE, PR_PREEN_OK | PR_PREEN_NOMSG}, |
| 903 | |
| 904 | /* Block not used, but marked in bitmap */ |
| 905 | { PR_5_UNUSED_BLOCK, |
| 906 | " -%b", |
| 907 | PROMPT_NONE, PR_LATCH_BBITMAP | PR_PREEN_OK | PR_PREEN_NOMSG }, |
| 908 | |
| 909 | /* Block used, but not marked used in bitmap */ |
| 910 | { PR_5_BLOCK_USED, |
| 911 | " +%b", |
| 912 | PROMPT_NONE, PR_LATCH_BBITMAP | PR_PREEN_OK | PR_PREEN_NOMSG }, |
| 913 | |
| 914 | /* Block bitmap differences end */ |
| 915 | { PR_5_BLOCK_BITMAP_END, |
| 916 | "\n", |
| 917 | PROMPT_FIX, PR_PREEN_OK | PR_PREEN_NOMSG }, |
| 918 | |
| 919 | /* Inode bitmap differences header */ |
| 920 | { PR_5_INODE_BITMAP_HEADER, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 921 | N_("@i @B differences: "), |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 922 | PROMPT_NONE, PR_PREEN_OK | PR_PREEN_NOMSG }, |
| 923 | |
| 924 | /* Inode not used, but marked in bitmap */ |
| 925 | { PR_5_UNUSED_INODE, |
| 926 | " -%i", |
| 927 | PROMPT_NONE, PR_LATCH_IBITMAP | PR_PREEN_OK | PR_PREEN_NOMSG }, |
| 928 | |
| 929 | /* Inode used, but not marked used in bitmap */ |
| 930 | { PR_5_INODE_USED, |
| 931 | " +%i", |
| 932 | PROMPT_NONE, PR_LATCH_IBITMAP | PR_PREEN_OK | PR_PREEN_NOMSG }, |
| 933 | |
| 934 | /* Inode bitmap differences end */ |
| 935 | { PR_5_INODE_BITMAP_END, |
| 936 | "\n", |
| 937 | PROMPT_FIX, PR_PREEN_OK | PR_PREEN_NOMSG }, |
| 938 | |
| 939 | /* Free inodes count for group wrong */ |
| 940 | { PR_5_FREE_INODE_COUNT_GROUP, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 941 | N_("Free @is count wrong for @g #%g (%i, counted=%j).\n"), |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 942 | PROMPT_FIX, PR_PREEN_OK | PR_PREEN_NOMSG }, |
| 943 | |
| 944 | /* Directories count for group wrong */ |
| 945 | { PR_5_FREE_DIR_COUNT_GROUP, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 946 | N_("Directories count wrong for @g #%g (%i, counted=%j).\n"), |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 947 | PROMPT_FIX, PR_PREEN_OK | PR_PREEN_NOMSG }, |
| 948 | |
| 949 | /* Free inodes count wrong */ |
| 950 | { PR_5_FREE_INODE_COUNT, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 951 | N_("Free @is count wrong (%i, counted=%j).\n"), |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 952 | PROMPT_FIX, PR_PREEN_OK | PR_PREEN_NOMSG }, |
| 953 | |
| 954 | /* Free blocks count for group wrong */ |
| 955 | { PR_5_FREE_BLOCK_COUNT_GROUP, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 956 | N_("Free @bs count wrong for @g #%g (%b, counted=%c).\n"), |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 957 | PROMPT_FIX, PR_PREEN_OK | PR_PREEN_NOMSG }, |
| 958 | |
| 959 | /* Free blocks count wrong */ |
| 960 | { PR_5_FREE_BLOCK_COUNT, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 961 | N_("Free @bs count wrong (%b, counted=%c).\n"), |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 962 | PROMPT_FIX, PR_PREEN_OK | PR_PREEN_NOMSG }, |
| 963 | |
| 964 | /* Programming error: bitmap endpoints don't match */ |
| 965 | { PR_5_BMAP_ENDPOINTS, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 966 | N_("PROGRAMMING ERROR: @f (#%N) @B endpoints (%b, %c) don't " |
| 967 | "match calculated @B endpoints (%i, %j)\n"), |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 968 | PROMPT_NONE, PR_FATAL }, |
| 969 | |
| 970 | /* Internal error: fudging end of bitmap */ |
| 971 | { PR_5_FUDGE_BITMAP_ERROR, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 972 | N_("Internal error: fudging end of bitmap (%N)\n"), |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 973 | PROMPT_NONE, PR_FATAL }, |
| 974 | |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 975 | { 0 } |
| 976 | }; |
| 977 | |
| 978 | /* |
| 979 | * This is the latch flags register. It allows several problems to be |
| 980 | * "latched" together. This means that the user has to answer but one |
| 981 | * question for the set of problems, and all of the associated |
| 982 | * problems will be either fixed or not fixed. |
| 983 | */ |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 984 | static struct latch_descr pr_latch_info[] = { |
| 985 | { PR_LATCH_BLOCK, PR_1_INODE_BLOCK_LATCH, 0 }, |
| 986 | { PR_LATCH_BBLOCK, PR_1_INODE_BBLOCK_LATCH, 0 }, |
| 987 | { PR_LATCH_IBITMAP, PR_5_INODE_BITMAP_HEADER, PR_5_INODE_BITMAP_END }, |
| 988 | { PR_LATCH_BBITMAP, PR_5_BLOCK_BITMAP_HEADER, PR_5_BLOCK_BITMAP_END }, |
| 989 | { PR_LATCH_RELOC, PR_0_RELOCATE_HINT, 0 }, |
| 990 | { PR_LATCH_DBLOCK, PR_1B_DUP_BLOCK_HEADER, PR_1B_DUP_BLOCK_END }, |
| 991 | { -1, 0, 0 }, |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 992 | }; |
| 993 | |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 994 | static const struct e2fsck_problem *find_problem(int code) |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 995 | { |
| 996 | int i; |
| 997 | |
| 998 | for (i=0; problem_table[i].e2p_code; i++) { |
| 999 | if (problem_table[i].e2p_code == code) |
| 1000 | return &problem_table[i]; |
| 1001 | } |
| 1002 | return 0; |
| 1003 | } |
| 1004 | |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 1005 | static struct latch_descr *find_latch(int code) |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 1006 | { |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 1007 | int i; |
| 1008 | |
| 1009 | for (i=0; pr_latch_info[i].latch_code >= 0; i++) { |
| 1010 | if (pr_latch_info[i].latch_code == code) |
| 1011 | return &pr_latch_info[i]; |
| 1012 | } |
| 1013 | return 0; |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 1014 | } |
| 1015 | |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 1016 | int end_problem_latch(e2fsck_t ctx, int mask) |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 1017 | { |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 1018 | struct latch_descr *ldesc; |
| 1019 | struct problem_context pctx; |
| 1020 | int answer = -1; |
| 1021 | |
| 1022 | ldesc = find_latch(mask); |
| 1023 | if (ldesc->end_message && (ldesc->flags & PRL_LATCHED)) { |
| 1024 | clear_problem_context(&pctx); |
| 1025 | answer = fix_problem(ctx, ldesc->end_message, &pctx); |
| 1026 | } |
| 1027 | ldesc->flags &= ~(PRL_VARIABLE); |
| 1028 | return answer; |
| 1029 | } |
| 1030 | |
| 1031 | int set_latch_flags(int mask, int setflags, int clearflags) |
| 1032 | { |
| 1033 | struct latch_descr *ldesc; |
| 1034 | |
| 1035 | ldesc = find_latch(mask); |
| 1036 | if (!ldesc) |
| 1037 | return -1; |
| 1038 | ldesc->flags |= setflags; |
| 1039 | ldesc->flags &= ~clearflags; |
| 1040 | return 0; |
| 1041 | } |
| 1042 | |
| 1043 | int get_latch_flags(int mask, int *value) |
| 1044 | { |
| 1045 | struct latch_descr *ldesc; |
| 1046 | |
| 1047 | ldesc = find_latch(mask); |
| 1048 | if (!ldesc) |
| 1049 | return -1; |
| 1050 | *value = ldesc->flags; |
| 1051 | return 0; |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 1052 | } |
| 1053 | |
| 1054 | void clear_problem_context(struct problem_context *ctx) |
| 1055 | { |
| 1056 | memset(ctx, 0, sizeof(struct problem_context)); |
| 1057 | ctx->blkcount = -1; |
| 1058 | ctx->group = -1; |
| 1059 | } |
| 1060 | |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 1061 | int fix_problem(e2fsck_t ctx, problem_t code, struct problem_context *pctx) |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 1062 | { |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 1063 | ext2_filsys fs = ctx->fs; |
| 1064 | const struct e2fsck_problem *ptr; |
| 1065 | struct latch_descr *ldesc = 0; |
| 1066 | const char *message; |
| 1067 | int def_yn, answer, ans; |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 1068 | int print_answer = 0; |
| 1069 | int suppress = 0; |
| 1070 | |
| 1071 | ptr = find_problem(code); |
| 1072 | if (!ptr) { |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 1073 | printf(_("Unhandled error code (%d)!\n"), code); |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 1074 | return 0; |
| 1075 | } |
Theodore Ts'o | aa4115a | 1999-10-21 19:33:18 +0000 | [diff] [blame] | 1076 | def_yn = 1; |
Theodore Ts'o | a846d2f | 1999-11-10 15:50:24 +0000 | [diff] [blame] | 1077 | if ((ptr->flags & PR_NO_DEFAULT) || |
| 1078 | ((ptr->flags & PR_PREEN_NO) && (ctx->options & E2F_OPT_PREEN)) || |
| 1079 | (ctx->options & E2F_OPT_NO)) |
Theodore Ts'o | aa4115a | 1999-10-21 19:33:18 +0000 | [diff] [blame] | 1080 | def_yn= 0; |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 1081 | |
| 1082 | /* |
| 1083 | * Do special latch processing. This is where we ask the |
| 1084 | * latch question, if it exists |
| 1085 | */ |
| 1086 | if (ptr->flags & PR_LATCH_MASK) { |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 1087 | ldesc = find_latch(ptr->flags & PR_LATCH_MASK); |
| 1088 | if (ldesc->question && !(ldesc->flags & PRL_LATCHED)) { |
| 1089 | ans = fix_problem(ctx, ldesc->question, pctx); |
| 1090 | if (ans == 1) |
| 1091 | ldesc->flags |= PRL_YES; |
| 1092 | if (ans == 0) |
| 1093 | ldesc->flags |= PRL_NO; |
| 1094 | ldesc->flags |= PRL_LATCHED; |
| 1095 | } |
| 1096 | if (ldesc->flags & PRL_SUPPRESS) |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 1097 | suppress++; |
| 1098 | } |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 1099 | if ((ptr->flags & PR_PREEN_NOMSG) && |
| 1100 | (ctx->options & E2F_OPT_PREEN)) |
| 1101 | suppress++; |
Theodore Ts'o | aa4115a | 1999-10-21 19:33:18 +0000 | [diff] [blame] | 1102 | if ((ptr->flags & PR_NO_NOMSG) && |
| 1103 | (ctx->options & E2F_OPT_NO)) |
| 1104 | suppress++; |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 1105 | if (!suppress) { |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 1106 | message = ptr->e2p_description; |
| 1107 | if (ctx->options & E2F_OPT_PREEN) { |
| 1108 | printf("%s: ", ctx->device_name); |
| 1109 | #if 0 |
| 1110 | if (ptr->e2p_preen_msg) |
| 1111 | message = ptr->e2p_preen_msg; |
| 1112 | #endif |
| 1113 | } |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 1114 | print_e2fsck_message(ctx, _(message), pctx, 1); |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 1115 | } |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 1116 | if (!(ptr->flags & PR_PREEN_OK) && (ptr->prompt != PROMPT_NONE)) |
| 1117 | preenhalt(ctx); |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 1118 | |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 1119 | if (ptr->flags & PR_FATAL) |
Theodore Ts'o | f8188ff | 1997-11-14 05:23:04 +0000 | [diff] [blame] | 1120 | fatal_error(ctx, 0); |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 1121 | |
| 1122 | if (ptr->prompt == PROMPT_NONE) { |
| 1123 | if (ptr->flags & PR_NOCOLLATE) |
| 1124 | answer = -1; |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 1125 | else |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 1126 | answer = def_yn; |
| 1127 | } else { |
| 1128 | if (ctx->options & E2F_OPT_PREEN) { |
| 1129 | answer = def_yn; |
| 1130 | if (!(ptr->flags & PR_PREEN_NOMSG)) |
| 1131 | print_answer = 1; |
| 1132 | } else if ((ptr->flags & PR_LATCH_MASK) && |
| 1133 | (ldesc->flags & (PRL_YES | PRL_NO))) { |
| 1134 | if (!suppress) |
| 1135 | print_answer = 1; |
| 1136 | if (ldesc->flags & PRL_YES) |
| 1137 | answer = 1; |
| 1138 | else |
| 1139 | answer = 0; |
| 1140 | } else |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 1141 | answer = ask(ctx, _(prompt[(int) ptr->prompt]), def_yn); |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 1142 | if (!answer && !(ptr->flags & PR_NO_OK)) |
| 1143 | ext2fs_unmark_valid(fs); |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 1144 | |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 1145 | if (print_answer) |
| 1146 | printf("%s.\n", answer ? |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 1147 | _(preen_msg[(int) ptr->prompt]) : _("IGNORED")); |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 1148 | |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 1149 | } |
| 1150 | |
| 1151 | if (ptr->flags & PR_AFTER_CODE) |
| 1152 | (void) fix_problem(ctx, ptr->second_code, pctx); |
| 1153 | |
Theodore Ts'o | f8188ff | 1997-11-14 05:23:04 +0000 | [diff] [blame] | 1154 | if ((ptr->prompt == PROMPT_ABORT) && answer) |
| 1155 | fatal_error(ctx, 0); |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 1156 | |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 1157 | return answer; |
| 1158 | } |