Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 1 | /* |
| 2 | * unix.c - The unix-specific code for e2fsck |
Theodore Ts'o | efc6f62 | 2008-08-27 23:07:54 -0400 | [diff] [blame] | 3 | * |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 4 | * Copyright (C) 1993, 1994, 1995, 1996, 1997 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 | |
Theodore Ts'o | ebabf2a | 2008-07-13 15:32:37 -0400 | [diff] [blame] | 12 | #define _XOPEN_SOURCE 600 /* for inclusion of sa_handler in Solaris */ |
| 13 | |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 14 | #include <stdio.h> |
| 15 | #ifdef HAVE_STDLIB_H |
| 16 | #include <stdlib.h> |
| 17 | #endif |
| 18 | #include <string.h> |
| 19 | #include <fcntl.h> |
| 20 | #include <ctype.h> |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 21 | #include <time.h> |
Theodore Ts'o | 9ecd8be | 1999-10-20 18:24:31 +0000 | [diff] [blame] | 22 | #ifdef HAVE_SIGNAL_H |
Theodore Ts'o | 5596def | 1999-07-19 15:27:37 +0000 | [diff] [blame] | 23 | #include <signal.h> |
Theodore Ts'o | 9ecd8be | 1999-10-20 18:24:31 +0000 | [diff] [blame] | 24 | #endif |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 25 | #ifdef HAVE_GETOPT_H |
| 26 | #include <getopt.h> |
Theodore Ts'o | 373b833 | 2000-04-03 16:22:35 +0000 | [diff] [blame] | 27 | #else |
| 28 | extern char *optarg; |
| 29 | extern int optind; |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 30 | #endif |
| 31 | #include <unistd.h> |
| 32 | #ifdef HAVE_ERRNO_H |
| 33 | #include <errno.h> |
| 34 | #endif |
Theodore Ts'o | fff4548 | 2003-04-13 00:44:19 -0400 | [diff] [blame] | 35 | #ifdef HAVE_SYS_IOCTL_H |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 36 | #include <sys/ioctl.h> |
Theodore Ts'o | fff4548 | 2003-04-13 00:44:19 -0400 | [diff] [blame] | 37 | #endif |
Theodore Ts'o | e71d873 | 2003-03-14 02:13:48 -0500 | [diff] [blame] | 38 | #ifdef HAVE_MALLOC_H |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 39 | #include <malloc.h> |
Theodore Ts'o | e71d873 | 2003-03-14 02:13:48 -0500 | [diff] [blame] | 40 | #endif |
Theodore Ts'o | c07f9f2 | 2004-04-12 00:16:44 -0400 | [diff] [blame] | 41 | #ifdef HAVE_SYS_TYPES_H |
| 42 | #include <sys/types.h> |
| 43 | #endif |
| 44 | #ifdef HAVE_DIRENT_H |
| 45 | #include <dirent.h> |
| 46 | #endif |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 47 | |
Andreas Dilger | 864b8d4 | 2008-08-24 20:37:39 -0400 | [diff] [blame] | 48 | #include "e2p/e2p.h" |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 49 | #include "et/com_err.h" |
Eric Sandeen | 01c196b | 2008-03-29 23:01:52 -0500 | [diff] [blame] | 50 | #include "e2p/e2p.h" |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 51 | #include "e2fsck.h" |
| 52 | #include "problem.h" |
| 53 | #include "../version.h" |
| 54 | |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 55 | /* Command line options */ |
Theodore Ts'o | 54a31a3 | 2003-08-19 10:08:34 -0400 | [diff] [blame] | 56 | static int cflag; /* check disk */ |
| 57 | static int show_version_only; |
| 58 | static int verbose; |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 59 | |
Theodore Ts'o | 54a31a3 | 2003-08-19 10:08:34 -0400 | [diff] [blame] | 60 | static int replace_bad_blocks; |
Theodore Ts'o | 4fb9d52 | 2004-02-24 00:16:09 -0500 | [diff] [blame] | 61 | static int keep_bad_blocks; |
Theodore Ts'o | 54a31a3 | 2003-08-19 10:08:34 -0400 | [diff] [blame] | 62 | static char *bad_blocks_file; |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 63 | |
Theodore Ts'o | 243dc31 | 2000-08-22 21:37:47 +0000 | [diff] [blame] | 64 | e2fsck_t e2fsck_global_ctx; /* Try your very best not to use this! */ |
| 65 | |
Theodore Ts'o | 5e72cdb | 2002-11-08 15:35:13 -0500 | [diff] [blame] | 66 | #ifdef CONFIG_JBD_DEBUG /* Enabled by configure --enable-jfs-debug */ |
| 67 | int journal_enable_debug = -1; |
| 68 | #endif |
| 69 | |
Bernhard Rosenkränzer | 18a1444 | 2013-12-31 14:43:20 +0100 | [diff] [blame] | 70 | #ifndef ROOT_SYSCONFDIR |
JP Abgrall | e0ed740 | 2014-03-19 19:08:39 -0700 | [diff] [blame] | 71 | #define ROOT_SYSCONFDIR "/etc" |
Bernhard Rosenkränzer | 18a1444 | 2013-12-31 14:43:20 +0100 | [diff] [blame] | 72 | #endif |
| 73 | |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 74 | static void usage(e2fsck_t ctx) |
| 75 | { |
| 76 | fprintf(stderr, |
Theodore Ts'o | 1a855cb | 2007-08-10 23:58:56 -0400 | [diff] [blame] | 77 | _("Usage: %s [-panyrcdfvtDFV] [-b superblock] [-B blocksize]\n" |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 78 | "\t\t[-I inode_buffer_blocks] [-P process_inode_size]\n" |
Theodore Ts'o | bb145b0 | 2005-06-20 08:35:27 -0400 | [diff] [blame] | 79 | "\t\t[-l|-L bad_blocks_file] [-C fd] [-j external_journal]\n" |
Theodore Ts'o | 0684a4f | 2002-08-17 10:19:44 -0400 | [diff] [blame] | 80 | "\t\t[-E extended-options] device\n"), |
Theodore Ts'o | 5596def | 1999-07-19 15:27:37 +0000 | [diff] [blame] | 81 | ctx->program_name); |
Theodore Ts'o | b55199e | 1999-07-19 15:37:46 +0000 | [diff] [blame] | 82 | |
JP Abgrall | e0ed740 | 2014-03-19 19:08:39 -0700 | [diff] [blame] | 83 | fprintf(stderr, "%s", _("\nEmergency help:\n" |
Theodore Ts'o | b55199e | 1999-07-19 15:37:46 +0000 | [diff] [blame] | 84 | " -p Automatic repair (no questions)\n" |
| 85 | " -n Make no changes to the filesystem\n" |
| 86 | " -y Assume \"yes\" to all questions\n" |
Theodore Ts'o | 19445ef | 2003-01-29 21:04:52 -0500 | [diff] [blame] | 87 | " -c Check for bad blocks and add them to the badblock list\n" |
Theodore Ts'o | 53ef44c | 2001-01-06 05:55:58 +0000 | [diff] [blame] | 88 | " -f Force checking even if filesystem is marked clean\n")); |
JP Abgrall | e0ed740 | 2014-03-19 19:08:39 -0700 | [diff] [blame] | 89 | fprintf(stderr, "%s", _("" |
Theodore Ts'o | b55199e | 1999-07-19 15:37:46 +0000 | [diff] [blame] | 90 | " -v Be verbose\n" |
| 91 | " -b superblock Use alternative superblock\n" |
| 92 | " -B blocksize Force blocksize when looking for superblock\n" |
Theodore Ts'o | bb145b0 | 2005-06-20 08:35:27 -0400 | [diff] [blame] | 93 | " -j external_journal Set location of the external journal\n" |
Theodore Ts'o | b55199e | 1999-07-19 15:37:46 +0000 | [diff] [blame] | 94 | " -l bad_blocks_file Add to badblocks list\n" |
| 95 | " -L bad_blocks_file Set badblocks list\n" |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 96 | )); |
Theodore Ts'o | b55199e | 1999-07-19 15:37:46 +0000 | [diff] [blame] | 97 | |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 98 | exit(FSCK_USAGE); |
| 99 | } |
| 100 | |
| 101 | static void show_stats(e2fsck_t ctx) |
| 102 | { |
| 103 | ext2_filsys fs = ctx->fs; |
Eric Sandeen | f335864 | 2006-09-12 14:56:17 -0400 | [diff] [blame] | 104 | ext2_ino_t inodes, inodes_used; |
JP Abgrall | e0ed740 | 2014-03-19 19:08:39 -0700 | [diff] [blame] | 105 | blk64_t blocks, blocks_used; |
| 106 | unsigned int dir_links; |
| 107 | unsigned int num_files, num_links; |
| 108 | __u32 *mask, m; |
Theodore Ts'o | ce44d8c | 2008-12-08 21:33:11 -0500 | [diff] [blame] | 109 | int frag_percent_file, frag_percent_dir, frag_percent_total; |
JP Abgrall | e0ed740 | 2014-03-19 19:08:39 -0700 | [diff] [blame] | 110 | int i, j, printed = 0; |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 111 | |
| 112 | dir_links = 2 * ctx->fs_directory_count - 1; |
| 113 | num_files = ctx->fs_total_count - dir_links; |
| 114 | num_links = ctx->fs_links_count - dir_links; |
| 115 | inodes = fs->super->s_inodes_count; |
| 116 | inodes_used = (fs->super->s_inodes_count - |
| 117 | fs->super->s_free_inodes_count); |
JP Abgrall | e0ed740 | 2014-03-19 19:08:39 -0700 | [diff] [blame] | 118 | blocks = ext2fs_blocks_count(fs->super); |
| 119 | blocks_used = (ext2fs_blocks_count(fs->super) - |
| 120 | ext2fs_free_blocks_count(fs->super)); |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 121 | |
Theodore Ts'o | ce44d8c | 2008-12-08 21:33:11 -0500 | [diff] [blame] | 122 | frag_percent_file = (10000 * ctx->fs_fragmented) / inodes_used; |
| 123 | frag_percent_file = (frag_percent_file + 5) / 10; |
| 124 | |
| 125 | frag_percent_dir = (10000 * ctx->fs_fragmented_dir) / inodes_used; |
| 126 | frag_percent_dir = (frag_percent_dir + 5) / 10; |
| 127 | |
| 128 | frag_percent_total = ((10000 * (ctx->fs_fragmented + |
| 129 | ctx->fs_fragmented_dir)) |
| 130 | / inodes_used); |
| 131 | frag_percent_total = (frag_percent_total + 5) / 10; |
Theodore Ts'o | efc6f62 | 2008-08-27 23:07:54 -0400 | [diff] [blame] | 132 | |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 133 | if (!verbose) { |
JP Abgrall | e0ed740 | 2014-03-19 19:08:39 -0700 | [diff] [blame] | 134 | log_out(ctx, _("%s: %u/%u files (%0d.%d%% non-contiguous), " |
| 135 | "%llu/%llu blocks\n"), |
| 136 | ctx->device_name, inodes_used, inodes, |
| 137 | frag_percent_total / 10, frag_percent_total % 10, |
| 138 | blocks_used, blocks); |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 139 | return; |
| 140 | } |
JP Abgrall | e0ed740 | 2014-03-19 19:08:39 -0700 | [diff] [blame] | 141 | profile_get_boolean(ctx->profile, "options", "report_features", 0, 0, |
| 142 | &i); |
| 143 | if (verbose && i) { |
| 144 | log_out(ctx, "\nFilesystem features:"); |
| 145 | mask = &ctx->fs->super->s_feature_compat; |
| 146 | for (i = 0; i < 3; i++, mask++) { |
| 147 | for (j = 0, m = 1; j < 32; j++, m <<= 1) { |
| 148 | if (*mask & m) { |
| 149 | log_out(ctx, " %s", |
| 150 | e2p_feature2string(i, m)); |
| 151 | printed++; |
| 152 | } |
| 153 | } |
| 154 | } |
| 155 | if (printed == 0) |
| 156 | log_out(ctx, " (none)"); |
| 157 | log_out(ctx, "\n"); |
| 158 | } |
| 159 | |
| 160 | log_out(ctx, P_("\n%12u inode used (%2.2f%%, out of %u)\n", |
| 161 | "\n%12u inodes used (%2.2f%%, out of %u)\n", |
| 162 | inodes_used), inodes_used, |
| 163 | 100.0 * inodes_used / inodes, inodes); |
| 164 | log_out(ctx, P_("%12u non-contiguous file (%0d.%d%%)\n", |
| 165 | "%12u non-contiguous files (%0d.%d%%)\n", |
| 166 | ctx->fs_fragmented), |
Theodore Ts'o | ce44d8c | 2008-12-08 21:33:11 -0500 | [diff] [blame] | 167 | ctx->fs_fragmented, frag_percent_file / 10, |
| 168 | frag_percent_file % 10); |
JP Abgrall | e0ed740 | 2014-03-19 19:08:39 -0700 | [diff] [blame] | 169 | log_out(ctx, P_("%12u non-contiguous directory (%0d.%d%%)\n", |
| 170 | "%12u non-contiguous directories (%0d.%d%%)\n", |
| 171 | ctx->fs_fragmented_dir), |
Theodore Ts'o | ce44d8c | 2008-12-08 21:33:11 -0500 | [diff] [blame] | 172 | ctx->fs_fragmented_dir, frag_percent_dir / 10, |
| 173 | frag_percent_dir % 10); |
JP Abgrall | e0ed740 | 2014-03-19 19:08:39 -0700 | [diff] [blame] | 174 | log_out(ctx, _(" # of inodes with ind/dind/tind blocks: " |
| 175 | "%u/%u/%u\n"), |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 176 | ctx->fs_ind_count, ctx->fs_dind_count, ctx->fs_tind_count); |
Theodore Ts'o | 8da6d1a | 2008-08-14 09:48:07 -0400 | [diff] [blame] | 177 | |
| 178 | for (j=MAX_EXTENT_DEPTH_COUNT-1; j >=0; j--) |
| 179 | if (ctx->extent_depth_count[j]) |
| 180 | break; |
| 181 | if (++j) { |
JP Abgrall | e0ed740 | 2014-03-19 19:08:39 -0700 | [diff] [blame] | 182 | log_out(ctx, "%s", _(" Extent depth histogram: ")); |
Theodore Ts'o | 8da6d1a | 2008-08-14 09:48:07 -0400 | [diff] [blame] | 183 | for (i=0; i < j; i++) { |
| 184 | if (i) |
| 185 | fputc('/', stdout); |
JP Abgrall | e0ed740 | 2014-03-19 19:08:39 -0700 | [diff] [blame] | 186 | log_out(ctx, "%u", ctx->extent_depth_count[i]); |
Theodore Ts'o | 8da6d1a | 2008-08-14 09:48:07 -0400 | [diff] [blame] | 187 | } |
JP Abgrall | e0ed740 | 2014-03-19 19:08:39 -0700 | [diff] [blame] | 188 | log_out(ctx, "\n"); |
Theodore Ts'o | 8da6d1a | 2008-08-14 09:48:07 -0400 | [diff] [blame] | 189 | } |
| 190 | |
JP Abgrall | e0ed740 | 2014-03-19 19:08:39 -0700 | [diff] [blame] | 191 | log_out(ctx, P_("%12llu block used (%2.2f%%, out of %llu)\n", |
| 192 | "%12llu blocks used (%2.2f%%, out of %llu)\n", |
| 193 | blocks_used), |
| 194 | blocks_used, 100.0 * blocks_used / blocks, blocks); |
| 195 | log_out(ctx, P_("%12u bad block\n", "%12u bad blocks\n", |
| 196 | ctx->fs_badblocks_count), ctx->fs_badblocks_count); |
| 197 | log_out(ctx, P_("%12u large file\n", "%12u large files\n", |
| 198 | ctx->large_files), ctx->large_files); |
| 199 | log_out(ctx, P_("\n%12u regular file\n", "\n%12u regular files\n", |
| 200 | ctx->fs_regular_count), ctx->fs_regular_count); |
| 201 | log_out(ctx, P_("%12u directory\n", "%12u directories\n", |
| 202 | ctx->fs_directory_count), ctx->fs_directory_count); |
| 203 | log_out(ctx, P_("%12u character device file\n", |
| 204 | "%12u character device files\n", ctx->fs_chardev_count), |
Theodore Ts'o | 113e405 | 2003-05-17 21:00:46 -0400 | [diff] [blame] | 205 | ctx->fs_chardev_count); |
JP Abgrall | e0ed740 | 2014-03-19 19:08:39 -0700 | [diff] [blame] | 206 | log_out(ctx, P_("%12u block device file\n", "%12u block device files\n", |
| 207 | ctx->fs_blockdev_count), ctx->fs_blockdev_count); |
| 208 | log_out(ctx, P_("%12u fifo\n", "%12u fifos\n", ctx->fs_fifo_count), |
Theodore Ts'o | 113e405 | 2003-05-17 21:00:46 -0400 | [diff] [blame] | 209 | ctx->fs_fifo_count); |
JP Abgrall | e0ed740 | 2014-03-19 19:08:39 -0700 | [diff] [blame] | 210 | log_out(ctx, P_("%12u link\n", "%12u links\n", num_links), |
Theodore Ts'o | 113e405 | 2003-05-17 21:00:46 -0400 | [diff] [blame] | 211 | ctx->fs_links_count - dir_links); |
JP Abgrall | e0ed740 | 2014-03-19 19:08:39 -0700 | [diff] [blame] | 212 | log_out(ctx, P_("%12u symbolic link", "%12u symbolic links", |
| 213 | ctx->fs_symlinks_count), ctx->fs_symlinks_count); |
| 214 | log_out(ctx, P_(" (%u fast symbolic link)\n", |
| 215 | " (%u fast symbolic links)\n", |
| 216 | ctx->fs_fast_symlinks_count), |
| 217 | ctx->fs_fast_symlinks_count); |
| 218 | log_out(ctx, P_("%12u socket\n", "%12u sockets\n", |
| 219 | ctx->fs_sockets_count), |
Theodore Ts'o | 113e405 | 2003-05-17 21:00:46 -0400 | [diff] [blame] | 220 | ctx->fs_sockets_count); |
JP Abgrall | e0ed740 | 2014-03-19 19:08:39 -0700 | [diff] [blame] | 221 | log_out(ctx, "------------\n"); |
| 222 | log_out(ctx, P_("%12u file\n", "%12u files\n", num_files), |
| 223 | num_files); |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 224 | } |
| 225 | |
| 226 | static void check_mount(e2fsck_t ctx) |
| 227 | { |
| 228 | errcode_t retval; |
Theodore Ts'o | ee89513 | 2002-11-07 16:16:55 -0500 | [diff] [blame] | 229 | int cont; |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 230 | |
Theodore Ts'o | ee89513 | 2002-11-07 16:16:55 -0500 | [diff] [blame] | 231 | retval = ext2fs_check_if_mounted(ctx->filesystem_name, |
| 232 | &ctx->mount_flags); |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 233 | if (retval) { |
| 234 | com_err("ext2fs_check_if_mount", retval, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 235 | _("while determining whether %s is mounted."), |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 236 | ctx->filesystem_name); |
| 237 | return; |
| 238 | } |
Theodore Ts'o | 83e6ac8 | 2001-07-30 16:29:52 -0400 | [diff] [blame] | 239 | |
| 240 | /* |
Theodore Ts'o | ae1182c | 2005-12-09 18:11:16 -0500 | [diff] [blame] | 241 | * If the filesystem isn't mounted, or it's the root |
| 242 | * filesystem and it's mounted read-only, and we're not doing |
| 243 | * a read/write check, then everything's fine. |
Theodore Ts'o | 83e6ac8 | 2001-07-30 16:29:52 -0400 | [diff] [blame] | 244 | */ |
JP Abgrall | e0ed740 | 2014-03-19 19:08:39 -0700 | [diff] [blame] | 245 | if ((!(ctx->mount_flags & (EXT2_MF_MOUNTED | EXT2_MF_BUSY))) || |
Theodore Ts'o | ee89513 | 2002-11-07 16:16:55 -0500 | [diff] [blame] | 246 | ((ctx->mount_flags & EXT2_MF_ISROOT) && |
Theodore Ts'o | ae1182c | 2005-12-09 18:11:16 -0500 | [diff] [blame] | 247 | (ctx->mount_flags & EXT2_MF_READONLY) && |
| 248 | !(ctx->options & E2F_OPT_WRITECHECK))) |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 249 | return; |
| 250 | |
JP Abgrall | e0ed740 | 2014-03-19 19:08:39 -0700 | [diff] [blame] | 251 | if (((ctx->options & E2F_OPT_READONLY) || |
| 252 | ((ctx->options & E2F_OPT_FORCE) && |
| 253 | (ctx->mount_flags & EXT2_MF_READONLY))) && |
Theodore Ts'o | ae1182c | 2005-12-09 18:11:16 -0500 | [diff] [blame] | 254 | !(ctx->options & E2F_OPT_WRITECHECK)) { |
JP Abgrall | e0ed740 | 2014-03-19 19:08:39 -0700 | [diff] [blame] | 255 | log_out(ctx, _("Warning! %s is %s.\n"), |
| 256 | ctx->filesystem_name, |
| 257 | ctx->mount_flags & EXT2_MF_MOUNTED ? |
| 258 | "mounted" : "in use"); |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 259 | return; |
| 260 | } |
| 261 | |
JP Abgrall | e0ed740 | 2014-03-19 19:08:39 -0700 | [diff] [blame] | 262 | log_out(ctx, _("%s is %s.\n"), ctx->filesystem_name, |
| 263 | ctx->mount_flags & EXT2_MF_MOUNTED ? "mounted" : "in use"); |
| 264 | if (!ctx->interactive || ctx->mount_flags & EXT2_MF_BUSY) |
Theodore Ts'o | 243dc31 | 2000-08-22 21:37:47 +0000 | [diff] [blame] | 265 | fatal_error(ctx, _("Cannot continue, aborting.\n\n")); |
JP Abgrall | e0ed740 | 2014-03-19 19:08:39 -0700 | [diff] [blame] | 266 | puts("\007\007\007\007"); |
| 267 | log_out(ctx, "%s", _("\n\nWARNING!!! " |
| 268 | "The filesystem is mounted. " |
| 269 | "If you continue you ***WILL***\n" |
| 270 | "cause ***SEVERE*** filesystem damage.\n\n")); |
| 271 | puts("\007\007\007"); |
| 272 | cont = ask_yn(ctx, _("Do you really want to continue"), 0); |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 273 | if (!cont) { |
JP Abgrall | e0ed740 | 2014-03-19 19:08:39 -0700 | [diff] [blame] | 274 | printf("%s", _("check aborted.\n")); |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 275 | exit (0); |
| 276 | } |
| 277 | return; |
| 278 | } |
| 279 | |
Theodore Ts'o | 5443492 | 2003-12-07 01:28:50 -0500 | [diff] [blame] | 280 | static int is_on_batt(void) |
Theodore Ts'o | 015b03d | 2003-11-21 11:02:22 -0500 | [diff] [blame] | 281 | { |
| 282 | FILE *f; |
Theodore Ts'o | c07f9f2 | 2004-04-12 00:16:44 -0400 | [diff] [blame] | 283 | DIR *d; |
| 284 | char tmp[80], tmp2[80], fname[80]; |
Theodore Ts'o | 015b03d | 2003-11-21 11:02:22 -0500 | [diff] [blame] | 285 | unsigned int acflag; |
Theodore Ts'o | c07f9f2 | 2004-04-12 00:16:44 -0400 | [diff] [blame] | 286 | struct dirent* de; |
Theodore Ts'o | 015b03d | 2003-11-21 11:02:22 -0500 | [diff] [blame] | 287 | |
JP Abgrall | e0ed740 | 2014-03-19 19:08:39 -0700 | [diff] [blame] | 288 | f = fopen("/sys/class/power_supply/AC/online", "r"); |
| 289 | if (f) { |
| 290 | if (fscanf(f, "%u\n", &acflag) == 1) { |
| 291 | fclose(f); |
| 292 | return (!acflag); |
| 293 | } |
| 294 | fclose(f); |
| 295 | } |
Theodore Ts'o | 015b03d | 2003-11-21 11:02:22 -0500 | [diff] [blame] | 296 | f = fopen("/proc/apm", "r"); |
| 297 | if (f) { |
Theodore Ts'o | efc6f62 | 2008-08-27 23:07:54 -0400 | [diff] [blame] | 298 | if (fscanf(f, "%s %s %s %x", tmp, tmp, tmp, &acflag) != 4) |
Theodore Ts'o | 015b03d | 2003-11-21 11:02:22 -0500 | [diff] [blame] | 299 | acflag = 1; |
| 300 | fclose(f); |
| 301 | return (acflag != 1); |
| 302 | } |
Theodore Ts'o | c07f9f2 | 2004-04-12 00:16:44 -0400 | [diff] [blame] | 303 | d = opendir("/proc/acpi/ac_adapter"); |
Theodore Ts'o | ecd0d8f | 2005-01-17 13:59:18 -0500 | [diff] [blame] | 304 | if (d) { |
Theodore Ts'o | 9214dcc | 2005-01-19 13:57:40 -0500 | [diff] [blame] | 305 | while ((de=readdir(d)) != NULL) { |
Theodore Ts'o | ecd0d8f | 2005-01-17 13:59:18 -0500 | [diff] [blame] | 306 | if (!strncmp(".", de->d_name, 1)) |
| 307 | continue; |
Theodore Ts'o | efc6f62 | 2008-08-27 23:07:54 -0400 | [diff] [blame] | 308 | snprintf(fname, 80, "/proc/acpi/ac_adapter/%s/state", |
Theodore Ts'o | ecd0d8f | 2005-01-17 13:59:18 -0500 | [diff] [blame] | 309 | de->d_name); |
| 310 | f = fopen(fname, "r"); |
| 311 | if (!f) |
| 312 | continue; |
| 313 | if (fscanf(f, "%s %s", tmp2, tmp) != 2) |
| 314 | tmp[0] = 0; |
| 315 | fclose(f); |
| 316 | if (strncmp(tmp, "off-line", 8) == 0) { |
| 317 | closedir(d); |
| 318 | return 1; |
| 319 | } |
Theodore Ts'o | c07f9f2 | 2004-04-12 00:16:44 -0400 | [diff] [blame] | 320 | } |
Matthias Andree | 4b13704 | 2005-01-13 03:35:29 +0100 | [diff] [blame] | 321 | closedir(d); |
Theodore Ts'o | ecd0d8f | 2005-01-17 13:59:18 -0500 | [diff] [blame] | 322 | } |
Theodore Ts'o | 015b03d | 2003-11-21 11:02:22 -0500 | [diff] [blame] | 323 | return 0; |
| 324 | } |
| 325 | |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 326 | /* |
| 327 | * This routine checks to see if a filesystem can be skipped; if so, |
| 328 | * it will exit with E2FSCK_OK. Under some conditions it will print a |
| 329 | * message explaining why a check is being forced. |
| 330 | */ |
| 331 | static void check_if_skip(e2fsck_t ctx) |
| 332 | { |
| 333 | ext2_filsys fs = ctx->fs; |
JP Abgrall | e0ed740 | 2014-03-19 19:08:39 -0700 | [diff] [blame] | 334 | struct problem_context pctx; |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 335 | const char *reason = NULL; |
Theodore Ts'o | b6a0807 | 2001-06-14 01:16:17 +0000 | [diff] [blame] | 336 | unsigned int reason_arg = 0; |
Theodore Ts'o | 6de289c | 2003-11-21 10:54:54 -0500 | [diff] [blame] | 337 | long next_check; |
Theodore Ts'o | 015b03d | 2003-11-21 11:02:22 -0500 | [diff] [blame] | 338 | int batt = is_on_batt(); |
Theodore Ts'o | a5f37a9 | 2006-01-29 05:15:36 -0500 | [diff] [blame] | 339 | int defer_check_on_battery; |
Theodore Ts'o | 177839e | 2010-05-13 17:36:36 -0400 | [diff] [blame] | 340 | int broken_system_clock; |
Theodore Ts'o | 60702c2 | 2007-09-22 20:42:04 -0400 | [diff] [blame] | 341 | time_t lastcheck; |
Theodore Ts'o | a5f37a9 | 2006-01-29 05:15:36 -0500 | [diff] [blame] | 342 | |
Theodore Ts'o | 177839e | 2010-05-13 17:36:36 -0400 | [diff] [blame] | 343 | profile_get_boolean(ctx->profile, "options", "broken_system_clock", |
| 344 | 0, 0, &broken_system_clock); |
| 345 | if (ctx->flags & E2F_FLAG_TIME_INSANE) |
| 346 | broken_system_clock = 1; |
Theodore Ts'o | a5f37a9 | 2006-01-29 05:15:36 -0500 | [diff] [blame] | 347 | profile_get_boolean(ctx->profile, "options", |
Theodore Ts'o | efc6f62 | 2008-08-27 23:07:54 -0400 | [diff] [blame] | 348 | "defer_check_on_battery", 0, 1, |
Theodore Ts'o | a5f37a9 | 2006-01-29 05:15:36 -0500 | [diff] [blame] | 349 | &defer_check_on_battery); |
| 350 | if (!defer_check_on_battery) |
| 351 | batt = 0; |
| 352 | |
Theodore Ts'o | 1a855cb | 2007-08-10 23:58:56 -0400 | [diff] [blame] | 353 | if ((ctx->options & E2F_OPT_FORCE) || bad_blocks_file || cflag) |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 354 | return; |
Theodore Ts'o | efc6f62 | 2008-08-27 23:07:54 -0400 | [diff] [blame] | 355 | |
Bernd Schubert | 71873b1 | 2010-11-13 00:09:07 +0100 | [diff] [blame] | 356 | if (ctx->options & E2F_OPT_JOURNAL_ONLY) |
| 357 | goto skip; |
| 358 | |
Theodore Ts'o | 60702c2 | 2007-09-22 20:42:04 -0400 | [diff] [blame] | 359 | lastcheck = fs->super->s_lastcheck; |
| 360 | if (lastcheck > ctx->now) |
| 361 | lastcheck -= ctx->time_fudge; |
Theodore Ts'o | 550a4af | 2005-01-25 03:09:24 -0500 | [diff] [blame] | 362 | if ((fs->super->s_state & EXT2_ERROR_FS) || |
| 363 | !ext2fs_test_valid(fs)) |
Theodore Ts'o | b6a0807 | 2001-06-14 01:16:17 +0000 | [diff] [blame] | 364 | reason = _(" contains a file system with errors"); |
Theodore Ts'o | 24fc503 | 1998-08-26 15:23:31 +0000 | [diff] [blame] | 365 | else if ((fs->super->s_state & EXT2_VALID_FS) == 0) |
Theodore Ts'o | b6a0807 | 2001-06-14 01:16:17 +0000 | [diff] [blame] | 366 | reason = _(" was not cleanly unmounted"); |
Theodore Ts'o | 0c37f45 | 2007-10-01 09:18:54 -0400 | [diff] [blame] | 367 | else if (check_backup_super_block(ctx)) |
| 368 | reason = _(" primary superblock features different from backup"); |
Theodore Ts'o | bc57f15 | 2001-04-26 04:11:46 +0000 | [diff] [blame] | 369 | else if ((fs->super->s_max_mnt_count > 0) && |
Theodore Ts'o | 17390c0 | 2000-07-07 04:13:21 +0000 | [diff] [blame] | 370 | (fs->super->s_mnt_count >= |
Theodore Ts'o | b6a0807 | 2001-06-14 01:16:17 +0000 | [diff] [blame] | 371 | (unsigned) fs->super->s_max_mnt_count)) { |
| 372 | reason = _(" has been mounted %u times without being checked"); |
| 373 | reason_arg = fs->super->s_mnt_count; |
Theodore Ts'o | efc6f62 | 2008-08-27 23:07:54 -0400 | [diff] [blame] | 374 | if (batt && (fs->super->s_mnt_count < |
Theodore Ts'o | 015b03d | 2003-11-21 11:02:22 -0500 | [diff] [blame] | 375 | (unsigned) fs->super->s_max_mnt_count*2)) |
| 376 | reason = 0; |
Theodore Ts'o | 177839e | 2010-05-13 17:36:36 -0400 | [diff] [blame] | 377 | } else if (!broken_system_clock && fs->super->s_checkinterval && |
| 378 | (ctx->now < lastcheck)) { |
Theodore Ts'o | 68eb092 | 2008-06-07 12:19:08 -0400 | [diff] [blame] | 379 | reason = _(" has filesystem last checked time in the future"); |
| 380 | if (batt) |
| 381 | reason = 0; |
Theodore Ts'o | 177839e | 2010-05-13 17:36:36 -0400 | [diff] [blame] | 382 | } else if (!broken_system_clock && fs->super->s_checkinterval && |
Theodore Ts'o | efc6f62 | 2008-08-27 23:07:54 -0400 | [diff] [blame] | 383 | ((ctx->now - lastcheck) >= |
Theodore Ts'o | 2acad6b | 2008-06-07 11:04:10 -0400 | [diff] [blame] | 384 | ((time_t) fs->super->s_checkinterval))) { |
Theodore Ts'o | b6a0807 | 2001-06-14 01:16:17 +0000 | [diff] [blame] | 385 | reason = _(" has gone %u days without being checked"); |
Theodore Ts'o | 1f3ad14 | 2005-04-14 14:07:53 -0400 | [diff] [blame] | 386 | reason_arg = (ctx->now - fs->super->s_lastcheck)/(3600*24); |
Theodore Ts'o | efc6f62 | 2008-08-27 23:07:54 -0400 | [diff] [blame] | 387 | if (batt && ((ctx->now - fs->super->s_lastcheck) < |
Theodore Ts'o | 5443492 | 2003-12-07 01:28:50 -0500 | [diff] [blame] | 388 | fs->super->s_checkinterval*2)) |
Theodore Ts'o | 015b03d | 2003-11-21 11:02:22 -0500 | [diff] [blame] | 389 | reason = 0; |
Theodore Ts'o | b6a0807 | 2001-06-14 01:16:17 +0000 | [diff] [blame] | 390 | } |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 391 | if (reason) { |
JP Abgrall | e0ed740 | 2014-03-19 19:08:39 -0700 | [diff] [blame] | 392 | log_out(ctx, "%s", ctx->device_name); |
| 393 | log_out(ctx, reason, reason_arg); |
| 394 | log_out(ctx, "%s", _(", check forced.\n")); |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 395 | return; |
| 396 | } |
JP Abgrall | e0ed740 | 2014-03-19 19:08:39 -0700 | [diff] [blame] | 397 | |
| 398 | /* |
| 399 | * Update the global counts from the block group counts. This |
| 400 | * is needed since modern kernels don't update the global |
| 401 | * counts so as to avoid locking the entire file system. So |
| 402 | * if the filesystem is not unmounted cleanly, the global |
| 403 | * counts may not be accurate. Update them here if we can, |
| 404 | * for the benefit of users who might examine the file system |
| 405 | * using dumpe2fs. (This is for cosmetic reasons only.) |
| 406 | */ |
| 407 | clear_problem_context(&pctx); |
| 408 | pctx.ino = fs->super->s_free_inodes_count; |
| 409 | pctx.ino2 = ctx->free_inodes; |
| 410 | if ((pctx.ino != pctx.ino2) && |
| 411 | !(ctx->options & E2F_OPT_READONLY) && |
| 412 | fix_problem(ctx, PR_0_FREE_INODE_COUNT, &pctx)) { |
| 413 | fs->super->s_free_inodes_count = ctx->free_inodes; |
| 414 | ext2fs_mark_super_dirty(fs); |
| 415 | } |
| 416 | clear_problem_context(&pctx); |
| 417 | pctx.blk = ext2fs_free_blocks_count(fs->super); |
| 418 | pctx.blk2 = ctx->free_blocks; |
| 419 | if ((pctx.blk != pctx.blk2) && |
| 420 | !(ctx->options & E2F_OPT_READONLY) && |
| 421 | fix_problem(ctx, PR_0_FREE_BLOCK_COUNT, &pctx)) { |
| 422 | ext2fs_free_blocks_count_set(fs->super, ctx->free_blocks); |
| 423 | ext2fs_mark_super_dirty(fs); |
| 424 | } |
| 425 | |
| 426 | /* Print the summary message when we're skipping a full check */ |
| 427 | log_out(ctx, _("%s: clean, %u/%u files, %llu/%llu blocks"), |
| 428 | ctx->device_name, |
| 429 | fs->super->s_inodes_count - fs->super->s_free_inodes_count, |
| 430 | fs->super->s_inodes_count, |
| 431 | ext2fs_blocks_count(fs->super) - |
| 432 | ext2fs_free_blocks_count(fs->super), |
| 433 | ext2fs_blocks_count(fs->super)); |
Theodore Ts'o | 6de289c | 2003-11-21 10:54:54 -0500 | [diff] [blame] | 434 | next_check = 100000; |
| 435 | if (fs->super->s_max_mnt_count > 0) { |
| 436 | next_check = fs->super->s_max_mnt_count - fs->super->s_mnt_count; |
Theodore Ts'o | efc6f62 | 2008-08-27 23:07:54 -0400 | [diff] [blame] | 437 | if (next_check <= 0) |
Theodore Ts'o | 6de289c | 2003-11-21 10:54:54 -0500 | [diff] [blame] | 438 | next_check = 1; |
| 439 | } |
Theodore Ts'o | 177839e | 2010-05-13 17:36:36 -0400 | [diff] [blame] | 440 | if (!broken_system_clock && fs->super->s_checkinterval && |
Theodore Ts'o | 1f3ad14 | 2005-04-14 14:07:53 -0400 | [diff] [blame] | 441 | ((ctx->now - fs->super->s_lastcheck) >= fs->super->s_checkinterval)) |
Theodore Ts'o | 6de289c | 2003-11-21 10:54:54 -0500 | [diff] [blame] | 442 | next_check = 1; |
| 443 | if (next_check <= 5) { |
Theodore Ts'o | bc3392c | 2006-01-29 05:05:31 -0500 | [diff] [blame] | 444 | if (next_check == 1) { |
Theodore Ts'o | efc6f62 | 2008-08-27 23:07:54 -0400 | [diff] [blame] | 445 | if (batt) |
JP Abgrall | e0ed740 | 2014-03-19 19:08:39 -0700 | [diff] [blame] | 446 | log_out(ctx, "%s", |
| 447 | _(" (check deferred; on battery)")); |
Theodore Ts'o | bc3392c | 2006-01-29 05:05:31 -0500 | [diff] [blame] | 448 | else |
JP Abgrall | e0ed740 | 2014-03-19 19:08:39 -0700 | [diff] [blame] | 449 | log_out(ctx, "%s", |
| 450 | _(" (check after next mount)")); |
Theodore Ts'o | bc3392c | 2006-01-29 05:05:31 -0500 | [diff] [blame] | 451 | } else |
JP Abgrall | e0ed740 | 2014-03-19 19:08:39 -0700 | [diff] [blame] | 452 | log_out(ctx, _(" (check in %ld mounts)"), |
| 453 | next_check); |
Theodore Ts'o | 6de289c | 2003-11-21 10:54:54 -0500 | [diff] [blame] | 454 | } |
JP Abgrall | e0ed740 | 2014-03-19 19:08:39 -0700 | [diff] [blame] | 455 | log_out(ctx, "\n"); |
Bernd Schubert | 71873b1 | 2010-11-13 00:09:07 +0100 | [diff] [blame] | 456 | skip: |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 457 | ext2fs_close(fs); |
Theodore Ts'o | 6d222f3 | 2001-07-29 12:06:58 -0400 | [diff] [blame] | 458 | ctx->fs = NULL; |
| 459 | e2fsck_free_context(ctx); |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 460 | exit(FSCK_OK); |
| 461 | } |
| 462 | |
Theodore Ts'o | efac9a1 | 1998-05-07 05:02:00 +0000 | [diff] [blame] | 463 | /* |
| 464 | * For completion notice |
| 465 | */ |
Theodore Ts'o | 5596def | 1999-07-19 15:27:37 +0000 | [diff] [blame] | 466 | struct percent_tbl { |
| 467 | int max_pass; |
| 468 | int table[32]; |
| 469 | }; |
JP Abgrall | e0ed740 | 2014-03-19 19:08:39 -0700 | [diff] [blame] | 470 | static struct percent_tbl e2fsck_tbl = { |
Theodore Ts'o | 5596def | 1999-07-19 15:27:37 +0000 | [diff] [blame] | 471 | 5, { 0, 70, 90, 92, 95, 100 } |
| 472 | }; |
Theodore Ts'o | 54a31a3 | 2003-08-19 10:08:34 -0400 | [diff] [blame] | 473 | static char bar[128], spaces[128]; |
Theodore Ts'o | 5596def | 1999-07-19 15:27:37 +0000 | [diff] [blame] | 474 | |
| 475 | static float calc_percent(struct percent_tbl *tbl, int pass, int curr, |
| 476 | int max) |
| 477 | { |
| 478 | float percent; |
Theodore Ts'o | efc6f62 | 2008-08-27 23:07:54 -0400 | [diff] [blame] | 479 | |
Theodore Ts'o | 5596def | 1999-07-19 15:27:37 +0000 | [diff] [blame] | 480 | if (pass <= 0) |
| 481 | return 0.0; |
Theodore Ts'o | b8d164c | 2000-08-08 03:17:04 +0000 | [diff] [blame] | 482 | if (pass > tbl->max_pass || max == 0) |
Theodore Ts'o | 5596def | 1999-07-19 15:27:37 +0000 | [diff] [blame] | 483 | return 100.0; |
| 484 | percent = ((float) curr) / ((float) max); |
| 485 | return ((percent * (tbl->table[pass] - tbl->table[pass-1])) |
| 486 | + tbl->table[pass-1]); |
| 487 | } |
| 488 | |
JP Abgrall | e0ed740 | 2014-03-19 19:08:39 -0700 | [diff] [blame] | 489 | void e2fsck_clear_progbar(e2fsck_t ctx) |
Theodore Ts'o | 5596def | 1999-07-19 15:27:37 +0000 | [diff] [blame] | 490 | { |
| 491 | if (!(ctx->flags & E2F_FLAG_PROG_BAR)) |
| 492 | return; |
Theodore Ts'o | efc6f62 | 2008-08-27 23:07:54 -0400 | [diff] [blame] | 493 | |
Theodore Ts'o | 54a31a3 | 2003-08-19 10:08:34 -0400 | [diff] [blame] | 494 | printf("%s%s\r%s", ctx->start_meta, spaces + (sizeof(spaces) - 80), |
| 495 | ctx->stop_meta); |
Theodore Ts'o | bc34d6b | 2003-04-16 14:05:06 -0400 | [diff] [blame] | 496 | fflush(stdout); |
Theodore Ts'o | 5596def | 1999-07-19 15:27:37 +0000 | [diff] [blame] | 497 | ctx->flags &= ~E2F_FLAG_PROG_BAR; |
| 498 | } |
| 499 | |
Theodore Ts'o | 520ead3 | 2003-04-19 13:48:27 -0400 | [diff] [blame] | 500 | int e2fsck_simple_progress(e2fsck_t ctx, const char *label, float percent, |
Theodore Ts'o | b0700a1 | 2003-03-14 01:43:56 -0500 | [diff] [blame] | 501 | unsigned int dpynum) |
| 502 | { |
| 503 | static const char spinner[] = "\\|/-"; |
Theodore Ts'o | b0700a1 | 2003-03-14 01:43:56 -0500 | [diff] [blame] | 504 | int i; |
Theodore Ts'o | 5443492 | 2003-12-07 01:28:50 -0500 | [diff] [blame] | 505 | unsigned int tick; |
Theodore Ts'o | b0700a1 | 2003-03-14 01:43:56 -0500 | [diff] [blame] | 506 | struct timeval tv; |
| 507 | int dpywidth; |
Theodore Ts'o | 9214dcc | 2005-01-19 13:57:40 -0500 | [diff] [blame] | 508 | int fixed_percent; |
Theodore Ts'o | b0700a1 | 2003-03-14 01:43:56 -0500 | [diff] [blame] | 509 | |
| 510 | if (ctx->flags & E2F_FLAG_PROG_SUPPRESS) |
| 511 | return 0; |
| 512 | |
| 513 | /* |
| 514 | * Calculate the new progress position. If the |
| 515 | * percentage hasn't changed, then we skip out right |
Theodore Ts'o | efc6f62 | 2008-08-27 23:07:54 -0400 | [diff] [blame] | 516 | * away. |
Theodore Ts'o | b0700a1 | 2003-03-14 01:43:56 -0500 | [diff] [blame] | 517 | */ |
Theodore Ts'o | 9214dcc | 2005-01-19 13:57:40 -0500 | [diff] [blame] | 518 | fixed_percent = (int) ((10 * percent) + 0.5); |
| 519 | if (ctx->progress_last_percent == fixed_percent) |
Theodore Ts'o | b0700a1 | 2003-03-14 01:43:56 -0500 | [diff] [blame] | 520 | return 0; |
Theodore Ts'o | 9214dcc | 2005-01-19 13:57:40 -0500 | [diff] [blame] | 521 | ctx->progress_last_percent = fixed_percent; |
Theodore Ts'o | b0700a1 | 2003-03-14 01:43:56 -0500 | [diff] [blame] | 522 | |
| 523 | /* |
| 524 | * If we've already updated the spinner once within |
| 525 | * the last 1/8th of a second, no point doing it |
| 526 | * again. |
| 527 | */ |
| 528 | gettimeofday(&tv, NULL); |
| 529 | tick = (tv.tv_sec << 3) + (tv.tv_usec / (1000000 / 8)); |
| 530 | if ((tick == ctx->progress_last_time) && |
Theodore Ts'o | 9214dcc | 2005-01-19 13:57:40 -0500 | [diff] [blame] | 531 | (fixed_percent != 0) && (fixed_percent != 1000)) |
Theodore Ts'o | b0700a1 | 2003-03-14 01:43:56 -0500 | [diff] [blame] | 532 | return 0; |
| 533 | ctx->progress_last_time = tick; |
| 534 | |
| 535 | /* |
| 536 | * Advance the spinner, and note that the progress bar |
| 537 | * will be on the screen |
| 538 | */ |
| 539 | ctx->progress_pos = (ctx->progress_pos+1) & 3; |
| 540 | ctx->flags |= E2F_FLAG_PROG_BAR; |
| 541 | |
| 542 | dpywidth = 66 - strlen(label); |
| 543 | dpywidth = 8 * (dpywidth / 8); |
| 544 | if (dpynum) |
| 545 | dpywidth -= 8; |
| 546 | |
| 547 | i = ((percent * dpywidth) + 50) / 100; |
Theodore Ts'o | 54a31a3 | 2003-08-19 10:08:34 -0400 | [diff] [blame] | 548 | printf("%s%s: |%s%s", ctx->start_meta, label, |
| 549 | bar + (sizeof(bar) - (i+1)), |
Theodore Ts'o | b0700a1 | 2003-03-14 01:43:56 -0500 | [diff] [blame] | 550 | spaces + (sizeof(spaces) - (dpywidth - i + 1))); |
Theodore Ts'o | 9214dcc | 2005-01-19 13:57:40 -0500 | [diff] [blame] | 551 | if (fixed_percent == 1000) |
Theodore Ts'o | b0700a1 | 2003-03-14 01:43:56 -0500 | [diff] [blame] | 552 | fputc('|', stdout); |
| 553 | else |
| 554 | fputc(spinner[ctx->progress_pos & 3], stdout); |
Theodore Ts'o | 9214dcc | 2005-01-19 13:57:40 -0500 | [diff] [blame] | 555 | printf(" %4.1f%% ", percent); |
Theodore Ts'o | b0700a1 | 2003-03-14 01:43:56 -0500 | [diff] [blame] | 556 | if (dpynum) |
Theodore Ts'o | 9214dcc | 2005-01-19 13:57:40 -0500 | [diff] [blame] | 557 | printf("%u\r", dpynum); |
Theodore Ts'o | b0700a1 | 2003-03-14 01:43:56 -0500 | [diff] [blame] | 558 | else |
Theodore Ts'o | 9214dcc | 2005-01-19 13:57:40 -0500 | [diff] [blame] | 559 | fputs(" \r", stdout); |
| 560 | fputs(ctx->stop_meta, stdout); |
Theodore Ts'o | efc6f62 | 2008-08-27 23:07:54 -0400 | [diff] [blame] | 561 | |
Theodore Ts'o | 9214dcc | 2005-01-19 13:57:40 -0500 | [diff] [blame] | 562 | if (fixed_percent == 1000) |
Theodore Ts'o | b0700a1 | 2003-03-14 01:43:56 -0500 | [diff] [blame] | 563 | e2fsck_clear_progbar(ctx); |
| 564 | fflush(stdout); |
| 565 | |
| 566 | return 0; |
| 567 | } |
| 568 | |
Theodore Ts'o | efac9a1 | 1998-05-07 05:02:00 +0000 | [diff] [blame] | 569 | static int e2fsck_update_progress(e2fsck_t ctx, int pass, |
| 570 | unsigned long cur, unsigned long max) |
| 571 | { |
Theodore Ts'o | 1dc506c | 2008-03-26 09:09:09 -0400 | [diff] [blame] | 572 | char buf[1024]; |
Theodore Ts'o | 5596def | 1999-07-19 15:27:37 +0000 | [diff] [blame] | 573 | float percent; |
Theodore Ts'o | f75c28d | 1998-08-01 04:18:06 +0000 | [diff] [blame] | 574 | |
| 575 | if (pass == 0) |
| 576 | return 0; |
Theodore Ts'o | efc6f62 | 2008-08-27 23:07:54 -0400 | [diff] [blame] | 577 | |
Theodore Ts'o | efac9a1 | 1998-05-07 05:02:00 +0000 | [diff] [blame] | 578 | if (ctx->progress_fd) { |
Theodore Ts'o | efc6f62 | 2008-08-27 23:07:54 -0400 | [diff] [blame] | 579 | snprintf(buf, sizeof(buf), "%d %lu %lu %s\n", |
Theodore Ts'o | 1dc506c | 2008-03-26 09:09:09 -0400 | [diff] [blame] | 580 | pass, cur, max, ctx->device_name); |
Theodore Ts'o | b0258cb | 2009-04-22 15:09:41 -0400 | [diff] [blame] | 581 | write_all(ctx->progress_fd, buf, strlen(buf)); |
Theodore Ts'o | efac9a1 | 1998-05-07 05:02:00 +0000 | [diff] [blame] | 582 | } else { |
Theodore Ts'o | e4c8e88 | 2000-07-05 23:54:46 +0000 | [diff] [blame] | 583 | percent = calc_percent(&e2fsck_tbl, pass, cur, max); |
Theodore Ts'o | b0700a1 | 2003-03-14 01:43:56 -0500 | [diff] [blame] | 584 | e2fsck_simple_progress(ctx, ctx->device_name, |
| 585 | percent, 0); |
Theodore Ts'o | efac9a1 | 1998-05-07 05:02:00 +0000 | [diff] [blame] | 586 | } |
| 587 | return 0; |
| 588 | } |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 589 | |
| 590 | #define PATH_SET "PATH=/sbin" |
| 591 | |
JP Abgrall | e0ed740 | 2014-03-19 19:08:39 -0700 | [diff] [blame] | 592 | /* |
| 593 | * Make sure 0,1,2 file descriptors are open, so that we don't open |
| 594 | * the filesystem using the same file descriptor as stdout or stderr. |
| 595 | */ |
Theodore Ts'o | 5ba23cb | 2001-01-11 19:15:02 +0000 | [diff] [blame] | 596 | static void reserve_stdio_fds(void) |
Theodore Ts'o | 24fc503 | 1998-08-26 15:23:31 +0000 | [diff] [blame] | 597 | { |
JP Abgrall | e0ed740 | 2014-03-19 19:08:39 -0700 | [diff] [blame] | 598 | int fd = 0; |
Theodore Ts'o | 24fc503 | 1998-08-26 15:23:31 +0000 | [diff] [blame] | 599 | |
JP Abgrall | e0ed740 | 2014-03-19 19:08:39 -0700 | [diff] [blame] | 600 | while (fd <= 2) { |
Theodore Ts'o | 24fc503 | 1998-08-26 15:23:31 +0000 | [diff] [blame] | 601 | fd = open("/dev/null", O_RDWR); |
Theodore Ts'o | 75d83be | 1999-05-18 03:16:36 +0000 | [diff] [blame] | 602 | if (fd < 0) { |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 603 | fprintf(stderr, _("ERROR: Couldn't open " |
| 604 | "/dev/null (%s)\n"), |
Theodore Ts'o | 75d83be | 1999-05-18 03:16:36 +0000 | [diff] [blame] | 605 | strerror(errno)); |
| 606 | break; |
| 607 | } |
Theodore Ts'o | 24fc503 | 1998-08-26 15:23:31 +0000 | [diff] [blame] | 608 | } |
Theodore Ts'o | 24fc503 | 1998-08-26 15:23:31 +0000 | [diff] [blame] | 609 | } |
| 610 | |
Theodore Ts'o | 9ecd8be | 1999-10-20 18:24:31 +0000 | [diff] [blame] | 611 | #ifdef HAVE_SIGNAL_H |
Theodore Ts'o | 5443492 | 2003-12-07 01:28:50 -0500 | [diff] [blame] | 612 | static void signal_progress_on(int sig EXT2FS_ATTR((unused))) |
Theodore Ts'o | 5596def | 1999-07-19 15:27:37 +0000 | [diff] [blame] | 613 | { |
Theodore Ts'o | 243dc31 | 2000-08-22 21:37:47 +0000 | [diff] [blame] | 614 | e2fsck_t ctx = e2fsck_global_ctx; |
Theodore Ts'o | 5596def | 1999-07-19 15:27:37 +0000 | [diff] [blame] | 615 | |
| 616 | if (!ctx) |
| 617 | return; |
| 618 | |
| 619 | ctx->progress = e2fsck_update_progress; |
Theodore Ts'o | 5596def | 1999-07-19 15:27:37 +0000 | [diff] [blame] | 620 | } |
| 621 | |
Theodore Ts'o | 5443492 | 2003-12-07 01:28:50 -0500 | [diff] [blame] | 622 | static void signal_progress_off(int sig EXT2FS_ATTR((unused))) |
Theodore Ts'o | 5596def | 1999-07-19 15:27:37 +0000 | [diff] [blame] | 623 | { |
Theodore Ts'o | 243dc31 | 2000-08-22 21:37:47 +0000 | [diff] [blame] | 624 | e2fsck_t ctx = e2fsck_global_ctx; |
Theodore Ts'o | 5596def | 1999-07-19 15:27:37 +0000 | [diff] [blame] | 625 | |
| 626 | if (!ctx) |
| 627 | return; |
| 628 | |
| 629 | e2fsck_clear_progbar(ctx); |
| 630 | ctx->progress = 0; |
| 631 | } |
Theodore Ts'o | 4cae045 | 2002-07-21 14:14:03 -0400 | [diff] [blame] | 632 | |
Theodore Ts'o | 5443492 | 2003-12-07 01:28:50 -0500 | [diff] [blame] | 633 | static void signal_cancel(int sig EXT2FS_ATTR((unused))) |
Theodore Ts'o | 4cae045 | 2002-07-21 14:14:03 -0400 | [diff] [blame] | 634 | { |
| 635 | e2fsck_t ctx = e2fsck_global_ctx; |
| 636 | |
| 637 | if (!ctx) |
| 638 | exit(FSCK_CANCELED); |
| 639 | |
| 640 | ctx->flags |= E2F_FLAG_CANCEL; |
| 641 | } |
Theodore Ts'o | 9ecd8be | 1999-10-20 18:24:31 +0000 | [diff] [blame] | 642 | #endif |
Theodore Ts'o | 5596def | 1999-07-19 15:27:37 +0000 | [diff] [blame] | 643 | |
Theodore Ts'o | 0684a4f | 2002-08-17 10:19:44 -0400 | [diff] [blame] | 644 | static void parse_extended_opts(e2fsck_t ctx, const char *opts) |
| 645 | { |
| 646 | char *buf, *token, *next, *p, *arg; |
Theodore Ts'o | f364093 | 2003-03-01 19:47:44 -0500 | [diff] [blame] | 647 | int ea_ver; |
Theodore Ts'o | 0684a4f | 2002-08-17 10:19:44 -0400 | [diff] [blame] | 648 | int extended_usage = 0; |
| 649 | |
Theodore Ts'o | f364093 | 2003-03-01 19:47:44 -0500 | [diff] [blame] | 650 | buf = string_copy(ctx, opts, 0); |
Theodore Ts'o | 0684a4f | 2002-08-17 10:19:44 -0400 | [diff] [blame] | 651 | for (token = buf; token && *token; token = next) { |
| 652 | p = strchr(token, ','); |
| 653 | next = 0; |
| 654 | if (p) { |
| 655 | *p = 0; |
| 656 | next = p+1; |
Brian Behlendorf | cae542c | 2007-03-28 11:28:24 -0400 | [diff] [blame] | 657 | } |
Theodore Ts'o | 0684a4f | 2002-08-17 10:19:44 -0400 | [diff] [blame] | 658 | arg = strchr(token, '='); |
| 659 | if (arg) { |
| 660 | *arg = 0; |
| 661 | arg++; |
| 662 | } |
| 663 | if (strcmp(token, "ea_ver") == 0) { |
| 664 | if (!arg) { |
| 665 | extended_usage++; |
| 666 | continue; |
| 667 | } |
| 668 | ea_ver = strtoul(arg, &p, 0); |
| 669 | if (*p || |
| 670 | ((ea_ver != 1) && (ea_ver != 2))) { |
JP Abgrall | e0ed740 | 2014-03-19 19:08:39 -0700 | [diff] [blame] | 671 | fprintf(stderr, "%s", |
Theodore Ts'o | 0684a4f | 2002-08-17 10:19:44 -0400 | [diff] [blame] | 672 | _("Invalid EA version.\n")); |
| 673 | extended_usage++; |
| 674 | continue; |
| 675 | } |
| 676 | ctx->ext_attr_ver = ea_ver; |
Theodore Ts'o | 63b5e35 | 2008-08-10 22:43:24 -0400 | [diff] [blame] | 677 | } else if (strcmp(token, "fragcheck") == 0) { |
| 678 | ctx->options |= E2F_OPT_FRAGCHECK; |
| 679 | continue; |
Bernd Schubert | 71873b1 | 2010-11-13 00:09:07 +0100 | [diff] [blame] | 680 | } else if (strcmp(token, "journal_only") == 0) { |
| 681 | if (arg) { |
| 682 | extended_usage++; |
| 683 | continue; |
| 684 | } |
| 685 | ctx->options |= E2F_OPT_JOURNAL_ONLY; |
JP Abgrall | e0ed740 | 2014-03-19 19:08:39 -0700 | [diff] [blame] | 686 | } else if (strcmp(token, "discard") == 0) { |
| 687 | ctx->options |= E2F_OPT_DISCARD; |
| 688 | continue; |
| 689 | } else if (strcmp(token, "nodiscard") == 0) { |
| 690 | ctx->options &= ~E2F_OPT_DISCARD; |
| 691 | continue; |
| 692 | } else if (strcmp(token, "log_filename") == 0) { |
| 693 | if (!arg) |
| 694 | extended_usage++; |
| 695 | else |
| 696 | ctx->log_fn = string_copy(ctx, arg, 0); |
| 697 | continue; |
Theodore Ts'o | bb145b0 | 2005-06-20 08:35:27 -0400 | [diff] [blame] | 698 | } else { |
| 699 | fprintf(stderr, _("Unknown extended option: %s\n"), |
| 700 | token); |
Theodore Ts'o | 0684a4f | 2002-08-17 10:19:44 -0400 | [diff] [blame] | 701 | extended_usage++; |
Theodore Ts'o | bb145b0 | 2005-06-20 08:35:27 -0400 | [diff] [blame] | 702 | } |
Theodore Ts'o | 0684a4f | 2002-08-17 10:19:44 -0400 | [diff] [blame] | 703 | } |
Brian Behlendorf | cae542c | 2007-03-28 11:28:24 -0400 | [diff] [blame] | 704 | free(buf); |
| 705 | |
Theodore Ts'o | 0684a4f | 2002-08-17 10:19:44 -0400 | [diff] [blame] | 706 | if (extended_usage) { |
Theodore Ts'o | bb145b0 | 2005-06-20 08:35:27 -0400 | [diff] [blame] | 707 | fputs(("\nExtended options are separated by commas, " |
| 708 | "and may take an argument which\n" |
| 709 | "is set off by an equals ('=') sign. " |
Theodore Ts'o | 63b5e35 | 2008-08-10 22:43:24 -0400 | [diff] [blame] | 710 | "Valid extended options are:\n"), stderr); |
| 711 | fputs(("\tea_ver=<ea_version (1 or 2)>\n"), stderr); |
| 712 | fputs(("\tfragcheck\n"), stderr); |
Bernd Schubert | 71873b1 | 2010-11-13 00:09:07 +0100 | [diff] [blame] | 713 | fputs(("\tjournal_only\n"), stderr); |
JP Abgrall | e0ed740 | 2014-03-19 19:08:39 -0700 | [diff] [blame] | 714 | fputs(("\tdiscard\n"), stderr); |
| 715 | fputs(("\tnodiscard\n"), stderr); |
Theodore Ts'o | 63b5e35 | 2008-08-10 22:43:24 -0400 | [diff] [blame] | 716 | fputc('\n', stderr); |
Theodore Ts'o | 0684a4f | 2002-08-17 10:19:44 -0400 | [diff] [blame] | 717 | exit(1); |
| 718 | } |
Brian Behlendorf | cae542c | 2007-03-28 11:28:24 -0400 | [diff] [blame] | 719 | } |
Theodore Ts'o | 0684a4f | 2002-08-17 10:19:44 -0400 | [diff] [blame] | 720 | |
Theodore Ts'o | f5f14fc | 2006-01-04 10:32:16 -0500 | [diff] [blame] | 721 | static void syntax_err_report(const char *filename, long err, int line_num) |
| 722 | { |
Theodore Ts'o | efc6f62 | 2008-08-27 23:07:54 -0400 | [diff] [blame] | 723 | fprintf(stderr, |
Theodore Ts'o | f5f14fc | 2006-01-04 10:32:16 -0500 | [diff] [blame] | 724 | _("Syntax error in e2fsck config file (%s, line #%d)\n\t%s\n"), |
| 725 | filename, line_num, error_message(err)); |
| 726 | exit(FSCK_ERROR); |
| 727 | } |
| 728 | |
Matthias Andree | abcfdfd | 2006-06-10 16:08:18 +0200 | [diff] [blame] | 729 | static const char *config_fn[] = { ROOT_SYSCONFDIR "/e2fsck.conf", 0 }; |
Theodore Ts'o | 0684a4f | 2002-08-17 10:19:44 -0400 | [diff] [blame] | 730 | |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 731 | static errcode_t PRS(int argc, char *argv[], e2fsck_t *ret_ctx) |
| 732 | { |
| 733 | int flush = 0; |
Theodore Ts'o | ae8160e | 2001-05-01 21:13:37 +0000 | [diff] [blame] | 734 | int c, fd; |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 735 | #ifdef MTRACE |
| 736 | extern void *mallwatch; |
| 737 | #endif |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 738 | e2fsck_t ctx; |
| 739 | errcode_t retval; |
Theodore Ts'o | 9ecd8be | 1999-10-20 18:24:31 +0000 | [diff] [blame] | 740 | #ifdef HAVE_SIGNAL_H |
Theodore Ts'o | 5596def | 1999-07-19 15:27:37 +0000 | [diff] [blame] | 741 | struct sigaction sa; |
Theodore Ts'o | 9ecd8be | 1999-10-20 18:24:31 +0000 | [diff] [blame] | 742 | #endif |
Theodore Ts'o | 0684a4f | 2002-08-17 10:19:44 -0400 | [diff] [blame] | 743 | char *extended_opts = 0; |
Theodore Ts'o | 5dd2a6e | 2005-12-31 16:21:00 -0500 | [diff] [blame] | 744 | char *cp; |
Theodore Ts'o | 5845caa | 2007-08-20 22:55:33 -0400 | [diff] [blame] | 745 | int res; /* result of sscanf */ |
| 746 | #ifdef CONFIG_JBD_DEBUG |
| 747 | char *jbd_debug; |
| 748 | #endif |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 749 | |
| 750 | retval = e2fsck_allocate_context(&ctx); |
| 751 | if (retval) |
| 752 | return retval; |
| 753 | |
| 754 | *ret_ctx = ctx; |
| 755 | |
Theodore Ts'o | 908b785 | 2003-04-16 15:20:13 -0400 | [diff] [blame] | 756 | setvbuf(stdout, NULL, _IONBF, BUFSIZ); |
| 757 | setvbuf(stderr, NULL, _IONBF, BUFSIZ); |
Theodore Ts'o | 54a31a3 | 2003-08-19 10:08:34 -0400 | [diff] [blame] | 758 | if (isatty(0) && isatty(1)) { |
| 759 | ctx->interactive = 1; |
| 760 | } else { |
| 761 | ctx->start_meta[0] = '\001'; |
| 762 | ctx->stop_meta[0] = '\002'; |
| 763 | } |
| 764 | memset(bar, '=', sizeof(bar)-1); |
| 765 | memset(spaces, ' ', sizeof(spaces)-1); |
Theodore Ts'o | a6d8302 | 2006-12-26 03:38:07 -0500 | [diff] [blame] | 766 | add_error_table(&et_ext2_error_table); |
| 767 | add_error_table(&et_prof_error_table); |
Theodore Ts'o | f364093 | 2003-03-01 19:47:44 -0500 | [diff] [blame] | 768 | blkid_get_cache(&ctx->blkid, NULL); |
Theodore Ts'o | efc6f62 | 2008-08-27 23:07:54 -0400 | [diff] [blame] | 769 | |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 770 | if (argc && *argv) |
| 771 | ctx->program_name = *argv; |
| 772 | else |
| 773 | ctx->program_name = "e2fsck"; |
JP Abgrall | e0ed740 | 2014-03-19 19:08:39 -0700 | [diff] [blame] | 774 | |
Theodore Ts'o | 4fb9d52 | 2004-02-24 00:16:09 -0500 | [diff] [blame] | 775 | while ((c = getopt (argc, argv, "panyrcC:B:dE:fvtFVM:b:I:j:P:l:L:N:SsDk")) != EOF) |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 776 | switch (c) { |
Theodore Ts'o | efac9a1 | 1998-05-07 05:02:00 +0000 | [diff] [blame] | 777 | case 'C': |
| 778 | ctx->progress = e2fsck_update_progress; |
Theodore Ts'o | 5845caa | 2007-08-20 22:55:33 -0400 | [diff] [blame] | 779 | res = sscanf(optarg, "%d", &ctx->progress_fd); |
| 780 | if (res != 1) |
| 781 | goto sscanf_err; |
| 782 | |
Theodore Ts'o | be62523 | 2008-03-26 08:26:01 -0400 | [diff] [blame] | 783 | if (ctx->progress_fd < 0) { |
| 784 | ctx->progress = 0; |
| 785 | ctx->progress_fd = ctx->progress_fd * -1; |
| 786 | } |
Theodore Ts'o | fc9a69c | 2001-05-12 13:43:46 +0000 | [diff] [blame] | 787 | if (!ctx->progress_fd) |
| 788 | break; |
Theodore Ts'o | ae8160e | 2001-05-01 21:13:37 +0000 | [diff] [blame] | 789 | /* Validate the file descriptor to avoid disasters */ |
| 790 | fd = dup(ctx->progress_fd); |
| 791 | if (fd < 0) { |
| 792 | fprintf(stderr, |
| 793 | _("Error validating file descriptor %d: %s\n"), |
| 794 | ctx->progress_fd, |
| 795 | error_message(errno)); |
| 796 | fatal_error(ctx, |
| 797 | _("Invalid completion information file descriptor")); |
| 798 | } else |
| 799 | close(fd); |
Theodore Ts'o | efac9a1 | 1998-05-07 05:02:00 +0000 | [diff] [blame] | 800 | break; |
Theodore Ts'o | 850d05e | 2002-07-25 00:00:08 -0400 | [diff] [blame] | 801 | case 'D': |
| 802 | ctx->options |= E2F_OPT_COMPRESS_DIRS; |
| 803 | break; |
Theodore Ts'o | 0684a4f | 2002-08-17 10:19:44 -0400 | [diff] [blame] | 804 | case 'E': |
| 805 | extended_opts = optarg; |
| 806 | break; |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 807 | case 'p': |
| 808 | case 'a': |
Theodore Ts'o | 8161a74 | 2003-01-02 16:36:44 -0500 | [diff] [blame] | 809 | if (ctx->options & (E2F_OPT_YES|E2F_OPT_NO)) { |
| 810 | conflict_opt: |
Theodore Ts'o | efc6f62 | 2008-08-27 23:07:54 -0400 | [diff] [blame] | 811 | fatal_error(ctx, |
Theodore Ts'o | f4b6d2a | 2005-12-09 17:31:08 -0500 | [diff] [blame] | 812 | _("Only one of the options -p/-a, -n or -y may be specified.")); |
Theodore Ts'o | 8161a74 | 2003-01-02 16:36:44 -0500 | [diff] [blame] | 813 | } |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 814 | ctx->options |= E2F_OPT_PREEN; |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 815 | break; |
| 816 | case 'n': |
Theodore Ts'o | 8161a74 | 2003-01-02 16:36:44 -0500 | [diff] [blame] | 817 | if (ctx->options & (E2F_OPT_YES|E2F_OPT_PREEN)) |
| 818 | goto conflict_opt; |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 819 | ctx->options |= E2F_OPT_NO; |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 820 | break; |
| 821 | case 'y': |
Theodore Ts'o | 8161a74 | 2003-01-02 16:36:44 -0500 | [diff] [blame] | 822 | if (ctx->options & (E2F_OPT_PREEN|E2F_OPT_NO)) |
| 823 | goto conflict_opt; |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 824 | ctx->options |= E2F_OPT_YES; |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 825 | break; |
| 826 | case 't': |
Theodore Ts'o | 8bf191e | 1997-10-20 01:38:32 +0000 | [diff] [blame] | 827 | #ifdef RESOURCE_TRACK |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 828 | if (ctx->options & E2F_OPT_TIME) |
| 829 | ctx->options |= E2F_OPT_TIME2; |
| 830 | else |
| 831 | ctx->options |= E2F_OPT_TIME; |
Theodore Ts'o | 8bf191e | 1997-10-20 01:38:32 +0000 | [diff] [blame] | 832 | #else |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 833 | fprintf(stderr, _("The -t option is not " |
| 834 | "supported on this version of e2fsck.\n")); |
Theodore Ts'o | 8bf191e | 1997-10-20 01:38:32 +0000 | [diff] [blame] | 835 | #endif |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 836 | break; |
| 837 | case 'c': |
Theodore Ts'o | 3ed57c2 | 2001-12-24 15:01:59 -0500 | [diff] [blame] | 838 | if (cflag++) |
| 839 | ctx->options |= E2F_OPT_WRITECHECK; |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 840 | ctx->options |= E2F_OPT_CHECKBLOCKS; |
| 841 | break; |
| 842 | case 'r': |
| 843 | /* What we do by default, anyway! */ |
| 844 | break; |
| 845 | case 'b': |
JP Abgrall | e0ed740 | 2014-03-19 19:08:39 -0700 | [diff] [blame] | 846 | res = sscanf(optarg, "%llu", &ctx->use_superblock); |
Theodore Ts'o | 5845caa | 2007-08-20 22:55:33 -0400 | [diff] [blame] | 847 | if (res != 1) |
| 848 | goto sscanf_err; |
Theodore Ts'o | ae6cdcf | 2001-09-19 15:17:25 -0400 | [diff] [blame] | 849 | ctx->flags |= E2F_FLAG_SB_SPECIFIED; |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 850 | break; |
| 851 | case 'B': |
Theodore Ts'o | f1a1761 | 2001-12-23 22:27:52 -0500 | [diff] [blame] | 852 | ctx->blocksize = atoi(optarg); |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 853 | break; |
| 854 | case 'I': |
Theodore Ts'o | 5845caa | 2007-08-20 22:55:33 -0400 | [diff] [blame] | 855 | res = sscanf(optarg, "%d", &ctx->inode_buffer_blocks); |
| 856 | if (res != 1) |
| 857 | goto sscanf_err; |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 858 | break; |
Theodore Ts'o | adee8d7 | 2001-07-23 00:17:49 -0400 | [diff] [blame] | 859 | case 'j': |
Theodore Ts'o | b95ca92 | 2010-12-06 17:07:27 -0500 | [diff] [blame] | 860 | ctx->journal_name = blkid_get_devname(ctx->blkid, |
| 861 | optarg, NULL); |
| 862 | if (!ctx->journal_name) { |
| 863 | com_err(ctx->program_name, 0, |
| 864 | _("Unable to resolve '%s'"), |
| 865 | optarg); |
| 866 | fatal_error(ctx, 0); |
| 867 | } |
Theodore Ts'o | adee8d7 | 2001-07-23 00:17:49 -0400 | [diff] [blame] | 868 | break; |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 869 | case 'P': |
Theodore Ts'o | 5845caa | 2007-08-20 22:55:33 -0400 | [diff] [blame] | 870 | res = sscanf(optarg, "%d", &ctx->process_inode_size); |
| 871 | if (res != 1) |
| 872 | goto sscanf_err; |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 873 | break; |
| 874 | case 'L': |
| 875 | replace_bad_blocks++; |
| 876 | case 'l': |
JP Abgrall | e0ed740 | 2014-03-19 19:08:39 -0700 | [diff] [blame] | 877 | if (bad_blocks_file) |
| 878 | free(bad_blocks_file); |
Theodore Ts'o | f364093 | 2003-03-01 19:47:44 -0500 | [diff] [blame] | 879 | bad_blocks_file = string_copy(ctx, optarg, 0); |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 880 | break; |
| 881 | case 'd': |
| 882 | ctx->options |= E2F_OPT_DEBUG; |
| 883 | break; |
| 884 | case 'f': |
Theodore Ts'o | d37066a | 2001-12-21 23:28:54 -0500 | [diff] [blame] | 885 | ctx->options |= E2F_OPT_FORCE; |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 886 | break; |
| 887 | case 'F': |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 888 | flush = 1; |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 889 | break; |
| 890 | case 'v': |
| 891 | verbose = 1; |
| 892 | break; |
| 893 | case 'V': |
| 894 | show_version_only = 1; |
| 895 | break; |
| 896 | #ifdef MTRACE |
| 897 | case 'M': |
| 898 | mallwatch = (void *) strtol(optarg, NULL, 0); |
| 899 | break; |
| 900 | #endif |
| 901 | case 'N': |
Theodore Ts'o | a2447f8 | 2008-03-29 14:46:48 -0400 | [diff] [blame] | 902 | ctx->device_name = string_copy(ctx, optarg, 0); |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 903 | break; |
Theodore Ts'o | 4fb9d52 | 2004-02-24 00:16:09 -0500 | [diff] [blame] | 904 | case 'k': |
| 905 | keep_bad_blocks++; |
Theodore Ts'o | bc69f82 | 2004-02-27 10:39:27 -0500 | [diff] [blame] | 906 | break; |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 907 | default: |
| 908 | usage(ctx); |
| 909 | } |
| 910 | if (show_version_only) |
| 911 | return 0; |
| 912 | if (optind != argc - 1) |
| 913 | usage(ctx); |
Theodore Ts'o | 298c9c2 | 2010-03-12 19:18:20 -0500 | [diff] [blame] | 914 | if ((ctx->options & E2F_OPT_NO) && |
| 915 | (ctx->options & E2F_OPT_COMPRESS_DIRS)) { |
JP Abgrall | e0ed740 | 2014-03-19 19:08:39 -0700 | [diff] [blame] | 916 | com_err(ctx->program_name, 0, "%s", |
Theodore Ts'o | 298c9c2 | 2010-03-12 19:18:20 -0500 | [diff] [blame] | 917 | _("The -n and -D options are incompatible.")); |
| 918 | fatal_error(ctx, 0); |
| 919 | } |
| 920 | if ((ctx->options & E2F_OPT_NO) && cflag) { |
JP Abgrall | e0ed740 | 2014-03-19 19:08:39 -0700 | [diff] [blame] | 921 | com_err(ctx->program_name, 0, "%s", |
Theodore Ts'o | 298c9c2 | 2010-03-12 19:18:20 -0500 | [diff] [blame] | 922 | _("The -n and -c options are incompatible.")); |
| 923 | fatal_error(ctx, 0); |
| 924 | } |
| 925 | if ((ctx->options & E2F_OPT_NO) && bad_blocks_file) { |
JP Abgrall | e0ed740 | 2014-03-19 19:08:39 -0700 | [diff] [blame] | 926 | com_err(ctx->program_name, 0, "%s", |
Theodore Ts'o | 298c9c2 | 2010-03-12 19:18:20 -0500 | [diff] [blame] | 927 | _("The -n and -l/-L options are incompatible.")); |
| 928 | fatal_error(ctx, 0); |
| 929 | } |
| 930 | if (ctx->options & E2F_OPT_NO) |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 931 | ctx->options |= E2F_OPT_READONLY; |
Jose R. Santos | 49a7360 | 2007-10-21 21:04:03 -0500 | [diff] [blame] | 932 | |
Theodore Ts'o | 2e8ca9a | 2004-11-30 14:07:11 -0500 | [diff] [blame] | 933 | ctx->io_options = strchr(argv[optind], '?'); |
Theodore Ts'o | efc6f62 | 2008-08-27 23:07:54 -0400 | [diff] [blame] | 934 | if (ctx->io_options) |
Theodore Ts'o | 2e8ca9a | 2004-11-30 14:07:11 -0500 | [diff] [blame] | 935 | *ctx->io_options++ = 0; |
Theodore Ts'o | f364093 | 2003-03-01 19:47:44 -0500 | [diff] [blame] | 936 | ctx->filesystem_name = blkid_get_devname(ctx->blkid, argv[optind], 0); |
Theodore Ts'o | 817e49e | 2003-11-21 09:10:29 -0500 | [diff] [blame] | 937 | if (!ctx->filesystem_name) { |
Theodore Ts'o | efc6f62 | 2008-08-27 23:07:54 -0400 | [diff] [blame] | 938 | com_err(ctx->program_name, 0, _("Unable to resolve '%s'"), |
Theodore Ts'o | 817e49e | 2003-11-21 09:10:29 -0500 | [diff] [blame] | 939 | argv[optind]); |
| 940 | fatal_error(ctx, 0); |
| 941 | } |
Theodore Ts'o | 0684a4f | 2002-08-17 10:19:44 -0400 | [diff] [blame] | 942 | if (extended_opts) |
| 943 | parse_extended_opts(ctx, extended_opts); |
Theodore Ts'o | 1017f65 | 2005-12-31 00:00:10 -0500 | [diff] [blame] | 944 | |
Theodore Ts'o | 5dd2a6e | 2005-12-31 16:21:00 -0500 | [diff] [blame] | 945 | if ((cp = getenv("E2FSCK_CONFIG")) != NULL) |
| 946 | config_fn[0] = cp; |
Theodore Ts'o | f5f14fc | 2006-01-04 10:32:16 -0500 | [diff] [blame] | 947 | profile_set_syntax_err_cb(syntax_err_report); |
Theodore Ts'o | 1017f65 | 2005-12-31 00:00:10 -0500 | [diff] [blame] | 948 | profile_init(config_fn, &ctx->profile); |
| 949 | |
JP Abgrall | e0ed740 | 2014-03-19 19:08:39 -0700 | [diff] [blame] | 950 | profile_get_boolean(ctx->profile, "options", "report_time", 0, 0, |
| 951 | &c); |
| 952 | if (c) |
| 953 | ctx->options |= E2F_OPT_TIME | E2F_OPT_TIME2; |
| 954 | profile_get_boolean(ctx->profile, "options", "report_verbose", 0, 0, |
| 955 | &c); |
| 956 | if (c) |
| 957 | verbose = 1; |
| 958 | |
| 959 | /* Turn off discard in read-only mode */ |
| 960 | if ((ctx->options & E2F_OPT_NO) && |
| 961 | (ctx->options & E2F_OPT_DISCARD)) |
| 962 | ctx->options &= ~E2F_OPT_DISCARD; |
| 963 | |
Theodore Ts'o | 28ffafb | 2000-02-08 19:14:02 +0000 | [diff] [blame] | 964 | if (flush) { |
Theodore Ts'o | 4ea7bd0 | 2001-12-16 23:23:37 -0500 | [diff] [blame] | 965 | fd = open(ctx->filesystem_name, O_RDONLY, 0); |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 966 | if (fd < 0) { |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 967 | com_err("open", errno, |
| 968 | _("while opening %s for flushing"), |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 969 | ctx->filesystem_name); |
Theodore Ts'o | 243dc31 | 2000-08-22 21:37:47 +0000 | [diff] [blame] | 970 | fatal_error(ctx, 0); |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 971 | } |
Theodore Ts'o | 5df55d7 | 2001-06-11 07:00:04 +0000 | [diff] [blame] | 972 | if ((retval = ext2fs_sync_device(fd, 1))) { |
Theodore Ts'o | 5ba23cb | 2001-01-11 19:15:02 +0000 | [diff] [blame] | 973 | com_err("ext2fs_sync_device", retval, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 974 | _("while trying to flush %s"), |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 975 | ctx->filesystem_name); |
Theodore Ts'o | 243dc31 | 2000-08-22 21:37:47 +0000 | [diff] [blame] | 976 | fatal_error(ctx, 0); |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 977 | } |
| 978 | close(fd); |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 979 | } |
Theodore Ts'o | 3ed57c2 | 2001-12-24 15:01:59 -0500 | [diff] [blame] | 980 | if (cflag && bad_blocks_file) { |
JP Abgrall | e0ed740 | 2014-03-19 19:08:39 -0700 | [diff] [blame] | 981 | fprintf(stderr, "%s", _("The -c and the -l/-L options may not " |
| 982 | "be both used at the same time.\n")); |
Theodore Ts'o | 3ed57c2 | 2001-12-24 15:01:59 -0500 | [diff] [blame] | 983 | exit(FSCK_USAGE); |
| 984 | } |
Theodore Ts'o | 9ecd8be | 1999-10-20 18:24:31 +0000 | [diff] [blame] | 985 | #ifdef HAVE_SIGNAL_H |
Theodore Ts'o | 5596def | 1999-07-19 15:27:37 +0000 | [diff] [blame] | 986 | /* |
| 987 | * Set up signal action |
| 988 | */ |
| 989 | memset(&sa, 0, sizeof(struct sigaction)); |
Theodore Ts'o | 850d05e | 2002-07-25 00:00:08 -0400 | [diff] [blame] | 990 | sa.sa_handler = signal_cancel; |
| 991 | sigaction(SIGINT, &sa, 0); |
| 992 | sigaction(SIGTERM, &sa, 0); |
Theodore Ts'o | 5596def | 1999-07-19 15:27:37 +0000 | [diff] [blame] | 993 | #ifdef SA_RESTART |
| 994 | sa.sa_flags = SA_RESTART; |
| 995 | #endif |
Theodore Ts'o | 243dc31 | 2000-08-22 21:37:47 +0000 | [diff] [blame] | 996 | e2fsck_global_ctx = ctx; |
Theodore Ts'o | 5596def | 1999-07-19 15:27:37 +0000 | [diff] [blame] | 997 | sa.sa_handler = signal_progress_on; |
| 998 | sigaction(SIGUSR1, &sa, 0); |
| 999 | sa.sa_handler = signal_progress_off; |
| 1000 | sigaction(SIGUSR2, &sa, 0); |
Theodore Ts'o | 9ecd8be | 1999-10-20 18:24:31 +0000 | [diff] [blame] | 1001 | #endif |
Theodore Ts'o | 6d222f3 | 2001-07-29 12:06:58 -0400 | [diff] [blame] | 1002 | |
| 1003 | /* Update our PATH to include /sbin if we need to run badblocks */ |
| 1004 | if (cflag) { |
| 1005 | char *oldpath = getenv("PATH"); |
Theodore Ts'o | 642935c | 2006-11-14 23:38:17 -0500 | [diff] [blame] | 1006 | char *newpath; |
| 1007 | int len = sizeof(PATH_SET) + 1; |
Theodore Ts'o | 6d222f3 | 2001-07-29 12:06:58 -0400 | [diff] [blame] | 1008 | |
Theodore Ts'o | 642935c | 2006-11-14 23:38:17 -0500 | [diff] [blame] | 1009 | if (oldpath) |
| 1010 | len += strlen(oldpath); |
| 1011 | |
| 1012 | newpath = malloc(len); |
| 1013 | if (!newpath) |
| 1014 | fatal_error(ctx, "Couldn't malloc() newpath"); |
| 1015 | strcpy(newpath, PATH_SET); |
| 1016 | |
| 1017 | if (oldpath) { |
| 1018 | strcat(newpath, ":"); |
| 1019 | strcat(newpath, oldpath); |
| 1020 | } |
| 1021 | putenv(newpath); |
Theodore Ts'o | 6d222f3 | 2001-07-29 12:06:58 -0400 | [diff] [blame] | 1022 | } |
Theodore Ts'o | 5e72cdb | 2002-11-08 15:35:13 -0500 | [diff] [blame] | 1023 | #ifdef CONFIG_JBD_DEBUG |
Theodore Ts'o | 5845caa | 2007-08-20 22:55:33 -0400 | [diff] [blame] | 1024 | jbd_debug = getenv("E2FSCK_JBD_DEBUG"); |
Theodore Ts'o | 414025e | 2008-01-31 14:22:24 -0500 | [diff] [blame] | 1025 | if (jbd_debug) { |
Theodore Ts'o | 5845caa | 2007-08-20 22:55:33 -0400 | [diff] [blame] | 1026 | res = sscanf(jbd_debug, "%d", &journal_enable_debug); |
| 1027 | if (res != 1) { |
| 1028 | fprintf(stderr, |
| 1029 | _("E2FSCK_JBD_DEBUG \"%s\" not an integer\n\n"), |
| 1030 | jbd_debug); |
| 1031 | exit (1); |
| 1032 | } |
Theodore Ts'o | 414025e | 2008-01-31 14:22:24 -0500 | [diff] [blame] | 1033 | } |
Theodore Ts'o | 5e72cdb | 2002-11-08 15:35:13 -0500 | [diff] [blame] | 1034 | #endif |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 1035 | return 0; |
Theodore Ts'o | 5845caa | 2007-08-20 22:55:33 -0400 | [diff] [blame] | 1036 | |
| 1037 | sscanf_err: |
| 1038 | fprintf(stderr, _("\nInvalid non-numeric argument to -%c (\"%s\")\n\n"), |
| 1039 | c, optarg); |
| 1040 | exit (1); |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 1041 | } |
| 1042 | |
Theodore Ts'o | 6066389 | 2009-05-28 23:40:18 -0400 | [diff] [blame] | 1043 | static errcode_t try_open_fs(e2fsck_t ctx, int flags, io_manager io_ptr, |
| 1044 | ext2_filsys *ret_fs) |
| 1045 | { |
| 1046 | errcode_t retval; |
| 1047 | |
| 1048 | *ret_fs = NULL; |
| 1049 | if (ctx->superblock && ctx->blocksize) { |
| 1050 | retval = ext2fs_open2(ctx->filesystem_name, ctx->io_options, |
| 1051 | flags, ctx->superblock, ctx->blocksize, |
| 1052 | io_ptr, ret_fs); |
| 1053 | } else if (ctx->superblock) { |
| 1054 | int blocksize; |
| 1055 | for (blocksize = EXT2_MIN_BLOCK_SIZE; |
| 1056 | blocksize <= EXT2_MAX_BLOCK_SIZE; blocksize *= 2) { |
| 1057 | if (*ret_fs) { |
| 1058 | ext2fs_free(*ret_fs); |
| 1059 | *ret_fs = NULL; |
| 1060 | } |
| 1061 | retval = ext2fs_open2(ctx->filesystem_name, |
| 1062 | ctx->io_options, flags, |
| 1063 | ctx->superblock, blocksize, |
| 1064 | io_ptr, ret_fs); |
| 1065 | if (!retval) |
| 1066 | break; |
| 1067 | } |
| 1068 | } else |
| 1069 | retval = ext2fs_open2(ctx->filesystem_name, ctx->io_options, |
| 1070 | flags, 0, 0, io_ptr, ret_fs); |
JP Abgrall | e0ed740 | 2014-03-19 19:08:39 -0700 | [diff] [blame] | 1071 | |
| 1072 | if (retval == 0) |
| 1073 | e2fsck_set_bitmap_type(*ret_fs, EXT2FS_BMAP64_RBTREE, |
| 1074 | "default", NULL); |
Theodore Ts'o | 6066389 | 2009-05-28 23:40:18 -0400 | [diff] [blame] | 1075 | return retval; |
| 1076 | } |
| 1077 | |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 1078 | static const char *my_ver_string = E2FSPROGS_VERSION; |
| 1079 | static const char *my_ver_date = E2FSPROGS_DATE; |
Jose R. Santos | 49a7360 | 2007-10-21 21:04:03 -0500 | [diff] [blame] | 1080 | |
JP Abgrall | e0ed740 | 2014-03-19 19:08:39 -0700 | [diff] [blame] | 1081 | static errcode_t e2fsck_check_mmp(ext2_filsys fs, e2fsck_t ctx) |
| 1082 | { |
| 1083 | struct mmp_struct *mmp_s; |
| 1084 | unsigned int mmp_check_interval; |
| 1085 | errcode_t retval = 0; |
| 1086 | struct problem_context pctx; |
| 1087 | unsigned int wait_time = 0; |
| 1088 | |
| 1089 | clear_problem_context(&pctx); |
| 1090 | if (fs->mmp_buf == NULL) { |
| 1091 | retval = ext2fs_get_mem(fs->blocksize, &fs->mmp_buf); |
| 1092 | if (retval) |
| 1093 | goto check_error; |
| 1094 | } |
| 1095 | |
| 1096 | retval = ext2fs_mmp_read(fs, fs->super->s_mmp_block, fs->mmp_buf); |
| 1097 | if (retval) |
| 1098 | goto check_error; |
| 1099 | |
| 1100 | mmp_s = fs->mmp_buf; |
| 1101 | |
| 1102 | mmp_check_interval = fs->super->s_mmp_update_interval; |
| 1103 | if (mmp_check_interval < EXT4_MMP_MIN_CHECK_INTERVAL) |
| 1104 | mmp_check_interval = EXT4_MMP_MIN_CHECK_INTERVAL; |
| 1105 | |
| 1106 | /* |
| 1107 | * If check_interval in MMP block is larger, use that instead of |
| 1108 | * check_interval from the superblock. |
| 1109 | */ |
| 1110 | if (mmp_s->mmp_check_interval > mmp_check_interval) |
| 1111 | mmp_check_interval = mmp_s->mmp_check_interval; |
| 1112 | |
| 1113 | wait_time = mmp_check_interval * 2 + 1; |
| 1114 | |
| 1115 | if (mmp_s->mmp_seq == EXT4_MMP_SEQ_CLEAN) |
| 1116 | retval = 0; |
| 1117 | else if (mmp_s->mmp_seq == EXT4_MMP_SEQ_FSCK) |
| 1118 | retval = EXT2_ET_MMP_FSCK_ON; |
| 1119 | else if (mmp_s->mmp_seq > EXT4_MMP_SEQ_MAX) |
| 1120 | retval = EXT2_ET_MMP_UNKNOWN_SEQ; |
| 1121 | |
| 1122 | if (retval) |
| 1123 | goto check_error; |
| 1124 | |
| 1125 | /* Print warning if e2fck will wait for more than 20 secs. */ |
| 1126 | if (verbose || wait_time > EXT4_MMP_MIN_CHECK_INTERVAL * 4) { |
| 1127 | log_out(ctx, _("MMP interval is %u seconds and total wait " |
| 1128 | "time is %u seconds. Please wait...\n"), |
| 1129 | mmp_check_interval, wait_time * 2); |
| 1130 | } |
| 1131 | |
| 1132 | return 0; |
| 1133 | |
| 1134 | check_error: |
| 1135 | |
| 1136 | if (retval == EXT2_ET_MMP_BAD_BLOCK) { |
| 1137 | if (fix_problem(ctx, PR_0_MMP_INVALID_BLK, &pctx)) { |
| 1138 | fs->super->s_mmp_block = 0; |
| 1139 | ext2fs_mark_super_dirty(fs); |
| 1140 | retval = 0; |
| 1141 | } |
| 1142 | } else if (retval == EXT2_ET_MMP_FAILED) { |
| 1143 | com_err(ctx->program_name, retval, "%s", |
| 1144 | _("while checking MMP block")); |
| 1145 | dump_mmp_msg(fs->mmp_buf, NULL); |
| 1146 | } else if (retval == EXT2_ET_MMP_FSCK_ON || |
| 1147 | retval == EXT2_ET_MMP_UNKNOWN_SEQ) { |
| 1148 | com_err(ctx->program_name, retval, "%s", |
| 1149 | _("while checking MMP block")); |
| 1150 | dump_mmp_msg(fs->mmp_buf, |
| 1151 | _("If you are sure the filesystem is not " |
| 1152 | "in use on any node, run:\n" |
| 1153 | "'tune2fs -f -E clear_mmp {device}'\n")); |
| 1154 | } else if (retval == EXT2_ET_MMP_MAGIC_INVALID) { |
| 1155 | if (fix_problem(ctx, PR_0_MMP_INVALID_MAGIC, &pctx)) { |
| 1156 | ext2fs_mmp_clear(fs); |
| 1157 | retval = 0; |
| 1158 | } |
| 1159 | } |
| 1160 | return retval; |
| 1161 | } |
| 1162 | |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 1163 | int main (int argc, char *argv[]) |
| 1164 | { |
Theodore Ts'o | 82b59ca | 2009-09-01 20:01:38 -0400 | [diff] [blame] | 1165 | errcode_t retval = 0, retval2 = 0, orig_retval = 0; |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 1166 | int exit_value = FSCK_OK; |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 1167 | ext2_filsys fs = 0; |
| 1168 | io_manager io_ptr; |
Theodore Ts'o | 5dd8f96 | 2001-01-01 15:51:50 +0000 | [diff] [blame] | 1169 | struct ext2_super_block *sb; |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 1170 | const char *lib_ver_date; |
| 1171 | int my_ver, lib_ver; |
| 1172 | e2fsck_t ctx; |
JP Abgrall | e0ed740 | 2014-03-19 19:08:39 -0700 | [diff] [blame] | 1173 | blk64_t orig_superblock; |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 1174 | struct problem_context pctx; |
Theodore Ts'o | 08b2130 | 1997-11-03 19:42:40 +0000 | [diff] [blame] | 1175 | int flags, run_result; |
Kalpak Shah | 5107d0d | 2007-06-21 11:59:06 -0400 | [diff] [blame] | 1176 | int journal_size; |
Theodore Ts'o | 9f0288d | 2007-08-03 20:43:37 -0400 | [diff] [blame] | 1177 | int sysval, sys_page_size = 4096; |
JP Abgrall | e0ed740 | 2014-03-19 19:08:39 -0700 | [diff] [blame] | 1178 | int old_bitmaps; |
Theodore Ts'o | dcc91e1 | 2008-02-26 20:59:56 -0500 | [diff] [blame] | 1179 | __u32 features[3]; |
Theodore Ts'o | 1dc506c | 2008-03-26 09:09:09 -0400 | [diff] [blame] | 1180 | char *cp; |
JP Abgrall | e0ed740 | 2014-03-19 19:08:39 -0700 | [diff] [blame] | 1181 | int qtype = -99; /* quota type */ |
Theodore Ts'o | efc6f62 | 2008-08-27 23:07:54 -0400 | [diff] [blame] | 1182 | |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 1183 | clear_problem_context(&pctx); |
JP Abgrall | e0ed740 | 2014-03-19 19:08:39 -0700 | [diff] [blame] | 1184 | sigcatcher_setup(); |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 1185 | #ifdef MTRACE |
| 1186 | mtrace(); |
| 1187 | #endif |
| 1188 | #ifdef MCHECK |
| 1189 | mcheck(0); |
| 1190 | #endif |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 1191 | #ifdef ENABLE_NLS |
| 1192 | setlocale(LC_MESSAGES, ""); |
Theodore Ts'o | 14308a5 | 2002-03-05 03:26:52 -0500 | [diff] [blame] | 1193 | setlocale(LC_CTYPE, ""); |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 1194 | bindtextdomain(NLS_CAT_NAME, LOCALEDIR); |
| 1195 | textdomain(NLS_CAT_NAME); |
JP Abgrall | e0ed740 | 2014-03-19 19:08:39 -0700 | [diff] [blame] | 1196 | set_com_err_gettext(gettext); |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 1197 | #endif |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 1198 | my_ver = ext2fs_parse_version_string(my_ver_string); |
| 1199 | lib_ver = ext2fs_get_library_version(0, &lib_ver_date); |
| 1200 | if (my_ver > lib_ver) { |
JP Abgrall | e0ed740 | 2014-03-19 19:08:39 -0700 | [diff] [blame] | 1201 | fprintf( stderr, "%s", |
| 1202 | _("Error: ext2fs library version out of date!\n")); |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 1203 | show_version_only++; |
| 1204 | } |
Theodore Ts'o | efc6f62 | 2008-08-27 23:07:54 -0400 | [diff] [blame] | 1205 | |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 1206 | retval = PRS(argc, argv, &ctx); |
| 1207 | if (retval) { |
JP Abgrall | e0ed740 | 2014-03-19 19:08:39 -0700 | [diff] [blame] | 1208 | com_err("e2fsck", retval, "%s", |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 1209 | _("while trying to initialize program")); |
Theodore Ts'o | 243dc31 | 2000-08-22 21:37:47 +0000 | [diff] [blame] | 1210 | exit(FSCK_ERROR); |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 1211 | } |
Theodore Ts'o | 24fc503 | 1998-08-26 15:23:31 +0000 | [diff] [blame] | 1212 | reserve_stdio_fds(); |
Theodore Ts'o | efc6f62 | 2008-08-27 23:07:54 -0400 | [diff] [blame] | 1213 | |
JP Abgrall | e0ed740 | 2014-03-19 19:08:39 -0700 | [diff] [blame] | 1214 | set_up_logging(ctx); |
| 1215 | if (ctx->logf) { |
| 1216 | int i; |
| 1217 | fputs("E2fsck run: ", ctx->logf); |
| 1218 | for (i = 0; i < argc; i++) { |
| 1219 | if (i) |
| 1220 | fputc(' ', ctx->logf); |
| 1221 | fputs(argv[i], ctx->logf); |
| 1222 | } |
| 1223 | fputc('\n', ctx->logf); |
| 1224 | } |
| 1225 | |
Theodore Ts'o | 6d96b00 | 2007-08-03 20:07:09 -0400 | [diff] [blame] | 1226 | init_resource_track(&ctx->global_rtrack, NULL); |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 1227 | if (!(ctx->options & E2F_OPT_PREEN) || show_version_only) |
JP Abgrall | e0ed740 | 2014-03-19 19:08:39 -0700 | [diff] [blame] | 1228 | log_err(ctx, "e2fsck %s (%s)\n", my_ver_string, |
Theodore Ts'o | 0f8973f | 2001-08-27 12:44:23 -0400 | [diff] [blame] | 1229 | my_ver_date); |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 1230 | |
| 1231 | if (show_version_only) { |
JP Abgrall | e0ed740 | 2014-03-19 19:08:39 -0700 | [diff] [blame] | 1232 | log_err(ctx, _("\tUsing %s, %s\n"), |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 1233 | error_message(EXT2_ET_BASE), lib_ver_date); |
Theodore Ts'o | 243dc31 | 2000-08-22 21:37:47 +0000 | [diff] [blame] | 1234 | exit(FSCK_OK); |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 1235 | } |
Theodore Ts'o | efc6f62 | 2008-08-27 23:07:54 -0400 | [diff] [blame] | 1236 | |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 1237 | check_mount(ctx); |
Theodore Ts'o | efc6f62 | 2008-08-27 23:07:54 -0400 | [diff] [blame] | 1238 | |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 1239 | if (!(ctx->options & E2F_OPT_PREEN) && |
| 1240 | !(ctx->options & E2F_OPT_NO) && |
| 1241 | !(ctx->options & E2F_OPT_YES)) { |
Theodore Ts'o | 54a31a3 | 2003-08-19 10:08:34 -0400 | [diff] [blame] | 1242 | if (!ctx->interactive) |
Theodore Ts'o | f8188ff | 1997-11-14 05:23:04 +0000 | [diff] [blame] | 1243 | fatal_error(ctx, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 1244 | _("need terminal for interactive repairs")); |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 1245 | } |
| 1246 | ctx->superblock = ctx->use_superblock; |
JP Abgrall | e0ed740 | 2014-03-19 19:08:39 -0700 | [diff] [blame] | 1247 | |
| 1248 | flags = EXT2_FLAG_SKIP_MMP; |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 1249 | restart: |
Theodore Ts'o | 2a29f13 | 2003-05-05 12:08:47 -0400 | [diff] [blame] | 1250 | #ifdef CONFIG_TESTIO_DEBUG |
Theodore Ts'o | f38cf3c | 2008-09-01 11:17:29 -0400 | [diff] [blame] | 1251 | if (getenv("TEST_IO_FLAGS") || getenv("TEST_IO_BLOCK")) { |
| 1252 | io_ptr = test_io_manager; |
| 1253 | test_io_backing_manager = unix_io_manager; |
| 1254 | } else |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 1255 | #endif |
Theodore Ts'o | f38cf3c | 2008-09-01 11:17:29 -0400 | [diff] [blame] | 1256 | io_ptr = unix_io_manager; |
JP Abgrall | e0ed740 | 2014-03-19 19:08:39 -0700 | [diff] [blame] | 1257 | flags |= EXT2_FLAG_NOFREE_ON_ERROR; |
| 1258 | profile_get_boolean(ctx->profile, "options", "old_bitmaps", 0, 0, |
| 1259 | &old_bitmaps); |
| 1260 | if (!old_bitmaps) |
| 1261 | flags |= EXT2_FLAG_64BITS; |
| 1262 | if ((ctx->options & E2F_OPT_READONLY) == 0) { |
Andreas Dilger | cd5bb7c | 2012-05-31 16:39:54 -0400 | [diff] [blame] | 1263 | flags |= EXT2_FLAG_RW; |
JP Abgrall | e0ed740 | 2014-03-19 19:08:39 -0700 | [diff] [blame] | 1264 | if (!(ctx->mount_flags & EXT2_MF_ISROOT && |
| 1265 | ctx->mount_flags & EXT2_MF_READONLY)) |
| 1266 | flags |= EXT2_FLAG_EXCLUSIVE; |
| 1267 | if ((ctx->mount_flags & EXT2_MF_READONLY) && |
| 1268 | (ctx->options & E2F_OPT_FORCE)) |
| 1269 | flags &= ~EXT2_FLAG_EXCLUSIVE; |
| 1270 | } |
Theodore Ts'o | 17390c0 | 2000-07-07 04:13:21 +0000 | [diff] [blame] | 1271 | |
Theodore Ts'o | 6066389 | 2009-05-28 23:40:18 -0400 | [diff] [blame] | 1272 | retval = try_open_fs(ctx, flags, io_ptr, &fs); |
| 1273 | |
Theodore Ts'o | ae6cdcf | 2001-09-19 15:17:25 -0400 | [diff] [blame] | 1274 | if (!ctx->superblock && !(ctx->options & E2F_OPT_PREEN) && |
| 1275 | !(ctx->flags & E2F_FLAG_SB_SPECIFIED) && |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 1276 | ((retval == EXT2_ET_BAD_MAGIC) || |
Theodore Ts'o | cd53808 | 2007-09-07 16:54:11 -0400 | [diff] [blame] | 1277 | (retval == EXT2_ET_CORRUPT_SUPERBLOCK) || |
Theodore Ts'o | 82b59ca | 2009-09-01 20:01:38 -0400 | [diff] [blame] | 1278 | ((retval == 0) && (retval2 = ext2fs_check_desc(fs))))) { |
JP Abgrall | e0ed740 | 2014-03-19 19:08:39 -0700 | [diff] [blame] | 1279 | if (retval) { |
| 1280 | pctx.errcode = retval; |
| 1281 | fix_problem(ctx, PR_0_OPEN_FAILED, &pctx); |
| 1282 | } |
| 1283 | if (retval2) { |
| 1284 | pctx.errcode = retval2; |
| 1285 | fix_problem(ctx, PR_0_CHECK_DESC_FAILED, &pctx); |
| 1286 | } |
| 1287 | pctx.errcode = 0; |
| 1288 | if (retval2 == ENOMEM || retval2 == EXT2_ET_NO_MEMORY) { |
Theodore Ts'o | 82b59ca | 2009-09-01 20:01:38 -0400 | [diff] [blame] | 1289 | retval = retval2; |
| 1290 | goto failure; |
| 1291 | } |
Theodore Ts'o | dcc91e1 | 2008-02-26 20:59:56 -0500 | [diff] [blame] | 1292 | if (fs->flags & EXT2_FLAG_NOFREE_ON_ERROR) { |
| 1293 | ext2fs_free(fs); |
| 1294 | fs = NULL; |
| 1295 | } |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 1296 | if (!fs || (fs->group_desc_count > 1)) { |
JP Abgrall | e0ed740 | 2014-03-19 19:08:39 -0700 | [diff] [blame] | 1297 | log_out(ctx, _("%s: %s trying backup blocks...\n"), |
| 1298 | ctx->program_name, |
| 1299 | retval ? _("Superblock invalid,") : |
| 1300 | _("Group descriptors look bad...")); |
Theodore Ts'o | 6066389 | 2009-05-28 23:40:18 -0400 | [diff] [blame] | 1301 | orig_superblock = ctx->superblock; |
Theodore Ts'o | f1a1761 | 2001-12-23 22:27:52 -0500 | [diff] [blame] | 1302 | get_backup_sb(ctx, fs, ctx->filesystem_name, io_ptr); |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 1303 | if (fs) |
| 1304 | ext2fs_close(fs); |
Theodore Ts'o | cd53808 | 2007-09-07 16:54:11 -0400 | [diff] [blame] | 1305 | orig_retval = retval; |
Theodore Ts'o | 6066389 | 2009-05-28 23:40:18 -0400 | [diff] [blame] | 1306 | retval = try_open_fs(ctx, flags, io_ptr, &fs); |
| 1307 | if ((orig_retval == 0) && retval != 0) { |
Theodore Ts'o | 22ff06d | 2010-07-05 15:06:37 -0400 | [diff] [blame] | 1308 | if (fs) |
| 1309 | ext2fs_close(fs); |
JP Abgrall | e0ed740 | 2014-03-19 19:08:39 -0700 | [diff] [blame] | 1310 | log_out(ctx, _("%s: %s while using the " |
| 1311 | "backup blocks"), |
| 1312 | ctx->program_name, |
| 1313 | error_message(retval)); |
| 1314 | log_out(ctx, _("%s: going back to original " |
| 1315 | "superblock\n"), |
| 1316 | ctx->program_name); |
Theodore Ts'o | 6066389 | 2009-05-28 23:40:18 -0400 | [diff] [blame] | 1317 | ctx->superblock = orig_superblock; |
| 1318 | retval = try_open_fs(ctx, flags, io_ptr, &fs); |
| 1319 | } |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 1320 | } |
| 1321 | } |
Theodore Ts'o | dcc91e1 | 2008-02-26 20:59:56 -0500 | [diff] [blame] | 1322 | if (((retval == EXT2_ET_UNSUPP_FEATURE) || |
| 1323 | (retval == EXT2_ET_RO_UNSUPP_FEATURE)) && |
| 1324 | fs && fs->super) { |
| 1325 | sb = fs->super; |
Theodore Ts'o | efc6f62 | 2008-08-27 23:07:54 -0400 | [diff] [blame] | 1326 | features[0] = (sb->s_feature_compat & |
Theodore Ts'o | dcc91e1 | 2008-02-26 20:59:56 -0500 | [diff] [blame] | 1327 | ~EXT2_LIB_FEATURE_COMPAT_SUPP); |
Theodore Ts'o | efc6f62 | 2008-08-27 23:07:54 -0400 | [diff] [blame] | 1328 | features[1] = (sb->s_feature_incompat & |
Theodore Ts'o | dcc91e1 | 2008-02-26 20:59:56 -0500 | [diff] [blame] | 1329 | ~EXT2_LIB_FEATURE_INCOMPAT_SUPP); |
Theodore Ts'o | efc6f62 | 2008-08-27 23:07:54 -0400 | [diff] [blame] | 1330 | features[2] = (sb->s_feature_ro_compat & |
Theodore Ts'o | dcc91e1 | 2008-02-26 20:59:56 -0500 | [diff] [blame] | 1331 | ~EXT2_LIB_FEATURE_RO_COMPAT_SUPP); |
| 1332 | if (features[0] || features[1] || features[2]) |
| 1333 | goto print_unsupp_features; |
| 1334 | } |
Theodore Ts'o | 82b59ca | 2009-09-01 20:01:38 -0400 | [diff] [blame] | 1335 | failure: |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 1336 | if (retval) { |
Theodore Ts'o | cd53808 | 2007-09-07 16:54:11 -0400 | [diff] [blame] | 1337 | if (orig_retval) |
| 1338 | retval = orig_retval; |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 1339 | com_err(ctx->program_name, retval, _("while trying to open %s"), |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 1340 | ctx->filesystem_name); |
Theodore Ts'o | 24dd402 | 1998-02-01 00:16:40 +0000 | [diff] [blame] | 1341 | if (retval == EXT2_ET_REV_TOO_HIGH) { |
JP Abgrall | e0ed740 | 2014-03-19 19:08:39 -0700 | [diff] [blame] | 1342 | log_out(ctx, "%s", |
| 1343 | _("The filesystem revision is apparently " |
| 1344 | "too high for this version of e2fsck.\n" |
| 1345 | "(Or the filesystem superblock " |
| 1346 | "is corrupt)\n\n")); |
Theodore Ts'o | 24dd402 | 1998-02-01 00:16:40 +0000 | [diff] [blame] | 1347 | fix_problem(ctx, PR_0_SB_CORRUPT, &pctx); |
| 1348 | } else if (retval == EXT2_ET_SHORT_READ) |
JP Abgrall | e0ed740 | 2014-03-19 19:08:39 -0700 | [diff] [blame] | 1349 | log_out(ctx, "%s", |
| 1350 | _("Could this be a zero-length partition?\n")); |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 1351 | else if ((retval == EPERM) || (retval == EACCES)) |
JP Abgrall | e0ed740 | 2014-03-19 19:08:39 -0700 | [diff] [blame] | 1352 | log_out(ctx, _("You must have %s access to the " |
| 1353 | "filesystem or be root\n"), |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 1354 | (ctx->options & E2F_OPT_READONLY) ? |
| 1355 | "r/o" : "r/w"); |
| 1356 | else if (retval == ENXIO) |
JP Abgrall | e0ed740 | 2014-03-19 19:08:39 -0700 | [diff] [blame] | 1357 | log_out(ctx, "%s", |
| 1358 | _("Possibly non-existent or swap device?\n")); |
Theodore Ts'o | 2e14e0c | 2006-03-18 20:01:09 -0500 | [diff] [blame] | 1359 | else if (retval == EBUSY) |
JP Abgrall | e0ed740 | 2014-03-19 19:08:39 -0700 | [diff] [blame] | 1360 | log_out(ctx, "%s", _("Filesystem mounted or opened " |
| 1361 | "exclusively by another program?\n")); |
Jan Kara | 32f66cc | 2010-09-08 16:12:08 +0200 | [diff] [blame] | 1362 | else if (retval == ENOENT) |
JP Abgrall | e0ed740 | 2014-03-19 19:08:39 -0700 | [diff] [blame] | 1363 | log_out(ctx, "%s", |
| 1364 | _("Possibly non-existent device?\n")); |
Theodore Ts'o | 6822754 | 1997-11-04 04:25:22 +0000 | [diff] [blame] | 1365 | #ifdef EROFS |
| 1366 | else if (retval == EROFS) |
JP Abgrall | e0ed740 | 2014-03-19 19:08:39 -0700 | [diff] [blame] | 1367 | log_out(ctx, "%s", _("Disk write-protected; use the " |
| 1368 | "-n option to do a read-only\n" |
| 1369 | "check of the device.\n")); |
Theodore Ts'o | 6822754 | 1997-11-04 04:25:22 +0000 | [diff] [blame] | 1370 | #endif |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 1371 | else |
| 1372 | fix_problem(ctx, PR_0_SB_CORRUPT, &pctx); |
Theodore Ts'o | 243dc31 | 2000-08-22 21:37:47 +0000 | [diff] [blame] | 1373 | fatal_error(ctx, 0); |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 1374 | } |
Theodore Ts'o | 058ad1c | 2007-06-18 18:26:50 -0400 | [diff] [blame] | 1375 | /* |
| 1376 | * We only update the master superblock because (a) paranoia; |
| 1377 | * we don't want to corrupt the backup superblocks, and (b) we |
| 1378 | * don't need to update the mount count and last checked |
| 1379 | * fields in the backup superblock (the kernel doesn't update |
| 1380 | * the backup superblocks anyway). With newer versions of the |
| 1381 | * library this flag is set by ext2fs_open2(), but we set this |
| 1382 | * here just to be sure. (No, we don't support e2fsck running |
| 1383 | * with some other libext2fs than the one that it was shipped |
| 1384 | * with, but just in case....) |
| 1385 | */ |
| 1386 | fs->flags |= EXT2_FLAG_MASTER_SB_ONLY; |
Theodore Ts'o | d2af1bd | 2007-06-04 01:14:52 -0400 | [diff] [blame] | 1387 | |
| 1388 | if (!(ctx->flags & E2F_FLAG_GOT_DEVSIZE)) { |
| 1389 | __u32 blocksize = EXT2_BLOCK_SIZE(fs->super); |
| 1390 | int need_restart = 0; |
| 1391 | |
Theodore Ts'o | 5911964 | 2010-03-14 19:26:48 -0400 | [diff] [blame] | 1392 | pctx.errcode = ext2fs_get_device_size2(ctx->filesystem_name, |
| 1393 | blocksize, |
| 1394 | &ctx->num_blocks); |
Theodore Ts'o | d2af1bd | 2007-06-04 01:14:52 -0400 | [diff] [blame] | 1395 | /* |
| 1396 | * The floppy driver refuses to allow anyone else to |
| 1397 | * open the device if has been opened with O_EXCL; |
| 1398 | * this is unlike other block device drivers in Linux. |
| 1399 | * To handle this, we close the filesystem and then |
| 1400 | * reopen the filesystem after we get the device size. |
| 1401 | */ |
| 1402 | if (pctx.errcode == EBUSY) { |
| 1403 | ext2fs_close(fs); |
| 1404 | need_restart++; |
Theodore Ts'o | efc6f62 | 2008-08-27 23:07:54 -0400 | [diff] [blame] | 1405 | pctx.errcode = |
Theodore Ts'o | 5911964 | 2010-03-14 19:26:48 -0400 | [diff] [blame] | 1406 | ext2fs_get_device_size2(ctx->filesystem_name, |
| 1407 | blocksize, |
| 1408 | &ctx->num_blocks); |
Theodore Ts'o | d2af1bd | 2007-06-04 01:14:52 -0400 | [diff] [blame] | 1409 | } |
| 1410 | if (pctx.errcode == EXT2_ET_UNIMPLEMENTED) |
| 1411 | ctx->num_blocks = 0; |
| 1412 | else if (pctx.errcode) { |
| 1413 | fix_problem(ctx, PR_0_GETSIZE_ERROR, &pctx); |
| 1414 | ctx->flags |= E2F_FLAG_ABORT; |
| 1415 | fatal_error(ctx, 0); |
Theodore Ts'o | d2af1bd | 2007-06-04 01:14:52 -0400 | [diff] [blame] | 1416 | } |
| 1417 | ctx->flags |= E2F_FLAG_GOT_DEVSIZE; |
| 1418 | if (need_restart) |
| 1419 | goto restart; |
| 1420 | } |
| 1421 | |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 1422 | ctx->fs = fs; |
Theodore Ts'o | 54dc7ca | 1998-01-19 14:50:49 +0000 | [diff] [blame] | 1423 | fs->priv_data = ctx; |
Theodore Ts'o | 8dceb92 | 2005-09-24 21:59:45 -0400 | [diff] [blame] | 1424 | fs->now = ctx->now; |
Theodore Ts'o | 5dd8f96 | 2001-01-01 15:51:50 +0000 | [diff] [blame] | 1425 | sb = fs->super; |
JP Abgrall | e0ed740 | 2014-03-19 19:08:39 -0700 | [diff] [blame] | 1426 | |
Theodore Ts'o | 5dd8f96 | 2001-01-01 15:51:50 +0000 | [diff] [blame] | 1427 | if (sb->s_rev_level > E2FSCK_CURRENT_REV) { |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 1428 | com_err(ctx->program_name, EXT2_ET_REV_TOO_HIGH, |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 1429 | _("while trying to open %s"), |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 1430 | ctx->filesystem_name); |
Theodore Ts'o | f8188ff | 1997-11-14 05:23:04 +0000 | [diff] [blame] | 1431 | get_newer: |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 1432 | fatal_error(ctx, _("Get a newer version of e2fsck!")); |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 1433 | } |
Theodore Ts'o | 3b5386d | 2000-08-14 14:25:19 +0000 | [diff] [blame] | 1434 | |
Theodore Ts'o | 17390c0 | 2000-07-07 04:13:21 +0000 | [diff] [blame] | 1435 | /* |
Theodore Ts'o | 3b5386d | 2000-08-14 14:25:19 +0000 | [diff] [blame] | 1436 | * Set the device name, which is used whenever we print error |
| 1437 | * or informational messages to the user. |
Theodore Ts'o | 17390c0 | 2000-07-07 04:13:21 +0000 | [diff] [blame] | 1438 | */ |
Theodore Ts'o | 5596def | 1999-07-19 15:27:37 +0000 | [diff] [blame] | 1439 | if (ctx->device_name == 0 && |
Theodore Ts'o | 5dd8f96 | 2001-01-01 15:51:50 +0000 | [diff] [blame] | 1440 | (sb->s_volume_name[0] != 0)) { |
Theodore Ts'o | f364093 | 2003-03-01 19:47:44 -0500 | [diff] [blame] | 1441 | ctx->device_name = string_copy(ctx, sb->s_volume_name, |
| 1442 | sizeof(sb->s_volume_name)); |
Theodore Ts'o | 5596def | 1999-07-19 15:27:37 +0000 | [diff] [blame] | 1443 | } |
| 1444 | if (ctx->device_name == 0) |
Theodore Ts'o | 1dc506c | 2008-03-26 09:09:09 -0400 | [diff] [blame] | 1445 | ctx->device_name = string_copy(ctx, ctx->filesystem_name, 0); |
| 1446 | for (cp = ctx->device_name; *cp; cp++) |
| 1447 | if (isspace(*cp) || *cp == ':') |
| 1448 | *cp = '_'; |
Theodore Ts'o | 3b5386d | 2000-08-14 14:25:19 +0000 | [diff] [blame] | 1449 | |
Andreas Dilger | 14c5af3 | 2009-05-17 23:03:04 -0400 | [diff] [blame] | 1450 | ehandler_init(fs->io); |
| 1451 | |
JP Abgrall | e0ed740 | 2014-03-19 19:08:39 -0700 | [diff] [blame] | 1452 | if ((fs->super->s_feature_incompat & EXT4_FEATURE_INCOMPAT_MMP) && |
| 1453 | (flags & EXT2_FLAG_SKIP_MMP)) { |
| 1454 | if (e2fsck_check_mmp(fs, ctx)) |
| 1455 | fatal_error(ctx, 0); |
| 1456 | |
| 1457 | /* |
| 1458 | * Restart in order to reopen fs but this time start mmp. |
| 1459 | */ |
| 1460 | ext2fs_close(fs); |
| 1461 | ctx->fs = NULL; |
| 1462 | flags &= ~EXT2_FLAG_SKIP_MMP; |
| 1463 | goto restart; |
| 1464 | } |
| 1465 | |
| 1466 | if (ctx->logf) |
| 1467 | fprintf(ctx->logf, "Filesystem UUID: %s\n", |
| 1468 | e2p_uuid2str(sb->s_uuid)); |
Theodore Ts'o | b0e91c8 | 2012-03-17 23:21:00 -0400 | [diff] [blame] | 1469 | |
Theodore Ts'o | 3b5386d | 2000-08-14 14:25:19 +0000 | [diff] [blame] | 1470 | /* |
Theodore Ts'o | 9b56575 | 2000-12-13 18:50:22 +0000 | [diff] [blame] | 1471 | * Make sure the ext3 superblock fields are consistent. |
Theodore Ts'o | 3b5386d | 2000-08-14 14:25:19 +0000 | [diff] [blame] | 1472 | */ |
| 1473 | retval = e2fsck_check_ext3_journal(ctx); |
| 1474 | if (retval) { |
| 1475 | com_err(ctx->program_name, retval, |
| 1476 | _("while checking ext3 journal for %s"), |
| 1477 | ctx->device_name); |
Theodore Ts'o | 243dc31 | 2000-08-22 21:37:47 +0000 | [diff] [blame] | 1478 | fatal_error(ctx, 0); |
Theodore Ts'o | 3b5386d | 2000-08-14 14:25:19 +0000 | [diff] [blame] | 1479 | } |
| 1480 | |
Theodore Ts'o | 9b56575 | 2000-12-13 18:50:22 +0000 | [diff] [blame] | 1481 | /* |
| 1482 | * Check to see if we need to do ext3-style recovery. If so, |
| 1483 | * do it, and then restart the fsck. |
| 1484 | */ |
Theodore Ts'o | 5dd8f96 | 2001-01-01 15:51:50 +0000 | [diff] [blame] | 1485 | if (sb->s_feature_incompat & EXT3_FEATURE_INCOMPAT_RECOVER) { |
Theodore Ts'o | 2575fb0 | 2000-08-22 21:50:04 +0000 | [diff] [blame] | 1486 | if (ctx->options & E2F_OPT_READONLY) { |
JP Abgrall | e0ed740 | 2014-03-19 19:08:39 -0700 | [diff] [blame] | 1487 | log_out(ctx, "%s", |
| 1488 | _("Warning: skipping journal recovery because " |
| 1489 | "doing a read-only filesystem check.\n")); |
Theodore Ts'o | 2575fb0 | 2000-08-22 21:50:04 +0000 | [diff] [blame] | 1490 | io_channel_flush(ctx->fs->io); |
| 1491 | } else { |
Theodore Ts'o | b92ae15 | 2003-01-02 16:53:54 -0500 | [diff] [blame] | 1492 | if (ctx->flags & E2F_FLAG_RESTARTED) { |
| 1493 | /* |
| 1494 | * Whoops, we attempted to run the |
| 1495 | * journal twice. This should never |
| 1496 | * happen, unless the hardware or |
| 1497 | * device driver is being bogus. |
| 1498 | */ |
| 1499 | com_err(ctx->program_name, 0, |
JP Abgrall | e0ed740 | 2014-03-19 19:08:39 -0700 | [diff] [blame] | 1500 | _("unable to set superblock flags " |
| 1501 | "on %s\n"), ctx->device_name); |
Theodore Ts'o | b92ae15 | 2003-01-02 16:53:54 -0500 | [diff] [blame] | 1502 | fatal_error(ctx, 0); |
| 1503 | } |
Theodore Ts'o | 2575fb0 | 2000-08-22 21:50:04 +0000 | [diff] [blame] | 1504 | retval = e2fsck_run_ext3_journal(ctx); |
| 1505 | if (retval) { |
| 1506 | com_err(ctx->program_name, retval, |
Theodore Ts'o | 3b5386d | 2000-08-14 14:25:19 +0000 | [diff] [blame] | 1507 | _("while recovering ext3 journal of %s"), |
Theodore Ts'o | 2575fb0 | 2000-08-22 21:50:04 +0000 | [diff] [blame] | 1508 | ctx->device_name); |
| 1509 | fatal_error(ctx, 0); |
| 1510 | } |
| 1511 | ext2fs_close(ctx->fs); |
| 1512 | ctx->fs = 0; |
Theodore Ts'o | b92ae15 | 2003-01-02 16:53:54 -0500 | [diff] [blame] | 1513 | ctx->flags |= E2F_FLAG_RESTARTED; |
Theodore Ts'o | 2575fb0 | 2000-08-22 21:50:04 +0000 | [diff] [blame] | 1514 | goto restart; |
Theodore Ts'o | 3b5386d | 2000-08-14 14:25:19 +0000 | [diff] [blame] | 1515 | } |
Theodore Ts'o | 3b5386d | 2000-08-14 14:25:19 +0000 | [diff] [blame] | 1516 | } |
| 1517 | |
| 1518 | /* |
| 1519 | * Check for compatibility with the feature sets. We need to |
| 1520 | * be more stringent than ext2fs_open(). |
| 1521 | */ |
Theodore Ts'o | dcc91e1 | 2008-02-26 20:59:56 -0500 | [diff] [blame] | 1522 | features[0] = sb->s_feature_compat & ~EXT2_LIB_FEATURE_COMPAT_SUPP; |
| 1523 | features[1] = sb->s_feature_incompat & ~EXT2_LIB_FEATURE_INCOMPAT_SUPP; |
Theodore Ts'o | efc6f62 | 2008-08-27 23:07:54 -0400 | [diff] [blame] | 1524 | features[2] = (sb->s_feature_ro_compat & |
Theodore Ts'o | dcc91e1 | 2008-02-26 20:59:56 -0500 | [diff] [blame] | 1525 | ~EXT2_LIB_FEATURE_RO_COMPAT_SUPP); |
| 1526 | print_unsupp_features: |
| 1527 | if (features[0] || features[1] || features[2]) { |
| 1528 | int i, j; |
| 1529 | __u32 *mask = features, m; |
| 1530 | |
JP Abgrall | e0ed740 | 2014-03-19 19:08:39 -0700 | [diff] [blame] | 1531 | log_err(ctx, _("%s has unsupported feature(s):"), |
Theodore Ts'o | dcc91e1 | 2008-02-26 20:59:56 -0500 | [diff] [blame] | 1532 | ctx->filesystem_name); |
| 1533 | |
| 1534 | for (i=0; i <3; i++,mask++) { |
| 1535 | for (j=0,m=1; j < 32; j++, m<<=1) { |
| 1536 | if (*mask & m) |
JP Abgrall | e0ed740 | 2014-03-19 19:08:39 -0700 | [diff] [blame] | 1537 | log_err(ctx, " %s", |
Theodore Ts'o | dcc91e1 | 2008-02-26 20:59:56 -0500 | [diff] [blame] | 1538 | e2p_feature2string(i, m)); |
| 1539 | } |
| 1540 | } |
JP Abgrall | e0ed740 | 2014-03-19 19:08:39 -0700 | [diff] [blame] | 1541 | log_err(ctx, "\n"); |
Theodore Ts'o | 3b5386d | 2000-08-14 14:25:19 +0000 | [diff] [blame] | 1542 | goto get_newer; |
| 1543 | } |
| 1544 | #ifdef ENABLE_COMPRESSION |
Theodore Ts'o | 5dd8f96 | 2001-01-01 15:51:50 +0000 | [diff] [blame] | 1545 | if (sb->s_feature_incompat & EXT2_FEATURE_INCOMPAT_COMPRESSION) |
JP Abgrall | e0ed740 | 2014-03-19 19:08:39 -0700 | [diff] [blame] | 1546 | log_err(ctx, _("%s: warning: compression support " |
| 1547 | "is experimental.\n"), |
| 1548 | ctx->program_name); |
Theodore Ts'o | 3b5386d | 2000-08-14 14:25:19 +0000 | [diff] [blame] | 1549 | #endif |
Theodore Ts'o | 8fdc998 | 2002-06-25 23:26:34 -0400 | [diff] [blame] | 1550 | #ifndef ENABLE_HTREE |
| 1551 | if (sb->s_feature_compat & EXT2_FEATURE_COMPAT_DIR_INDEX) { |
JP Abgrall | e0ed740 | 2014-03-19 19:08:39 -0700 | [diff] [blame] | 1552 | log_err(ctx, _("%s: e2fsck not compiled with HTREE support,\n\t" |
Theodore Ts'o | 8fdc998 | 2002-06-25 23:26:34 -0400 | [diff] [blame] | 1553 | "but filesystem %s has HTREE directories.\n"), |
JP Abgrall | e0ed740 | 2014-03-19 19:08:39 -0700 | [diff] [blame] | 1554 | ctx->program_name, ctx->device_name); |
Theodore Ts'o | 8fdc998 | 2002-06-25 23:26:34 -0400 | [diff] [blame] | 1555 | goto get_newer; |
| 1556 | } |
| 1557 | #endif |
| 1558 | |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 1559 | /* |
| 1560 | * If the user specified a specific superblock, presumably the |
| 1561 | * master superblock has been trashed. So we mark the |
| 1562 | * superblock as dirty, so it can be written out. |
| 1563 | */ |
| 1564 | if (ctx->superblock && |
| 1565 | !(ctx->options & E2F_OPT_READONLY)) |
| 1566 | ext2fs_mark_super_dirty(fs); |
| 1567 | |
Theodore Ts'o | 9f0288d | 2007-08-03 20:43:37 -0400 | [diff] [blame] | 1568 | /* |
| 1569 | * Calculate the number of filesystem blocks per pagesize. If |
| 1570 | * fs->blocksize > page_size, set the number of blocks per |
| 1571 | * pagesize to 1 to avoid division by zero errors. |
| 1572 | */ |
| 1573 | #ifdef _SC_PAGESIZE |
| 1574 | sysval = sysconf(_SC_PAGESIZE); |
| 1575 | if (sysval > 0) |
| 1576 | sys_page_size = sysval; |
| 1577 | #endif /* _SC_PAGESIZE */ |
| 1578 | ctx->blocks_per_page = sys_page_size / fs->blocksize; |
| 1579 | if (ctx->blocks_per_page == 0) |
| 1580 | ctx->blocks_per_page = 1; |
| 1581 | |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 1582 | if (ctx->superblock) |
| 1583 | set_latch_flags(PR_LATCH_RELOC, PRL_LATCHED, 0); |
Theodore Ts'o | 550a4af | 2005-01-25 03:09:24 -0500 | [diff] [blame] | 1584 | ext2fs_mark_valid(fs); |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 1585 | check_super_block(ctx); |
Theodore Ts'o | a02ce9d | 1998-02-24 20:22:23 +0000 | [diff] [blame] | 1586 | if (ctx->flags & E2F_FLAG_SIGNAL_MASK) |
Theodore Ts'o | 243dc31 | 2000-08-22 21:37:47 +0000 | [diff] [blame] | 1587 | fatal_error(ctx, 0); |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 1588 | check_if_skip(ctx); |
Theodore Ts'o | 69d0edf | 2009-04-23 00:39:06 -0400 | [diff] [blame] | 1589 | check_resize_inode(ctx); |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 1590 | if (bad_blocks_file) |
| 1591 | read_bad_blocks_file(ctx, bad_blocks_file, replace_bad_blocks); |
| 1592 | else if (cflag) |
Theodore Ts'o | 4fb9d52 | 2004-02-24 00:16:09 -0500 | [diff] [blame] | 1593 | read_bad_blocks_file(ctx, 0, !keep_bad_blocks); /* Test disk */ |
Theodore Ts'o | a02ce9d | 1998-02-24 20:22:23 +0000 | [diff] [blame] | 1594 | if (ctx->flags & E2F_FLAG_SIGNAL_MASK) |
Theodore Ts'o | 243dc31 | 2000-08-22 21:37:47 +0000 | [diff] [blame] | 1595 | fatal_error(ctx, 0); |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 1596 | |
| 1597 | /* |
| 1598 | * Mark the system as valid, 'til proven otherwise |
| 1599 | */ |
| 1600 | ext2fs_mark_valid(fs); |
| 1601 | |
| 1602 | retval = ext2fs_read_bb_inode(fs, &fs->badblocks); |
| 1603 | if (retval) { |
JP Abgrall | e0ed740 | 2014-03-19 19:08:39 -0700 | [diff] [blame] | 1604 | log_out(ctx, _("%s: %s while reading bad blocks inode\n"), |
| 1605 | ctx->program_name, error_message(retval)); |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 1606 | preenhalt(ctx); |
JP Abgrall | e0ed740 | 2014-03-19 19:08:39 -0700 | [diff] [blame] | 1607 | log_out(ctx, "%s", _("This doesn't bode well, " |
| 1608 | "but we'll try to go on...\n")); |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 1609 | } |
Theodore Ts'o | 08b2130 | 1997-11-03 19:42:40 +0000 | [diff] [blame] | 1610 | |
Kalpak Shah | 5107d0d | 2007-06-21 11:59:06 -0400 | [diff] [blame] | 1611 | /* |
| 1612 | * Save the journal size in megabytes. |
| 1613 | * Try and use the journal size from the backup else let e2fsck |
| 1614 | * find the default journal size. |
| 1615 | */ |
| 1616 | if (sb->s_jnl_backup_type == EXT3_JNL_BACKUP_BLOCKS) |
JP Abgrall | e0ed740 | 2014-03-19 19:08:39 -0700 | [diff] [blame] | 1617 | journal_size = (sb->s_jnl_blocks[15] << (32 - 20)) | |
| 1618 | (sb->s_jnl_blocks[16] >> 20); |
Kalpak Shah | 5107d0d | 2007-06-21 11:59:06 -0400 | [diff] [blame] | 1619 | else |
| 1620 | journal_size = -1; |
| 1621 | |
JP Abgrall | e0ed740 | 2014-03-19 19:08:39 -0700 | [diff] [blame] | 1622 | if (sb->s_feature_ro_compat & EXT4_FEATURE_RO_COMPAT_QUOTA) { |
| 1623 | /* Quotas were enabled. Do quota accounting during fsck. */ |
| 1624 | if ((sb->s_usr_quota_inum && sb->s_grp_quota_inum) || |
| 1625 | (!sb->s_usr_quota_inum && !sb->s_grp_quota_inum)) |
| 1626 | qtype = -1; |
| 1627 | else |
| 1628 | qtype = sb->s_usr_quota_inum ? USRQUOTA : GRPQUOTA; |
| 1629 | |
| 1630 | quota_init_context(&ctx->qctx, ctx->fs, qtype); |
| 1631 | } |
| 1632 | |
Theodore Ts'o | 08b2130 | 1997-11-03 19:42:40 +0000 | [diff] [blame] | 1633 | run_result = e2fsck_run(ctx); |
Theodore Ts'o | 5596def | 1999-07-19 15:27:37 +0000 | [diff] [blame] | 1634 | e2fsck_clear_progbar(ctx); |
Kalpak Shah | 5107d0d | 2007-06-21 11:59:06 -0400 | [diff] [blame] | 1635 | |
| 1636 | if (ctx->flags & E2F_FLAG_JOURNAL_INODE) { |
| 1637 | if (fix_problem(ctx, PR_6_RECREATE_JOURNAL, &pctx)) { |
| 1638 | if (journal_size < 1024) |
JP Abgrall | e0ed740 | 2014-03-19 19:08:39 -0700 | [diff] [blame] | 1639 | journal_size = ext2fs_default_journal_size(ext2fs_blocks_count(fs->super)); |
Kalpak Shah | 5107d0d | 2007-06-21 11:59:06 -0400 | [diff] [blame] | 1640 | if (journal_size < 0) { |
| 1641 | fs->super->s_feature_compat &= |
| 1642 | ~EXT3_FEATURE_COMPAT_HAS_JOURNAL; |
Theodore Ts'o | 0cfce7f | 2007-10-06 12:37:08 -0400 | [diff] [blame] | 1643 | fs->flags &= ~EXT2_FLAG_MASTER_SB_ONLY; |
JP Abgrall | e0ed740 | 2014-03-19 19:08:39 -0700 | [diff] [blame] | 1644 | log_out(ctx, "%s: Couldn't determine " |
| 1645 | "journal size\n", ctx->program_name); |
Kalpak Shah | 5107d0d | 2007-06-21 11:59:06 -0400 | [diff] [blame] | 1646 | goto no_journal; |
| 1647 | } |
JP Abgrall | e0ed740 | 2014-03-19 19:08:39 -0700 | [diff] [blame] | 1648 | log_out(ctx, _("Creating journal (%d blocks): "), |
Kalpak Shah | 5107d0d | 2007-06-21 11:59:06 -0400 | [diff] [blame] | 1649 | journal_size); |
| 1650 | fflush(stdout); |
| 1651 | retval = ext2fs_add_journal_inode(fs, |
| 1652 | journal_size, 0); |
| 1653 | if (retval) { |
JP Abgrall | e0ed740 | 2014-03-19 19:08:39 -0700 | [diff] [blame] | 1654 | log_out(ctx, "%s: while trying to create " |
| 1655 | "journal\n", error_message(retval)); |
Kalpak Shah | 5107d0d | 2007-06-21 11:59:06 -0400 | [diff] [blame] | 1656 | goto no_journal; |
| 1657 | } |
JP Abgrall | e0ed740 | 2014-03-19 19:08:39 -0700 | [diff] [blame] | 1658 | log_out(ctx, "%s", _(" Done.\n")); |
| 1659 | log_out(ctx, "%s", |
| 1660 | _("\n*** journal has been re-created - " |
| 1661 | "filesystem is now ext3 again ***\n")); |
Kalpak Shah | 5107d0d | 2007-06-21 11:59:06 -0400 | [diff] [blame] | 1662 | } |
| 1663 | } |
| 1664 | no_journal: |
| 1665 | |
JP Abgrall | e0ed740 | 2014-03-19 19:08:39 -0700 | [diff] [blame] | 1666 | if (ctx->qctx) { |
| 1667 | int i, needs_writeout; |
| 1668 | for (i = 0; i < MAXQUOTAS; i++) { |
| 1669 | if (qtype != -1 && qtype != i) |
| 1670 | continue; |
| 1671 | needs_writeout = 0; |
| 1672 | pctx.num = i; |
| 1673 | retval = quota_compare_and_update(ctx->qctx, i, |
| 1674 | &needs_writeout); |
| 1675 | if ((retval || needs_writeout) && |
| 1676 | fix_problem(ctx, PR_6_UPDATE_QUOTAS, &pctx)) |
| 1677 | quota_write_inode(ctx->qctx, i); |
| 1678 | } |
| 1679 | quota_release_context(&ctx->qctx); |
| 1680 | } |
| 1681 | |
Theodore Ts'o | 08b2130 | 1997-11-03 19:42:40 +0000 | [diff] [blame] | 1682 | if (run_result == E2F_FLAG_RESTART) { |
JP Abgrall | e0ed740 | 2014-03-19 19:08:39 -0700 | [diff] [blame] | 1683 | log_out(ctx, "%s", |
| 1684 | _("Restarting e2fsck from the beginning...\n")); |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 1685 | retval = e2fsck_reset_context(ctx); |
| 1686 | if (retval) { |
JP Abgrall | e0ed740 | 2014-03-19 19:08:39 -0700 | [diff] [blame] | 1687 | com_err(ctx->program_name, retval, "%s", |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 1688 | _("while resetting context")); |
Theodore Ts'o | 243dc31 | 2000-08-22 21:37:47 +0000 | [diff] [blame] | 1689 | fatal_error(ctx, 0); |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 1690 | } |
Theodore Ts'o | 73f17cf | 1999-01-04 07:35:45 +0000 | [diff] [blame] | 1691 | ext2fs_close(fs); |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 1692 | goto restart; |
| 1693 | } |
Theodore Ts'o | 4cae045 | 2002-07-21 14:14:03 -0400 | [diff] [blame] | 1694 | if (run_result & E2F_FLAG_CANCEL) { |
JP Abgrall | e0ed740 | 2014-03-19 19:08:39 -0700 | [diff] [blame] | 1695 | log_out(ctx, _("%s: e2fsck canceled.\n"), ctx->device_name ? |
| 1696 | ctx->device_name : ctx->filesystem_name); |
Theodore Ts'o | 4cae045 | 2002-07-21 14:14:03 -0400 | [diff] [blame] | 1697 | exit_value |= FSCK_CANCELED; |
| 1698 | } |
| 1699 | if (run_result & E2F_FLAG_ABORT) |
| 1700 | fatal_error(ctx, _("aborted")); |
Theodore Ts'o | 0c37f45 | 2007-10-01 09:18:54 -0400 | [diff] [blame] | 1701 | if (check_backup_super_block(ctx)) { |
| 1702 | fs->flags &= ~EXT2_FLAG_MASTER_SB_ONLY; |
| 1703 | ext2fs_mark_super_dirty(fs); |
| 1704 | } |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 1705 | |
| 1706 | #ifdef MTRACE |
| 1707 | mtrace_print("Cleanup"); |
| 1708 | #endif |
| 1709 | if (ext2fs_test_changed(fs)) { |
Theodore Ts'o | 4cae045 | 2002-07-21 14:14:03 -0400 | [diff] [blame] | 1710 | exit_value |= FSCK_NONDESTRUCT; |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 1711 | if (!(ctx->options & E2F_OPT_PREEN)) |
JP Abgrall | e0ed740 | 2014-03-19 19:08:39 -0700 | [diff] [blame] | 1712 | log_out(ctx, _("\n%s: ***** FILE SYSTEM WAS " |
| 1713 | "MODIFIED *****\n"), |
| 1714 | ctx->device_name); |
Theodore Ts'o | ee89513 | 2002-11-07 16:16:55 -0500 | [diff] [blame] | 1715 | if (ctx->mount_flags & EXT2_MF_ISROOT) { |
JP Abgrall | e0ed740 | 2014-03-19 19:08:39 -0700 | [diff] [blame] | 1716 | log_out(ctx, _("%s: ***** REBOOT LINUX *****\n"), |
| 1717 | ctx->device_name); |
Theodore Ts'o | 4cae045 | 2002-07-21 14:14:03 -0400 | [diff] [blame] | 1718 | exit_value |= FSCK_REBOOT; |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 1719 | } |
| 1720 | } |
Theodore Ts'o | eb065cc | 2005-12-31 00:52:23 -0500 | [diff] [blame] | 1721 | if (!ext2fs_test_valid(fs) || |
Theodore Ts'o | efc6f62 | 2008-08-27 23:07:54 -0400 | [diff] [blame] | 1722 | ((exit_value & FSCK_CANCELED) && |
Theodore Ts'o | eb065cc | 2005-12-31 00:52:23 -0500 | [diff] [blame] | 1723 | (sb->s_state & EXT2_ERROR_FS))) { |
JP Abgrall | e0ed740 | 2014-03-19 19:08:39 -0700 | [diff] [blame] | 1724 | log_out(ctx, _("\n%s: ********** WARNING: Filesystem still has " |
| 1725 | "errors **********\n\n"), ctx->device_name); |
Theodore Ts'o | 4cae045 | 2002-07-21 14:14:03 -0400 | [diff] [blame] | 1726 | exit_value |= FSCK_UNCORRECTED; |
| 1727 | exit_value &= ~FSCK_NONDESTRUCT; |
Theodore Ts'o | d312401 | 2001-07-20 14:13:49 -0400 | [diff] [blame] | 1728 | } |
Theodore Ts'o | eb065cc | 2005-12-31 00:52:23 -0500 | [diff] [blame] | 1729 | if (exit_value & FSCK_CANCELED) { |
| 1730 | int allow_cancellation; |
| 1731 | |
| 1732 | profile_get_boolean(ctx->profile, "options", |
Theodore Ts'o | efc6f62 | 2008-08-27 23:07:54 -0400 | [diff] [blame] | 1733 | "allow_cancellation", 0, 0, |
Theodore Ts'o | eb065cc | 2005-12-31 00:52:23 -0500 | [diff] [blame] | 1734 | &allow_cancellation); |
Theodore Ts'o | 4cae045 | 2002-07-21 14:14:03 -0400 | [diff] [blame] | 1735 | exit_value &= ~FSCK_NONDESTRUCT; |
Theodore Ts'o | eb065cc | 2005-12-31 00:52:23 -0500 | [diff] [blame] | 1736 | if (allow_cancellation && ext2fs_test_valid(fs) && |
Theodore Ts'o | efc6f62 | 2008-08-27 23:07:54 -0400 | [diff] [blame] | 1737 | (sb->s_state & EXT2_VALID_FS) && |
Theodore Ts'o | eb065cc | 2005-12-31 00:52:23 -0500 | [diff] [blame] | 1738 | !(sb->s_state & EXT2_ERROR_FS)) |
| 1739 | exit_value = 0; |
| 1740 | } else { |
Theodore Ts'o | 4cae045 | 2002-07-21 14:14:03 -0400 | [diff] [blame] | 1741 | show_stats(ctx); |
Theodore Ts'o | c1637bd | 2002-11-08 15:55:17 -0500 | [diff] [blame] | 1742 | if (!(ctx->options & E2F_OPT_READONLY)) { |
| 1743 | if (ext2fs_test_valid(fs)) { |
| 1744 | if (!(sb->s_state & EXT2_VALID_FS)) |
| 1745 | exit_value |= FSCK_NONDESTRUCT; |
| 1746 | sb->s_state = EXT2_VALID_FS; |
| 1747 | } else |
| 1748 | sb->s_state &= ~EXT2_VALID_FS; |
| 1749 | sb->s_mnt_count = 0; |
Theodore Ts'o | 177839e | 2010-05-13 17:36:36 -0400 | [diff] [blame] | 1750 | if (!(ctx->flags & E2F_FLAG_TIME_INSANE)) |
| 1751 | sb->s_lastcheck = ctx->now; |
Theodore Ts'o | 993988f | 2010-06-25 10:53:13 -0400 | [diff] [blame] | 1752 | memset(((char *) sb) + EXT4_S_ERR_START, 0, |
| 1753 | EXT4_S_ERR_LEN); |
Theodore Ts'o | c1637bd | 2002-11-08 15:55:17 -0500 | [diff] [blame] | 1754 | ext2fs_mark_super_dirty(fs); |
| 1755 | } |
| 1756 | } |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 1757 | |
Theodore Ts'o | 2e6436d | 2010-05-17 22:54:06 -0400 | [diff] [blame] | 1758 | if ((run_result & E2F_FLAG_CANCEL) == 0 && |
| 1759 | sb->s_feature_ro_compat & EXT4_FEATURE_RO_COMPAT_GDT_CSUM && |
Andreas Dilger | f628ace | 2008-03-31 10:50:19 -0400 | [diff] [blame] | 1760 | !(ctx->options & E2F_OPT_READONLY)) { |
| 1761 | retval = ext2fs_set_gdt_csum(ctx->fs); |
| 1762 | if (retval) { |
JP Abgrall | e0ed740 | 2014-03-19 19:08:39 -0700 | [diff] [blame] | 1763 | com_err(ctx->program_name, retval, "%s", |
Andreas Dilger | f628ace | 2008-03-31 10:50:19 -0400 | [diff] [blame] | 1764 | _("while setting block group checksum info")); |
| 1765 | fatal_error(ctx, 0); |
| 1766 | } |
| 1767 | } |
Jose R. Santos | 49a7360 | 2007-10-21 21:04:03 -0500 | [diff] [blame] | 1768 | |
Theodore Ts'o | f8188ff | 1997-11-14 05:23:04 +0000 | [diff] [blame] | 1769 | e2fsck_write_bitmaps(ctx); |
Theodore Ts'o | 6d96b00 | 2007-08-03 20:07:09 -0400 | [diff] [blame] | 1770 | io_channel_flush(ctx->fs->io); |
Ken Chen | 9facd07 | 2009-05-28 09:55:10 -0400 | [diff] [blame] | 1771 | print_resource_track(ctx, NULL, &ctx->global_rtrack, ctx->fs->io); |
| 1772 | |
Theodore Ts'o | 0628ae3 | 2001-07-29 12:26:46 -0400 | [diff] [blame] | 1773 | ext2fs_close(fs); |
| 1774 | ctx->fs = NULL; |
Theodore Ts'o | f364093 | 2003-03-01 19:47:44 -0500 | [diff] [blame] | 1775 | free(ctx->journal_name); |
Theodore Ts'o | b28a6e9 | 2005-07-25 11:36:43 -0500 | [diff] [blame] | 1776 | |
Theodore Ts'o | b28a6e9 | 2005-07-25 11:36:43 -0500 | [diff] [blame] | 1777 | e2fsck_free_context(ctx); |
Theodore Ts'o | a6d8302 | 2006-12-26 03:38:07 -0500 | [diff] [blame] | 1778 | remove_error_table(&et_ext2_error_table); |
| 1779 | remove_error_table(&et_prof_error_table); |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 1780 | return exit_value; |
| 1781 | } |