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 | 503f9e7 | 2002-06-26 16:52:10 -0400 | [diff] [blame] | 41 | #define PROMPT_CLEAR_HTREE 18 |
Theodore Ts'o | c3ffaf8 | 2004-12-24 01:42:22 -0500 | [diff] [blame] | 42 | #define PROMPT_RECREATE 19 |
| 43 | #define PROMPT_NULL 20 |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 44 | |
| 45 | /* |
| 46 | * These are the prompts which are used to ask the user if they want |
| 47 | * to fix a problem. |
| 48 | */ |
| 49 | static const char *prompt[] = { |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 50 | N_("(no prompt)"), /* 0 */ |
| 51 | N_("Fix"), /* 1 */ |
| 52 | N_("Clear"), /* 2 */ |
| 53 | N_("Relocate"), /* 3 */ |
| 54 | N_("Allocate"), /* 4 */ |
| 55 | N_("Expand"), /* 5 */ |
| 56 | N_("Connect to /lost+found"), /* 6 */ |
| 57 | N_("Create"), /* 7 */ |
| 58 | N_("Salvage"), /* 8 */ |
| 59 | N_("Truncate"), /* 9 */ |
| 60 | N_("Clear inode"), /* 10 */ |
| 61 | N_("Abort"), /* 11 */ |
| 62 | N_("Split"), /* 12 */ |
| 63 | N_("Continue"), /* 13 */ |
Theodore Ts'o | 7ae1983 | 2005-06-19 09:45:36 -0400 | [diff] [blame] | 64 | N_("Clone multiply-claimed blocks"), /* 14 */ |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 65 | N_("Delete file"), /* 15 */ |
| 66 | N_("Suppress messages"),/* 16 */ |
| 67 | N_("Unlink"), /* 17 */ |
Theodore Ts'o | 503f9e7 | 2002-06-26 16:52:10 -0400 | [diff] [blame] | 68 | N_("Clear HTree index"),/* 18 */ |
Theodore Ts'o | c3ffaf8 | 2004-12-24 01:42:22 -0500 | [diff] [blame] | 69 | N_("Recreate"), /* 19 */ |
Theodore Ts'o | cebe48a | 2005-03-21 13:15:45 -0500 | [diff] [blame] | 70 | "", /* 20 */ |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 71 | }; |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 72 | |
| 73 | /* |
| 74 | * These messages are printed when we are preen mode and we will be |
| 75 | * automatically fixing the problem. |
| 76 | */ |
| 77 | static const char *preen_msg[] = { |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 78 | N_("(NONE)"), /* 0 */ |
| 79 | N_("FIXED"), /* 1 */ |
| 80 | N_("CLEARED"), /* 2 */ |
| 81 | N_("RELOCATED"), /* 3 */ |
| 82 | N_("ALLOCATED"), /* 4 */ |
| 83 | N_("EXPANDED"), /* 5 */ |
| 84 | N_("RECONNECTED"), /* 6 */ |
| 85 | N_("CREATED"), /* 7 */ |
| 86 | N_("SALVAGED"), /* 8 */ |
| 87 | N_("TRUNCATED"), /* 9 */ |
| 88 | N_("INODE CLEARED"), /* 10 */ |
| 89 | N_("ABORTED"), /* 11 */ |
| 90 | N_("SPLIT"), /* 12 */ |
| 91 | N_("CONTINUING"), /* 13 */ |
Theodore Ts'o | 7ae1983 | 2005-06-19 09:45:36 -0400 | [diff] [blame] | 92 | N_("MULTIPLY-CLAIMED BLOCKS CLONED"), /* 14 */ |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 93 | N_("FILE DELETED"), /* 15 */ |
| 94 | N_("SUPPRESSED"), /* 16 */ |
| 95 | N_("UNLINKED"), /* 17 */ |
Theodore Ts'o | 503f9e7 | 2002-06-26 16:52:10 -0400 | [diff] [blame] | 96 | N_("HTREE INDEX CLEARED"),/* 18 */ |
Theodore Ts'o | c3ffaf8 | 2004-12-24 01:42:22 -0500 | [diff] [blame] | 97 | N_("WILL RECREATE"), /* 19 */ |
| 98 | "", /* 20 */ |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 99 | }; |
| 100 | |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 101 | static const struct e2fsck_problem problem_table[] = { |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 102 | |
| 103 | /* Pre-Pass 1 errors */ |
| 104 | |
| 105 | /* Block bitmap not in group */ |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 106 | { 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] | 107 | PROMPT_RELOCATE, PR_LATCH_RELOC }, |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 108 | |
| 109 | /* Inode bitmap not in group */ |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 110 | { 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] | 111 | PROMPT_RELOCATE, PR_LATCH_RELOC }, |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 112 | |
| 113 | /* Inode table not in group */ |
| 114 | { PR_0_ITABLE_NOT_GROUP, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 115 | N_("@i table for @g %g is not in @g. (@b %b)\n" |
| 116 | "WARNING: SEVERE DATA LOSS POSSIBLE.\n"), |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 117 | PROMPT_RELOCATE, PR_LATCH_RELOC }, |
| 118 | |
| 119 | /* Superblock corrupt */ |
| 120 | { PR_0_SB_CORRUPT, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 121 | N_("\nThe @S could not be read or does not describe a correct ext2\n" |
Theodore Ts'o | d74edf4 | 2001-01-03 19:38:04 +0000 | [diff] [blame] | 122 | "@f. If the @v is valid and it really contains an ext2\n" |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 123 | "@f (and not swap or ufs or something else), then the @S\n" |
Theodore Ts'o | 424cd2b | 2001-05-14 04:06:56 +0000 | [diff] [blame] | 124 | "is corrupt, and you might try running e2fsck with an alternate @S:\n" |
Theodore Ts'o | d74edf4 | 2001-01-03 19:38:04 +0000 | [diff] [blame] | 125 | " e2fsck -b %S <@v>\n\n"), |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 126 | PROMPT_NONE, PR_FATAL }, |
| 127 | |
| 128 | /* Filesystem size is wrong */ |
| 129 | { PR_0_FS_SIZE_WRONG, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 130 | N_("The @f size (according to the @S) is %b @bs\n" |
Theodore Ts'o | d74edf4 | 2001-01-03 19:38:04 +0000 | [diff] [blame] | 131 | "The physical size of the @v is %c @bs\n" |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 132 | "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] | 133 | PROMPT_ABORT, 0 }, |
| 134 | |
| 135 | /* Fragments not supported */ |
| 136 | { PR_0_NO_FRAGMENTS, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 137 | N_("@S @b_size = %b, fragsize = %c.\n" |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 138 | "This version of e2fsck does not support fragment sizes different\n" |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 139 | "from the @b size.\n"), |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 140 | PROMPT_NONE, PR_FATAL }, |
| 141 | |
| 142 | /* Bad blocks_per_group */ |
| 143 | { PR_0_BLOCKS_PER_GROUP, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 144 | N_("@S @bs_per_group = %b, should have been %c\n"), |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 145 | PROMPT_NONE, PR_AFTER_CODE, PR_0_SB_CORRUPT }, |
| 146 | |
| 147 | /* Bad first_data_block */ |
| 148 | { PR_0_FIRST_DATA_BLOCK, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 149 | N_("@S first_data_@b = %b, should have been %c\n"), |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 150 | PROMPT_NONE, PR_AFTER_CODE, PR_0_SB_CORRUPT }, |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 151 | |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 152 | /* Adding UUID to filesystem */ |
| 153 | { PR_0_ADD_UUID, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 154 | N_("@f did not have a UUID; generating one.\n\n"), |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 155 | PROMPT_NONE, 0 }, |
| 156 | |
| 157 | /* Relocate hint */ |
| 158 | { PR_0_RELOCATE_HINT, |
Theodore Ts'o | 7ae1983 | 2005-06-19 09:45:36 -0400 | [diff] [blame] | 159 | N_("Note: if several inode or block bitmap blocks or part\n" |
| 160 | "of the inode table require relocation, you may wish to try\n" |
| 161 | "running e2fsck with the '-b %S' option first. The problem\n" |
| 162 | "may lie only with the primary block group descriptors, and\n" |
| 163 | "the backup block group descriptors may be OK.\n\n"), |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 164 | PROMPT_NONE, PR_PREEN_OK | PR_NOCOLLATE }, |
| 165 | |
| 166 | /* Miscellaneous superblock corruption */ |
| 167 | { PR_0_MISC_CORRUPT_SUPER, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 168 | N_("Corruption found in @S. (%s = %N).\n"), |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 169 | PROMPT_NONE, PR_AFTER_CODE, PR_0_SB_CORRUPT }, |
| 170 | |
| 171 | /* Error determing physical device size of filesystem */ |
| 172 | { PR_0_GETSIZE_ERROR, |
Theodore Ts'o | d74edf4 | 2001-01-03 19:38:04 +0000 | [diff] [blame] | 173 | N_("Error determining size of the physical @v: %m\n"), |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 174 | PROMPT_NONE, PR_FATAL }, |
Theodore Ts'o | d4b0ce0 | 1999-06-18 01:09:29 +0000 | [diff] [blame] | 175 | |
| 176 | /* Inode count in superblock is incorrect */ |
| 177 | { PR_0_INODE_COUNT_WRONG, |
Theodore Ts'o | 7ae1983 | 2005-06-19 09:45:36 -0400 | [diff] [blame] | 178 | N_("@i count in @S is %i, @s %j.\n"), |
Theodore Ts'o | d4b0ce0 | 1999-06-18 01:09:29 +0000 | [diff] [blame] | 179 | PROMPT_FIX, 0 }, |
Theodore Ts'o | 4ea0a11 | 2000-05-08 13:33:17 +0000 | [diff] [blame] | 180 | |
| 181 | { PR_0_HURD_CLEAR_FILETYPE, |
| 182 | N_("The Hurd does not support the filetype feature.\n"), |
Theodore Ts'o | 3b5386d | 2000-08-14 14:25:19 +0000 | [diff] [blame] | 183 | PROMPT_CLEAR, 0 }, |
| 184 | |
| 185 | /* Journal inode is invalid */ |
| 186 | { PR_0_JOURNAL_BAD_INODE, |
Theodore Ts'o | 7ae1983 | 2005-06-19 09:45:36 -0400 | [diff] [blame] | 187 | N_("@S has an @n ext3 @j (@i %i).\n"), |
Theodore Ts'o | 3b5386d | 2000-08-14 14:25:19 +0000 | [diff] [blame] | 188 | PROMPT_CLEAR, PR_PREEN_OK }, |
| 189 | |
Theodore Ts'o | adee8d7 | 2001-07-23 00:17:49 -0400 | [diff] [blame] | 190 | /* The external journal has (unsupported) multiple filesystems */ |
| 191 | { PR_0_JOURNAL_UNSUPP_MULTIFS, |
| 192 | N_("External @j has multiple @f users (unsupported).\n"), |
| 193 | PROMPT_NONE, PR_FATAL }, |
Theodore Ts'o | 3b5386d | 2000-08-14 14:25:19 +0000 | [diff] [blame] | 194 | |
Theodore Ts'o | adee8d7 | 2001-07-23 00:17:49 -0400 | [diff] [blame] | 195 | /* Can't find external journal */ |
| 196 | { PR_0_CANT_FIND_JOURNAL, |
| 197 | N_("Can't find external @j\n"), |
| 198 | PROMPT_NONE, PR_FATAL }, |
Theodore Ts'o | 3b5386d | 2000-08-14 14:25:19 +0000 | [diff] [blame] | 199 | |
Theodore Ts'o | adee8d7 | 2001-07-23 00:17:49 -0400 | [diff] [blame] | 200 | /* External journal has bad superblock */ |
| 201 | { PR_0_EXT_JOURNAL_BAD_SUPER, |
| 202 | N_("External @j has bad @S\n"), |
| 203 | PROMPT_NONE, PR_FATAL }, |
Theodore Ts'o | 3b5386d | 2000-08-14 14:25:19 +0000 | [diff] [blame] | 204 | |
| 205 | /* Superblock has a bad journal UUID */ |
| 206 | { PR_0_JOURNAL_BAD_UUID, |
Theodore Ts'o | adee8d7 | 2001-07-23 00:17:49 -0400 | [diff] [blame] | 207 | N_("External @j does not support this @f\n"), |
| 208 | PROMPT_NONE, PR_FATAL }, |
Theodore Ts'o | 3b5386d | 2000-08-14 14:25:19 +0000 | [diff] [blame] | 209 | |
| 210 | /* Journal has an unknown superblock type */ |
Theodore Ts'o | f76ad46 | 2001-06-14 06:58:33 +0000 | [diff] [blame] | 211 | { PR_0_JOURNAL_UNSUPP_SUPER, |
| 212 | N_("Ext3 @j @S is unknown type %N (unsupported).\n" |
| 213 | "It is likely that your copy of e2fsck is old and/or doesn't " |
| 214 | "support this @j format.\n" |
| 215 | "It is also possible the @j @S is corrupt.\n"), |
| 216 | PROMPT_ABORT, PR_NO_OK | PR_AFTER_CODE, PR_0_JOURNAL_BAD_SUPER }, |
Theodore Ts'o | 3b5386d | 2000-08-14 14:25:19 +0000 | [diff] [blame] | 217 | |
| 218 | /* Journal superblock is corrupt */ |
| 219 | { PR_0_JOURNAL_BAD_SUPER, |
Theodore Ts'o | f18996c | 2001-01-03 16:57:24 +0000 | [diff] [blame] | 220 | N_("Ext3 @j @S is corrupt.\n"), |
Theodore Ts'o | 3b5386d | 2000-08-14 14:25:19 +0000 | [diff] [blame] | 221 | PROMPT_FIX, PR_PREEN_OK }, |
| 222 | |
| 223 | /* Superblock flag should be cleared */ |
| 224 | { PR_0_JOURNAL_HAS_JOURNAL, |
Theodore Ts'o | d37066a | 2001-12-21 23:28:54 -0500 | [diff] [blame] | 225 | N_("@S doesn't have has_@j flag, but has ext3 @j %s.\n"), |
Theodore Ts'o | 37b6b29 | 2001-01-12 21:16:13 +0000 | [diff] [blame] | 226 | PROMPT_CLEAR, PR_PREEN_OK }, |
Theodore Ts'o | 3b5386d | 2000-08-14 14:25:19 +0000 | [diff] [blame] | 227 | |
| 228 | /* Superblock flag is incorrect */ |
| 229 | { PR_0_JOURNAL_RECOVER_SET, |
Theodore Ts'o | f18996c | 2001-01-03 16:57:24 +0000 | [diff] [blame] | 230 | 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] | 231 | PROMPT_CLEAR, PR_PREEN_OK }, |
| 232 | |
Theodore Ts'o | d37066a | 2001-12-21 23:28:54 -0500 | [diff] [blame] | 233 | /* Journal has data, but recovery flag is clear */ |
| 234 | { PR_0_JOURNAL_RECOVERY_CLEAR, |
Theodore Ts'o | 7ae1983 | 2005-06-19 09:45:36 -0400 | [diff] [blame] | 235 | N_("ext3 recovery flag is clear, but @j has data.\n"), |
Theodore Ts'o | d37066a | 2001-12-21 23:28:54 -0500 | [diff] [blame] | 236 | PROMPT_NONE, 0 }, |
Theodore Ts'o | 3b5386d | 2000-08-14 14:25:19 +0000 | [diff] [blame] | 237 | |
Theodore Ts'o | d37066a | 2001-12-21 23:28:54 -0500 | [diff] [blame] | 238 | /* Ask if we should clear the journal */ |
| 239 | { PR_0_JOURNAL_RESET_JOURNAL, |
| 240 | N_("Clear @j"), |
| 241 | PROMPT_NULL, PR_PREEN_NOMSG }, |
| 242 | |
| 243 | /* Ask if we should run the journal anyway */ |
| 244 | { PR_0_JOURNAL_RUN, |
| 245 | N_("Run @j anyway"), |
| 246 | PROMPT_NULL, 0 }, |
| 247 | |
| 248 | /* Run the journal by default */ |
| 249 | { PR_0_JOURNAL_RUN_DEFAULT, |
| 250 | N_("Recovery flag not set in backup @S, so running @j anyway.\n"), |
| 251 | PROMPT_NONE, 0 }, |
Theodore Ts'o | 4ea0a11 | 2000-05-08 13:33:17 +0000 | [diff] [blame] | 252 | |
Theodore Ts'o | ecf1b77 | 2000-08-20 22:06:31 +0000 | [diff] [blame] | 253 | /* Clearing orphan inode */ |
Theodore Ts'o | 8394902 | 2000-10-25 01:38:50 +0000 | [diff] [blame] | 254 | { PR_0_ORPHAN_CLEAR_INODE, |
| 255 | 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] | 256 | PROMPT_NONE, 0 }, |
| 257 | |
Theodore Ts'o | 80bfaa3 | 2000-08-18 15:08:37 +0000 | [diff] [blame] | 258 | /* Illegal block found in orphaned inode */ |
| 259 | { PR_0_ORPHAN_ILLEGAL_BLOCK_NUM, |
| 260 | N_("@I @b #%B (%b) found in @o @i %i.\n"), |
| 261 | PROMPT_NONE, 0 }, |
| 262 | |
| 263 | /* Already cleared block found in orphaned inode */ |
| 264 | { PR_0_ORPHAN_ALREADY_CLEARED_BLOCK, |
| 265 | N_("Already cleared @b #%B (%b) found in @o @i %i.\n"), |
| 266 | PROMPT_NONE, 0 }, |
| 267 | |
| 268 | /* Illegal orphan inode in superblock */ |
| 269 | { PR_0_ORPHAN_ILLEGAL_HEAD_INODE, |
| 270 | N_("@I @o @i %i in @S.\n"), |
| 271 | PROMPT_NONE, 0 }, |
| 272 | |
| 273 | /* Illegal inode in orphaned inode list */ |
| 274 | { PR_0_ORPHAN_ILLEGAL_INODE, |
| 275 | N_("@I @i %i in @o @i list.\n"), |
| 276 | PROMPT_NONE, 0 }, |
| 277 | |
Theodore Ts'o | 060b5fb | 2000-12-13 18:07:23 +0000 | [diff] [blame] | 278 | /* Filesystem revision is 0, but feature flags are set */ |
| 279 | { PR_0_FS_REV_LEVEL, |
Theodore Ts'o | 7ae1983 | 2005-06-19 09:45:36 -0400 | [diff] [blame] | 280 | N_("@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] | 281 | PROMPT_FIX, PR_PREEN_OK | PR_NO_OK }, |
| 282 | |
Theodore Ts'o | 424cd2b | 2001-05-14 04:06:56 +0000 | [diff] [blame] | 283 | /* Journal superblock has an unknown read-only feature flag set */ |
| 284 | { PR_0_JOURNAL_UNSUPP_ROCOMPAT, |
| 285 | N_("Ext3 @j @S has an unknown read-only feature flag set.\n"), |
Theodore Ts'o | 2f686ac | 2001-06-02 00:38:40 +0000 | [diff] [blame] | 286 | PROMPT_ABORT, 0 }, |
Theodore Ts'o | 424cd2b | 2001-05-14 04:06:56 +0000 | [diff] [blame] | 287 | |
| 288 | /* Journal superblock has an unknown incompatible feature flag set */ |
| 289 | { PR_0_JOURNAL_UNSUPP_INCOMPAT, |
| 290 | N_("Ext3 @j @S has an unknown incompatible feature flag set.\n"), |
Theodore Ts'o | 2f686ac | 2001-06-02 00:38:40 +0000 | [diff] [blame] | 291 | PROMPT_ABORT, 0 }, |
Theodore Ts'o | c7f2336 | 2001-05-23 22:19:47 +0000 | [diff] [blame] | 292 | |
| 293 | /* Journal has unsupported version number */ |
| 294 | { PR_0_JOURNAL_UNSUPP_VERSION, |
| 295 | N_("@j version not supported by this e2fsck.\n"), |
| 296 | PROMPT_ABORT, 0 }, |
Theodore Ts'o | 773fd8a | 2001-10-06 21:26:27 -0400 | [diff] [blame] | 297 | |
| 298 | /* Moving journal to hidden file */ |
| 299 | { PR_0_MOVE_JOURNAL, |
Theodore Ts'o | 7ae1983 | 2005-06-19 09:45:36 -0400 | [diff] [blame] | 300 | N_("Moving @j from /%s to hidden @i.\n\n"), |
Theodore Ts'o | 773fd8a | 2001-10-06 21:26:27 -0400 | [diff] [blame] | 301 | PROMPT_NONE, 0 }, |
| 302 | |
| 303 | /* Error moving journal to hidden file */ |
| 304 | { PR_0_ERR_MOVE_JOURNAL, |
| 305 | N_("Error moving @j: %m\n\n"), |
| 306 | PROMPT_NONE, 0 }, |
| 307 | |
Theodore Ts'o | 62e3e7f | 2001-10-07 02:13:30 -0400 | [diff] [blame] | 308 | /* Clearing V2 journal superblock */ |
| 309 | { PR_0_CLEAR_V2_JOURNAL, |
Theodore Ts'o | 7ae1983 | 2005-06-19 09:45:36 -0400 | [diff] [blame] | 310 | N_("Found @n V2 @j @S fields (from V1 @j).\n" |
Theodore Ts'o | 62e3e7f | 2001-10-07 02:13:30 -0400 | [diff] [blame] | 311 | "Clearing fields beyond the V1 @j @S...\n\n"), |
| 312 | PROMPT_NONE, 0 }, |
| 313 | |
Theodore Ts'o | a435ec3 | 2003-08-21 00:40:26 -0400 | [diff] [blame] | 314 | /* Backup journal inode blocks */ |
| 315 | { PR_0_BACKUP_JNL, |
| 316 | N_("Backing up @j @i @b information.\n\n"), |
| 317 | PROMPT_NONE, 0 }, |
| 318 | |
Theodore Ts'o | e75cfc5 | 2004-12-16 20:13:45 -0500 | [diff] [blame] | 319 | /* Reserved blocks w/o resize_inode */ |
| 320 | { PR_0_NONZERO_RESERVED_GDT_BLOCKS, |
| 321 | N_("@f does not have resize_@i enabled, but s_reserved_gdt_@bs\n" |
| 322 | "is %N; @s zero. "), |
| 323 | PROMPT_FIX, 0 }, |
| 324 | |
| 325 | /* Resize_inode not enabled, but resize inode is non-zero */ |
| 326 | { PR_0_CLEAR_RESIZE_INODE, |
Theodore Ts'o | 7ae1983 | 2005-06-19 09:45:36 -0400 | [diff] [blame] | 327 | N_("Resize_@i not enabled, but the resize @i is non-zero. "), |
Theodore Ts'o | e75cfc5 | 2004-12-16 20:13:45 -0500 | [diff] [blame] | 328 | PROMPT_CLEAR, 0 }, |
| 329 | |
Theodore Ts'o | c3ffaf8 | 2004-12-24 01:42:22 -0500 | [diff] [blame] | 330 | /* Resize inode invalid */ |
| 331 | { PR_0_RESIZE_INODE_INVALID, |
| 332 | N_("Resize @i not valid. "), |
| 333 | PROMPT_RECREATE, 0 }, |
| 334 | |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 335 | /* Pass 1 errors */ |
| 336 | |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 337 | /* Pass 1: Checking inodes, blocks, and sizes */ |
| 338 | { PR_1_PASS_HEADER, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 339 | N_("Pass 1: Checking @is, @bs, and sizes\n"), |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 340 | PROMPT_NONE, 0 }, |
| 341 | |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 342 | /* Root directory is not an inode */ |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 343 | { PR_1_ROOT_NO_DIR, N_("@r is not a @d. "), |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 344 | PROMPT_CLEAR, 0 }, |
| 345 | |
| 346 | /* Root directory has dtime set */ |
| 347 | { PR_1_ROOT_DTIME, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 348 | N_("@r has dtime set (probably due to old mke2fs). "), |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 349 | PROMPT_FIX, PR_PREEN_OK }, |
| 350 | |
| 351 | /* Reserved inode has bad mode */ |
| 352 | { PR_1_RESERVED_BAD_MODE, |
Theodore Ts'o | 7ae1983 | 2005-06-19 09:45:36 -0400 | [diff] [blame] | 353 | N_("Reserved @i %i (%Q) has @n mode. "), |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 354 | PROMPT_CLEAR, PR_PREEN_OK }, |
| 355 | |
| 356 | /* Deleted inode has zero dtime */ |
| 357 | { PR_1_ZERO_DTIME, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 358 | N_("@D @i %i has zero dtime. "), |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 359 | PROMPT_FIX, PR_PREEN_OK }, |
| 360 | |
| 361 | /* Inode in use, but dtime set */ |
| 362 | { PR_1_SET_DTIME, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 363 | N_("@i %i is in use, but has dtime set. "), |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 364 | PROMPT_FIX, PR_PREEN_OK }, |
| 365 | |
| 366 | /* Zero-length directory */ |
| 367 | { PR_1_ZERO_LENGTH_DIR, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 368 | N_("@i %i is a @z @d. "), |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 369 | PROMPT_CLEAR, PR_PREEN_OK }, |
| 370 | |
| 371 | /* Block bitmap conflicts with some other fs block */ |
| 372 | { PR_1_BB_CONFLICT, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 373 | N_("@g %g's @b @B at %b @C.\n"), |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 374 | PROMPT_RELOCATE, 0 }, |
| 375 | |
| 376 | /* Inode bitmap conflicts with some other fs block */ |
| 377 | { PR_1_IB_CONFLICT, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 378 | N_("@g %g's @i @B at %b @C.\n"), |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 379 | PROMPT_RELOCATE, 0 }, |
| 380 | |
| 381 | /* Inode table conflicts with some other fs block */ |
| 382 | { PR_1_ITABLE_CONFLICT, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 383 | N_("@g %g's @i table at %b @C.\n"), |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 384 | PROMPT_RELOCATE, 0 }, |
| 385 | |
| 386 | /* Block bitmap is on a bad block */ |
| 387 | { PR_1_BB_BAD_BLOCK, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 388 | N_("@g %g's @b @B (%b) is bad. "), |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 389 | PROMPT_RELOCATE, 0 }, |
| 390 | |
| 391 | /* Inode bitmap is on a bad block */ |
| 392 | { PR_1_IB_BAD_BLOCK, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 393 | N_("@g %g's @i @B (%b) is bad. "), |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 394 | PROMPT_RELOCATE, 0 }, |
| 395 | |
| 396 | /* Inode has incorrect i_size */ |
| 397 | { PR_1_BAD_I_SIZE, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 398 | N_("@i %i, i_size is %Is, @s %N. "), |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 399 | PROMPT_FIX, PR_PREEN_OK }, |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 400 | |
| 401 | /* Inode has incorrect i_blocks */ |
| 402 | { PR_1_BAD_I_BLOCKS, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 403 | N_("@i %i, i_@bs is %Ib, @s %N. "), |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 404 | PROMPT_FIX, PR_PREEN_OK }, |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 405 | |
Theodore Ts'o | 80bfaa3 | 2000-08-18 15:08:37 +0000 | [diff] [blame] | 406 | /* Illegal blocknumber in inode */ |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 407 | { PR_1_ILLEGAL_BLOCK_NUM, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 408 | N_("@I @b #%B (%b) in @i %i. "), |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 409 | PROMPT_CLEAR, PR_LATCH_BLOCK }, |
| 410 | |
| 411 | /* Block number overlaps fs metadata */ |
| 412 | { PR_1_BLOCK_OVERLAPS_METADATA, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 413 | N_("@b #%B (%b) overlaps @f metadata in @i %i. "), |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 414 | PROMPT_CLEAR, PR_LATCH_BLOCK }, |
| 415 | |
| 416 | /* Inode has illegal blocks (latch question) */ |
| 417 | { PR_1_INODE_BLOCK_LATCH, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 418 | N_("@i %i has illegal @b(s). "), |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 419 | PROMPT_CLEAR, 0 }, |
| 420 | |
| 421 | /* Too many bad blocks in inode */ |
| 422 | { PR_1_TOO_MANY_BAD_BLOCKS, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 423 | N_("Too many illegal @bs in @i %i.\n"), |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 424 | PROMPT_CLEAR_INODE, PR_NO_OK }, |
| 425 | |
| 426 | /* Illegal block number in bad block inode */ |
| 427 | { PR_1_BB_ILLEGAL_BLOCK_NUM, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 428 | N_("@I @b #%B (%b) in bad @b @i. "), |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 429 | PROMPT_CLEAR, PR_LATCH_BBLOCK }, |
| 430 | |
| 431 | /* Bad block inode has illegal blocks (latch question) */ |
| 432 | { PR_1_INODE_BBLOCK_LATCH, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 433 | N_("Bad @b @i has illegal @b(s). "), |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 434 | PROMPT_CLEAR, 0 }, |
| 435 | |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 436 | /* Duplicate or bad blocks in use! */ |
| 437 | { PR_1_DUP_BLOCKS_PREENSTOP, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 438 | N_("Duplicate or bad @b in use!\n"), |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 439 | PROMPT_NONE, 0 }, |
| 440 | |
| 441 | /* Bad block used as bad block indirect block */ |
| 442 | { PR_1_BBINODE_BAD_METABLOCK, |
Theodore Ts'o | 000ba40 | 2003-11-21 10:41:58 -0500 | [diff] [blame] | 443 | N_("Bad @b %b used as bad @b @i indirect @b. "), |
| 444 | PROMPT_CLEAR, PR_LATCH_BBLOCK }, |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 445 | |
| 446 | /* Inconsistency can't be fixed prompt */ |
| 447 | { PR_1_BBINODE_BAD_METABLOCK_PROMPT, |
Theodore Ts'o | 000ba40 | 2003-11-21 10:41:58 -0500 | [diff] [blame] | 448 | N_("\nThe bad @b @i has probably been corrupted. You probably\n" |
| 449 | "should stop now and run ""e2fsck -c"" to scan for bad blocks\n" |
| 450 | "in the @f.\n"), |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 451 | PROMPT_CONTINUE, PR_PREEN_NOMSG }, |
| 452 | |
| 453 | /* Bad primary block */ |
| 454 | { PR_1_BAD_PRIMARY_BLOCK, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 455 | 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] | 456 | PROMPT_NONE, PR_AFTER_CODE, PR_1_BAD_PRIMARY_BLOCK_PROMPT }, |
| 457 | |
| 458 | /* Bad primary block prompt */ |
| 459 | { PR_1_BAD_PRIMARY_BLOCK_PROMPT, |
Theodore Ts'o | 7ae1983 | 2005-06-19 09:45:36 -0400 | [diff] [blame] | 460 | N_("You can remove this @b from the bad @b list and hope\n" |
| 461 | "that the @b is really OK. But there are no guarantees.\n\n"), |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 462 | PROMPT_CLEAR, PR_PREEN_NOMSG }, |
| 463 | |
| 464 | /* Bad primary superblock */ |
| 465 | { PR_1_BAD_PRIMARY_SUPERBLOCK, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 466 | 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] | 467 | PROMPT_NONE, PR_AFTER_CODE, PR_1_BAD_PRIMARY_BLOCK }, |
| 468 | |
| 469 | /* Bad primary block group descriptors */ |
| 470 | { PR_1_BAD_PRIMARY_GROUP_DESCRIPTOR, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 471 | N_("Block %b in the primary @g descriptors " |
| 472 | "is on the bad @b list\n"), |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 473 | PROMPT_NONE, PR_AFTER_CODE, PR_1_BAD_PRIMARY_BLOCK }, |
| 474 | |
| 475 | /* Bad superblock in group */ |
| 476 | { PR_1_BAD_SUPERBLOCK, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 477 | N_("Warning: Group %g's @S (%b) is bad.\n"), |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 478 | PROMPT_NONE, PR_PREEN_OK | PR_PREEN_NOMSG }, |
| 479 | |
| 480 | /* Bad block group descriptors in group */ |
| 481 | { PR_1_BAD_GROUP_DESCRIPTORS, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 482 | N_("Warning: Group %g's copy of the @g descriptors has a bad " |
| 483 | "@b (%b).\n"), |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 484 | PROMPT_NONE, PR_PREEN_OK | PR_PREEN_NOMSG }, |
| 485 | |
| 486 | /* Block claimed for no reason */ |
| 487 | { PR_1_PROGERR_CLAIMED_BLOCK, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 488 | N_("Programming error? @b #%b claimed for no reason in " |
| 489 | "process_bad_@b.\n"), |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 490 | PROMPT_NONE, PR_PREEN_OK }, |
| 491 | |
Theodore Ts'o | f8188ff | 1997-11-14 05:23:04 +0000 | [diff] [blame] | 492 | /* Error allocating blocks for relocating metadata */ |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 493 | { PR_1_RELOC_BLOCK_ALLOCATE, |
Theodore Ts'o | a3da9d1 | 2002-08-21 12:52:03 -0400 | [diff] [blame] | 494 | N_("@A %N contiguous @b(s) in @b @g %g for %s: %m\n"), |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 495 | PROMPT_NONE, PR_PREEN_OK }, |
| 496 | |
Theodore Ts'o | f8188ff | 1997-11-14 05:23:04 +0000 | [diff] [blame] | 497 | /* Error allocating block buffer during relocation process */ |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 498 | { PR_1_RELOC_MEMORY_ALLOCATE, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 499 | N_("@A @b buffer for relocating %s\n"), |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 500 | PROMPT_NONE, PR_PREEN_OK }, |
| 501 | |
| 502 | /* Relocating metadata group information from X to Y */ |
| 503 | { PR_1_RELOC_FROM_TO, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 504 | N_("Relocating @g %g's %s from %b to %c...\n"), |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 505 | PROMPT_NONE, PR_PREEN_OK }, |
| 506 | |
| 507 | /* Relocating metatdata group information to X */ |
| 508 | { PR_1_RELOC_TO, |
Theodore Ts'o | ddc32a0 | 2003-05-03 18:45:55 -0400 | [diff] [blame] | 509 | N_("Relocating @g %g's %s to %c...\n"), /* xgettext:no-c-format */ |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 510 | PROMPT_NONE, PR_PREEN_OK }, |
| 511 | |
| 512 | /* Block read error during relocation process */ |
| 513 | { PR_1_RELOC_READ_ERR, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 514 | N_("Warning: could not read @b %b of %s: %m\n"), |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 515 | PROMPT_NONE, PR_PREEN_OK }, |
| 516 | |
| 517 | /* Block write error during relocation process */ |
| 518 | { PR_1_RELOC_WRITE_ERR, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 519 | N_("Warning: could not write @b %b for %s: %m\n"), |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 520 | PROMPT_NONE, PR_PREEN_OK }, |
| 521 | |
| 522 | /* Error allocating inode bitmap */ |
| 523 | { PR_1_ALLOCATE_IBITMAP_ERROR, |
Theodore Ts'o | 7ae1983 | 2005-06-19 09:45:36 -0400 | [diff] [blame] | 524 | N_("@A @i @B (%N): %m\n"), |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 525 | PROMPT_NONE, PR_FATAL }, |
| 526 | |
| 527 | /* Error allocating block bitmap */ |
| 528 | { PR_1_ALLOCATE_BBITMAP_ERROR, |
Theodore Ts'o | 7ae1983 | 2005-06-19 09:45:36 -0400 | [diff] [blame] | 529 | N_("@A @b @B (%N): %m\n"), |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 530 | PROMPT_NONE, PR_FATAL }, |
| 531 | |
| 532 | /* Error allocating icount structure */ |
| 533 | { PR_1_ALLOCATE_ICOUNT, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 534 | N_("@A icount link information: %m\n"), |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 535 | PROMPT_NONE, PR_FATAL }, |
| 536 | |
| 537 | /* Error allocating dbcount */ |
| 538 | { PR_1_ALLOCATE_DBCOUNT, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 539 | N_("@A @d @b array: %m\n"), |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 540 | PROMPT_NONE, PR_FATAL }, |
| 541 | |
| 542 | /* Error while scanning inodes */ |
| 543 | { PR_1_ISCAN_ERROR, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 544 | N_("Error while scanning @is (%i): %m\n"), |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 545 | PROMPT_NONE, PR_FATAL }, |
| 546 | |
| 547 | /* Error while iterating over blocks */ |
| 548 | { PR_1_BLOCK_ITERATE, |
Theodore Ts'o | 133a56d | 2000-11-17 05:40:49 +0000 | [diff] [blame] | 549 | N_("Error while iterating over @bs in @i %i: %m\n"), |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 550 | PROMPT_NONE, PR_FATAL }, |
| 551 | |
| 552 | /* Error while storing inode count information */ |
| 553 | { PR_1_ICOUNT_STORE, |
Theodore Ts'o | f18996c | 2001-01-03 16:57:24 +0000 | [diff] [blame] | 554 | 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] | 555 | PROMPT_NONE, PR_FATAL }, |
| 556 | |
| 557 | /* Error while storing directory block information */ |
| 558 | { PR_1_ADD_DBLOCK, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 559 | N_("Error storing @d @b information " |
Theodore Ts'o | f18996c | 2001-01-03 16:57:24 +0000 | [diff] [blame] | 560 | "(@i=%i, @b=%b, num=%N): %m\n"), |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 561 | PROMPT_NONE, PR_FATAL }, |
| 562 | |
| 563 | /* Error while reading inode (for clearing) */ |
| 564 | { PR_1_READ_INODE, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 565 | N_("Error reading @i %i: %m\n"), |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 566 | PROMPT_NONE, PR_FATAL }, |
Theodore Ts'o | f8188ff | 1997-11-14 05:23:04 +0000 | [diff] [blame] | 567 | |
| 568 | /* Suppress messages prompt */ |
| 569 | { PR_1_SUPPRESS_MESSAGES, "", PROMPT_SUPPRESS, PR_NO_OK }, |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 570 | |
Theodore Ts'o | 6fdc7a3 | 1999-11-10 13:34:40 +0000 | [diff] [blame] | 571 | /* Imagic flag set on an inode when filesystem doesn't support it */ |
| 572 | { PR_1_SET_IMAGIC, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 573 | N_("@i %i has imagic flag set. "), |
Theodore Ts'o | 6fdc7a3 | 1999-11-10 13:34:40 +0000 | [diff] [blame] | 574 | PROMPT_CLEAR, 0 }, |
| 575 | |
| 576 | /* Immutable flag set on a device or socket inode */ |
| 577 | { PR_1_SET_IMMUTABLE, |
Theodore Ts'o | bcf9c5d | 2002-05-21 09:14:17 -0400 | [diff] [blame] | 578 | N_("Special (@v/socket/fifo/symlink) file (@i %i) has immutable\n" |
| 579 | "or append-only flag set. "), |
Theodore Ts'o | a846d2f | 1999-11-10 15:50:24 +0000 | [diff] [blame] | 580 | PROMPT_CLEAR, PR_PREEN_OK | PR_PREEN_NO | PR_NO_OK }, |
Theodore Ts'o | 6fdc7a3 | 1999-11-10 13:34:40 +0000 | [diff] [blame] | 581 | |
Theodore Ts'o | 01fbc70 | 2000-04-03 13:57:21 +0000 | [diff] [blame] | 582 | /* 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] | 583 | { PR_1_COMPR_SET, |
| 584 | N_("@i %i has @cion flag set on @f without @cion support. "), |
| 585 | PROMPT_CLEAR, 0 }, |
| 586 | |
Theodore Ts'o | d647a1e | 2000-05-27 14:40:09 +0000 | [diff] [blame] | 587 | /* Non-zero size for device, fifo or socket inode */ |
| 588 | { PR_1_SET_NONZSIZE, |
Theodore Ts'o | 7ae1983 | 2005-06-19 09:45:36 -0400 | [diff] [blame] | 589 | N_("Special (@v/socket/fifo) @i %i has non-zero size. "), |
Theodore Ts'o | d647a1e | 2000-05-27 14:40:09 +0000 | [diff] [blame] | 590 | PROMPT_FIX, PR_PREEN_OK }, |
Theodore Ts'o | 060b5fb | 2000-12-13 18:07:23 +0000 | [diff] [blame] | 591 | |
| 592 | /* Filesystem revision is 0, but feature flags are set */ |
| 593 | { PR_1_FS_REV_LEVEL, |
Theodore Ts'o | 7ae1983 | 2005-06-19 09:45:36 -0400 | [diff] [blame] | 594 | N_("@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] | 595 | PROMPT_FIX, PR_PREEN_OK | PR_NO_OK }, |
| 596 | |
Theodore Ts'o | f18996c | 2001-01-03 16:57:24 +0000 | [diff] [blame] | 597 | /* Journal inode is not in use, but contains data */ |
Theodore Ts'o | a9ca201 | 2001-01-12 21:53:25 +0000 | [diff] [blame] | 598 | { PR_1_JOURNAL_INODE_NOT_CLEAR, |
Theodore Ts'o | 7ae1983 | 2005-06-19 09:45:36 -0400 | [diff] [blame] | 599 | N_("@j @i is not in use, but contains data. "), |
Theodore Ts'o | f18996c | 2001-01-03 16:57:24 +0000 | [diff] [blame] | 600 | PROMPT_CLEAR, PR_PREEN_OK }, |
| 601 | |
Theodore Ts'o | a9ca201 | 2001-01-12 21:53:25 +0000 | [diff] [blame] | 602 | /* Journal has bad mode */ |
| 603 | { PR_1_JOURNAL_BAD_MODE, |
Theodore Ts'o | 67a473e | 2001-02-08 02:34:50 +0000 | [diff] [blame] | 604 | N_("@j is not regular file. "), |
Theodore Ts'o | a9ca201 | 2001-01-12 21:53:25 +0000 | [diff] [blame] | 605 | PROMPT_FIX, PR_PREEN_OK }, |
| 606 | |
Theodore Ts'o | 21afac0 | 2001-05-14 12:47:41 +0000 | [diff] [blame] | 607 | /* Deal with inodes that were part of orphan linked list */ |
| 608 | { PR_1_LOW_DTIME, |
Theodore Ts'o | 7ae1983 | 2005-06-19 09:45:36 -0400 | [diff] [blame] | 609 | N_("@i %i was part of the @o @i list. "), |
Theodore Ts'o | 21afac0 | 2001-05-14 12:47:41 +0000 | [diff] [blame] | 610 | PROMPT_FIX, PR_LATCH_LOW_DTIME, 0 }, |
| 611 | |
| 612 | /* Deal with inodes that were part of corrupted orphan linked |
| 613 | list (latch question) */ |
| 614 | { PR_1_ORPHAN_LIST_REFUGEES, |
| 615 | N_("@is that were part of a corrupted orphan linked list found. "), |
| 616 | PROMPT_FIX, 0 }, |
| 617 | |
Theodore Ts'o | 342d847 | 2001-07-02 11:54:09 -0400 | [diff] [blame] | 618 | /* Error allocating refcount structure */ |
| 619 | { PR_1_ALLOCATE_REFCOUNT, |
Theodore Ts'o | 7ae1983 | 2005-06-19 09:45:36 -0400 | [diff] [blame] | 620 | N_("@A refcount structure (%N): %m\n"), |
Theodore Ts'o | 342d847 | 2001-07-02 11:54:09 -0400 | [diff] [blame] | 621 | PROMPT_NONE, PR_FATAL }, |
| 622 | |
| 623 | /* Error reading extended attribute block */ |
| 624 | { PR_1_READ_EA_BLOCK, |
| 625 | N_("Error reading @a @b %b for @i %i. "), |
| 626 | PROMPT_CLEAR, 0 }, |
| 627 | |
Theodore Ts'o | e8a3ee6 | 2001-07-07 11:12:50 -0400 | [diff] [blame] | 628 | /* Invalid extended attribute block */ |
Theodore Ts'o | 342d847 | 2001-07-02 11:54:09 -0400 | [diff] [blame] | 629 | { PR_1_BAD_EA_BLOCK, |
| 630 | N_("@i %i has a bad @a @b %b. "), |
| 631 | PROMPT_CLEAR, 0 }, |
| 632 | |
Theodore Ts'o | e8a3ee6 | 2001-07-07 11:12:50 -0400 | [diff] [blame] | 633 | /* Error reading Extended Attribute block while fixing refcount */ |
| 634 | { PR_1_EXTATTR_READ_ABORT, |
| 635 | N_("Error reading @a @b %b (%m). "), |
| 636 | PROMPT_ABORT, 0 }, |
| 637 | |
| 638 | /* Extended attribute reference count incorrect */ |
| 639 | { PR_1_EXTATTR_REFCOUNT, |
Theodore Ts'o | 7ae1983 | 2005-06-19 09:45:36 -0400 | [diff] [blame] | 640 | N_("@a @b %b has reference count %B, @s %N. "), |
Theodore Ts'o | e8a3ee6 | 2001-07-07 11:12:50 -0400 | [diff] [blame] | 641 | PROMPT_FIX, 0 }, |
| 642 | |
| 643 | /* Error writing Extended Attribute block while fixing refcount */ |
| 644 | { PR_1_EXTATTR_WRITE, |
| 645 | N_("Error writing @a @b %b (%m). "), |
| 646 | PROMPT_ABORT, 0 }, |
Theodore Ts'o | 55fd07e | 2001-07-19 16:31:25 -0400 | [diff] [blame] | 647 | |
| 648 | /* Multiple EA blocks not supported */ |
| 649 | { PR_1_EA_MULTI_BLOCK, |
Theodore Ts'o | 7ae1983 | 2005-06-19 09:45:36 -0400 | [diff] [blame] | 650 | N_("@a @b %b has h_@bs > 1. "), |
Theodore Ts'o | 55fd07e | 2001-07-19 16:31:25 -0400 | [diff] [blame] | 651 | PROMPT_CLEAR, 0}, |
| 652 | |
| 653 | /* Error allocating EA region allocation structure */ |
| 654 | { PR_1_EA_ALLOC_REGION, |
Theodore Ts'o | 7ae1983 | 2005-06-19 09:45:36 -0400 | [diff] [blame] | 655 | N_("@A @a @b %b. "), |
Theodore Ts'o | 55fd07e | 2001-07-19 16:31:25 -0400 | [diff] [blame] | 656 | PROMPT_ABORT, 0}, |
| 657 | |
| 658 | /* Error EA allocation collision */ |
| 659 | { PR_1_EA_ALLOC_COLLISION, |
| 660 | N_("@a @b %b is corrupt (allocation collision). "), |
Theodore Ts'o | 14fe1c3 | 2001-07-25 19:48:24 -0400 | [diff] [blame] | 661 | PROMPT_CLEAR, 0}, |
Theodore Ts'o | 55fd07e | 2001-07-19 16:31:25 -0400 | [diff] [blame] | 662 | |
| 663 | /* Bad extended attribute name */ |
| 664 | { PR_1_EA_BAD_NAME, |
Theodore Ts'o | 7ae1983 | 2005-06-19 09:45:36 -0400 | [diff] [blame] | 665 | N_("@a @b %b is corrupt (@n name). "), |
Theodore Ts'o | 55fd07e | 2001-07-19 16:31:25 -0400 | [diff] [blame] | 666 | PROMPT_CLEAR, 0}, |
| 667 | |
| 668 | /* Bad extended attribute value */ |
| 669 | { PR_1_EA_BAD_VALUE, |
Theodore Ts'o | 7ae1983 | 2005-06-19 09:45:36 -0400 | [diff] [blame] | 670 | N_("@a @b %b is corrupt (@n value). "), |
Andreas Dilger | b94a052 | 2002-05-18 13:16:30 -0600 | [diff] [blame] | 671 | PROMPT_CLEAR, 0}, |
| 672 | |
Theodore Ts'o | da30704 | 2002-05-21 21:19:14 -0400 | [diff] [blame] | 673 | /* Inode too big (latch question) */ |
| 674 | { PR_1_INODE_TOOBIG, |
| 675 | N_("@i %i is too big. "), PROMPT_TRUNCATE, 0 }, |
| 676 | |
| 677 | /* Directory too big */ |
| 678 | { PR_1_TOOBIG_DIR, |
| 679 | N_("@b #%B (%b) causes @d to be too big. "), |
| 680 | PROMPT_CLEAR, PR_LATCH_TOOBIG }, |
| 681 | |
| 682 | /* Regular file too big */ |
| 683 | { PR_1_TOOBIG_REG, |
| 684 | N_("@b #%B (%b) causes file to be too big. "), |
| 685 | PROMPT_CLEAR, PR_LATCH_TOOBIG }, |
| 686 | |
| 687 | /* Symlink too big */ |
| 688 | { PR_1_TOOBIG_SYMLINK, |
| 689 | N_("@b #%B (%b) causes symlink to be too big. "), |
| 690 | PROMPT_CLEAR, PR_LATCH_TOOBIG }, |
| 691 | |
Theodore Ts'o | 8fdc998 | 2002-06-25 23:26:34 -0400 | [diff] [blame] | 692 | /* INDEX_FL flag set on a non-HTREE filesystem */ |
| 693 | { PR_1_HTREE_SET, |
| 694 | N_("@i %i has INDEX_FL flag set on @f without htree support.\n"), |
Theodore Ts'o | 54779c6 | 2002-11-13 07:00:16 -0500 | [diff] [blame] | 695 | PROMPT_CLEAR_HTREE, PR_PREEN_OK }, |
Theodore Ts'o | 8fdc998 | 2002-06-25 23:26:34 -0400 | [diff] [blame] | 696 | |
Theodore Ts'o | 503f9e7 | 2002-06-26 16:52:10 -0400 | [diff] [blame] | 697 | /* INDEX_FL flag set on a non-directory */ |
| 698 | { PR_1_HTREE_NODIR, |
| 699 | N_("@i %i has INDEX_FL flag set but is not a @d.\n"), |
Theodore Ts'o | 54779c6 | 2002-11-13 07:00:16 -0500 | [diff] [blame] | 700 | PROMPT_CLEAR_HTREE, PR_PREEN_OK }, |
Theodore Ts'o | 503f9e7 | 2002-06-26 16:52:10 -0400 | [diff] [blame] | 701 | |
| 702 | /* Invalid root node in HTREE directory */ |
| 703 | { PR_1_HTREE_BADROOT, |
Theodore Ts'o | 7ae1983 | 2005-06-19 09:45:36 -0400 | [diff] [blame] | 704 | N_("@h %i has an @n root node.\n"), |
Theodore Ts'o | 54779c6 | 2002-11-13 07:00:16 -0500 | [diff] [blame] | 705 | PROMPT_CLEAR_HTREE, PR_PREEN_OK }, |
Theodore Ts'o | 503f9e7 | 2002-06-26 16:52:10 -0400 | [diff] [blame] | 706 | |
| 707 | /* Unsupported hash version in HTREE directory */ |
| 708 | { PR_1_HTREE_HASHV, |
| 709 | N_("@h %i has an unsupported hash version (%N)\n"), |
Theodore Ts'o | 54779c6 | 2002-11-13 07:00:16 -0500 | [diff] [blame] | 710 | PROMPT_CLEAR_HTREE, PR_PREEN_OK }, |
Theodore Ts'o | 503f9e7 | 2002-06-26 16:52:10 -0400 | [diff] [blame] | 711 | |
| 712 | /* Incompatible flag in HTREE root node */ |
| 713 | { PR_1_HTREE_INCOMPAT, |
| 714 | N_("@h %i uses an incompatible htree root node flag.\n"), |
Theodore Ts'o | 54779c6 | 2002-11-13 07:00:16 -0500 | [diff] [blame] | 715 | PROMPT_CLEAR_HTREE, PR_PREEN_OK }, |
Theodore Ts'o | 503f9e7 | 2002-06-26 16:52:10 -0400 | [diff] [blame] | 716 | |
| 717 | /* HTREE too deep */ |
| 718 | { PR_1_HTREE_DEPTH, |
| 719 | N_("@h %i has a tree depth (%N) which is too big\n"), |
Theodore Ts'o | 68ef5e1 | 2002-12-11 12:14:43 -0500 | [diff] [blame] | 720 | PROMPT_CLEAR_HTREE, PR_PREEN_OK }, |
Theodore Ts'o | 503f9e7 | 2002-06-26 16:52:10 -0400 | [diff] [blame] | 721 | |
Theodore Ts'o | 000ba40 | 2003-11-21 10:41:58 -0500 | [diff] [blame] | 722 | /* Bad block has indirect block that conflicts with filesystem block */ |
| 723 | { PR_1_BB_FS_BLOCK, |
| 724 | N_("Bad @b @i has an indirect @b (%b) that conflicts with\n" |
| 725 | "@f metadata. "), |
| 726 | PROMPT_CLEAR, PR_LATCH_BBLOCK }, |
Theodore Ts'o | c3ffaf8 | 2004-12-24 01:42:22 -0500 | [diff] [blame] | 727 | |
| 728 | /* Resize inode failed */ |
| 729 | { PR_1_RESIZE_INODE_CREATE, |
| 730 | N_("Resize @i (re)creation failed: %m."), |
| 731 | PROMPT_ABORT, 0 }, |
| 732 | |
Theodore Ts'o | cebe48a | 2005-03-21 13:15:45 -0500 | [diff] [blame] | 733 | /* invalid inode->i_extra_isize */ |
| 734 | { PR_1_EXTRA_ISIZE, |
Theodore Ts'o | 7ae1983 | 2005-06-19 09:45:36 -0400 | [diff] [blame] | 735 | N_("@i %i has a extra size (%IS) which is @n\n"), |
Theodore Ts'o | cebe48a | 2005-03-21 13:15:45 -0500 | [diff] [blame] | 736 | PROMPT_FIX, PR_PREEN_OK }, |
| 737 | |
| 738 | /* invalid ea entry->e_name_len */ |
| 739 | { PR_1_ATTR_NAME_LEN, |
Theodore Ts'o | 7ae1983 | 2005-06-19 09:45:36 -0400 | [diff] [blame] | 740 | N_("@a in @i %i has a namelen (%N) which is @n\n"), |
Theodore Ts'o | cebe48a | 2005-03-21 13:15:45 -0500 | [diff] [blame] | 741 | PROMPT_CLEAR, PR_PREEN_OK }, |
| 742 | |
| 743 | /* invalid ea entry->e_value_size */ |
| 744 | { PR_1_ATTR_VALUE_SIZE, |
Theodore Ts'o | 7ae1983 | 2005-06-19 09:45:36 -0400 | [diff] [blame] | 745 | N_("@a in @i %i has a value size (%N) which is @n\n"), |
Theodore Ts'o | cebe48a | 2005-03-21 13:15:45 -0500 | [diff] [blame] | 746 | PROMPT_CLEAR, PR_PREEN_OK }, |
| 747 | |
| 748 | /* invalid ea entry->e_value_offs */ |
| 749 | { PR_1_ATTR_VALUE_OFFSET, |
Theodore Ts'o | 7ae1983 | 2005-06-19 09:45:36 -0400 | [diff] [blame] | 750 | N_("@a in @i %i has a value offset (%N) which is @n\n"), |
Theodore Ts'o | cebe48a | 2005-03-21 13:15:45 -0500 | [diff] [blame] | 751 | PROMPT_CLEAR, PR_PREEN_OK }, |
| 752 | |
| 753 | /* invalid ea entry->e_value_block */ |
| 754 | { PR_1_ATTR_VALUE_BLOCK, |
Theodore Ts'o | 7ae1983 | 2005-06-19 09:45:36 -0400 | [diff] [blame] | 755 | N_("@a in @i %i has a value @b (%N) which is @n (must be 0)\n"), |
Theodore Ts'o | cebe48a | 2005-03-21 13:15:45 -0500 | [diff] [blame] | 756 | PROMPT_CLEAR, PR_PREEN_OK }, |
| 757 | |
| 758 | /* invalid ea entry->e_hash */ |
| 759 | { PR_1_ATTR_HASH, |
Theodore Ts'o | 7ae1983 | 2005-06-19 09:45:36 -0400 | [diff] [blame] | 760 | N_("@a in @i %i has a hash (%N) which is @n (must be 0)\n"), |
Theodore Ts'o | cebe48a | 2005-03-21 13:15:45 -0500 | [diff] [blame] | 761 | PROMPT_CLEAR, PR_PREEN_OK }, |
| 762 | |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 763 | /* Pass 1b errors */ |
| 764 | |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 765 | /* Pass 1B: Rescan for duplicate/bad blocks */ |
| 766 | { PR_1B_PASS_HEADER, |
Theodore Ts'o | 7ae1983 | 2005-06-19 09:45:36 -0400 | [diff] [blame] | 767 | N_("\nRunning additional passes to resolve @bs claimed by more than one @i...\n" |
| 768 | "Pass 1B: Rescanning for @m @bs\n"), |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 769 | PROMPT_NONE, 0 }, |
| 770 | |
| 771 | /* Duplicate/bad block(s) header */ |
| 772 | { PR_1B_DUP_BLOCK_HEADER, |
Theodore Ts'o | 7ae1983 | 2005-06-19 09:45:36 -0400 | [diff] [blame] | 773 | N_("@m @b(s) in @i %i:"), |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 774 | PROMPT_NONE, 0 }, |
| 775 | |
| 776 | /* Duplicate/bad block(s) in inode */ |
| 777 | { PR_1B_DUP_BLOCK, |
| 778 | " %b", |
Theodore Ts'o | 151786f | 2004-02-22 15:41:11 -0500 | [diff] [blame] | 779 | PROMPT_NONE, PR_LATCH_DBLOCK | PR_PREEN_NOHDR }, |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 780 | |
| 781 | /* Duplicate/bad block(s) end */ |
| 782 | { PR_1B_DUP_BLOCK_END, |
| 783 | "\n", |
Theodore Ts'o | 151786f | 2004-02-22 15:41:11 -0500 | [diff] [blame] | 784 | PROMPT_NONE, PR_PREEN_NOHDR }, |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 785 | |
| 786 | /* Error while scanning inodes */ |
| 787 | { PR_1B_ISCAN_ERROR, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 788 | N_("Error while scanning inodes (%i): %m\n"), |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 789 | PROMPT_NONE, PR_FATAL }, |
| 790 | |
| 791 | /* Error allocating inode bitmap */ |
| 792 | { PR_1B_ALLOCATE_IBITMAP_ERROR, |
Theodore Ts'o | 7ae1983 | 2005-06-19 09:45:36 -0400 | [diff] [blame] | 793 | N_("@A @i @B (@i_dup_map): %m\n"), |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 794 | PROMPT_NONE, PR_FATAL }, |
| 795 | |
Theodore Ts'o | 133a56d | 2000-11-17 05:40:49 +0000 | [diff] [blame] | 796 | /* Error while iterating over blocks */ |
| 797 | { PR_1B_BLOCK_ITERATE, |
| 798 | N_("Error while iterating over @bs in @i %i (%s): %m\n"), |
| 799 | PROMPT_NONE, 0 }, |
Theodore Ts'o | 0684a4f | 2002-08-17 10:19:44 -0400 | [diff] [blame] | 800 | |
| 801 | /* Error adjusting EA refcount */ |
| 802 | { PR_1B_ADJ_EA_REFCOUNT, |
Theodore Ts'o | 7ae1983 | 2005-06-19 09:45:36 -0400 | [diff] [blame] | 803 | N_("Error adjusting refcount for @a @b %b (@i %i): %m\n"), |
Theodore Ts'o | 0684a4f | 2002-08-17 10:19:44 -0400 | [diff] [blame] | 804 | PROMPT_NONE, 0 }, |
| 805 | |
| 806 | |
Theodore Ts'o | 7ae1983 | 2005-06-19 09:45:36 -0400 | [diff] [blame] | 807 | /* Pass 1C: Scan directories for inodes with multiply-claimed blocks. */ |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 808 | { PR_1C_PASS_HEADER, |
Theodore Ts'o | 49809dd | 2005-07-04 13:08:37 -0500 | [diff] [blame^] | 809 | N_("Pass 1C: Scanning directories for @is with @m @bs\n"), |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 810 | PROMPT_NONE, 0 }, |
| 811 | |
| 812 | |
Theodore Ts'o | 7ae1983 | 2005-06-19 09:45:36 -0400 | [diff] [blame] | 813 | /* Pass 1D: Reconciling multiply-claimed blocks */ |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 814 | { PR_1D_PASS_HEADER, |
Theodore Ts'o | 7ae1983 | 2005-06-19 09:45:36 -0400 | [diff] [blame] | 815 | N_("Pass 1D: Reconciling @m @bs\n"), |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 816 | PROMPT_NONE, 0 }, |
| 817 | |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 818 | /* File has duplicate blocks */ |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 819 | { PR_1D_DUP_FILE, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 820 | N_("File %Q (@i #%i, mod time %IM) \n" |
Theodore Ts'o | 7ae1983 | 2005-06-19 09:45:36 -0400 | [diff] [blame] | 821 | " has %B @m @b(s), shared with %N file(s):\n"), |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 822 | PROMPT_NONE, 0 }, |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 823 | |
| 824 | /* List of files sharing duplicate blocks */ |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 825 | { PR_1D_DUP_FILE_LIST, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 826 | N_("\t%Q (@i #%i, mod time %IM)\n"), |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 827 | PROMPT_NONE, 0 }, |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 828 | |
Theodore Ts'o | 521e368 | 1997-04-29 17:48:10 +0000 | [diff] [blame] | 829 | /* File sharing blocks with filesystem metadata */ |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 830 | { PR_1D_SHARE_METADATA, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 831 | N_("\t<@f metadata>\n"), |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 832 | PROMPT_NONE, 0 }, |
| 833 | |
| 834 | /* Report of how many duplicate/bad inodes */ |
| 835 | { PR_1D_NUM_DUP_INODES, |
Theodore Ts'o | 7ae1983 | 2005-06-19 09:45:36 -0400 | [diff] [blame] | 836 | N_("(There are %N @is containing @m @bs.)\n\n"), |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 837 | PROMPT_NONE, 0 }, |
| 838 | |
| 839 | /* Duplicated blocks already reassigned or cloned. */ |
| 840 | { PR_1D_DUP_BLOCKS_DEALT, |
Theodore Ts'o | 7ae1983 | 2005-06-19 09:45:36 -0400 | [diff] [blame] | 841 | N_("@m @bs already reassigned or cloned.\n\n"), |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 842 | PROMPT_NONE, 0 }, |
| 843 | |
| 844 | /* Clone duplicate/bad blocks? */ |
| 845 | { PR_1D_CLONE_QUESTION, |
| 846 | "", PROMPT_CLONE, PR_NO_OK }, |
| 847 | |
| 848 | /* Delete file? */ |
| 849 | { PR_1D_DELETE_QUESTION, |
| 850 | "", PROMPT_DELETE, 0 }, |
| 851 | |
| 852 | /* Couldn't clone file (error) */ |
| 853 | { PR_1D_CLONE_ERROR, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 854 | N_("Couldn't clone file: %m\n"), PROMPT_NONE, 0 }, |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 855 | |
| 856 | /* Pass 2 errors */ |
| 857 | |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 858 | /* Pass 2: Checking directory structure */ |
| 859 | { PR_2_PASS_HEADER, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 860 | N_("Pass 2: Checking @d structure\n"), |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 861 | PROMPT_NONE, 0 }, |
| 862 | |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 863 | /* Bad inode number for '.' */ |
| 864 | { PR_2_BAD_INODE_DOT, |
Theodore Ts'o | 7ae1983 | 2005-06-19 09:45:36 -0400 | [diff] [blame] | 865 | N_("@n @i number for '.' in @d @i %i.\n"), |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 866 | PROMPT_FIX, 0 }, |
| 867 | |
| 868 | /* Directory entry has bad inode number */ |
| 869 | { PR_2_BAD_INO, |
Theodore Ts'o | 7ae1983 | 2005-06-19 09:45:36 -0400 | [diff] [blame] | 870 | N_("@E has @n @i #: %Di.\n"), |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 871 | PROMPT_CLEAR, 0 }, |
| 872 | |
| 873 | /* Directory entry has deleted or unused inode */ |
| 874 | { PR_2_UNUSED_INODE, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 875 | N_("@E has @D/unused @i %Di. "), |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 876 | PROMPT_CLEAR, PR_PREEN_OK }, |
| 877 | |
| 878 | /* Directry entry is link to '.' */ |
| 879 | { PR_2_LINK_DOT, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 880 | N_("@E @L to '.' "), |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 881 | PROMPT_CLEAR, 0 }, |
| 882 | |
| 883 | /* Directory entry points to inode now located in a bad block */ |
| 884 | { PR_2_BB_INODE, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 885 | 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] | 886 | PROMPT_CLEAR, 0 }, |
| 887 | |
| 888 | /* Directory entry contains a link to a directory */ |
| 889 | { PR_2_LINK_DIR, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 890 | N_("@E @L to @d %P (%Di).\n"), |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 891 | PROMPT_CLEAR, 0 }, |
| 892 | |
| 893 | /* Directory entry contains a link to the root directry */ |
| 894 | { PR_2_LINK_ROOT, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 895 | N_("@E @L to the @r.\n"), |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 896 | PROMPT_CLEAR, 0 }, |
| 897 | |
| 898 | /* Directory entry has illegal characters in its name */ |
| 899 | { PR_2_BAD_NAME, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 900 | N_("@E has illegal characters in its name.\n"), |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 901 | PROMPT_FIX, 0 }, |
| 902 | |
| 903 | /* Missing '.' in directory inode */ |
| 904 | { PR_2_MISSING_DOT, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 905 | N_("Missing '.' in @d @i %i.\n"), |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 906 | PROMPT_FIX, 0 }, |
| 907 | |
| 908 | /* Missing '..' in directory inode */ |
| 909 | { PR_2_MISSING_DOT_DOT, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 910 | N_("Missing '..' in @d @i %i.\n"), |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 911 | PROMPT_FIX, 0 }, |
| 912 | |
| 913 | /* First entry in directory inode doesn't contain '.' */ |
| 914 | { PR_2_1ST_NOT_DOT, |
Theodore Ts'o | 7ae1983 | 2005-06-19 09:45:36 -0400 | [diff] [blame] | 915 | N_("First @e '%Dn' (@i=%Di) in @d @i %i (%p) @s '.'\n"), |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 916 | PROMPT_FIX, 0 }, |
| 917 | |
| 918 | /* Second entry in directory inode doesn't contain '..' */ |
| 919 | { PR_2_2ND_NOT_DOT_DOT, |
Theodore Ts'o | 7ae1983 | 2005-06-19 09:45:36 -0400 | [diff] [blame] | 920 | N_("Second @e '%Dn' (@i=%Di) in @d @i %i @s '..'\n"), |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 921 | PROMPT_FIX, 0 }, |
| 922 | |
| 923 | /* i_faddr should be zero */ |
| 924 | { PR_2_FADDR_ZERO, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 925 | N_("i_faddr @F %IF, @s zero.\n"), |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 926 | PROMPT_CLEAR, 0 }, |
| 927 | |
| 928 | /* i_file_acl should be zero */ |
| 929 | { PR_2_FILE_ACL_ZERO, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 930 | N_("i_file_acl @F %If, @s zero.\n"), |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 931 | PROMPT_CLEAR, 0 }, |
| 932 | |
| 933 | /* i_dir_acl should be zero */ |
| 934 | { PR_2_DIR_ACL_ZERO, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 935 | N_("i_dir_acl @F %Id, @s zero.\n"), |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 936 | PROMPT_CLEAR, 0 }, |
| 937 | |
| 938 | /* i_frag should be zero */ |
| 939 | { PR_2_FRAG_ZERO, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 940 | N_("i_frag @F %N, @s zero.\n"), |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 941 | PROMPT_CLEAR, 0 }, |
| 942 | |
| 943 | /* i_fsize should be zero */ |
| 944 | { PR_2_FSIZE_ZERO, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 945 | N_("i_fsize @F %N, @s zero.\n"), |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 946 | PROMPT_CLEAR, 0 }, |
| 947 | |
| 948 | /* inode has bad mode */ |
| 949 | { PR_2_BAD_MODE, |
Theodore Ts'o | 7ae1983 | 2005-06-19 09:45:36 -0400 | [diff] [blame] | 950 | N_("@i %i (%Q) has @n mode (%Im).\n"), |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 951 | PROMPT_CLEAR, 0 }, |
| 952 | |
| 953 | /* directory corrupted */ |
| 954 | { PR_2_DIR_CORRUPTED, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 955 | N_("@d @i %i, @b %B, offset %N: @d corrupted\n"), |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 956 | PROMPT_SALVAGE, 0 }, |
| 957 | |
| 958 | /* filename too long */ |
| 959 | { PR_2_FILENAME_LONG, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 960 | 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] | 961 | PROMPT_TRUNCATE, 0 }, |
| 962 | |
| 963 | /* Directory inode has a missing block (hole) */ |
| 964 | { PR_2_DIRECTORY_HOLE, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 965 | N_("@d @i %i has an unallocated @b #%B. "), |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 966 | PROMPT_ALLOCATE, 0 }, |
| 967 | |
| 968 | /* '.' is not NULL terminated */ |
| 969 | { PR_2_DOT_NULL_TERM, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 970 | 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] | 971 | PROMPT_FIX, 0 }, |
| 972 | |
| 973 | /* '..' is not NULL terminated */ |
| 974 | { PR_2_DOT_DOT_NULL_TERM, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 975 | 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] | 976 | PROMPT_FIX, 0 }, |
| 977 | |
Theodore Ts'o | 7cf73dc | 1997-08-14 17:17:16 +0000 | [diff] [blame] | 978 | /* Illegal character device inode */ |
| 979 | { PR_2_BAD_CHAR_DEV, |
Theodore Ts'o | d74edf4 | 2001-01-03 19:38:04 +0000 | [diff] [blame] | 980 | N_("@i %i (%Q) is an @I character @v.\n"), |
Theodore Ts'o | 7cf73dc | 1997-08-14 17:17:16 +0000 | [diff] [blame] | 981 | PROMPT_CLEAR, 0 }, |
| 982 | |
| 983 | /* Illegal block device inode */ |
| 984 | { PR_2_BAD_BLOCK_DEV, |
Theodore Ts'o | d74edf4 | 2001-01-03 19:38:04 +0000 | [diff] [blame] | 985 | N_("@i %i (%Q) is an @I @b @v.\n"), |
Theodore Ts'o | 7cf73dc | 1997-08-14 17:17:16 +0000 | [diff] [blame] | 986 | PROMPT_CLEAR, 0 }, |
| 987 | |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 988 | /* Duplicate '.' entry */ |
| 989 | { PR_2_DUP_DOT, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 990 | N_("@E is duplicate '.' @e.\n"), |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 991 | PROMPT_FIX, 0 }, |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 992 | |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 993 | /* Duplicate '..' entry */ |
| 994 | { PR_2_DUP_DOT_DOT, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 995 | N_("@E is duplicate '..' @e.\n"), |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 996 | PROMPT_FIX, 0 }, |
| 997 | |
| 998 | /* Internal error: couldn't find dir_info */ |
| 999 | { PR_2_NO_DIRINFO, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 1000 | N_("Internal error: couldn't find dir_info for %i.\n"), |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 1001 | PROMPT_NONE, PR_FATAL }, |
| 1002 | |
| 1003 | /* Final rec_len is wrong */ |
| 1004 | { PR_2_FINAL_RECLEN, |
Theodore Ts'o | 7ae1983 | 2005-06-19 09:45:36 -0400 | [diff] [blame] | 1005 | N_("@E has rec_len of %Dr, @s %N.\n"), |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 1006 | PROMPT_FIX, 0 }, |
| 1007 | |
| 1008 | /* Error allocating icount structure */ |
| 1009 | { PR_2_ALLOCATE_ICOUNT, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 1010 | N_("@A icount structure: %m\n"), |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 1011 | PROMPT_NONE, PR_FATAL }, |
| 1012 | |
| 1013 | /* Error iterating over directory blocks */ |
| 1014 | { PR_2_DBLIST_ITERATE, |
Theodore Ts'o | d3128cc | 2003-06-24 18:06:03 -0400 | [diff] [blame] | 1015 | N_("Error iterating over @d @bs: %m\n"), |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 1016 | PROMPT_NONE, PR_FATAL }, |
| 1017 | |
| 1018 | /* Error reading directory block */ |
| 1019 | { PR_2_READ_DIRBLOCK, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 1020 | N_("Error reading @d @b %b (@i %i): %m\n"), |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 1021 | PROMPT_CONTINUE, 0 }, |
| 1022 | |
| 1023 | /* Error writing directory block */ |
| 1024 | { PR_2_WRITE_DIRBLOCK, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 1025 | N_("Error writing @d @b %b (@i %i): %m\n"), |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 1026 | PROMPT_CONTINUE, 0 }, |
| 1027 | |
| 1028 | /* Error allocating new directory block */ |
| 1029 | { PR_2_ALLOC_DIRBOCK, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 1030 | N_("@A new @d @b for @i %i (%s): %m\n"), |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 1031 | PROMPT_NONE, 0 }, |
| 1032 | |
| 1033 | /* Error deallocating inode */ |
| 1034 | { PR_2_DEALLOC_INODE, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 1035 | N_("Error deallocating @i %i: %m\n"), |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 1036 | PROMPT_NONE, PR_FATAL }, |
| 1037 | |
Theodore Ts'o | f8188ff | 1997-11-14 05:23:04 +0000 | [diff] [blame] | 1038 | /* Directory entry for '.' is big. Split? */ |
| 1039 | { PR_2_SPLIT_DOT, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 1040 | N_("@d @e for '.' is big. "), |
Theodore Ts'o | f8188ff | 1997-11-14 05:23:04 +0000 | [diff] [blame] | 1041 | PROMPT_SPLIT, PR_NO_OK }, |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 1042 | |
Theodore Ts'o | 1dde43f | 1998-11-14 04:18:28 +0000 | [diff] [blame] | 1043 | /* Illegal FIFO inode */ |
| 1044 | { PR_2_BAD_FIFO, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 1045 | N_("@i %i (%Q) is an @I FIFO.\n"), |
Theodore Ts'o | 1dde43f | 1998-11-14 04:18:28 +0000 | [diff] [blame] | 1046 | PROMPT_CLEAR, 0 }, |
| 1047 | |
| 1048 | /* Illegal socket inode */ |
| 1049 | { PR_2_BAD_SOCKET, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 1050 | N_("@i %i (%Q) is an @I socket.\n"), |
Theodore Ts'o | 1dde43f | 1998-11-14 04:18:28 +0000 | [diff] [blame] | 1051 | PROMPT_CLEAR, 0 }, |
| 1052 | |
Theodore Ts'o | aa4115a | 1999-10-21 19:33:18 +0000 | [diff] [blame] | 1053 | /* Directory filetype not set */ |
| 1054 | { PR_2_SET_FILETYPE, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 1055 | N_("Setting filetype for @E to %N.\n"), |
Theodore Ts'o | aa4115a | 1999-10-21 19:33:18 +0000 | [diff] [blame] | 1056 | PROMPT_NONE, PR_PREEN_OK | PR_NO_OK | PR_NO_NOMSG }, |
| 1057 | |
| 1058 | /* Directory filetype incorrect */ |
| 1059 | { PR_2_BAD_FILETYPE, |
Theodore Ts'o | 7ae1983 | 2005-06-19 09:45:36 -0400 | [diff] [blame] | 1060 | N_("@E has an incorrect filetype (was %Dt, @s %N).\n"), |
Theodore Ts'o | aa4115a | 1999-10-21 19:33:18 +0000 | [diff] [blame] | 1061 | PROMPT_FIX, 0 }, |
| 1062 | |
Theodore Ts'o | 7847c1d | 1999-10-22 15:11:42 +0000 | [diff] [blame] | 1063 | /* Directory filetype set on filesystem */ |
| 1064 | { PR_2_CLEAR_FILETYPE, |
Theodore Ts'o | d007cb4 | 2001-08-04 20:39:39 -0400 | [diff] [blame] | 1065 | N_("@E has filetype set.\n"), |
Theodore Ts'o | 7847c1d | 1999-10-22 15:11:42 +0000 | [diff] [blame] | 1066 | PROMPT_CLEAR, PR_PREEN_OK }, |
| 1067 | |
Theodore Ts'o | c40db6d | 1999-10-25 21:03:34 +0000 | [diff] [blame] | 1068 | /* Directory filename is null */ |
| 1069 | { PR_2_NULL_NAME, |
Theodore Ts'o | 7ae1983 | 2005-06-19 09:45:36 -0400 | [diff] [blame] | 1070 | N_("@E has a @z name.\n"), |
Theodore Ts'o | c40db6d | 1999-10-25 21:03:34 +0000 | [diff] [blame] | 1071 | PROMPT_CLEAR, 0 }, |
| 1072 | |
Theodore Ts'o | bcf9c5d | 2002-05-21 09:14:17 -0400 | [diff] [blame] | 1073 | /* Invalid symlink */ |
| 1074 | { PR_2_INVALID_SYMLINK, |
Theodore Ts'o | 7ae1983 | 2005-06-19 09:45:36 -0400 | [diff] [blame] | 1075 | N_("Symlink %Q (@i #%i) is @n.\n"), |
Theodore Ts'o | 342d847 | 2001-07-02 11:54:09 -0400 | [diff] [blame] | 1076 | PROMPT_CLEAR, 0 }, |
| 1077 | |
| 1078 | /* i_file_acl (extended attribute block) is bad */ |
| 1079 | { PR_2_FILE_ACL_BAD, |
Theodore Ts'o | 7ae1983 | 2005-06-19 09:45:36 -0400 | [diff] [blame] | 1080 | N_("@a @b @F @n (%If).\n"), |
Theodore Ts'o | fdbdea0 | 2001-06-02 04:26:26 +0000 | [diff] [blame] | 1081 | PROMPT_CLEAR, 0 }, |
| 1082 | |
Theodore Ts'o | a474269 | 2001-08-09 04:14:04 -0400 | [diff] [blame] | 1083 | /* Filesystem contains large files, but has no such flag in sb */ |
| 1084 | { PR_2_FEATURE_LARGE_FILES, |
| 1085 | N_("@f contains large files, but lacks LARGE_FILE flag in @S.\n"), |
| 1086 | PROMPT_FIX, 0 }, |
| 1087 | |
Theodore Ts'o | 8fdc998 | 2002-06-25 23:26:34 -0400 | [diff] [blame] | 1088 | /* Node in HTREE directory not referenced */ |
| 1089 | { PR_2_HTREE_NOTREF, |
| 1090 | N_("@p @h %d: node (%B) not referenced\n"), |
| 1091 | PROMPT_NONE, 0 }, |
| 1092 | |
| 1093 | /* Node in HTREE directory referenced twice */ |
| 1094 | { PR_2_HTREE_DUPREF, |
| 1095 | N_("@p @h %d: node (%B) referenced twice\n"), |
| 1096 | PROMPT_NONE, 0 }, |
| 1097 | |
| 1098 | /* Node in HTREE directory has bad min hash */ |
| 1099 | { PR_2_HTREE_MIN_HASH, |
| 1100 | N_("@p @h %d: node (%B) has bad min hash\n"), |
| 1101 | PROMPT_NONE, 0 }, |
| 1102 | |
| 1103 | /* Node in HTREE directory has bad max hash */ |
| 1104 | { PR_2_HTREE_MAX_HASH, |
| 1105 | N_("@p @h %d: node (%B) has bad max hash\n"), |
| 1106 | PROMPT_NONE, 0 }, |
| 1107 | |
| 1108 | /* Clear invalid HTREE directory */ |
| 1109 | { PR_2_HTREE_CLEAR, |
Theodore Ts'o | 7ae1983 | 2005-06-19 09:45:36 -0400 | [diff] [blame] | 1110 | N_("@n @h %d (%q). "), PROMPT_CLEAR, 0 }, |
Theodore Ts'o | 8fdc998 | 2002-06-25 23:26:34 -0400 | [diff] [blame] | 1111 | |
Theodore Ts'o | 8fdc998 | 2002-06-25 23:26:34 -0400 | [diff] [blame] | 1112 | /* Bad block in htree interior node */ |
| 1113 | { PR_2_HTREE_BADBLK, |
Theodore Ts'o | b7a0056 | 2002-07-20 00:28:07 -0400 | [diff] [blame] | 1114 | N_("@p @h %d (%q): bad @b number %b.\n"), |
Theodore Ts'o | 503f9e7 | 2002-06-26 16:52:10 -0400 | [diff] [blame] | 1115 | PROMPT_CLEAR_HTREE, 0 }, |
Theodore Ts'o | 8fdc998 | 2002-06-25 23:26:34 -0400 | [diff] [blame] | 1116 | |
Theodore Ts'o | 0684a4f | 2002-08-17 10:19:44 -0400 | [diff] [blame] | 1117 | /* Error adjusting EA refcount */ |
| 1118 | { PR_2_ADJ_EA_REFCOUNT, |
Theodore Ts'o | 7ae1983 | 2005-06-19 09:45:36 -0400 | [diff] [blame] | 1119 | N_("Error adjusting refcount for @a @b %b (@i %i): %m\n"), |
Theodore Ts'o | 0684a4f | 2002-08-17 10:19:44 -0400 | [diff] [blame] | 1120 | PROMPT_NONE, PR_FATAL }, |
| 1121 | |
Theodore Ts'o | ea1959f | 2002-08-31 02:32:41 -0400 | [diff] [blame] | 1122 | /* Invalid HTREE root node */ |
| 1123 | { PR_2_HTREE_BAD_ROOT, |
Theodore Ts'o | 7ae1983 | 2005-06-19 09:45:36 -0400 | [diff] [blame] | 1124 | N_("@p @h %d: root node is @n\n"), |
Theodore Ts'o | 54779c6 | 2002-11-13 07:00:16 -0500 | [diff] [blame] | 1125 | PROMPT_CLEAR_HTREE, PR_PREEN_OK }, |
Theodore Ts'o | ea1959f | 2002-08-31 02:32:41 -0400 | [diff] [blame] | 1126 | |
Theodore Ts'o | ad4fa46 | 2002-09-30 11:19:19 -0400 | [diff] [blame] | 1127 | /* Invalid HTREE limit */ |
| 1128 | { PR_2_HTREE_BAD_LIMIT, |
Theodore Ts'o | 7ae1983 | 2005-06-19 09:45:36 -0400 | [diff] [blame] | 1129 | N_("@p @h %d: node (%B) has @n limit (%N)\n"), |
Theodore Ts'o | 54779c6 | 2002-11-13 07:00:16 -0500 | [diff] [blame] | 1130 | PROMPT_CLEAR_HTREE, PR_PREEN_OK }, |
Theodore Ts'o | ad4fa46 | 2002-09-30 11:19:19 -0400 | [diff] [blame] | 1131 | |
| 1132 | /* Invalid HTREE count */ |
| 1133 | { PR_2_HTREE_BAD_COUNT, |
Theodore Ts'o | 7ae1983 | 2005-06-19 09:45:36 -0400 | [diff] [blame] | 1134 | N_("@p @h %d: node (%B) has @n count (%N)\n"), |
Theodore Ts'o | 54779c6 | 2002-11-13 07:00:16 -0500 | [diff] [blame] | 1135 | PROMPT_CLEAR_HTREE, PR_PREEN_OK }, |
Theodore Ts'o | ad4fa46 | 2002-09-30 11:19:19 -0400 | [diff] [blame] | 1136 | |
| 1137 | /* HTREE interior node has out-of-order hashes in table */ |
| 1138 | { PR_2_HTREE_HASH_ORDER, |
| 1139 | N_("@p @h %d: node (%B) has an unordered hash table\n"), |
Theodore Ts'o | 54779c6 | 2002-11-13 07:00:16 -0500 | [diff] [blame] | 1140 | PROMPT_CLEAR_HTREE, PR_PREEN_OK }, |
Theodore Ts'o | ad4fa46 | 2002-09-30 11:19:19 -0400 | [diff] [blame] | 1141 | |
Theodore Ts'o | 7ae1983 | 2005-06-19 09:45:36 -0400 | [diff] [blame] | 1142 | /* Node in HTREE directory has invalid depth */ |
Theodore Ts'o | ad4fa46 | 2002-09-30 11:19:19 -0400 | [diff] [blame] | 1143 | { PR_2_HTREE_BAD_DEPTH, |
Theodore Ts'o | 7ae1983 | 2005-06-19 09:45:36 -0400 | [diff] [blame] | 1144 | N_("@p @h %d: node (%B) has @n depth\n"), |
Theodore Ts'o | ad4fa46 | 2002-09-30 11:19:19 -0400 | [diff] [blame] | 1145 | PROMPT_NONE, 0 }, |
| 1146 | |
Theodore Ts'o | b0700a1 | 2003-03-14 01:43:56 -0500 | [diff] [blame] | 1147 | /* Duplicate directory entry found */ |
| 1148 | { PR_2_DUPLICATE_DIRENT, |
| 1149 | N_("Duplicate @E found. "), |
| 1150 | PROMPT_CLEAR, 0 }, |
| 1151 | |
| 1152 | /* Non-unique filename found */ |
Theodore Ts'o | ddc32a0 | 2003-05-03 18:45:55 -0400 | [diff] [blame] | 1153 | { PR_2_NON_UNIQUE_FILE, /* xgettext: no-c-format */ |
Theodore Ts'o | b0700a1 | 2003-03-14 01:43:56 -0500 | [diff] [blame] | 1154 | N_("@E has a non-unique filename.\nRename to %s"), |
| 1155 | PROMPT_NULL, 0 }, |
| 1156 | |
Theodore Ts'o | 0926668 | 2003-03-14 22:19:10 -0500 | [diff] [blame] | 1157 | /* Duplicate directory entry found */ |
| 1158 | { PR_2_REPORT_DUP_DIRENT, |
| 1159 | N_("Duplicate @e '%Dn' found.\n\tMarking %p (%i) to be rebuilt.\n\n"), |
| 1160 | PROMPT_NONE, 0 }, |
| 1161 | |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 1162 | /* Pass 3 errors */ |
| 1163 | |
| 1164 | /* Pass 3: Checking directory connectivity */ |
| 1165 | { PR_3_PASS_HEADER, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 1166 | N_("Pass 3: Checking @d connectivity\n"), |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 1167 | PROMPT_NONE, 0 }, |
| 1168 | |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 1169 | /* Root inode not allocated */ |
| 1170 | { PR_3_NO_ROOT_INODE, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 1171 | N_("@r not allocated. "), |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 1172 | PROMPT_ALLOCATE, 0 }, |
| 1173 | |
| 1174 | /* No room in lost+found */ |
| 1175 | { PR_3_EXPAND_LF_DIR, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 1176 | N_("No room in @l @d. "), |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 1177 | PROMPT_EXPAND, 0 }, |
| 1178 | |
| 1179 | /* Unconnected directory inode */ |
| 1180 | { PR_3_UNCONNECTED_DIR, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 1181 | N_("Unconnected @d @i %i (%p)\n"), |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 1182 | PROMPT_CONNECT, 0 }, |
| 1183 | |
| 1184 | /* /lost+found not found */ |
| 1185 | { PR_3_NO_LF_DIR, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 1186 | N_("/@l not found. "), |
Theodore Ts'o | 5a679c8 | 1998-12-03 16:40:38 +0000 | [diff] [blame] | 1187 | PROMPT_CREATE, PR_PREEN_OK }, |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 1188 | |
| 1189 | /* .. entry is incorrect */ |
| 1190 | { PR_3_BAD_DOT_DOT, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 1191 | N_("'..' in %Q (%i) is %P (%j), @s %q (%d).\n"), |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 1192 | PROMPT_FIX, 0 }, |
| 1193 | |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 1194 | /* Bad or non-existent /lost+found. Cannot reconnect */ |
| 1195 | { PR_3_NO_LPF, |
Theodore Ts'o | d007cb4 | 2001-08-04 20:39:39 -0400 | [diff] [blame] | 1196 | N_("Bad or non-existent /@l. Cannot reconnect.\n"), |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 1197 | PROMPT_NONE, 0 }, |
| 1198 | |
| 1199 | /* Could not expand /lost+found */ |
| 1200 | { PR_3_CANT_EXPAND_LPF, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 1201 | N_("Could not expand /@l: %m\n"), |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 1202 | PROMPT_NONE, 0 }, |
| 1203 | |
| 1204 | /* Could not reconnect inode */ |
| 1205 | { PR_3_CANT_RECONNECT, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 1206 | N_("Could not reconnect %i: %m\n"), |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 1207 | PROMPT_NONE, 0 }, |
| 1208 | |
| 1209 | /* Error while trying to find /lost+found */ |
| 1210 | { PR_3_ERR_FIND_LPF, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 1211 | N_("Error while trying to find /@l: %m\n"), |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 1212 | PROMPT_NONE, 0 }, |
| 1213 | |
| 1214 | /* Error in ext2fs_new_block while creating /lost+found */ |
| 1215 | { PR_3_ERR_LPF_NEW_BLOCK, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 1216 | 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] | 1217 | PROMPT_NONE, 0 }, |
| 1218 | |
| 1219 | /* Error in ext2fs_new_inode while creating /lost+found */ |
| 1220 | { PR_3_ERR_LPF_NEW_INODE, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 1221 | 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] | 1222 | PROMPT_NONE, 0 }, |
| 1223 | |
| 1224 | /* Error in ext2fs_new_dir_block while creating /lost+found */ |
| 1225 | { PR_3_ERR_LPF_NEW_DIR_BLOCK, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 1226 | 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] | 1227 | PROMPT_NONE, 0 }, |
| 1228 | |
| 1229 | /* Error while writing directory block for /lost+found */ |
| 1230 | { PR_3_ERR_LPF_WRITE_BLOCK, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 1231 | 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] | 1232 | PROMPT_NONE, 0 }, |
| 1233 | |
| 1234 | /* Error while adjusting inode count */ |
| 1235 | { PR_3_ADJUST_INODE, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 1236 | N_("Error while adjusting @i count on @i %i\n"), |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 1237 | PROMPT_NONE, 0 }, |
| 1238 | |
| 1239 | /* Couldn't fix parent directory -- error */ |
| 1240 | { PR_3_FIX_PARENT_ERR, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 1241 | N_("Couldn't fix parent of @i %i: %m\n\n"), |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 1242 | PROMPT_NONE, 0 }, |
| 1243 | |
| 1244 | /* Couldn't fix parent directory -- couldn't find it */ |
| 1245 | { PR_3_FIX_PARENT_NOFIND, |
Theodore Ts'o | 7ae1983 | 2005-06-19 09:45:36 -0400 | [diff] [blame] | 1246 | N_("Couldn't fix parent of @i %i: Couldn't find parent @d @e\n\n"), |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 1247 | PROMPT_NONE, 0 }, |
| 1248 | |
| 1249 | /* Error allocating inode bitmap */ |
| 1250 | { PR_3_ALLOCATE_IBITMAP_ERROR, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 1251 | N_("@A @i @B (%N): %m\n"), |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 1252 | PROMPT_NONE, PR_FATAL }, |
| 1253 | |
| 1254 | /* Error creating root directory */ |
| 1255 | { PR_3_CREATE_ROOT_ERROR, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 1256 | N_("Error creating root @d (%s): %m\n"), |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 1257 | PROMPT_NONE, PR_FATAL }, |
| 1258 | |
| 1259 | /* Error creating lost and found directory */ |
| 1260 | { PR_3_CREATE_LPF_ERROR, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 1261 | N_("Error creating /@l @d (%s): %m\n"), |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 1262 | PROMPT_NONE, PR_FATAL }, |
| 1263 | |
Theodore Ts'o | f8188ff | 1997-11-14 05:23:04 +0000 | [diff] [blame] | 1264 | /* Root inode is not directory; aborting */ |
| 1265 | { PR_3_ROOT_NOT_DIR_ABORT, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 1266 | N_("@r is not a @d; aborting.\n"), |
Theodore Ts'o | f8188ff | 1997-11-14 05:23:04 +0000 | [diff] [blame] | 1267 | PROMPT_NONE, PR_FATAL }, |
| 1268 | |
| 1269 | /* Cannot proceed without a root inode. */ |
| 1270 | { PR_3_NO_ROOT_INODE_ABORT, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 1271 | N_("Cannot proceed without a @r.\n"), |
Theodore Ts'o | f8188ff | 1997-11-14 05:23:04 +0000 | [diff] [blame] | 1272 | PROMPT_NONE, PR_FATAL }, |
| 1273 | |
Theodore Ts'o | 7f813ba | 1998-09-03 01:26:03 +0000 | [diff] [blame] | 1274 | /* Internal error: couldn't find dir_info */ |
| 1275 | { PR_3_NO_DIRINFO, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 1276 | N_("Internal error: couldn't find dir_info for %i.\n"), |
Theodore Ts'o | 7f813ba | 1998-09-03 01:26:03 +0000 | [diff] [blame] | 1277 | PROMPT_NONE, PR_FATAL }, |
| 1278 | |
Theodore Ts'o | 4a9f593 | 1999-03-16 19:32:52 +0000 | [diff] [blame] | 1279 | /* Lost+found not a directory */ |
| 1280 | { PR_3_LPF_NOTDIR, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 1281 | N_("/@l is not a @d (ino=%i)\n"), |
Theodore Ts'o | b7a0056 | 2002-07-20 00:28:07 -0400 | [diff] [blame] | 1282 | PROMPT_UNLINK, 0 }, |
| 1283 | |
Theodore Ts'o | 850d05e | 2002-07-25 00:00:08 -0400 | [diff] [blame] | 1284 | /* Pass 3A Directory Optimization */ |
Theodore Ts'o | b7a0056 | 2002-07-20 00:28:07 -0400 | [diff] [blame] | 1285 | |
Theodore Ts'o | 850d05e | 2002-07-25 00:00:08 -0400 | [diff] [blame] | 1286 | /* Pass 3A: Optimizing directories */ |
Theodore Ts'o | b7a0056 | 2002-07-20 00:28:07 -0400 | [diff] [blame] | 1287 | { PR_3A_PASS_HEADER, |
Theodore Ts'o | 850d05e | 2002-07-25 00:00:08 -0400 | [diff] [blame] | 1288 | N_("Pass 3A: Optimizing directories\n"), |
Theodore Ts'o | b7a0056 | 2002-07-20 00:28:07 -0400 | [diff] [blame] | 1289 | PROMPT_NONE, PR_PREEN_NOMSG }, |
| 1290 | |
| 1291 | /* Error iterating over directories */ |
Theodore Ts'o | 850d05e | 2002-07-25 00:00:08 -0400 | [diff] [blame] | 1292 | { PR_3A_OPTIMIZE_ITER, |
Theodore Ts'o | b7a0056 | 2002-07-20 00:28:07 -0400 | [diff] [blame] | 1293 | N_("Failed to create dirs_to_hash iterator: %m"), |
| 1294 | PROMPT_NONE, 0 }, |
| 1295 | |
| 1296 | /* Error rehash directory */ |
Theodore Ts'o | 850d05e | 2002-07-25 00:00:08 -0400 | [diff] [blame] | 1297 | { PR_3A_OPTIMIZE_DIR_ERR, |
| 1298 | N_("Failed to optimize directory %q (%d): %m"), |
Theodore Ts'o | b7a0056 | 2002-07-20 00:28:07 -0400 | [diff] [blame] | 1299 | PROMPT_NONE, 0 }, |
| 1300 | |
| 1301 | /* Rehashing dir header */ |
Theodore Ts'o | 850d05e | 2002-07-25 00:00:08 -0400 | [diff] [blame] | 1302 | { PR_3A_OPTIMIZE_DIR_HEADER, |
| 1303 | N_("Optimizing directories: "), |
Theodore Ts'o | b7a0056 | 2002-07-20 00:28:07 -0400 | [diff] [blame] | 1304 | PROMPT_NONE, PR_MSG_ONLY }, |
| 1305 | |
| 1306 | /* Rehashing directory %d */ |
Theodore Ts'o | 850d05e | 2002-07-25 00:00:08 -0400 | [diff] [blame] | 1307 | { PR_3A_OPTIMIZE_DIR, |
Theodore Ts'o | b7a0056 | 2002-07-20 00:28:07 -0400 | [diff] [blame] | 1308 | " %d", |
Theodore Ts'o | 850d05e | 2002-07-25 00:00:08 -0400 | [diff] [blame] | 1309 | PROMPT_NONE, PR_LATCH_OPTIMIZE_DIR | PR_PREEN_NOHDR}, |
Theodore Ts'o | b7a0056 | 2002-07-20 00:28:07 -0400 | [diff] [blame] | 1310 | |
| 1311 | /* Rehashing dir end */ |
Theodore Ts'o | 850d05e | 2002-07-25 00:00:08 -0400 | [diff] [blame] | 1312 | { PR_3A_OPTIMIZE_DIR_END, |
Theodore Ts'o | b7a0056 | 2002-07-20 00:28:07 -0400 | [diff] [blame] | 1313 | "\n", |
| 1314 | PROMPT_NONE, PR_PREEN_NOHDR }, |
Theodore Ts'o | 4a9f593 | 1999-03-16 19:32:52 +0000 | [diff] [blame] | 1315 | |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 1316 | /* Pass 4 errors */ |
| 1317 | |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 1318 | /* Pass 4: Checking reference counts */ |
| 1319 | { PR_4_PASS_HEADER, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 1320 | N_("Pass 4: Checking reference counts\n"), |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 1321 | PROMPT_NONE, 0 }, |
| 1322 | |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 1323 | /* Unattached zero-length inode */ |
| 1324 | { PR_4_ZERO_LEN_INODE, |
Theodore Ts'o | 7ae1983 | 2005-06-19 09:45:36 -0400 | [diff] [blame] | 1325 | N_("@u @z @i %i. "), |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 1326 | PROMPT_CLEAR, PR_PREEN_OK|PR_NO_OK }, |
| 1327 | |
| 1328 | /* Unattached inode */ |
| 1329 | { PR_4_UNATTACHED_INODE, |
Theodore Ts'o | 7ae1983 | 2005-06-19 09:45:36 -0400 | [diff] [blame] | 1330 | N_("@u @i %i\n"), |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 1331 | PROMPT_CONNECT, 0 }, |
| 1332 | |
| 1333 | /* Inode ref count wrong */ |
| 1334 | { PR_4_BAD_REF_COUNT, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 1335 | N_("@i %i ref count is %Il, @s %N. "), |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 1336 | PROMPT_FIX, PR_PREEN_OK }, |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 1337 | |
| 1338 | { PR_4_INCONSISTENT_COUNT, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 1339 | N_("WARNING: PROGRAMMING BUG IN E2FSCK!\n" |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 1340 | "\tOR SOME BONEHEAD (YOU) IS CHECKING A MOUNTED (LIVE) FILESYSTEM.\n" |
| 1341 | "@i_link_info[%i] is %N, @i.i_links_count is %Il. " |
Theodore Ts'o | 7ae1983 | 2005-06-19 09:45:36 -0400 | [diff] [blame] | 1342 | "They @s the same!\n"), |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 1343 | PROMPT_NONE, 0 }, |
| 1344 | |
| 1345 | /* Pass 5 errors */ |
| 1346 | |
| 1347 | /* Pass 5: Checking group summary information */ |
| 1348 | { PR_5_PASS_HEADER, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 1349 | N_("Pass 5: Checking @g summary information\n"), |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 1350 | PROMPT_NONE, 0 }, |
| 1351 | |
| 1352 | /* Padding at end of inode bitmap is not set. */ |
| 1353 | { PR_5_INODE_BMAP_PADDING, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 1354 | N_("Padding at end of @i @B is not set. "), |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 1355 | PROMPT_FIX, PR_PREEN_OK }, |
| 1356 | |
| 1357 | /* Padding at end of block bitmap is not set. */ |
| 1358 | { PR_5_BLOCK_BMAP_PADDING, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 1359 | N_("Padding at end of @b @B is not set. "), |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 1360 | PROMPT_FIX, PR_PREEN_OK }, |
| 1361 | |
| 1362 | /* Block bitmap differences header */ |
| 1363 | { PR_5_BLOCK_BITMAP_HEADER, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 1364 | N_("@b @B differences: "), |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 1365 | PROMPT_NONE, PR_PREEN_OK | PR_PREEN_NOMSG}, |
| 1366 | |
| 1367 | /* Block not used, but marked in bitmap */ |
Theodore Ts'o | f122632 | 2002-03-07 02:47:07 -0500 | [diff] [blame] | 1368 | { PR_5_BLOCK_UNUSED, |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 1369 | " -%b", |
| 1370 | PROMPT_NONE, PR_LATCH_BBITMAP | PR_PREEN_OK | PR_PREEN_NOMSG }, |
| 1371 | |
| 1372 | /* Block used, but not marked used in bitmap */ |
| 1373 | { PR_5_BLOCK_USED, |
| 1374 | " +%b", |
| 1375 | PROMPT_NONE, PR_LATCH_BBITMAP | PR_PREEN_OK | PR_PREEN_NOMSG }, |
| 1376 | |
| 1377 | /* Block bitmap differences end */ |
| 1378 | { PR_5_BLOCK_BITMAP_END, |
| 1379 | "\n", |
| 1380 | PROMPT_FIX, PR_PREEN_OK | PR_PREEN_NOMSG }, |
| 1381 | |
| 1382 | /* Inode bitmap differences header */ |
| 1383 | { PR_5_INODE_BITMAP_HEADER, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 1384 | N_("@i @B differences: "), |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 1385 | PROMPT_NONE, PR_PREEN_OK | PR_PREEN_NOMSG }, |
| 1386 | |
| 1387 | /* Inode not used, but marked in bitmap */ |
Theodore Ts'o | f122632 | 2002-03-07 02:47:07 -0500 | [diff] [blame] | 1388 | { PR_5_INODE_UNUSED, |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 1389 | " -%i", |
| 1390 | PROMPT_NONE, PR_LATCH_IBITMAP | PR_PREEN_OK | PR_PREEN_NOMSG }, |
| 1391 | |
| 1392 | /* Inode used, but not marked used in bitmap */ |
| 1393 | { PR_5_INODE_USED, |
| 1394 | " +%i", |
| 1395 | PROMPT_NONE, PR_LATCH_IBITMAP | PR_PREEN_OK | PR_PREEN_NOMSG }, |
| 1396 | |
| 1397 | /* Inode bitmap differences end */ |
| 1398 | { PR_5_INODE_BITMAP_END, |
| 1399 | "\n", |
| 1400 | PROMPT_FIX, PR_PREEN_OK | PR_PREEN_NOMSG }, |
| 1401 | |
| 1402 | /* Free inodes count for group wrong */ |
| 1403 | { PR_5_FREE_INODE_COUNT_GROUP, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 1404 | 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] | 1405 | PROMPT_FIX, PR_PREEN_OK | PR_PREEN_NOMSG }, |
| 1406 | |
| 1407 | /* Directories count for group wrong */ |
| 1408 | { PR_5_FREE_DIR_COUNT_GROUP, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 1409 | N_("Directories count wrong for @g #%g (%i, counted=%j).\n"), |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 1410 | PROMPT_FIX, PR_PREEN_OK | PR_PREEN_NOMSG }, |
| 1411 | |
| 1412 | /* Free inodes count wrong */ |
| 1413 | { PR_5_FREE_INODE_COUNT, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 1414 | N_("Free @is count wrong (%i, counted=%j).\n"), |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 1415 | PROMPT_FIX, PR_PREEN_OK | PR_PREEN_NOMSG }, |
| 1416 | |
| 1417 | /* Free blocks count for group wrong */ |
| 1418 | { PR_5_FREE_BLOCK_COUNT_GROUP, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 1419 | 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] | 1420 | PROMPT_FIX, PR_PREEN_OK | PR_PREEN_NOMSG }, |
| 1421 | |
| 1422 | /* Free blocks count wrong */ |
| 1423 | { PR_5_FREE_BLOCK_COUNT, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 1424 | N_("Free @bs count wrong (%b, counted=%c).\n"), |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 1425 | PROMPT_FIX, PR_PREEN_OK | PR_PREEN_NOMSG }, |
| 1426 | |
| 1427 | /* Programming error: bitmap endpoints don't match */ |
| 1428 | { PR_5_BMAP_ENDPOINTS, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 1429 | N_("PROGRAMMING ERROR: @f (#%N) @B endpoints (%b, %c) don't " |
| 1430 | "match calculated @B endpoints (%i, %j)\n"), |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 1431 | PROMPT_NONE, PR_FATAL }, |
| 1432 | |
| 1433 | /* Internal error: fudging end of bitmap */ |
| 1434 | { PR_5_FUDGE_BITMAP_ERROR, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 1435 | N_("Internal error: fudging end of bitmap (%N)\n"), |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 1436 | PROMPT_NONE, PR_FATAL }, |
Theodore Ts'o | bbd47d7 | 2000-06-10 19:21:33 +0000 | [diff] [blame] | 1437 | |
| 1438 | /* Error copying in replacement inode bitmap */ |
| 1439 | { PR_5_COPY_IBITMAP_ERROR, |
Theodore Ts'o | 7ae1983 | 2005-06-19 09:45:36 -0400 | [diff] [blame] | 1440 | N_("Error copying in replacement @i @B: %m\n"), |
Theodore Ts'o | bbd47d7 | 2000-06-10 19:21:33 +0000 | [diff] [blame] | 1441 | PROMPT_NONE, PR_FATAL }, |
| 1442 | |
| 1443 | /* Error copying in replacement block bitmap */ |
| 1444 | { PR_5_COPY_BBITMAP_ERROR, |
Theodore Ts'o | 7ae1983 | 2005-06-19 09:45:36 -0400 | [diff] [blame] | 1445 | N_("Error copying in replacement @b @B: %m\n"), |
Theodore Ts'o | bbd47d7 | 2000-06-10 19:21:33 +0000 | [diff] [blame] | 1446 | PROMPT_NONE, PR_FATAL }, |
| 1447 | |
Theodore Ts'o | f122632 | 2002-03-07 02:47:07 -0500 | [diff] [blame] | 1448 | /* Block range not used, but marked in bitmap */ |
| 1449 | { PR_5_BLOCK_RANGE_UNUSED, |
| 1450 | " -(%b--%c)", |
| 1451 | PROMPT_NONE, PR_LATCH_BBITMAP | PR_PREEN_OK | PR_PREEN_NOMSG }, |
| 1452 | |
| 1453 | /* Block range used, but not marked used in bitmap */ |
| 1454 | { PR_5_BLOCK_RANGE_USED, |
| 1455 | " +(%b--%c)", |
| 1456 | PROMPT_NONE, PR_LATCH_BBITMAP | PR_PREEN_OK | PR_PREEN_NOMSG }, |
| 1457 | |
| 1458 | /* Inode range not used, but marked in bitmap */ |
| 1459 | { PR_5_INODE_RANGE_UNUSED, |
| 1460 | " -(%i--%j)", |
| 1461 | PROMPT_NONE, PR_LATCH_IBITMAP | PR_PREEN_OK | PR_PREEN_NOMSG }, |
| 1462 | |
| 1463 | /* Inode range used, but not marked used in bitmap */ |
| 1464 | { PR_5_INODE_RANGE_USED, |
| 1465 | " +(%i--%j)", |
| 1466 | PROMPT_NONE, PR_LATCH_IBITMAP | PR_PREEN_OK | PR_PREEN_NOMSG }, |
| 1467 | |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 1468 | { 0 } |
| 1469 | }; |
| 1470 | |
| 1471 | /* |
| 1472 | * This is the latch flags register. It allows several problems to be |
| 1473 | * "latched" together. This means that the user has to answer but one |
| 1474 | * question for the set of problems, and all of the associated |
| 1475 | * problems will be either fixed or not fixed. |
| 1476 | */ |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 1477 | static struct latch_descr pr_latch_info[] = { |
| 1478 | { PR_LATCH_BLOCK, PR_1_INODE_BLOCK_LATCH, 0 }, |
| 1479 | { PR_LATCH_BBLOCK, PR_1_INODE_BBLOCK_LATCH, 0 }, |
| 1480 | { PR_LATCH_IBITMAP, PR_5_INODE_BITMAP_HEADER, PR_5_INODE_BITMAP_END }, |
| 1481 | { PR_LATCH_BBITMAP, PR_5_BLOCK_BITMAP_HEADER, PR_5_BLOCK_BITMAP_END }, |
| 1482 | { PR_LATCH_RELOC, PR_0_RELOCATE_HINT, 0 }, |
| 1483 | { PR_LATCH_DBLOCK, PR_1B_DUP_BLOCK_HEADER, PR_1B_DUP_BLOCK_END }, |
Theodore Ts'o | 21afac0 | 2001-05-14 12:47:41 +0000 | [diff] [blame] | 1484 | { PR_LATCH_LOW_DTIME, PR_1_ORPHAN_LIST_REFUGEES, 0 }, |
Theodore Ts'o | da30704 | 2002-05-21 21:19:14 -0400 | [diff] [blame] | 1485 | { PR_LATCH_TOOBIG, PR_1_INODE_TOOBIG, 0 }, |
Theodore Ts'o | 850d05e | 2002-07-25 00:00:08 -0400 | [diff] [blame] | 1486 | { PR_LATCH_OPTIMIZE_DIR, PR_3A_OPTIMIZE_DIR_HEADER, PR_3A_OPTIMIZE_DIR_END }, |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 1487 | { -1, 0, 0 }, |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 1488 | }; |
| 1489 | |
Theodore Ts'o | 5443492 | 2003-12-07 01:28:50 -0500 | [diff] [blame] | 1490 | static const struct e2fsck_problem *find_problem(problem_t code) |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 1491 | { |
| 1492 | int i; |
| 1493 | |
| 1494 | for (i=0; problem_table[i].e2p_code; i++) { |
| 1495 | if (problem_table[i].e2p_code == code) |
| 1496 | return &problem_table[i]; |
| 1497 | } |
| 1498 | return 0; |
| 1499 | } |
| 1500 | |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 1501 | static struct latch_descr *find_latch(int code) |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 1502 | { |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 1503 | int i; |
| 1504 | |
| 1505 | for (i=0; pr_latch_info[i].latch_code >= 0; i++) { |
| 1506 | if (pr_latch_info[i].latch_code == code) |
| 1507 | return &pr_latch_info[i]; |
| 1508 | } |
| 1509 | return 0; |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 1510 | } |
| 1511 | |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 1512 | int end_problem_latch(e2fsck_t ctx, int mask) |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 1513 | { |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 1514 | struct latch_descr *ldesc; |
| 1515 | struct problem_context pctx; |
| 1516 | int answer = -1; |
| 1517 | |
| 1518 | ldesc = find_latch(mask); |
| 1519 | if (ldesc->end_message && (ldesc->flags & PRL_LATCHED)) { |
| 1520 | clear_problem_context(&pctx); |
| 1521 | answer = fix_problem(ctx, ldesc->end_message, &pctx); |
| 1522 | } |
| 1523 | ldesc->flags &= ~(PRL_VARIABLE); |
| 1524 | return answer; |
| 1525 | } |
| 1526 | |
| 1527 | int set_latch_flags(int mask, int setflags, int clearflags) |
| 1528 | { |
| 1529 | struct latch_descr *ldesc; |
| 1530 | |
| 1531 | ldesc = find_latch(mask); |
| 1532 | if (!ldesc) |
| 1533 | return -1; |
| 1534 | ldesc->flags |= setflags; |
| 1535 | ldesc->flags &= ~clearflags; |
| 1536 | return 0; |
| 1537 | } |
| 1538 | |
| 1539 | int get_latch_flags(int mask, int *value) |
| 1540 | { |
| 1541 | struct latch_descr *ldesc; |
| 1542 | |
| 1543 | ldesc = find_latch(mask); |
| 1544 | if (!ldesc) |
| 1545 | return -1; |
| 1546 | *value = ldesc->flags; |
| 1547 | return 0; |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 1548 | } |
| 1549 | |
| 1550 | void clear_problem_context(struct problem_context *ctx) |
| 1551 | { |
| 1552 | memset(ctx, 0, sizeof(struct problem_context)); |
| 1553 | ctx->blkcount = -1; |
| 1554 | ctx->group = -1; |
| 1555 | } |
| 1556 | |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 1557 | 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] | 1558 | { |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 1559 | ext2_filsys fs = ctx->fs; |
| 1560 | const struct e2fsck_problem *ptr; |
| 1561 | struct latch_descr *ldesc = 0; |
| 1562 | const char *message; |
| 1563 | int def_yn, answer, ans; |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 1564 | int print_answer = 0; |
| 1565 | int suppress = 0; |
| 1566 | |
| 1567 | ptr = find_problem(code); |
| 1568 | if (!ptr) { |
Theodore Ts'o | f122632 | 2002-03-07 02:47:07 -0500 | [diff] [blame] | 1569 | printf(_("Unhandled error code (0x%x)!\n"), code); |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 1570 | return 0; |
| 1571 | } |
Theodore Ts'o | aa4115a | 1999-10-21 19:33:18 +0000 | [diff] [blame] | 1572 | def_yn = 1; |
Theodore Ts'o | a846d2f | 1999-11-10 15:50:24 +0000 | [diff] [blame] | 1573 | if ((ptr->flags & PR_NO_DEFAULT) || |
| 1574 | ((ptr->flags & PR_PREEN_NO) && (ctx->options & E2F_OPT_PREEN)) || |
| 1575 | (ctx->options & E2F_OPT_NO)) |
Theodore Ts'o | aa4115a | 1999-10-21 19:33:18 +0000 | [diff] [blame] | 1576 | def_yn= 0; |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 1577 | |
| 1578 | /* |
| 1579 | * Do special latch processing. This is where we ask the |
| 1580 | * latch question, if it exists |
| 1581 | */ |
| 1582 | if (ptr->flags & PR_LATCH_MASK) { |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 1583 | ldesc = find_latch(ptr->flags & PR_LATCH_MASK); |
| 1584 | if (ldesc->question && !(ldesc->flags & PRL_LATCHED)) { |
| 1585 | ans = fix_problem(ctx, ldesc->question, pctx); |
| 1586 | if (ans == 1) |
| 1587 | ldesc->flags |= PRL_YES; |
| 1588 | if (ans == 0) |
| 1589 | ldesc->flags |= PRL_NO; |
| 1590 | ldesc->flags |= PRL_LATCHED; |
| 1591 | } |
| 1592 | if (ldesc->flags & PRL_SUPPRESS) |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 1593 | suppress++; |
| 1594 | } |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 1595 | if ((ptr->flags & PR_PREEN_NOMSG) && |
| 1596 | (ctx->options & E2F_OPT_PREEN)) |
| 1597 | suppress++; |
Theodore Ts'o | aa4115a | 1999-10-21 19:33:18 +0000 | [diff] [blame] | 1598 | if ((ptr->flags & PR_NO_NOMSG) && |
| 1599 | (ctx->options & E2F_OPT_NO)) |
| 1600 | suppress++; |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 1601 | if (!suppress) { |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 1602 | message = ptr->e2p_description; |
Theodore Ts'o | b7a0056 | 2002-07-20 00:28:07 -0400 | [diff] [blame] | 1603 | if ((ctx->options & E2F_OPT_PREEN) && |
| 1604 | !(ptr->flags & PR_PREEN_NOHDR)) { |
Theodore Ts'o | 6a50c5e | 2001-12-21 23:29:35 -0500 | [diff] [blame] | 1605 | printf("%s: ", ctx->device_name ? |
| 1606 | ctx->device_name : ctx->filesystem_name); |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 1607 | } |
Theodore Ts'o | 489f002 | 2004-01-31 21:24:51 -0500 | [diff] [blame] | 1608 | if (*message) |
| 1609 | print_e2fsck_message(ctx, _(message), pctx, 1); |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 1610 | } |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 1611 | if (!(ptr->flags & PR_PREEN_OK) && (ptr->prompt != PROMPT_NONE)) |
| 1612 | preenhalt(ctx); |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 1613 | |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 1614 | if (ptr->flags & PR_FATAL) |
Theodore Ts'o | f8188ff | 1997-11-14 05:23:04 +0000 | [diff] [blame] | 1615 | fatal_error(ctx, 0); |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 1616 | |
| 1617 | if (ptr->prompt == PROMPT_NONE) { |
| 1618 | if (ptr->flags & PR_NOCOLLATE) |
| 1619 | answer = -1; |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 1620 | else |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 1621 | answer = def_yn; |
| 1622 | } else { |
| 1623 | if (ctx->options & E2F_OPT_PREEN) { |
| 1624 | answer = def_yn; |
| 1625 | if (!(ptr->flags & PR_PREEN_NOMSG)) |
| 1626 | print_answer = 1; |
| 1627 | } else if ((ptr->flags & PR_LATCH_MASK) && |
| 1628 | (ldesc->flags & (PRL_YES | PRL_NO))) { |
| 1629 | if (!suppress) |
| 1630 | print_answer = 1; |
| 1631 | if (ldesc->flags & PRL_YES) |
| 1632 | answer = 1; |
| 1633 | else |
| 1634 | answer = 0; |
| 1635 | } else |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 1636 | answer = ask(ctx, _(prompt[(int) ptr->prompt]), def_yn); |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 1637 | if (!answer && !(ptr->flags & PR_NO_OK)) |
| 1638 | ext2fs_unmark_valid(fs); |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 1639 | |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 1640 | if (print_answer) |
| 1641 | printf("%s.\n", answer ? |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 1642 | _(preen_msg[(int) ptr->prompt]) : _("IGNORED")); |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 1643 | |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 1644 | } |
| 1645 | |
Theodore Ts'o | f8188ff | 1997-11-14 05:23:04 +0000 | [diff] [blame] | 1646 | if ((ptr->prompt == PROMPT_ABORT) && answer) |
| 1647 | fatal_error(ctx, 0); |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 1648 | |
Theodore Ts'o | 3b5386d | 2000-08-14 14:25:19 +0000 | [diff] [blame] | 1649 | if (ptr->flags & PR_AFTER_CODE) |
| 1650 | answer = fix_problem(ctx, ptr->second_code, pctx); |
| 1651 | |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 1652 | return answer; |
| 1653 | } |