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