blob: 1ed8fc575b186ed7f4bbd4eeceea48b3402b23b4 [file] [log] [blame]
Theodore Ts'o1b6bf171997-10-03 17:48:10 +00001/*
2 * unix.c - The unix-specific code for e2fsck
Theodore Ts'oefc6f622008-08-27 23:07:54 -04003 *
Theodore Ts'o1b6bf171997-10-03 17:48:10 +00004 * 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'oebabf2a2008-07-13 15:32:37 -040012#define _XOPEN_SOURCE 600 /* for inclusion of sa_handler in Solaris */
13
Theodore Ts'od1154eb2011-09-18 17:34:37 -040014#include "config.h"
Theodore Ts'o1b6bf171997-10-03 17:48:10 +000015#include <stdio.h>
16#ifdef HAVE_STDLIB_H
17#include <stdlib.h>
18#endif
19#include <string.h>
20#include <fcntl.h>
21#include <ctype.h>
Theodore Ts'o1b6bf171997-10-03 17:48:10 +000022#include <time.h>
Theodore Ts'o9ecd8be1999-10-20 18:24:31 +000023#ifdef HAVE_SIGNAL_H
Theodore Ts'o5596def1999-07-19 15:27:37 +000024#include <signal.h>
Theodore Ts'o9ecd8be1999-10-20 18:24:31 +000025#endif
Theodore Ts'o1b6bf171997-10-03 17:48:10 +000026#ifdef HAVE_GETOPT_H
27#include <getopt.h>
Theodore Ts'o373b8332000-04-03 16:22:35 +000028#else
29extern char *optarg;
30extern int optind;
Theodore Ts'o1b6bf171997-10-03 17:48:10 +000031#endif
32#include <unistd.h>
33#ifdef HAVE_ERRNO_H
34#include <errno.h>
35#endif
Theodore Ts'offf45482003-04-13 00:44:19 -040036#ifdef HAVE_SYS_IOCTL_H
Theodore Ts'o1b6bf171997-10-03 17:48:10 +000037#include <sys/ioctl.h>
Theodore Ts'offf45482003-04-13 00:44:19 -040038#endif
Theodore Ts'oe71d8732003-03-14 02:13:48 -050039#ifdef HAVE_MALLOC_H
Theodore Ts'o1b6bf171997-10-03 17:48:10 +000040#include <malloc.h>
Theodore Ts'oe71d8732003-03-14 02:13:48 -050041#endif
Theodore Ts'oc07f9f22004-04-12 00:16:44 -040042#ifdef HAVE_SYS_TYPES_H
43#include <sys/types.h>
44#endif
45#ifdef HAVE_DIRENT_H
46#include <dirent.h>
47#endif
Theodore Ts'o1b6bf171997-10-03 17:48:10 +000048
Andreas Dilger864b8d42008-08-24 20:37:39 -040049#include "e2p/e2p.h"
Theodore Ts'o1b6bf171997-10-03 17:48:10 +000050#include "et/com_err.h"
Eric Sandeen01c196b2008-03-29 23:01:52 -050051#include "e2p/e2p.h"
Theodore Ts'o1b6bf171997-10-03 17:48:10 +000052#include "e2fsck.h"
53#include "problem.h"
54#include "../version.h"
55
Theodore Ts'o1b6bf171997-10-03 17:48:10 +000056/* Command line options */
Theodore Ts'o54a31a32003-08-19 10:08:34 -040057static int cflag; /* check disk */
58static int show_version_only;
59static int verbose;
Theodore Ts'o1b6bf171997-10-03 17:48:10 +000060
Theodore Ts'o54a31a32003-08-19 10:08:34 -040061static int replace_bad_blocks;
Theodore Ts'o4fb9d522004-02-24 00:16:09 -050062static int keep_bad_blocks;
Theodore Ts'o54a31a32003-08-19 10:08:34 -040063static char *bad_blocks_file;
Theodore Ts'o1b6bf171997-10-03 17:48:10 +000064
Theodore Ts'o243dc312000-08-22 21:37:47 +000065e2fsck_t e2fsck_global_ctx; /* Try your very best not to use this! */
66
Theodore Ts'o5e72cdb2002-11-08 15:35:13 -050067#ifdef CONFIG_JBD_DEBUG /* Enabled by configure --enable-jfs-debug */
68int journal_enable_debug = -1;
69#endif
70
Theodore Ts'o1b6bf171997-10-03 17:48:10 +000071static void usage(e2fsck_t ctx)
72{
73 fprintf(stderr,
Theodore Ts'o1a855cb2007-08-10 23:58:56 -040074 _("Usage: %s [-panyrcdfvtDFV] [-b superblock] [-B blocksize]\n"
Theodore Ts'o1b6bf171997-10-03 17:48:10 +000075 "\t\t[-I inode_buffer_blocks] [-P process_inode_size]\n"
Theodore Ts'obb145b02005-06-20 08:35:27 -040076 "\t\t[-l|-L bad_blocks_file] [-C fd] [-j external_journal]\n"
Theodore Ts'o0684a4f2002-08-17 10:19:44 -040077 "\t\t[-E extended-options] device\n"),
Theodore Ts'o5596def1999-07-19 15:27:37 +000078 ctx->program_name);
Theodore Ts'ob55199e1999-07-19 15:37:46 +000079
Theodore Ts'o0c4a0722000-02-07 03:11:03 +000080 fprintf(stderr, _("\nEmergency help:\n"
Theodore Ts'ob55199e1999-07-19 15:37:46 +000081 " -p Automatic repair (no questions)\n"
82 " -n Make no changes to the filesystem\n"
83 " -y Assume \"yes\" to all questions\n"
Theodore Ts'o19445ef2003-01-29 21:04:52 -050084 " -c Check for bad blocks and add them to the badblock list\n"
Theodore Ts'o53ef44c2001-01-06 05:55:58 +000085 " -f Force checking even if filesystem is marked clean\n"));
86 fprintf(stderr, _(""
Theodore Ts'ob55199e1999-07-19 15:37:46 +000087 " -v Be verbose\n"
88 " -b superblock Use alternative superblock\n"
89 " -B blocksize Force blocksize when looking for superblock\n"
Theodore Ts'obb145b02005-06-20 08:35:27 -040090 " -j external_journal Set location of the external journal\n"
Theodore Ts'ob55199e1999-07-19 15:37:46 +000091 " -l bad_blocks_file Add to badblocks list\n"
92 " -L bad_blocks_file Set badblocks list\n"
Theodore Ts'o0c4a0722000-02-07 03:11:03 +000093 ));
Theodore Ts'ob55199e1999-07-19 15:37:46 +000094
Theodore Ts'o1b6bf171997-10-03 17:48:10 +000095 exit(FSCK_USAGE);
96}
97
98static void show_stats(e2fsck_t ctx)
99{
100 ext2_filsys fs = ctx->fs;
Eric Sandeenf3358642006-09-12 14:56:17 -0400101 ext2_ino_t inodes, inodes_used;
Valerie Aurora Henson6dc64392010-06-13 17:00:00 -0400102 blk64_t blocks, blocks_used;
103 unsigned int dir_links;
104 unsigned int num_files, num_links;
Theodore Ts'oc0a84962012-07-29 17:44:11 -0400105 __u32 *mask, m;
Theodore Ts'oce44d8c2008-12-08 21:33:11 -0500106 int frag_percent_file, frag_percent_dir, frag_percent_total;
Theodore Ts'oc0a84962012-07-29 17:44:11 -0400107 int i, j, printed = 0;
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000108
109 dir_links = 2 * ctx->fs_directory_count - 1;
110 num_files = ctx->fs_total_count - dir_links;
111 num_links = ctx->fs_links_count - dir_links;
112 inodes = fs->super->s_inodes_count;
113 inodes_used = (fs->super->s_inodes_count -
114 fs->super->s_free_inodes_count);
Valerie Aurora Henson4efbac62009-09-07 20:46:34 -0400115 blocks = ext2fs_blocks_count(fs->super);
116 blocks_used = (ext2fs_blocks_count(fs->super) -
117 ext2fs_free_blocks_count(fs->super));
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000118
Theodore Ts'oce44d8c2008-12-08 21:33:11 -0500119 frag_percent_file = (10000 * ctx->fs_fragmented) / inodes_used;
120 frag_percent_file = (frag_percent_file + 5) / 10;
121
122 frag_percent_dir = (10000 * ctx->fs_fragmented_dir) / inodes_used;
123 frag_percent_dir = (frag_percent_dir + 5) / 10;
124
125 frag_percent_total = ((10000 * (ctx->fs_fragmented +
126 ctx->fs_fragmented_dir))
127 / inodes_used);
128 frag_percent_total = (frag_percent_total + 5) / 10;
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400129
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000130 if (!verbose) {
Theodore Ts'ob0e91c82012-03-17 23:21:00 -0400131 log_out(ctx, _("%s: %u/%u files (%0d.%d%% non-contiguous), "
132 "%llu/%llu blocks\n"),
133 ctx->device_name, inodes_used, inodes,
134 frag_percent_total / 10, frag_percent_total % 10,
135 blocks_used, blocks);
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000136 return;
137 }
Theodore Ts'oc0a84962012-07-29 17:44:11 -0400138 profile_get_boolean(ctx->profile, "options", "report_features", 0, 0,
139 &i);
140 if (verbose && i) {
141 log_out(ctx, "\nFilesystem features:");
142 mask = &ctx->fs->super->s_feature_compat;
143 for (i = 0; i < 3; i++, mask++) {
144 for (j = 0, m = 1; j < 32; j++, m <<= 1) {
145 if (*mask & m) {
146 log_out(ctx, " %s",
147 e2p_feature2string(i, m));
148 printed++;
149 }
150 }
151 }
152 if (printed == 0)
153 log_out(ctx, " (none)");
154 log_out(ctx, "\n");
155 }
156
Theodore Ts'o87e56a92012-07-29 19:02:29 -0400157 log_out(ctx, P_("\n%12u inode used (%2.2f%%, out of %u)\n",
158 "\n%12u inodes used (%2.2f%%, out of %u)\n",
Theodore Ts'ob0e91c82012-03-17 23:21:00 -0400159 inodes_used), inodes_used,
Theodore Ts'o87e56a92012-07-29 19:02:29 -0400160 100.0 * inodes_used / inodes, inodes);
Theodore Ts'oda0fa8f2012-07-29 18:20:04 -0400161 log_out(ctx, P_("%12u non-contiguous file (%0d.%d%%)\n",
162 "%12u non-contiguous files (%0d.%d%%)\n",
Theodore Ts'ob0e91c82012-03-17 23:21:00 -0400163 ctx->fs_fragmented),
Theodore Ts'oce44d8c2008-12-08 21:33:11 -0500164 ctx->fs_fragmented, frag_percent_file / 10,
165 frag_percent_file % 10);
Theodore Ts'oda0fa8f2012-07-29 18:20:04 -0400166 log_out(ctx, P_("%12u non-contiguous directory (%0d.%d%%)\n",
167 "%12u non-contiguous directories (%0d.%d%%)\n",
Theodore Ts'ob0e91c82012-03-17 23:21:00 -0400168 ctx->fs_fragmented_dir),
Theodore Ts'oce44d8c2008-12-08 21:33:11 -0500169 ctx->fs_fragmented_dir, frag_percent_dir / 10,
170 frag_percent_dir % 10);
Theodore Ts'oda0fa8f2012-07-29 18:20:04 -0400171 log_out(ctx, _(" # of inodes with ind/dind/tind blocks: "
Theodore Ts'ob0e91c82012-03-17 23:21:00 -0400172 "%u/%u/%u\n"),
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000173 ctx->fs_ind_count, ctx->fs_dind_count, ctx->fs_tind_count);
Theodore Ts'o8da6d1a2008-08-14 09:48:07 -0400174
175 for (j=MAX_EXTENT_DEPTH_COUNT-1; j >=0; j--)
176 if (ctx->extent_depth_count[j])
177 break;
178 if (++j) {
Theodore Ts'oda0fa8f2012-07-29 18:20:04 -0400179 log_out(ctx, _(" Extent depth histogram: "));
Theodore Ts'o8da6d1a2008-08-14 09:48:07 -0400180 for (i=0; i < j; i++) {
181 if (i)
182 fputc('/', stdout);
Theodore Ts'ob0e91c82012-03-17 23:21:00 -0400183 log_out(ctx, "%u", ctx->extent_depth_count[i]);
Theodore Ts'o8da6d1a2008-08-14 09:48:07 -0400184 }
Theodore Ts'ob0e91c82012-03-17 23:21:00 -0400185 log_out(ctx, "\n");
Theodore Ts'o8da6d1a2008-08-14 09:48:07 -0400186 }
187
Theodore Ts'o87e56a92012-07-29 19:02:29 -0400188 log_out(ctx, P_("%12llu block used (%2.2f%%, out of %llu)\n",
189 "%12llu blocks used (%2.2f%%, out of %llu)\n",
190 blocks_used),
191 blocks_used, 100.0 * blocks_used / blocks, blocks);
Theodore Ts'oda0fa8f2012-07-29 18:20:04 -0400192 log_out(ctx, P_("%12u bad block\n", "%12u bad blocks\n",
Theodore Ts'ob0e91c82012-03-17 23:21:00 -0400193 ctx->fs_badblocks_count), ctx->fs_badblocks_count);
Theodore Ts'oda0fa8f2012-07-29 18:20:04 -0400194 log_out(ctx, P_("%12u large file\n", "%12u large files\n",
Theodore Ts'ob0e91c82012-03-17 23:21:00 -0400195 ctx->large_files), ctx->large_files);
Theodore Ts'oda0fa8f2012-07-29 18:20:04 -0400196 log_out(ctx, P_("\n%12u regular file\n", "\n%12u regular files\n",
Theodore Ts'ob0e91c82012-03-17 23:21:00 -0400197 ctx->fs_regular_count), ctx->fs_regular_count);
Theodore Ts'oda0fa8f2012-07-29 18:20:04 -0400198 log_out(ctx, P_("%12u directory\n", "%12u directories\n",
Theodore Ts'ob0e91c82012-03-17 23:21:00 -0400199 ctx->fs_directory_count), ctx->fs_directory_count);
Theodore Ts'oda0fa8f2012-07-29 18:20:04 -0400200 log_out(ctx, P_("%12u character device file\n",
201 "%12u character device files\n", ctx->fs_chardev_count),
Theodore Ts'o113e4052003-05-17 21:00:46 -0400202 ctx->fs_chardev_count);
Theodore Ts'oda0fa8f2012-07-29 18:20:04 -0400203 log_out(ctx, P_("%12u block device file\n", "%12u block device files\n",
Theodore Ts'ob0e91c82012-03-17 23:21:00 -0400204 ctx->fs_blockdev_count), ctx->fs_blockdev_count);
Theodore Ts'oda0fa8f2012-07-29 18:20:04 -0400205 log_out(ctx, P_("%12u fifo\n", "%12u fifos\n", ctx->fs_fifo_count),
Theodore Ts'o113e4052003-05-17 21:00:46 -0400206 ctx->fs_fifo_count);
Theodore Ts'oe3507732013-01-01 13:28:27 -0500207 log_out(ctx, P_("%12u link\n", "%12u links\n", num_links),
Theodore Ts'o113e4052003-05-17 21:00:46 -0400208 ctx->fs_links_count - dir_links);
Theodore Ts'oda0fa8f2012-07-29 18:20:04 -0400209 log_out(ctx, P_("%12u symbolic link", "%12u symbolic links",
Theodore Ts'ob0e91c82012-03-17 23:21:00 -0400210 ctx->fs_symlinks_count), ctx->fs_symlinks_count);
211 log_out(ctx, P_(" (%u fast symbolic link)\n",
212 " (%u fast symbolic links)\n",
213 ctx->fs_fast_symlinks_count),
214 ctx->fs_fast_symlinks_count);
Theodore Ts'oda0fa8f2012-07-29 18:20:04 -0400215 log_out(ctx, P_("%12u socket\n", "%12u sockets\n",
216 ctx->fs_sockets_count),
Theodore Ts'o113e4052003-05-17 21:00:46 -0400217 ctx->fs_sockets_count);
Theodore Ts'oda0fa8f2012-07-29 18:20:04 -0400218 log_out(ctx, "------------\n");
Theodore Ts'oe3507732013-01-01 13:28:27 -0500219 log_out(ctx, P_("%12u file\n", "%12u files\n", num_files),
220 num_files);
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000221}
222
223static void check_mount(e2fsck_t ctx)
224{
225 errcode_t retval;
Theodore Ts'oee895132002-11-07 16:16:55 -0500226 int cont;
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000227
Theodore Ts'oee895132002-11-07 16:16:55 -0500228 retval = ext2fs_check_if_mounted(ctx->filesystem_name,
229 &ctx->mount_flags);
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000230 if (retval) {
231 com_err("ext2fs_check_if_mount", retval,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000232 _("while determining whether %s is mounted."),
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000233 ctx->filesystem_name);
234 return;
235 }
Theodore Ts'o83e6ac82001-07-30 16:29:52 -0400236
237 /*
Theodore Ts'oae1182c2005-12-09 18:11:16 -0500238 * If the filesystem isn't mounted, or it's the root
239 * filesystem and it's mounted read-only, and we're not doing
240 * a read/write check, then everything's fine.
Theodore Ts'o83e6ac82001-07-30 16:29:52 -0400241 */
Andreas Dilger732e26b2012-05-24 15:34:56 -0600242 if ((!(ctx->mount_flags & (EXT2_MF_MOUNTED | EXT2_MF_BUSY))) ||
Theodore Ts'oee895132002-11-07 16:16:55 -0500243 ((ctx->mount_flags & EXT2_MF_ISROOT) &&
Theodore Ts'oae1182c2005-12-09 18:11:16 -0500244 (ctx->mount_flags & EXT2_MF_READONLY) &&
245 !(ctx->options & E2F_OPT_WRITECHECK)))
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000246 return;
247
Theodore Ts'o78a0d2b2012-07-29 00:16:44 -0400248 if (((ctx->options & E2F_OPT_READONLY) ||
249 ((ctx->options & E2F_OPT_FORCE) &&
250 (ctx->mount_flags & EXT2_MF_READONLY))) &&
Theodore Ts'oae1182c2005-12-09 18:11:16 -0500251 !(ctx->options & E2F_OPT_WRITECHECK)) {
Andreas Dilger732e26b2012-05-24 15:34:56 -0600252 log_out(ctx, _("Warning! %s is %s.\n"),
253 ctx->filesystem_name,
254 ctx->mount_flags & EXT2_MF_MOUNTED ?
255 "mounted" : "in use");
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000256 return;
257 }
258
Andreas Dilger732e26b2012-05-24 15:34:56 -0600259 log_out(ctx, _("%s is %s.\n"), ctx->filesystem_name,
260 ctx->mount_flags & EXT2_MF_MOUNTED ? "mounted" : "in use");
261 if (!ctx->interactive || ctx->mount_flags & EXT2_MF_BUSY)
Theodore Ts'o243dc312000-08-22 21:37:47 +0000262 fatal_error(ctx, _("Cannot continue, aborting.\n\n"));
Theodore Ts'o3fcd8fe2011-10-09 17:08:47 -0400263 puts("\007\007\007\007");
Theodore Ts'ob0e91c82012-03-17 23:21:00 -0400264 log_out(ctx, _("\n\nWARNING!!! "
265 "The filesystem is mounted. "
266 "If you continue you ***WILL***\n"
267 "cause ***SEVERE*** filesystem damage.\n\n"));
Theodore Ts'o3fcd8fe2011-10-09 17:08:47 -0400268 puts("\007\007\007");
Theodore Ts'ob0e91c82012-03-17 23:21:00 -0400269 cont = ask_yn(ctx, _("Do you really want to continue"), 0);
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000270 if (!cont) {
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000271 printf (_("check aborted.\n"));
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000272 exit (0);
273 }
274 return;
275}
276
Theodore Ts'o54434922003-12-07 01:28:50 -0500277static int is_on_batt(void)
Theodore Ts'o015b03d2003-11-21 11:02:22 -0500278{
279 FILE *f;
Theodore Ts'oc07f9f22004-04-12 00:16:44 -0400280 DIR *d;
281 char tmp[80], tmp2[80], fname[80];
Theodore Ts'o015b03d2003-11-21 11:02:22 -0500282 unsigned int acflag;
Theodore Ts'oc07f9f22004-04-12 00:16:44 -0400283 struct dirent* de;
Theodore Ts'o015b03d2003-11-21 11:02:22 -0500284
Theodore Ts'oad880a02012-02-20 19:10:19 -0500285 f = fopen("/sys/class/power_supply/AC/online", "r");
286 if (f) {
Theodore Ts'oe64e6762012-04-05 12:13:05 -0700287 if (fscanf(f, "%u\n", &acflag) == 1) {
Theodore Ts'oad880a02012-02-20 19:10:19 -0500288 fclose(f);
289 return (!acflag);
290 }
291 fclose(f);
292 }
Theodore Ts'o015b03d2003-11-21 11:02:22 -0500293 f = fopen("/proc/apm", "r");
294 if (f) {
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400295 if (fscanf(f, "%s %s %s %x", tmp, tmp, tmp, &acflag) != 4)
Theodore Ts'o015b03d2003-11-21 11:02:22 -0500296 acflag = 1;
297 fclose(f);
298 return (acflag != 1);
299 }
Theodore Ts'oc07f9f22004-04-12 00:16:44 -0400300 d = opendir("/proc/acpi/ac_adapter");
Theodore Ts'oecd0d8f2005-01-17 13:59:18 -0500301 if (d) {
Theodore Ts'o9214dcc2005-01-19 13:57:40 -0500302 while ((de=readdir(d)) != NULL) {
Theodore Ts'oecd0d8f2005-01-17 13:59:18 -0500303 if (!strncmp(".", de->d_name, 1))
304 continue;
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400305 snprintf(fname, 80, "/proc/acpi/ac_adapter/%s/state",
Theodore Ts'oecd0d8f2005-01-17 13:59:18 -0500306 de->d_name);
307 f = fopen(fname, "r");
308 if (!f)
309 continue;
310 if (fscanf(f, "%s %s", tmp2, tmp) != 2)
311 tmp[0] = 0;
312 fclose(f);
313 if (strncmp(tmp, "off-line", 8) == 0) {
314 closedir(d);
315 return 1;
316 }
Theodore Ts'oc07f9f22004-04-12 00:16:44 -0400317 }
Matthias Andree4b137042005-01-13 03:35:29 +0100318 closedir(d);
Theodore Ts'oecd0d8f2005-01-17 13:59:18 -0500319 }
Theodore Ts'o015b03d2003-11-21 11:02:22 -0500320 return 0;
321}
322
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000323/*
324 * This routine checks to see if a filesystem can be skipped; if so,
325 * it will exit with E2FSCK_OK. Under some conditions it will print a
326 * message explaining why a check is being forced.
327 */
328static void check_if_skip(e2fsck_t ctx)
329{
330 ext2_filsys fs = ctx->fs;
Theodore Ts'oa3efe482011-06-16 01:13:42 -0400331 struct problem_context pctx;
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000332 const char *reason = NULL;
Theodore Ts'ob6a08072001-06-14 01:16:17 +0000333 unsigned int reason_arg = 0;
Theodore Ts'o6de289c2003-11-21 10:54:54 -0500334 long next_check;
Theodore Ts'o015b03d2003-11-21 11:02:22 -0500335 int batt = is_on_batt();
Theodore Ts'oa5f37a92006-01-29 05:15:36 -0500336 int defer_check_on_battery;
Theodore Ts'o177839e2010-05-13 17:36:36 -0400337 int broken_system_clock;
Theodore Ts'o60702c22007-09-22 20:42:04 -0400338 time_t lastcheck;
Theodore Ts'oa5f37a92006-01-29 05:15:36 -0500339
Theodore Ts'o177839e2010-05-13 17:36:36 -0400340 profile_get_boolean(ctx->profile, "options", "broken_system_clock",
341 0, 0, &broken_system_clock);
342 if (ctx->flags & E2F_FLAG_TIME_INSANE)
343 broken_system_clock = 1;
Theodore Ts'oa5f37a92006-01-29 05:15:36 -0500344 profile_get_boolean(ctx->profile, "options",
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400345 "defer_check_on_battery", 0, 1,
Theodore Ts'oa5f37a92006-01-29 05:15:36 -0500346 &defer_check_on_battery);
347 if (!defer_check_on_battery)
348 batt = 0;
349
Theodore Ts'o1a855cb2007-08-10 23:58:56 -0400350 if ((ctx->options & E2F_OPT_FORCE) || bad_blocks_file || cflag)
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000351 return;
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400352
Bernd Schubert71873b12010-11-13 00:09:07 +0100353 if (ctx->options & E2F_OPT_JOURNAL_ONLY)
354 goto skip;
355
Theodore Ts'o60702c22007-09-22 20:42:04 -0400356 lastcheck = fs->super->s_lastcheck;
357 if (lastcheck > ctx->now)
358 lastcheck -= ctx->time_fudge;
Theodore Ts'o550a4af2005-01-25 03:09:24 -0500359 if ((fs->super->s_state & EXT2_ERROR_FS) ||
360 !ext2fs_test_valid(fs))
Theodore Ts'ob6a08072001-06-14 01:16:17 +0000361 reason = _(" contains a file system with errors");
Theodore Ts'o24fc5031998-08-26 15:23:31 +0000362 else if ((fs->super->s_state & EXT2_VALID_FS) == 0)
Theodore Ts'ob6a08072001-06-14 01:16:17 +0000363 reason = _(" was not cleanly unmounted");
Theodore Ts'o0c37f452007-10-01 09:18:54 -0400364 else if (check_backup_super_block(ctx))
365 reason = _(" primary superblock features different from backup");
Theodore Ts'obc57f152001-04-26 04:11:46 +0000366 else if ((fs->super->s_max_mnt_count > 0) &&
Theodore Ts'o17390c02000-07-07 04:13:21 +0000367 (fs->super->s_mnt_count >=
Theodore Ts'ob6a08072001-06-14 01:16:17 +0000368 (unsigned) fs->super->s_max_mnt_count)) {
369 reason = _(" has been mounted %u times without being checked");
370 reason_arg = fs->super->s_mnt_count;
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400371 if (batt && (fs->super->s_mnt_count <
Theodore Ts'o015b03d2003-11-21 11:02:22 -0500372 (unsigned) fs->super->s_max_mnt_count*2))
373 reason = 0;
Theodore Ts'o177839e2010-05-13 17:36:36 -0400374 } else if (!broken_system_clock && fs->super->s_checkinterval &&
375 (ctx->now < lastcheck)) {
Theodore Ts'o68eb0922008-06-07 12:19:08 -0400376 reason = _(" has filesystem last checked time in the future");
377 if (batt)
378 reason = 0;
Theodore Ts'o177839e2010-05-13 17:36:36 -0400379 } else if (!broken_system_clock && fs->super->s_checkinterval &&
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400380 ((ctx->now - lastcheck) >=
Theodore Ts'o2acad6b2008-06-07 11:04:10 -0400381 ((time_t) fs->super->s_checkinterval))) {
Theodore Ts'ob6a08072001-06-14 01:16:17 +0000382 reason = _(" has gone %u days without being checked");
Theodore Ts'o1f3ad142005-04-14 14:07:53 -0400383 reason_arg = (ctx->now - fs->super->s_lastcheck)/(3600*24);
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400384 if (batt && ((ctx->now - fs->super->s_lastcheck) <
Theodore Ts'o54434922003-12-07 01:28:50 -0500385 fs->super->s_checkinterval*2))
Theodore Ts'o015b03d2003-11-21 11:02:22 -0500386 reason = 0;
Theodore Ts'ob6a08072001-06-14 01:16:17 +0000387 }
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000388 if (reason) {
Theodore Ts'ob0e91c82012-03-17 23:21:00 -0400389 log_out(ctx, "%s", ctx->device_name);
390 log_out(ctx, reason, reason_arg);
391 log_out(ctx, _(", check forced.\n"));
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000392 return;
393 }
Theodore Ts'oa3efe482011-06-16 01:13:42 -0400394
395 /*
396 * Update the global counts from the block group counts. This
397 * is needed since modern kernels don't update the global
398 * counts so as to avoid locking the entire file system. So
399 * if the filesystem is not unmounted cleanly, the global
400 * counts may not be accurate. Update them here if we can,
401 * for the benefit of users who might examine the file system
402 * using dumpe2fs. (This is for cosmetic reasons only.)
403 */
404 clear_problem_context(&pctx);
405 pctx.ino = fs->super->s_free_inodes_count;
406 pctx.ino2 = ctx->free_inodes;
407 if ((pctx.ino != pctx.ino2) &&
408 !(ctx->options & E2F_OPT_READONLY) &&
409 fix_problem(ctx, PR_0_FREE_INODE_COUNT, &pctx)) {
410 fs->super->s_free_inodes_count = ctx->free_inodes;
411 ext2fs_mark_super_dirty(fs);
412 }
413 clear_problem_context(&pctx);
414 pctx.blk = ext2fs_free_blocks_count(fs->super);
415 pctx.blk2 = ctx->free_blocks;
416 if ((pctx.blk != pctx.blk2) &&
417 !(ctx->options & E2F_OPT_READONLY) &&
418 fix_problem(ctx, PR_0_FREE_BLOCK_COUNT, &pctx)) {
419 ext2fs_free_blocks_count_set(fs->super, ctx->free_blocks);
420 ext2fs_mark_super_dirty(fs);
421 }
422
423 /* Print the summary message when we're skipping a full check */
Theodore Ts'ob0e91c82012-03-17 23:21:00 -0400424 log_out(ctx, _("%s: clean, %u/%u files, %llu/%llu blocks"),
425 ctx->device_name,
426 fs->super->s_inodes_count - fs->super->s_free_inodes_count,
427 fs->super->s_inodes_count,
428 ext2fs_blocks_count(fs->super) -
429 ext2fs_free_blocks_count(fs->super),
430 ext2fs_blocks_count(fs->super));
Theodore Ts'o6de289c2003-11-21 10:54:54 -0500431 next_check = 100000;
432 if (fs->super->s_max_mnt_count > 0) {
433 next_check = fs->super->s_max_mnt_count - fs->super->s_mnt_count;
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400434 if (next_check <= 0)
Theodore Ts'o6de289c2003-11-21 10:54:54 -0500435 next_check = 1;
436 }
Theodore Ts'o177839e2010-05-13 17:36:36 -0400437 if (!broken_system_clock && fs->super->s_checkinterval &&
Theodore Ts'o1f3ad142005-04-14 14:07:53 -0400438 ((ctx->now - fs->super->s_lastcheck) >= fs->super->s_checkinterval))
Theodore Ts'o6de289c2003-11-21 10:54:54 -0500439 next_check = 1;
440 if (next_check <= 5) {
Theodore Ts'obc3392c2006-01-29 05:05:31 -0500441 if (next_check == 1) {
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400442 if (batt)
Theodore Ts'ob0e91c82012-03-17 23:21:00 -0400443 log_out(ctx, _(" (check deferred; "
444 "on battery)"));
Theodore Ts'obc3392c2006-01-29 05:05:31 -0500445 else
Theodore Ts'ob0e91c82012-03-17 23:21:00 -0400446 log_out(ctx, _(" (check after next mount)"));
Theodore Ts'obc3392c2006-01-29 05:05:31 -0500447 } else
Theodore Ts'ob0e91c82012-03-17 23:21:00 -0400448 log_out(ctx, _(" (check in %ld mounts)"), next_check);
Theodore Ts'o6de289c2003-11-21 10:54:54 -0500449 }
Theodore Ts'ob0e91c82012-03-17 23:21:00 -0400450 log_out(ctx, "\n");
Bernd Schubert71873b12010-11-13 00:09:07 +0100451skip:
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000452 ext2fs_close(fs);
Theodore Ts'o6d222f32001-07-29 12:06:58 -0400453 ctx->fs = NULL;
454 e2fsck_free_context(ctx);
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000455 exit(FSCK_OK);
456}
457
Theodore Ts'oefac9a11998-05-07 05:02:00 +0000458/*
459 * For completion notice
460 */
Theodore Ts'o5596def1999-07-19 15:27:37 +0000461struct percent_tbl {
462 int max_pass;
463 int table[32];
464};
465struct percent_tbl e2fsck_tbl = {
466 5, { 0, 70, 90, 92, 95, 100 }
467};
Theodore Ts'o54a31a32003-08-19 10:08:34 -0400468static char bar[128], spaces[128];
Theodore Ts'o5596def1999-07-19 15:27:37 +0000469
470static float calc_percent(struct percent_tbl *tbl, int pass, int curr,
471 int max)
472{
473 float percent;
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400474
Theodore Ts'o5596def1999-07-19 15:27:37 +0000475 if (pass <= 0)
476 return 0.0;
Theodore Ts'ob8d164c2000-08-08 03:17:04 +0000477 if (pass > tbl->max_pass || max == 0)
Theodore Ts'o5596def1999-07-19 15:27:37 +0000478 return 100.0;
479 percent = ((float) curr) / ((float) max);
480 return ((percent * (tbl->table[pass] - tbl->table[pass-1]))
481 + tbl->table[pass-1]);
482}
483
484extern void e2fsck_clear_progbar(e2fsck_t ctx)
485{
486 if (!(ctx->flags & E2F_FLAG_PROG_BAR))
487 return;
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400488
Theodore Ts'o54a31a32003-08-19 10:08:34 -0400489 printf("%s%s\r%s", ctx->start_meta, spaces + (sizeof(spaces) - 80),
490 ctx->stop_meta);
Theodore Ts'obc34d6b2003-04-16 14:05:06 -0400491 fflush(stdout);
Theodore Ts'o5596def1999-07-19 15:27:37 +0000492 ctx->flags &= ~E2F_FLAG_PROG_BAR;
493}
494
Theodore Ts'o520ead32003-04-19 13:48:27 -0400495int e2fsck_simple_progress(e2fsck_t ctx, const char *label, float percent,
Theodore Ts'ob0700a12003-03-14 01:43:56 -0500496 unsigned int dpynum)
497{
498 static const char spinner[] = "\\|/-";
Theodore Ts'ob0700a12003-03-14 01:43:56 -0500499 int i;
Theodore Ts'o54434922003-12-07 01:28:50 -0500500 unsigned int tick;
Theodore Ts'ob0700a12003-03-14 01:43:56 -0500501 struct timeval tv;
502 int dpywidth;
Theodore Ts'o9214dcc2005-01-19 13:57:40 -0500503 int fixed_percent;
Theodore Ts'ob0700a12003-03-14 01:43:56 -0500504
505 if (ctx->flags & E2F_FLAG_PROG_SUPPRESS)
506 return 0;
507
508 /*
509 * Calculate the new progress position. If the
510 * percentage hasn't changed, then we skip out right
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400511 * away.
Theodore Ts'ob0700a12003-03-14 01:43:56 -0500512 */
Theodore Ts'o9214dcc2005-01-19 13:57:40 -0500513 fixed_percent = (int) ((10 * percent) + 0.5);
514 if (ctx->progress_last_percent == fixed_percent)
Theodore Ts'ob0700a12003-03-14 01:43:56 -0500515 return 0;
Theodore Ts'o9214dcc2005-01-19 13:57:40 -0500516 ctx->progress_last_percent = fixed_percent;
Theodore Ts'ob0700a12003-03-14 01:43:56 -0500517
518 /*
519 * If we've already updated the spinner once within
520 * the last 1/8th of a second, no point doing it
521 * again.
522 */
523 gettimeofday(&tv, NULL);
524 tick = (tv.tv_sec << 3) + (tv.tv_usec / (1000000 / 8));
525 if ((tick == ctx->progress_last_time) &&
Theodore Ts'o9214dcc2005-01-19 13:57:40 -0500526 (fixed_percent != 0) && (fixed_percent != 1000))
Theodore Ts'ob0700a12003-03-14 01:43:56 -0500527 return 0;
528 ctx->progress_last_time = tick;
529
530 /*
531 * Advance the spinner, and note that the progress bar
532 * will be on the screen
533 */
534 ctx->progress_pos = (ctx->progress_pos+1) & 3;
535 ctx->flags |= E2F_FLAG_PROG_BAR;
536
537 dpywidth = 66 - strlen(label);
538 dpywidth = 8 * (dpywidth / 8);
539 if (dpynum)
540 dpywidth -= 8;
541
542 i = ((percent * dpywidth) + 50) / 100;
Theodore Ts'o54a31a32003-08-19 10:08:34 -0400543 printf("%s%s: |%s%s", ctx->start_meta, label,
544 bar + (sizeof(bar) - (i+1)),
Theodore Ts'ob0700a12003-03-14 01:43:56 -0500545 spaces + (sizeof(spaces) - (dpywidth - i + 1)));
Theodore Ts'o9214dcc2005-01-19 13:57:40 -0500546 if (fixed_percent == 1000)
Theodore Ts'ob0700a12003-03-14 01:43:56 -0500547 fputc('|', stdout);
548 else
549 fputc(spinner[ctx->progress_pos & 3], stdout);
Theodore Ts'o9214dcc2005-01-19 13:57:40 -0500550 printf(" %4.1f%% ", percent);
Theodore Ts'ob0700a12003-03-14 01:43:56 -0500551 if (dpynum)
Theodore Ts'o9214dcc2005-01-19 13:57:40 -0500552 printf("%u\r", dpynum);
Theodore Ts'ob0700a12003-03-14 01:43:56 -0500553 else
Theodore Ts'o9214dcc2005-01-19 13:57:40 -0500554 fputs(" \r", stdout);
555 fputs(ctx->stop_meta, stdout);
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400556
Theodore Ts'o9214dcc2005-01-19 13:57:40 -0500557 if (fixed_percent == 1000)
Theodore Ts'ob0700a12003-03-14 01:43:56 -0500558 e2fsck_clear_progbar(ctx);
559 fflush(stdout);
560
561 return 0;
562}
563
Theodore Ts'oefac9a11998-05-07 05:02:00 +0000564static int e2fsck_update_progress(e2fsck_t ctx, int pass,
565 unsigned long cur, unsigned long max)
566{
Theodore Ts'o1dc506c2008-03-26 09:09:09 -0400567 char buf[1024];
Theodore Ts'o5596def1999-07-19 15:27:37 +0000568 float percent;
Theodore Ts'of75c28d1998-08-01 04:18:06 +0000569
570 if (pass == 0)
571 return 0;
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400572
Theodore Ts'oefac9a11998-05-07 05:02:00 +0000573 if (ctx->progress_fd) {
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400574 snprintf(buf, sizeof(buf), "%d %lu %lu %s\n",
Theodore Ts'o1dc506c2008-03-26 09:09:09 -0400575 pass, cur, max, ctx->device_name);
Theodore Ts'ob0258cb2009-04-22 15:09:41 -0400576 write_all(ctx->progress_fd, buf, strlen(buf));
Theodore Ts'oefac9a11998-05-07 05:02:00 +0000577 } else {
Theodore Ts'oe4c8e882000-07-05 23:54:46 +0000578 percent = calc_percent(&e2fsck_tbl, pass, cur, max);
Theodore Ts'ob0700a12003-03-14 01:43:56 -0500579 e2fsck_simple_progress(ctx, ctx->device_name,
580 percent, 0);
Theodore Ts'oefac9a11998-05-07 05:02:00 +0000581 }
582 return 0;
583}
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000584
585#define PATH_SET "PATH=/sbin"
586
Eric Sandeenfe65f1e2011-09-16 15:49:38 -0500587/*
588 * Make sure 0,1,2 file descriptors are open, so that we don't open
589 * the filesystem using the same file descriptor as stdout or stderr.
590 */
Theodore Ts'o5ba23cb2001-01-11 19:15:02 +0000591static void reserve_stdio_fds(void)
Theodore Ts'o24fc5031998-08-26 15:23:31 +0000592{
Eric Sandeenfe65f1e2011-09-16 15:49:38 -0500593 int fd = 0;
Theodore Ts'o24fc5031998-08-26 15:23:31 +0000594
Eric Sandeenfe65f1e2011-09-16 15:49:38 -0500595 while (fd <= 2) {
Theodore Ts'o24fc5031998-08-26 15:23:31 +0000596 fd = open("/dev/null", O_RDWR);
Theodore Ts'o75d83be1999-05-18 03:16:36 +0000597 if (fd < 0) {
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000598 fprintf(stderr, _("ERROR: Couldn't open "
599 "/dev/null (%s)\n"),
Theodore Ts'o75d83be1999-05-18 03:16:36 +0000600 strerror(errno));
601 break;
602 }
Theodore Ts'o24fc5031998-08-26 15:23:31 +0000603 }
Theodore Ts'o24fc5031998-08-26 15:23:31 +0000604}
605
Theodore Ts'o9ecd8be1999-10-20 18:24:31 +0000606#ifdef HAVE_SIGNAL_H
Theodore Ts'o54434922003-12-07 01:28:50 -0500607static void signal_progress_on(int sig EXT2FS_ATTR((unused)))
Theodore Ts'o5596def1999-07-19 15:27:37 +0000608{
Theodore Ts'o243dc312000-08-22 21:37:47 +0000609 e2fsck_t ctx = e2fsck_global_ctx;
Theodore Ts'o5596def1999-07-19 15:27:37 +0000610
611 if (!ctx)
612 return;
613
614 ctx->progress = e2fsck_update_progress;
Theodore Ts'o5596def1999-07-19 15:27:37 +0000615}
616
Theodore Ts'o54434922003-12-07 01:28:50 -0500617static void signal_progress_off(int sig EXT2FS_ATTR((unused)))
Theodore Ts'o5596def1999-07-19 15:27:37 +0000618{
Theodore Ts'o243dc312000-08-22 21:37:47 +0000619 e2fsck_t ctx = e2fsck_global_ctx;
Theodore Ts'o5596def1999-07-19 15:27:37 +0000620
621 if (!ctx)
622 return;
623
624 e2fsck_clear_progbar(ctx);
625 ctx->progress = 0;
626}
Theodore Ts'o4cae0452002-07-21 14:14:03 -0400627
Theodore Ts'o54434922003-12-07 01:28:50 -0500628static void signal_cancel(int sig EXT2FS_ATTR((unused)))
Theodore Ts'o4cae0452002-07-21 14:14:03 -0400629{
630 e2fsck_t ctx = e2fsck_global_ctx;
631
632 if (!ctx)
633 exit(FSCK_CANCELED);
634
635 ctx->flags |= E2F_FLAG_CANCEL;
636}
Theodore Ts'o9ecd8be1999-10-20 18:24:31 +0000637#endif
Theodore Ts'o5596def1999-07-19 15:27:37 +0000638
Theodore Ts'o0684a4f2002-08-17 10:19:44 -0400639static void parse_extended_opts(e2fsck_t ctx, const char *opts)
640{
641 char *buf, *token, *next, *p, *arg;
Theodore Ts'of3640932003-03-01 19:47:44 -0500642 int ea_ver;
Theodore Ts'o0684a4f2002-08-17 10:19:44 -0400643 int extended_usage = 0;
644
Theodore Ts'of3640932003-03-01 19:47:44 -0500645 buf = string_copy(ctx, opts, 0);
Theodore Ts'o0684a4f2002-08-17 10:19:44 -0400646 for (token = buf; token && *token; token = next) {
647 p = strchr(token, ',');
648 next = 0;
649 if (p) {
650 *p = 0;
651 next = p+1;
Brian Behlendorfcae542c2007-03-28 11:28:24 -0400652 }
Theodore Ts'o0684a4f2002-08-17 10:19:44 -0400653 arg = strchr(token, '=');
654 if (arg) {
655 *arg = 0;
656 arg++;
657 }
658 if (strcmp(token, "ea_ver") == 0) {
659 if (!arg) {
660 extended_usage++;
661 continue;
662 }
663 ea_ver = strtoul(arg, &p, 0);
664 if (*p ||
665 ((ea_ver != 1) && (ea_ver != 2))) {
666 fprintf(stderr,
667 _("Invalid EA version.\n"));
668 extended_usage++;
669 continue;
670 }
671 ctx->ext_attr_ver = ea_ver;
Theodore Ts'o63b5e352008-08-10 22:43:24 -0400672 } else if (strcmp(token, "fragcheck") == 0) {
673 ctx->options |= E2F_OPT_FRAGCHECK;
674 continue;
Bernd Schubert71873b12010-11-13 00:09:07 +0100675 } else if (strcmp(token, "journal_only") == 0) {
676 if (arg) {
677 extended_usage++;
678 continue;
679 }
680 ctx->options |= E2F_OPT_JOURNAL_ONLY;
Lukas Czernerefa1a352010-11-18 03:38:38 +0000681 } else if (strcmp(token, "discard") == 0) {
682 ctx->options |= E2F_OPT_DISCARD;
683 continue;
684 } else if (strcmp(token, "nodiscard") == 0) {
685 ctx->options &= ~E2F_OPT_DISCARD;
686 continue;
Theodore Ts'ob0e91c82012-03-17 23:21:00 -0400687 } else if (strcmp(token, "log_filename") == 0) {
688 if (!arg)
689 extended_usage++;
690 else
691 ctx->log_fn = string_copy(ctx, arg, 0);
692 continue;
Theodore Ts'obb145b02005-06-20 08:35:27 -0400693 } else {
694 fprintf(stderr, _("Unknown extended option: %s\n"),
695 token);
Theodore Ts'o0684a4f2002-08-17 10:19:44 -0400696 extended_usage++;
Theodore Ts'obb145b02005-06-20 08:35:27 -0400697 }
Theodore Ts'o0684a4f2002-08-17 10:19:44 -0400698 }
Brian Behlendorfcae542c2007-03-28 11:28:24 -0400699 free(buf);
700
Theodore Ts'o0684a4f2002-08-17 10:19:44 -0400701 if (extended_usage) {
Theodore Ts'obb145b02005-06-20 08:35:27 -0400702 fputs(("\nExtended options are separated by commas, "
703 "and may take an argument which\n"
704 "is set off by an equals ('=') sign. "
Theodore Ts'o63b5e352008-08-10 22:43:24 -0400705 "Valid extended options are:\n"), stderr);
706 fputs(("\tea_ver=<ea_version (1 or 2)>\n"), stderr);
707 fputs(("\tfragcheck\n"), stderr);
Bernd Schubert71873b12010-11-13 00:09:07 +0100708 fputs(("\tjournal_only\n"), stderr);
Lukas Czernerefa1a352010-11-18 03:38:38 +0000709 fputs(("\tdiscard\n"), stderr);
710 fputs(("\tnodiscard\n"), stderr);
Theodore Ts'o63b5e352008-08-10 22:43:24 -0400711 fputc('\n', stderr);
Theodore Ts'o0684a4f2002-08-17 10:19:44 -0400712 exit(1);
713 }
Brian Behlendorfcae542c2007-03-28 11:28:24 -0400714}
Theodore Ts'o0684a4f2002-08-17 10:19:44 -0400715
Theodore Ts'of5f14fc2006-01-04 10:32:16 -0500716static void syntax_err_report(const char *filename, long err, int line_num)
717{
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400718 fprintf(stderr,
Theodore Ts'of5f14fc2006-01-04 10:32:16 -0500719 _("Syntax error in e2fsck config file (%s, line #%d)\n\t%s\n"),
720 filename, line_num, error_message(err));
721 exit(FSCK_ERROR);
722}
723
Matthias Andreeabcfdfd2006-06-10 16:08:18 +0200724static const char *config_fn[] = { ROOT_SYSCONFDIR "/e2fsck.conf", 0 };
Theodore Ts'o0684a4f2002-08-17 10:19:44 -0400725
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000726static errcode_t PRS(int argc, char *argv[], e2fsck_t *ret_ctx)
727{
728 int flush = 0;
Theodore Ts'oae8160e2001-05-01 21:13:37 +0000729 int c, fd;
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000730#ifdef MTRACE
731 extern void *mallwatch;
732#endif
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000733 e2fsck_t ctx;
734 errcode_t retval;
Theodore Ts'o9ecd8be1999-10-20 18:24:31 +0000735#ifdef HAVE_SIGNAL_H
Theodore Ts'o5596def1999-07-19 15:27:37 +0000736 struct sigaction sa;
Theodore Ts'o9ecd8be1999-10-20 18:24:31 +0000737#endif
Theodore Ts'o0684a4f2002-08-17 10:19:44 -0400738 char *extended_opts = 0;
Theodore Ts'o5dd2a6e2005-12-31 16:21:00 -0500739 char *cp;
Theodore Ts'o5845caa2007-08-20 22:55:33 -0400740 int res; /* result of sscanf */
741#ifdef CONFIG_JBD_DEBUG
742 char *jbd_debug;
743#endif
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000744
745 retval = e2fsck_allocate_context(&ctx);
746 if (retval)
747 return retval;
748
749 *ret_ctx = ctx;
750
Theodore Ts'o908b7852003-04-16 15:20:13 -0400751 setvbuf(stdout, NULL, _IONBF, BUFSIZ);
752 setvbuf(stderr, NULL, _IONBF, BUFSIZ);
Theodore Ts'o54a31a32003-08-19 10:08:34 -0400753 if (isatty(0) && isatty(1)) {
754 ctx->interactive = 1;
755 } else {
756 ctx->start_meta[0] = '\001';
757 ctx->stop_meta[0] = '\002';
758 }
759 memset(bar, '=', sizeof(bar)-1);
760 memset(spaces, ' ', sizeof(spaces)-1);
Theodore Ts'oa6d83022006-12-26 03:38:07 -0500761 add_error_table(&et_ext2_error_table);
762 add_error_table(&et_prof_error_table);
Theodore Ts'of3640932003-03-01 19:47:44 -0500763 blkid_get_cache(&ctx->blkid, NULL);
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400764
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000765 if (argc && *argv)
766 ctx->program_name = *argv;
767 else
768 ctx->program_name = "e2fsck";
Lukas Czernerefa1a352010-11-18 03:38:38 +0000769
Theodore Ts'o4fb9d522004-02-24 00:16:09 -0500770 while ((c = getopt (argc, argv, "panyrcC:B:dE:fvtFVM:b:I:j:P:l:L:N:SsDk")) != EOF)
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000771 switch (c) {
Theodore Ts'oefac9a11998-05-07 05:02:00 +0000772 case 'C':
773 ctx->progress = e2fsck_update_progress;
Theodore Ts'o5845caa2007-08-20 22:55:33 -0400774 res = sscanf(optarg, "%d", &ctx->progress_fd);
775 if (res != 1)
776 goto sscanf_err;
777
Theodore Ts'obe625232008-03-26 08:26:01 -0400778 if (ctx->progress_fd < 0) {
779 ctx->progress = 0;
780 ctx->progress_fd = ctx->progress_fd * -1;
781 }
Theodore Ts'ofc9a69c2001-05-12 13:43:46 +0000782 if (!ctx->progress_fd)
783 break;
Theodore Ts'oae8160e2001-05-01 21:13:37 +0000784 /* Validate the file descriptor to avoid disasters */
785 fd = dup(ctx->progress_fd);
786 if (fd < 0) {
787 fprintf(stderr,
788 _("Error validating file descriptor %d: %s\n"),
789 ctx->progress_fd,
790 error_message(errno));
791 fatal_error(ctx,
792 _("Invalid completion information file descriptor"));
793 } else
794 close(fd);
Theodore Ts'oefac9a11998-05-07 05:02:00 +0000795 break;
Theodore Ts'o850d05e2002-07-25 00:00:08 -0400796 case 'D':
797 ctx->options |= E2F_OPT_COMPRESS_DIRS;
798 break;
Theodore Ts'o0684a4f2002-08-17 10:19:44 -0400799 case 'E':
800 extended_opts = optarg;
801 break;
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000802 case 'p':
803 case 'a':
Theodore Ts'o8161a742003-01-02 16:36:44 -0500804 if (ctx->options & (E2F_OPT_YES|E2F_OPT_NO)) {
805 conflict_opt:
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400806 fatal_error(ctx,
Theodore Ts'of4b6d2a2005-12-09 17:31:08 -0500807 _("Only one of the options -p/-a, -n or -y may be specified."));
Theodore Ts'o8161a742003-01-02 16:36:44 -0500808 }
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000809 ctx->options |= E2F_OPT_PREEN;
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000810 break;
811 case 'n':
Theodore Ts'o8161a742003-01-02 16:36:44 -0500812 if (ctx->options & (E2F_OPT_YES|E2F_OPT_PREEN))
813 goto conflict_opt;
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000814 ctx->options |= E2F_OPT_NO;
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000815 break;
816 case 'y':
Theodore Ts'o8161a742003-01-02 16:36:44 -0500817 if (ctx->options & (E2F_OPT_PREEN|E2F_OPT_NO))
818 goto conflict_opt;
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000819 ctx->options |= E2F_OPT_YES;
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000820 break;
821 case 't':
Theodore Ts'o8bf191e1997-10-20 01:38:32 +0000822#ifdef RESOURCE_TRACK
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000823 if (ctx->options & E2F_OPT_TIME)
824 ctx->options |= E2F_OPT_TIME2;
825 else
826 ctx->options |= E2F_OPT_TIME;
Theodore Ts'o8bf191e1997-10-20 01:38:32 +0000827#else
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000828 fprintf(stderr, _("The -t option is not "
829 "supported on this version of e2fsck.\n"));
Theodore Ts'o8bf191e1997-10-20 01:38:32 +0000830#endif
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000831 break;
832 case 'c':
Theodore Ts'o3ed57c22001-12-24 15:01:59 -0500833 if (cflag++)
834 ctx->options |= E2F_OPT_WRITECHECK;
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000835 ctx->options |= E2F_OPT_CHECKBLOCKS;
836 break;
837 case 'r':
838 /* What we do by default, anyway! */
839 break;
840 case 'b':
Valerie Aurora Henson6dc64392010-06-13 17:00:00 -0400841 res = sscanf(optarg, "%llu", &ctx->use_superblock);
Theodore Ts'o5845caa2007-08-20 22:55:33 -0400842 if (res != 1)
843 goto sscanf_err;
Theodore Ts'oae6cdcf2001-09-19 15:17:25 -0400844 ctx->flags |= E2F_FLAG_SB_SPECIFIED;
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000845 break;
846 case 'B':
Theodore Ts'of1a17612001-12-23 22:27:52 -0500847 ctx->blocksize = atoi(optarg);
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000848 break;
849 case 'I':
Theodore Ts'o5845caa2007-08-20 22:55:33 -0400850 res = sscanf(optarg, "%d", &ctx->inode_buffer_blocks);
851 if (res != 1)
852 goto sscanf_err;
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000853 break;
Theodore Ts'oadee8d72001-07-23 00:17:49 -0400854 case 'j':
Theodore Ts'ob95ca922010-12-06 17:07:27 -0500855 ctx->journal_name = blkid_get_devname(ctx->blkid,
856 optarg, NULL);
857 if (!ctx->journal_name) {
858 com_err(ctx->program_name, 0,
859 _("Unable to resolve '%s'"),
860 optarg);
861 fatal_error(ctx, 0);
862 }
Theodore Ts'oadee8d72001-07-23 00:17:49 -0400863 break;
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000864 case 'P':
Theodore Ts'o5845caa2007-08-20 22:55:33 -0400865 res = sscanf(optarg, "%d", &ctx->process_inode_size);
866 if (res != 1)
867 goto sscanf_err;
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000868 break;
869 case 'L':
870 replace_bad_blocks++;
871 case 'l':
Theodore Ts'of3640932003-03-01 19:47:44 -0500872 bad_blocks_file = string_copy(ctx, optarg, 0);
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000873 break;
874 case 'd':
875 ctx->options |= E2F_OPT_DEBUG;
876 break;
877 case 'f':
Theodore Ts'od37066a2001-12-21 23:28:54 -0500878 ctx->options |= E2F_OPT_FORCE;
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000879 break;
880 case 'F':
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000881 flush = 1;
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000882 break;
883 case 'v':
884 verbose = 1;
885 break;
886 case 'V':
887 show_version_only = 1;
888 break;
889#ifdef MTRACE
890 case 'M':
891 mallwatch = (void *) strtol(optarg, NULL, 0);
892 break;
893#endif
894 case 'N':
Theodore Ts'oa2447f82008-03-29 14:46:48 -0400895 ctx->device_name = string_copy(ctx, optarg, 0);
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000896 break;
Theodore Ts'o4fb9d522004-02-24 00:16:09 -0500897 case 'k':
898 keep_bad_blocks++;
Theodore Ts'obc69f822004-02-27 10:39:27 -0500899 break;
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000900 default:
901 usage(ctx);
902 }
903 if (show_version_only)
904 return 0;
905 if (optind != argc - 1)
906 usage(ctx);
Theodore Ts'o298c9c22010-03-12 19:18:20 -0500907 if ((ctx->options & E2F_OPT_NO) &&
908 (ctx->options & E2F_OPT_COMPRESS_DIRS)) {
909 com_err(ctx->program_name, 0,
910 _("The -n and -D options are incompatible."));
911 fatal_error(ctx, 0);
912 }
913 if ((ctx->options & E2F_OPT_NO) && cflag) {
914 com_err(ctx->program_name, 0,
915 _("The -n and -c options are incompatible."));
916 fatal_error(ctx, 0);
917 }
918 if ((ctx->options & E2F_OPT_NO) && bad_blocks_file) {
919 com_err(ctx->program_name, 0,
920 _("The -n and -l/-L options are incompatible."));
921 fatal_error(ctx, 0);
922 }
923 if (ctx->options & E2F_OPT_NO)
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000924 ctx->options |= E2F_OPT_READONLY;
Jose R. Santos49a73602007-10-21 21:04:03 -0500925
Theodore Ts'o2e8ca9a2004-11-30 14:07:11 -0500926 ctx->io_options = strchr(argv[optind], '?');
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400927 if (ctx->io_options)
Theodore Ts'o2e8ca9a2004-11-30 14:07:11 -0500928 *ctx->io_options++ = 0;
Theodore Ts'of3640932003-03-01 19:47:44 -0500929 ctx->filesystem_name = blkid_get_devname(ctx->blkid, argv[optind], 0);
Theodore Ts'o817e49e2003-11-21 09:10:29 -0500930 if (!ctx->filesystem_name) {
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400931 com_err(ctx->program_name, 0, _("Unable to resolve '%s'"),
Theodore Ts'o817e49e2003-11-21 09:10:29 -0500932 argv[optind]);
933 fatal_error(ctx, 0);
934 }
Theodore Ts'o0684a4f2002-08-17 10:19:44 -0400935 if (extended_opts)
936 parse_extended_opts(ctx, extended_opts);
Theodore Ts'o1017f652005-12-31 00:00:10 -0500937
Theodore Ts'o5dd2a6e2005-12-31 16:21:00 -0500938 if ((cp = getenv("E2FSCK_CONFIG")) != NULL)
939 config_fn[0] = cp;
Theodore Ts'of5f14fc2006-01-04 10:32:16 -0500940 profile_set_syntax_err_cb(syntax_err_report);
Theodore Ts'o1017f652005-12-31 00:00:10 -0500941 profile_init(config_fn, &ctx->profile);
942
Theodore Ts'oc0a84962012-07-29 17:44:11 -0400943 profile_get_boolean(ctx->profile, "options", "report_time", 0, 0,
944 &c);
945 if (c)
946 ctx->options |= E2F_OPT_TIME | E2F_OPT_TIME2;
947 profile_get_boolean(ctx->profile, "options", "report_verbose", 0, 0,
948 &c);
949 if (c)
950 verbose = 1;
951
Lukas Czernerf0fe5da2012-03-11 15:35:06 -0400952 /* Turn off discard in read-only mode */
953 if ((ctx->options & E2F_OPT_NO) &&
954 (ctx->options & E2F_OPT_DISCARD))
955 ctx->options &= ~E2F_OPT_DISCARD;
956
Theodore Ts'o28ffafb2000-02-08 19:14:02 +0000957 if (flush) {
Theodore Ts'o4ea7bd02001-12-16 23:23:37 -0500958 fd = open(ctx->filesystem_name, O_RDONLY, 0);
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000959 if (fd < 0) {
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000960 com_err("open", errno,
961 _("while opening %s for flushing"),
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000962 ctx->filesystem_name);
Theodore Ts'o243dc312000-08-22 21:37:47 +0000963 fatal_error(ctx, 0);
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000964 }
Theodore Ts'o5df55d72001-06-11 07:00:04 +0000965 if ((retval = ext2fs_sync_device(fd, 1))) {
Theodore Ts'o5ba23cb2001-01-11 19:15:02 +0000966 com_err("ext2fs_sync_device", retval,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +0000967 _("while trying to flush %s"),
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000968 ctx->filesystem_name);
Theodore Ts'o243dc312000-08-22 21:37:47 +0000969 fatal_error(ctx, 0);
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000970 }
971 close(fd);
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000972 }
Theodore Ts'o3ed57c22001-12-24 15:01:59 -0500973 if (cflag && bad_blocks_file) {
974 fprintf(stderr, _("The -c and the -l/-L options may "
975 "not be both used at the same time.\n"));
976 exit(FSCK_USAGE);
977 }
Theodore Ts'o9ecd8be1999-10-20 18:24:31 +0000978#ifdef HAVE_SIGNAL_H
Theodore Ts'o5596def1999-07-19 15:27:37 +0000979 /*
980 * Set up signal action
981 */
982 memset(&sa, 0, sizeof(struct sigaction));
Theodore Ts'o850d05e2002-07-25 00:00:08 -0400983 sa.sa_handler = signal_cancel;
984 sigaction(SIGINT, &sa, 0);
985 sigaction(SIGTERM, &sa, 0);
Theodore Ts'o5596def1999-07-19 15:27:37 +0000986#ifdef SA_RESTART
987 sa.sa_flags = SA_RESTART;
988#endif
Theodore Ts'o243dc312000-08-22 21:37:47 +0000989 e2fsck_global_ctx = ctx;
Theodore Ts'o5596def1999-07-19 15:27:37 +0000990 sa.sa_handler = signal_progress_on;
991 sigaction(SIGUSR1, &sa, 0);
992 sa.sa_handler = signal_progress_off;
993 sigaction(SIGUSR2, &sa, 0);
Theodore Ts'o9ecd8be1999-10-20 18:24:31 +0000994#endif
Theodore Ts'o6d222f32001-07-29 12:06:58 -0400995
996 /* Update our PATH to include /sbin if we need to run badblocks */
997 if (cflag) {
998 char *oldpath = getenv("PATH");
Theodore Ts'o642935c2006-11-14 23:38:17 -0500999 char *newpath;
1000 int len = sizeof(PATH_SET) + 1;
Theodore Ts'o6d222f32001-07-29 12:06:58 -04001001
Theodore Ts'o642935c2006-11-14 23:38:17 -05001002 if (oldpath)
1003 len += strlen(oldpath);
1004
1005 newpath = malloc(len);
1006 if (!newpath)
1007 fatal_error(ctx, "Couldn't malloc() newpath");
1008 strcpy(newpath, PATH_SET);
1009
1010 if (oldpath) {
1011 strcat(newpath, ":");
1012 strcat(newpath, oldpath);
1013 }
1014 putenv(newpath);
Theodore Ts'o6d222f32001-07-29 12:06:58 -04001015 }
Theodore Ts'o5e72cdb2002-11-08 15:35:13 -05001016#ifdef CONFIG_JBD_DEBUG
Theodore Ts'o5845caa2007-08-20 22:55:33 -04001017 jbd_debug = getenv("E2FSCK_JBD_DEBUG");
Theodore Ts'o414025e2008-01-31 14:22:24 -05001018 if (jbd_debug) {
Theodore Ts'o5845caa2007-08-20 22:55:33 -04001019 res = sscanf(jbd_debug, "%d", &journal_enable_debug);
1020 if (res != 1) {
1021 fprintf(stderr,
1022 _("E2FSCK_JBD_DEBUG \"%s\" not an integer\n\n"),
1023 jbd_debug);
1024 exit (1);
1025 }
Theodore Ts'o414025e2008-01-31 14:22:24 -05001026 }
Theodore Ts'o5e72cdb2002-11-08 15:35:13 -05001027#endif
Theodore Ts'o1b6bf171997-10-03 17:48:10 +00001028 return 0;
Theodore Ts'o5845caa2007-08-20 22:55:33 -04001029
1030sscanf_err:
1031 fprintf(stderr, _("\nInvalid non-numeric argument to -%c (\"%s\")\n\n"),
1032 c, optarg);
1033 exit (1);
Theodore Ts'o1b6bf171997-10-03 17:48:10 +00001034}
1035
Theodore Ts'o60663892009-05-28 23:40:18 -04001036static errcode_t try_open_fs(e2fsck_t ctx, int flags, io_manager io_ptr,
1037 ext2_filsys *ret_fs)
1038{
1039 errcode_t retval;
1040
1041 *ret_fs = NULL;
1042 if (ctx->superblock && ctx->blocksize) {
1043 retval = ext2fs_open2(ctx->filesystem_name, ctx->io_options,
1044 flags, ctx->superblock, ctx->blocksize,
1045 io_ptr, ret_fs);
1046 } else if (ctx->superblock) {
1047 int blocksize;
1048 for (blocksize = EXT2_MIN_BLOCK_SIZE;
1049 blocksize <= EXT2_MAX_BLOCK_SIZE; blocksize *= 2) {
1050 if (*ret_fs) {
1051 ext2fs_free(*ret_fs);
1052 *ret_fs = NULL;
1053 }
1054 retval = ext2fs_open2(ctx->filesystem_name,
1055 ctx->io_options, flags,
1056 ctx->superblock, blocksize,
1057 io_ptr, ret_fs);
1058 if (!retval)
1059 break;
1060 }
1061 } else
1062 retval = ext2fs_open2(ctx->filesystem_name, ctx->io_options,
1063 flags, 0, 0, io_ptr, ret_fs);
Theodore Ts'o830b44f2011-12-16 14:55:50 -05001064
Nickolai Zeldovicha046da52013-01-08 15:45:31 -05001065 if (retval == 0)
Theodore Ts'o830b44f2011-12-16 14:55:50 -05001066 e2fsck_set_bitmap_type(*ret_fs, EXT2FS_BMAP64_RBTREE,
1067 "default", NULL);
Theodore Ts'o60663892009-05-28 23:40:18 -04001068 return retval;
1069}
1070
Theodore Ts'o1b6bf171997-10-03 17:48:10 +00001071static const char *my_ver_string = E2FSPROGS_VERSION;
1072static const char *my_ver_date = E2FSPROGS_DATE;
Jose R. Santos49a73602007-10-21 21:04:03 -05001073
Theodore Ts'oe64e6762012-04-05 12:13:05 -07001074static int e2fsck_check_mmp(ext2_filsys fs, e2fsck_t ctx)
Andreas Dilger0f5eba72011-09-24 13:48:55 -04001075{
1076 struct mmp_struct *mmp_s;
1077 unsigned int mmp_check_interval;
1078 errcode_t retval = 0;
1079 struct problem_context pctx;
1080 unsigned int wait_time = 0;
1081
1082 clear_problem_context(&pctx);
1083 if (fs->mmp_buf == NULL) {
1084 retval = ext2fs_get_mem(fs->blocksize, &fs->mmp_buf);
1085 if (retval)
1086 goto check_error;
1087 }
1088
1089 retval = ext2fs_mmp_read(fs, fs->super->s_mmp_block, fs->mmp_buf);
1090 if (retval)
1091 goto check_error;
1092
1093 mmp_s = fs->mmp_buf;
1094
1095 mmp_check_interval = fs->super->s_mmp_update_interval;
1096 if (mmp_check_interval < EXT4_MMP_MIN_CHECK_INTERVAL)
1097 mmp_check_interval = EXT4_MMP_MIN_CHECK_INTERVAL;
1098
1099 /*
1100 * If check_interval in MMP block is larger, use that instead of
1101 * check_interval from the superblock.
1102 */
1103 if (mmp_s->mmp_check_interval > mmp_check_interval)
1104 mmp_check_interval = mmp_s->mmp_check_interval;
1105
1106 wait_time = mmp_check_interval * 2 + 1;
1107
1108 if (mmp_s->mmp_seq == EXT4_MMP_SEQ_CLEAN)
1109 retval = 0;
1110 else if (mmp_s->mmp_seq == EXT4_MMP_SEQ_FSCK)
1111 retval = EXT2_ET_MMP_FSCK_ON;
1112 else if (mmp_s->mmp_seq > EXT4_MMP_SEQ_MAX)
1113 retval = EXT2_ET_MMP_UNKNOWN_SEQ;
1114
1115 if (retval)
1116 goto check_error;
1117
1118 /* Print warning if e2fck will wait for more than 20 secs. */
1119 if (verbose || wait_time > EXT4_MMP_MIN_CHECK_INTERVAL * 4) {
Theodore Ts'ob0e91c82012-03-17 23:21:00 -04001120 log_out(ctx, _("MMP interval is %u seconds and total wait "
1121 "time is %u seconds. Please wait...\n"),
Andreas Dilger0f5eba72011-09-24 13:48:55 -04001122 mmp_check_interval, wait_time * 2);
1123 }
1124
1125 return 0;
1126
1127check_error:
1128
1129 if (retval == EXT2_ET_MMP_BAD_BLOCK) {
1130 if (fix_problem(ctx, PR_0_MMP_INVALID_BLK, &pctx)) {
1131 fs->super->s_mmp_block = 0;
1132 ext2fs_mark_super_dirty(fs);
1133 retval = 0;
1134 }
1135 } else if (retval == EXT2_ET_MMP_FAILED) {
1136 com_err(ctx->program_name, retval,
1137 _("while checking MMP block"));
1138 dump_mmp_msg(fs->mmp_buf, NULL);
1139 } else if (retval == EXT2_ET_MMP_FSCK_ON ||
1140 retval == EXT2_ET_MMP_UNKNOWN_SEQ) {
1141 com_err(ctx->program_name, retval,
1142 _("while checking MMP block"));
1143 dump_mmp_msg(fs->mmp_buf,
1144 _("If you are sure the filesystem is not "
1145 "in use on any node, run:\n"
1146 "'tune2fs -f -E clear_mmp {device}'\n"));
1147 } else if (retval == EXT2_ET_MMP_MAGIC_INVALID) {
1148 if (fix_problem(ctx, PR_0_MMP_INVALID_MAGIC, &pctx)) {
1149 ext2fs_mmp_clear(fs);
1150 retval = 0;
1151 }
1152 }
1153 return retval;
1154}
1155
Theodore Ts'o1b6bf171997-10-03 17:48:10 +00001156int main (int argc, char *argv[])
1157{
Theodore Ts'o82b59ca2009-09-01 20:01:38 -04001158 errcode_t retval = 0, retval2 = 0, orig_retval = 0;
Theodore Ts'o1b6bf171997-10-03 17:48:10 +00001159 int exit_value = FSCK_OK;
Theodore Ts'o1b6bf171997-10-03 17:48:10 +00001160 ext2_filsys fs = 0;
1161 io_manager io_ptr;
Theodore Ts'o5dd8f962001-01-01 15:51:50 +00001162 struct ext2_super_block *sb;
Theodore Ts'o1b6bf171997-10-03 17:48:10 +00001163 const char *lib_ver_date;
1164 int my_ver, lib_ver;
1165 e2fsck_t ctx;
Darrick J. Wong4dbfd792013-10-07 09:51:48 -04001166 blk64_t orig_superblock;
Theodore Ts'o1b6bf171997-10-03 17:48:10 +00001167 struct problem_context pctx;
Theodore Ts'o08b21301997-11-03 19:42:40 +00001168 int flags, run_result;
Kalpak Shah5107d0d2007-06-21 11:59:06 -04001169 int journal_size;
Theodore Ts'o9f0288d2007-08-03 20:43:37 -04001170 int sysval, sys_page_size = 4096;
Valerie Aurora Hensonc5d2f502009-08-22 22:29:02 -04001171 int old_bitmaps;
Theodore Ts'odcc91e12008-02-26 20:59:56 -05001172 __u32 features[3];
Theodore Ts'o1dc506c2008-03-26 09:09:09 -04001173 char *cp;
Andreas Dilger1d6fd6d2012-11-29 05:47:52 -07001174 int qtype = -99; /* quota type */
Theodore Ts'oefc6f622008-08-27 23:07:54 -04001175
Theodore Ts'o1b6bf171997-10-03 17:48:10 +00001176 clear_problem_context(&pctx);
Theodore Ts'o9b3018a2011-08-11 14:56:49 -04001177 sigcatcher_setup();
Theodore Ts'o1b6bf171997-10-03 17:48:10 +00001178#ifdef MTRACE
1179 mtrace();
1180#endif
1181#ifdef MCHECK
1182 mcheck(0);
1183#endif
Theodore Ts'o0c4a0722000-02-07 03:11:03 +00001184#ifdef ENABLE_NLS
1185 setlocale(LC_MESSAGES, "");
Theodore Ts'o14308a52002-03-05 03:26:52 -05001186 setlocale(LC_CTYPE, "");
Theodore Ts'o0c4a0722000-02-07 03:11:03 +00001187 bindtextdomain(NLS_CAT_NAME, LOCALEDIR);
1188 textdomain(NLS_CAT_NAME);
Theodore Ts'o9d4507c2011-10-05 01:00:30 -04001189 set_com_err_gettext(gettext);
Theodore Ts'o0c4a0722000-02-07 03:11:03 +00001190#endif
Theodore Ts'o1b6bf171997-10-03 17:48:10 +00001191 my_ver = ext2fs_parse_version_string(my_ver_string);
1192 lib_ver = ext2fs_get_library_version(0, &lib_ver_date);
1193 if (my_ver > lib_ver) {
Theodore Ts'o0c4a0722000-02-07 03:11:03 +00001194 fprintf( stderr, _("Error: ext2fs library version "
1195 "out of date!\n"));
Theodore Ts'o1b6bf171997-10-03 17:48:10 +00001196 show_version_only++;
1197 }
Theodore Ts'oefc6f622008-08-27 23:07:54 -04001198
Theodore Ts'o1b6bf171997-10-03 17:48:10 +00001199 retval = PRS(argc, argv, &ctx);
1200 if (retval) {
1201 com_err("e2fsck", retval,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +00001202 _("while trying to initialize program"));
Theodore Ts'o243dc312000-08-22 21:37:47 +00001203 exit(FSCK_ERROR);
Theodore Ts'o1b6bf171997-10-03 17:48:10 +00001204 }
Theodore Ts'o24fc5031998-08-26 15:23:31 +00001205 reserve_stdio_fds();
Theodore Ts'oefc6f622008-08-27 23:07:54 -04001206
Theodore Ts'ob0e91c82012-03-17 23:21:00 -04001207 set_up_logging(ctx);
1208 if (ctx->logf) {
1209 int i;
1210 fputs("E2fsck run: ", ctx->logf);
1211 for (i = 0; i < argc; i++) {
1212 if (i)
1213 fputc(' ', ctx->logf);
1214 fputs(argv[i], ctx->logf);
1215 }
1216 fputc('\n', ctx->logf);
1217 }
1218
Theodore Ts'o6d96b002007-08-03 20:07:09 -04001219 init_resource_track(&ctx->global_rtrack, NULL);
Theodore Ts'o1b6bf171997-10-03 17:48:10 +00001220 if (!(ctx->options & E2F_OPT_PREEN) || show_version_only)
Theodore Ts'ob0e91c82012-03-17 23:21:00 -04001221 log_err(ctx, "e2fsck %s (%s)\n", my_ver_string,
Theodore Ts'o0f8973f2001-08-27 12:44:23 -04001222 my_ver_date);
Theodore Ts'o1b6bf171997-10-03 17:48:10 +00001223
1224 if (show_version_only) {
Theodore Ts'ob0e91c82012-03-17 23:21:00 -04001225 log_err(ctx, _("\tUsing %s, %s\n"),
Theodore Ts'o1b6bf171997-10-03 17:48:10 +00001226 error_message(EXT2_ET_BASE), lib_ver_date);
Theodore Ts'o243dc312000-08-22 21:37:47 +00001227 exit(FSCK_OK);
Theodore Ts'o1b6bf171997-10-03 17:48:10 +00001228 }
Theodore Ts'oefc6f622008-08-27 23:07:54 -04001229
Theodore Ts'o1b6bf171997-10-03 17:48:10 +00001230 check_mount(ctx);
Theodore Ts'oefc6f622008-08-27 23:07:54 -04001231
Theodore Ts'o1b6bf171997-10-03 17:48:10 +00001232 if (!(ctx->options & E2F_OPT_PREEN) &&
1233 !(ctx->options & E2F_OPT_NO) &&
1234 !(ctx->options & E2F_OPT_YES)) {
Theodore Ts'o54a31a32003-08-19 10:08:34 -04001235 if (!ctx->interactive)
Theodore Ts'of8188ff1997-11-14 05:23:04 +00001236 fatal_error(ctx,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +00001237 _("need terminal for interactive repairs"));
Theodore Ts'o1b6bf171997-10-03 17:48:10 +00001238 }
1239 ctx->superblock = ctx->use_superblock;
Andreas Dilger0f5eba72011-09-24 13:48:55 -04001240
1241 flags = EXT2_FLAG_SKIP_MMP;
Theodore Ts'o1b6bf171997-10-03 17:48:10 +00001242restart:
Theodore Ts'o2a29f132003-05-05 12:08:47 -04001243#ifdef CONFIG_TESTIO_DEBUG
Theodore Ts'of38cf3c2008-09-01 11:17:29 -04001244 if (getenv("TEST_IO_FLAGS") || getenv("TEST_IO_BLOCK")) {
1245 io_ptr = test_io_manager;
1246 test_io_backing_manager = unix_io_manager;
1247 } else
Theodore Ts'o1b6bf171997-10-03 17:48:10 +00001248#endif
Theodore Ts'of38cf3c2008-09-01 11:17:29 -04001249 io_ptr = unix_io_manager;
Andreas Dilger0f5eba72011-09-24 13:48:55 -04001250 flags |= EXT2_FLAG_NOFREE_ON_ERROR;
Valerie Aurora Hensonc5d2f502009-08-22 22:29:02 -04001251 profile_get_boolean(ctx->profile, "options", "old_bitmaps", 0, 0,
1252 &old_bitmaps);
1253 if (!old_bitmaps)
1254 flags |= EXT2_FLAG_64BITS;
Andreas Dilgercd5bb7c2012-05-31 16:39:54 -04001255 if ((ctx->options & E2F_OPT_READONLY) == 0) {
1256 flags |= EXT2_FLAG_RW;
1257 if (!(ctx->mount_flags & EXT2_MF_ISROOT &&
1258 ctx->mount_flags & EXT2_MF_READONLY))
1259 flags |= EXT2_FLAG_EXCLUSIVE;
Theodore Ts'o78a0d2b2012-07-29 00:16:44 -04001260 if ((ctx->mount_flags & EXT2_MF_READONLY) &&
1261 (ctx->options & E2F_OPT_FORCE))
1262 flags &= ~EXT2_FLAG_EXCLUSIVE;
Andreas Dilgercd5bb7c2012-05-31 16:39:54 -04001263 }
Theodore Ts'o17390c02000-07-07 04:13:21 +00001264
Theodore Ts'o60663892009-05-28 23:40:18 -04001265 retval = try_open_fs(ctx, flags, io_ptr, &fs);
1266
Theodore Ts'oae6cdcf2001-09-19 15:17:25 -04001267 if (!ctx->superblock && !(ctx->options & E2F_OPT_PREEN) &&
1268 !(ctx->flags & E2F_FLAG_SB_SPECIFIED) &&
Theodore Ts'o1b6bf171997-10-03 17:48:10 +00001269 ((retval == EXT2_ET_BAD_MAGIC) ||
Theodore Ts'ocd538082007-09-07 16:54:11 -04001270 (retval == EXT2_ET_CORRUPT_SUPERBLOCK) ||
Theodore Ts'o82b59ca2009-09-01 20:01:38 -04001271 ((retval == 0) && (retval2 = ext2fs_check_desc(fs))))) {
Theodore Ts'o010c49c2012-03-21 23:40:24 -04001272 if (retval) {
1273 pctx.errcode = retval;
1274 fix_problem(ctx, PR_0_OPEN_FAILED, &pctx);
1275 }
1276 if (retval2) {
1277 pctx.errcode = retval2;
1278 fix_problem(ctx, PR_0_CHECK_DESC_FAILED, &pctx);
1279 }
1280 pctx.errcode = 0;
Theodore Ts'o41cec342012-03-21 22:49:04 -04001281 if (retval2 == ENOMEM || retval2 == EXT2_ET_NO_MEMORY) {
Theodore Ts'o82b59ca2009-09-01 20:01:38 -04001282 retval = retval2;
1283 goto failure;
1284 }
Theodore Ts'odcc91e12008-02-26 20:59:56 -05001285 if (fs->flags & EXT2_FLAG_NOFREE_ON_ERROR) {
1286 ext2fs_free(fs);
1287 fs = NULL;
1288 }
Theodore Ts'o1b6bf171997-10-03 17:48:10 +00001289 if (!fs || (fs->group_desc_count > 1)) {
Theodore Ts'ob0e91c82012-03-17 23:21:00 -04001290 log_out(ctx, _("%s: %s trying backup blocks...\n"),
1291 ctx->program_name,
1292 retval ? _("Superblock invalid,") :
1293 _("Group descriptors look bad..."));
Theodore Ts'o60663892009-05-28 23:40:18 -04001294 orig_superblock = ctx->superblock;
Theodore Ts'of1a17612001-12-23 22:27:52 -05001295 get_backup_sb(ctx, fs, ctx->filesystem_name, io_ptr);
Theodore Ts'o1b6bf171997-10-03 17:48:10 +00001296 if (fs)
1297 ext2fs_close(fs);
Theodore Ts'ocd538082007-09-07 16:54:11 -04001298 orig_retval = retval;
Theodore Ts'o60663892009-05-28 23:40:18 -04001299 retval = try_open_fs(ctx, flags, io_ptr, &fs);
1300 if ((orig_retval == 0) && retval != 0) {
Theodore Ts'o22ff06d2010-07-05 15:06:37 -04001301 if (fs)
1302 ext2fs_close(fs);
Theodore Ts'ob0e91c82012-03-17 23:21:00 -04001303 log_out(ctx, _("%s: %s while using the "
1304 "backup blocks"),
1305 ctx->program_name,
1306 error_message(retval));
1307 log_out(ctx, _("%s: going back to original "
1308 "superblock\n"),
1309 ctx->program_name);
Theodore Ts'o60663892009-05-28 23:40:18 -04001310 ctx->superblock = orig_superblock;
1311 retval = try_open_fs(ctx, flags, io_ptr, &fs);
1312 }
Theodore Ts'o1b6bf171997-10-03 17:48:10 +00001313 }
1314 }
Theodore Ts'odcc91e12008-02-26 20:59:56 -05001315 if (((retval == EXT2_ET_UNSUPP_FEATURE) ||
1316 (retval == EXT2_ET_RO_UNSUPP_FEATURE)) &&
1317 fs && fs->super) {
1318 sb = fs->super;
Theodore Ts'oefc6f622008-08-27 23:07:54 -04001319 features[0] = (sb->s_feature_compat &
Theodore Ts'odcc91e12008-02-26 20:59:56 -05001320 ~EXT2_LIB_FEATURE_COMPAT_SUPP);
Theodore Ts'oefc6f622008-08-27 23:07:54 -04001321 features[1] = (sb->s_feature_incompat &
Theodore Ts'odcc91e12008-02-26 20:59:56 -05001322 ~EXT2_LIB_FEATURE_INCOMPAT_SUPP);
Theodore Ts'oefc6f622008-08-27 23:07:54 -04001323 features[2] = (sb->s_feature_ro_compat &
Theodore Ts'odcc91e12008-02-26 20:59:56 -05001324 ~EXT2_LIB_FEATURE_RO_COMPAT_SUPP);
1325 if (features[0] || features[1] || features[2])
1326 goto print_unsupp_features;
1327 }
Theodore Ts'o82b59ca2009-09-01 20:01:38 -04001328failure:
Theodore Ts'o1b6bf171997-10-03 17:48:10 +00001329 if (retval) {
Theodore Ts'ocd538082007-09-07 16:54:11 -04001330 if (orig_retval)
1331 retval = orig_retval;
Theodore Ts'o0c4a0722000-02-07 03:11:03 +00001332 com_err(ctx->program_name, retval, _("while trying to open %s"),
Theodore Ts'o1b6bf171997-10-03 17:48:10 +00001333 ctx->filesystem_name);
Theodore Ts'o24dd4021998-02-01 00:16:40 +00001334 if (retval == EXT2_ET_REV_TOO_HIGH) {
Theodore Ts'ob0e91c82012-03-17 23:21:00 -04001335 log_out(ctx, _("The filesystem revision is apparently "
Theodore Ts'o24dd4021998-02-01 00:16:40 +00001336 "too high for this version of e2fsck.\n"
1337 "(Or the filesystem superblock "
Theodore Ts'o0c4a0722000-02-07 03:11:03 +00001338 "is corrupt)\n\n"));
Theodore Ts'o24dd4021998-02-01 00:16:40 +00001339 fix_problem(ctx, PR_0_SB_CORRUPT, &pctx);
1340 } else if (retval == EXT2_ET_SHORT_READ)
Theodore Ts'ob0e91c82012-03-17 23:21:00 -04001341 log_out(ctx, _("Could this be a zero-length "
1342 "partition?\n"));
Theodore Ts'o1b6bf171997-10-03 17:48:10 +00001343 else if ((retval == EPERM) || (retval == EACCES))
Theodore Ts'ob0e91c82012-03-17 23:21:00 -04001344 log_out(ctx, _("You must have %s access to the "
Theodore Ts'o0c4a0722000-02-07 03:11:03 +00001345 "filesystem or be root\n"),
Theodore Ts'o1b6bf171997-10-03 17:48:10 +00001346 (ctx->options & E2F_OPT_READONLY) ?
1347 "r/o" : "r/w");
1348 else if (retval == ENXIO)
Theodore Ts'ob0e91c82012-03-17 23:21:00 -04001349 log_out(ctx, _("Possibly non-existent or "
1350 "swap device?\n"));
Theodore Ts'o2e14e0c2006-03-18 20:01:09 -05001351 else if (retval == EBUSY)
Theodore Ts'ob0e91c82012-03-17 23:21:00 -04001352 log_out(ctx, _("Filesystem mounted or opened "
1353 "exclusively by another program?\n"));
Jan Kara32f66cc2010-09-08 16:12:08 +02001354 else if (retval == ENOENT)
Theodore Ts'ob0e91c82012-03-17 23:21:00 -04001355 log_out(ctx, _("Possibly non-existent device?\n"));
Theodore Ts'o68227541997-11-04 04:25:22 +00001356#ifdef EROFS
1357 else if (retval == EROFS)
Theodore Ts'ob0e91c82012-03-17 23:21:00 -04001358 log_out(ctx, _("Disk write-protected; use the -n "
1359 "option to do a read-only\n"
1360 "check of the device.\n"));
Theodore Ts'o68227541997-11-04 04:25:22 +00001361#endif
Theodore Ts'o1b6bf171997-10-03 17:48:10 +00001362 else
1363 fix_problem(ctx, PR_0_SB_CORRUPT, &pctx);
Theodore Ts'o243dc312000-08-22 21:37:47 +00001364 fatal_error(ctx, 0);
Theodore Ts'o1b6bf171997-10-03 17:48:10 +00001365 }
Theodore Ts'o058ad1c2007-06-18 18:26:50 -04001366 /*
1367 * We only update the master superblock because (a) paranoia;
1368 * we don't want to corrupt the backup superblocks, and (b) we
1369 * don't need to update the mount count and last checked
1370 * fields in the backup superblock (the kernel doesn't update
1371 * the backup superblocks anyway). With newer versions of the
1372 * library this flag is set by ext2fs_open2(), but we set this
1373 * here just to be sure. (No, we don't support e2fsck running
1374 * with some other libext2fs than the one that it was shipped
1375 * with, but just in case....)
1376 */
1377 fs->flags |= EXT2_FLAG_MASTER_SB_ONLY;
Theodore Ts'od2af1bd2007-06-04 01:14:52 -04001378
1379 if (!(ctx->flags & E2F_FLAG_GOT_DEVSIZE)) {
1380 __u32 blocksize = EXT2_BLOCK_SIZE(fs->super);
1381 int need_restart = 0;
1382
Theodore Ts'o59119642010-03-14 19:26:48 -04001383 pctx.errcode = ext2fs_get_device_size2(ctx->filesystem_name,
1384 blocksize,
1385 &ctx->num_blocks);
Theodore Ts'od2af1bd2007-06-04 01:14:52 -04001386 /*
1387 * The floppy driver refuses to allow anyone else to
1388 * open the device if has been opened with O_EXCL;
1389 * this is unlike other block device drivers in Linux.
1390 * To handle this, we close the filesystem and then
1391 * reopen the filesystem after we get the device size.
1392 */
1393 if (pctx.errcode == EBUSY) {
1394 ext2fs_close(fs);
1395 need_restart++;
Theodore Ts'oefc6f622008-08-27 23:07:54 -04001396 pctx.errcode =
Theodore Ts'o59119642010-03-14 19:26:48 -04001397 ext2fs_get_device_size2(ctx->filesystem_name,
1398 blocksize,
1399 &ctx->num_blocks);
Theodore Ts'od2af1bd2007-06-04 01:14:52 -04001400 }
1401 if (pctx.errcode == EXT2_ET_UNIMPLEMENTED)
1402 ctx->num_blocks = 0;
1403 else if (pctx.errcode) {
1404 fix_problem(ctx, PR_0_GETSIZE_ERROR, &pctx);
1405 ctx->flags |= E2F_FLAG_ABORT;
1406 fatal_error(ctx, 0);
Theodore Ts'od2af1bd2007-06-04 01:14:52 -04001407 }
1408 ctx->flags |= E2F_FLAG_GOT_DEVSIZE;
1409 if (need_restart)
1410 goto restart;
1411 }
1412
Theodore Ts'o1b6bf171997-10-03 17:48:10 +00001413 ctx->fs = fs;
Theodore Ts'o54dc7ca1998-01-19 14:50:49 +00001414 fs->priv_data = ctx;
Theodore Ts'o8dceb922005-09-24 21:59:45 -04001415 fs->now = ctx->now;
Theodore Ts'o5dd8f962001-01-01 15:51:50 +00001416 sb = fs->super;
Theodore Ts'ob0e91c82012-03-17 23:21:00 -04001417
Theodore Ts'o5dd8f962001-01-01 15:51:50 +00001418 if (sb->s_rev_level > E2FSCK_CURRENT_REV) {
Theodore Ts'o1b6bf171997-10-03 17:48:10 +00001419 com_err(ctx->program_name, EXT2_ET_REV_TOO_HIGH,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +00001420 _("while trying to open %s"),
Theodore Ts'o1b6bf171997-10-03 17:48:10 +00001421 ctx->filesystem_name);
Theodore Ts'of8188ff1997-11-14 05:23:04 +00001422 get_newer:
Theodore Ts'o0c4a0722000-02-07 03:11:03 +00001423 fatal_error(ctx, _("Get a newer version of e2fsck!"));
Theodore Ts'o1b6bf171997-10-03 17:48:10 +00001424 }
Theodore Ts'o3b5386d2000-08-14 14:25:19 +00001425
Theodore Ts'o17390c02000-07-07 04:13:21 +00001426 /*
Theodore Ts'o3b5386d2000-08-14 14:25:19 +00001427 * Set the device name, which is used whenever we print error
1428 * or informational messages to the user.
Theodore Ts'o17390c02000-07-07 04:13:21 +00001429 */
Theodore Ts'o5596def1999-07-19 15:27:37 +00001430 if (ctx->device_name == 0 &&
Theodore Ts'o5dd8f962001-01-01 15:51:50 +00001431 (sb->s_volume_name[0] != 0)) {
Theodore Ts'of3640932003-03-01 19:47:44 -05001432 ctx->device_name = string_copy(ctx, sb->s_volume_name,
1433 sizeof(sb->s_volume_name));
Theodore Ts'o5596def1999-07-19 15:27:37 +00001434 }
1435 if (ctx->device_name == 0)
Theodore Ts'o1dc506c2008-03-26 09:09:09 -04001436 ctx->device_name = string_copy(ctx, ctx->filesystem_name, 0);
1437 for (cp = ctx->device_name; *cp; cp++)
1438 if (isspace(*cp) || *cp == ':')
1439 *cp = '_';
Theodore Ts'o3b5386d2000-08-14 14:25:19 +00001440
Andreas Dilger14c5af32009-05-17 23:03:04 -04001441 ehandler_init(fs->io);
1442
Andreas Dilger0f5eba72011-09-24 13:48:55 -04001443 if ((fs->super->s_feature_incompat & EXT4_FEATURE_INCOMPAT_MMP) &&
1444 (flags & EXT2_FLAG_SKIP_MMP)) {
1445 if (e2fsck_check_mmp(fs, ctx))
1446 fatal_error(ctx, 0);
Andreas Dilger0f5eba72011-09-24 13:48:55 -04001447
Theodore Ts'o349b8a32012-03-21 23:18:49 -04001448 /*
1449 * Restart in order to reopen fs but this time start mmp.
1450 */
Andreas Dilger0f5eba72011-09-24 13:48:55 -04001451 ext2fs_close(fs);
Darrick J. Wong16600342011-09-30 12:40:05 -07001452 ctx->fs = NULL;
Andreas Dilger0f5eba72011-09-24 13:48:55 -04001453 flags &= ~EXT2_FLAG_SKIP_MMP;
1454 goto restart;
1455 }
1456
Theodore Ts'ob0e91c82012-03-17 23:21:00 -04001457 if (ctx->logf)
1458 fprintf(ctx->logf, "Filesystem UUID: %s\n",
1459 e2p_uuid2str(sb->s_uuid));
1460
Theodore Ts'o3b5386d2000-08-14 14:25:19 +00001461 /*
Theodore Ts'o9b565752000-12-13 18:50:22 +00001462 * Make sure the ext3 superblock fields are consistent.
Theodore Ts'o3b5386d2000-08-14 14:25:19 +00001463 */
1464 retval = e2fsck_check_ext3_journal(ctx);
1465 if (retval) {
1466 com_err(ctx->program_name, retval,
1467 _("while checking ext3 journal for %s"),
1468 ctx->device_name);
Theodore Ts'o243dc312000-08-22 21:37:47 +00001469 fatal_error(ctx, 0);
Theodore Ts'o3b5386d2000-08-14 14:25:19 +00001470 }
1471
Theodore Ts'o9b565752000-12-13 18:50:22 +00001472 /*
1473 * Check to see if we need to do ext3-style recovery. If so,
1474 * do it, and then restart the fsck.
1475 */
Theodore Ts'o5dd8f962001-01-01 15:51:50 +00001476 if (sb->s_feature_incompat & EXT3_FEATURE_INCOMPAT_RECOVER) {
Theodore Ts'o2575fb02000-08-22 21:50:04 +00001477 if (ctx->options & E2F_OPT_READONLY) {
Theodore Ts'ob0e91c82012-03-17 23:21:00 -04001478 log_out(ctx, _("Warning: skipping journal recovery "
1479 "because doing a read-only filesystem "
1480 "check.\n"));
Theodore Ts'o2575fb02000-08-22 21:50:04 +00001481 io_channel_flush(ctx->fs->io);
1482 } else {
Theodore Ts'ob92ae152003-01-02 16:53:54 -05001483 if (ctx->flags & E2F_FLAG_RESTARTED) {
1484 /*
1485 * Whoops, we attempted to run the
1486 * journal twice. This should never
1487 * happen, unless the hardware or
1488 * device driver is being bogus.
1489 */
1490 com_err(ctx->program_name, 0,
1491 _("unable to set superblock flags on %s\n"), ctx->device_name);
1492 fatal_error(ctx, 0);
1493 }
Theodore Ts'o2575fb02000-08-22 21:50:04 +00001494 retval = e2fsck_run_ext3_journal(ctx);
1495 if (retval) {
1496 com_err(ctx->program_name, retval,
Theodore Ts'o3b5386d2000-08-14 14:25:19 +00001497 _("while recovering ext3 journal of %s"),
Theodore Ts'o2575fb02000-08-22 21:50:04 +00001498 ctx->device_name);
1499 fatal_error(ctx, 0);
1500 }
1501 ext2fs_close(ctx->fs);
1502 ctx->fs = 0;
Theodore Ts'ob92ae152003-01-02 16:53:54 -05001503 ctx->flags |= E2F_FLAG_RESTARTED;
Theodore Ts'o2575fb02000-08-22 21:50:04 +00001504 goto restart;
Theodore Ts'o3b5386d2000-08-14 14:25:19 +00001505 }
Theodore Ts'o3b5386d2000-08-14 14:25:19 +00001506 }
1507
1508 /*
1509 * Check for compatibility with the feature sets. We need to
1510 * be more stringent than ext2fs_open().
1511 */
Theodore Ts'odcc91e12008-02-26 20:59:56 -05001512 features[0] = sb->s_feature_compat & ~EXT2_LIB_FEATURE_COMPAT_SUPP;
1513 features[1] = sb->s_feature_incompat & ~EXT2_LIB_FEATURE_INCOMPAT_SUPP;
Theodore Ts'oefc6f622008-08-27 23:07:54 -04001514 features[2] = (sb->s_feature_ro_compat &
Theodore Ts'odcc91e12008-02-26 20:59:56 -05001515 ~EXT2_LIB_FEATURE_RO_COMPAT_SUPP);
1516print_unsupp_features:
1517 if (features[0] || features[1] || features[2]) {
1518 int i, j;
1519 __u32 *mask = features, m;
1520
Theodore Ts'ob0e91c82012-03-17 23:21:00 -04001521 log_err(ctx, _("%s has unsupported feature(s):"),
Theodore Ts'odcc91e12008-02-26 20:59:56 -05001522 ctx->filesystem_name);
1523
1524 for (i=0; i <3; i++,mask++) {
1525 for (j=0,m=1; j < 32; j++, m<<=1) {
1526 if (*mask & m)
Theodore Ts'ob0e91c82012-03-17 23:21:00 -04001527 log_err(ctx, " %s",
Theodore Ts'odcc91e12008-02-26 20:59:56 -05001528 e2p_feature2string(i, m));
1529 }
1530 }
Theodore Ts'ob0e91c82012-03-17 23:21:00 -04001531 log_err(ctx, "\n");
Theodore Ts'o3b5386d2000-08-14 14:25:19 +00001532 goto get_newer;
1533 }
1534#ifdef ENABLE_COMPRESSION
Theodore Ts'o5dd8f962001-01-01 15:51:50 +00001535 if (sb->s_feature_incompat & EXT2_FEATURE_INCOMPAT_COMPRESSION)
Theodore Ts'ob0e91c82012-03-17 23:21:00 -04001536 log_err(ctx, _("%s: warning: compression support "
1537 "is experimental.\n"),
1538 ctx->program_name);
Theodore Ts'o3b5386d2000-08-14 14:25:19 +00001539#endif
Theodore Ts'o8fdc9982002-06-25 23:26:34 -04001540#ifndef ENABLE_HTREE
1541 if (sb->s_feature_compat & EXT2_FEATURE_COMPAT_DIR_INDEX) {
Theodore Ts'ob0e91c82012-03-17 23:21:00 -04001542 log_err(ctx, _("%s: e2fsck not compiled with HTREE support,\n\t"
Theodore Ts'o8fdc9982002-06-25 23:26:34 -04001543 "but filesystem %s has HTREE directories.\n"),
Theodore Ts'ob0e91c82012-03-17 23:21:00 -04001544 ctx->program_name, ctx->device_name);
Theodore Ts'o8fdc9982002-06-25 23:26:34 -04001545 goto get_newer;
1546 }
1547#endif
1548
Theodore Ts'o1b6bf171997-10-03 17:48:10 +00001549 /*
1550 * If the user specified a specific superblock, presumably the
1551 * master superblock has been trashed. So we mark the
1552 * superblock as dirty, so it can be written out.
1553 */
1554 if (ctx->superblock &&
1555 !(ctx->options & E2F_OPT_READONLY))
1556 ext2fs_mark_super_dirty(fs);
1557
Theodore Ts'o9f0288d2007-08-03 20:43:37 -04001558 /*
1559 * Calculate the number of filesystem blocks per pagesize. If
1560 * fs->blocksize > page_size, set the number of blocks per
1561 * pagesize to 1 to avoid division by zero errors.
1562 */
1563#ifdef _SC_PAGESIZE
1564 sysval = sysconf(_SC_PAGESIZE);
1565 if (sysval > 0)
1566 sys_page_size = sysval;
1567#endif /* _SC_PAGESIZE */
1568 ctx->blocks_per_page = sys_page_size / fs->blocksize;
1569 if (ctx->blocks_per_page == 0)
1570 ctx->blocks_per_page = 1;
1571
Theodore Ts'o1b6bf171997-10-03 17:48:10 +00001572 if (ctx->superblock)
1573 set_latch_flags(PR_LATCH_RELOC, PRL_LATCHED, 0);
Theodore Ts'o550a4af2005-01-25 03:09:24 -05001574 ext2fs_mark_valid(fs);
Theodore Ts'o1b6bf171997-10-03 17:48:10 +00001575 check_super_block(ctx);
Theodore Ts'oa02ce9d1998-02-24 20:22:23 +00001576 if (ctx->flags & E2F_FLAG_SIGNAL_MASK)
Theodore Ts'o243dc312000-08-22 21:37:47 +00001577 fatal_error(ctx, 0);
Theodore Ts'o1b6bf171997-10-03 17:48:10 +00001578 check_if_skip(ctx);
Theodore Ts'o69d0edf2009-04-23 00:39:06 -04001579 check_resize_inode(ctx);
Theodore Ts'o1b6bf171997-10-03 17:48:10 +00001580 if (bad_blocks_file)
1581 read_bad_blocks_file(ctx, bad_blocks_file, replace_bad_blocks);
1582 else if (cflag)
Theodore Ts'o4fb9d522004-02-24 00:16:09 -05001583 read_bad_blocks_file(ctx, 0, !keep_bad_blocks); /* Test disk */
Theodore Ts'oa02ce9d1998-02-24 20:22:23 +00001584 if (ctx->flags & E2F_FLAG_SIGNAL_MASK)
Theodore Ts'o243dc312000-08-22 21:37:47 +00001585 fatal_error(ctx, 0);
Theodore Ts'o1b6bf171997-10-03 17:48:10 +00001586
1587 /*
1588 * Mark the system as valid, 'til proven otherwise
1589 */
1590 ext2fs_mark_valid(fs);
1591
1592 retval = ext2fs_read_bb_inode(fs, &fs->badblocks);
1593 if (retval) {
Theodore Ts'ob0e91c82012-03-17 23:21:00 -04001594 log_out(ctx, _("%s: %s while reading bad blocks inode\n"),
1595 ctx->program_name, error_message(retval));
Theodore Ts'o1b6bf171997-10-03 17:48:10 +00001596 preenhalt(ctx);
Theodore Ts'ob0e91c82012-03-17 23:21:00 -04001597 log_out(ctx, _("This doesn't bode well, "
1598 "but we'll try to go on...\n"));
Theodore Ts'o1b6bf171997-10-03 17:48:10 +00001599 }
Theodore Ts'o08b21301997-11-03 19:42:40 +00001600
Kalpak Shah5107d0d2007-06-21 11:59:06 -04001601 /*
1602 * Save the journal size in megabytes.
1603 * Try and use the journal size from the backup else let e2fsck
1604 * find the default journal size.
1605 */
1606 if (sb->s_jnl_backup_type == EXT3_JNL_BACKUP_BLOCKS)
Andreas Dilger931b58e2011-06-11 12:17:29 -04001607 journal_size = (sb->s_jnl_blocks[15] << (32 - 20)) |
1608 (sb->s_jnl_blocks[16] >> 20);
Kalpak Shah5107d0d2007-06-21 11:59:06 -04001609 else
1610 journal_size = -1;
1611
Aditya Kali624e4a62011-07-20 11:40:06 -07001612 if (sb->s_feature_ro_compat & EXT4_FEATURE_RO_COMPAT_QUOTA) {
Aditya Kali624e4a62011-07-20 11:40:06 -07001613 /* Quotas were enabled. Do quota accounting during fsck. */
1614 if ((sb->s_usr_quota_inum && sb->s_grp_quota_inum) ||
1615 (!sb->s_usr_quota_inum && !sb->s_grp_quota_inum))
1616 qtype = -1;
1617 else
1618 qtype = sb->s_usr_quota_inum ? USRQUOTA : GRPQUOTA;
1619
Aditya Kalia86d55d2011-11-14 10:55:54 -05001620 quota_init_context(&ctx->qctx, ctx->fs, qtype);
Aditya Kali624e4a62011-07-20 11:40:06 -07001621 }
1622
Theodore Ts'o08b21301997-11-03 19:42:40 +00001623 run_result = e2fsck_run(ctx);
Theodore Ts'o5596def1999-07-19 15:27:37 +00001624 e2fsck_clear_progbar(ctx);
Kalpak Shah5107d0d2007-06-21 11:59:06 -04001625
1626 if (ctx->flags & E2F_FLAG_JOURNAL_INODE) {
1627 if (fix_problem(ctx, PR_6_RECREATE_JOURNAL, &pctx)) {
1628 if (journal_size < 1024)
Valerie Aurora Henson4efbac62009-09-07 20:46:34 -04001629 journal_size = ext2fs_default_journal_size(ext2fs_blocks_count(fs->super));
Kalpak Shah5107d0d2007-06-21 11:59:06 -04001630 if (journal_size < 0) {
1631 fs->super->s_feature_compat &=
1632 ~EXT3_FEATURE_COMPAT_HAS_JOURNAL;
Theodore Ts'o0cfce7f2007-10-06 12:37:08 -04001633 fs->flags &= ~EXT2_FLAG_MASTER_SB_ONLY;
Theodore Ts'ob0e91c82012-03-17 23:21:00 -04001634 log_out(ctx, "%s: Couldn't determine "
1635 "journal size\n", ctx->program_name);
Kalpak Shah5107d0d2007-06-21 11:59:06 -04001636 goto no_journal;
1637 }
Theodore Ts'ob0e91c82012-03-17 23:21:00 -04001638 log_out(ctx, _("Creating journal (%d blocks): "),
Kalpak Shah5107d0d2007-06-21 11:59:06 -04001639 journal_size);
1640 fflush(stdout);
1641 retval = ext2fs_add_journal_inode(fs,
1642 journal_size, 0);
1643 if (retval) {
Theodore Ts'ob0e91c82012-03-17 23:21:00 -04001644 log_out(ctx, "%s: while trying to create "
1645 "journal\n", error_message(retval));
Kalpak Shah5107d0d2007-06-21 11:59:06 -04001646 goto no_journal;
1647 }
Theodore Ts'ob0e91c82012-03-17 23:21:00 -04001648 log_out(ctx, _(" Done.\n"));
1649 log_out(ctx, _("\n*** journal has been re-created - "
Kalpak Shah5107d0d2007-06-21 11:59:06 -04001650 "filesystem is now ext3 again ***\n"));
1651 }
1652 }
1653no_journal:
1654
Aditya Kali624e4a62011-07-20 11:40:06 -07001655 if (ctx->qctx) {
Aditya Kali7943ccf2012-04-24 14:46:08 -04001656 int i, needs_writeout;
1657 for (i = 0; i < MAXQUOTAS; i++) {
1658 if (qtype != -1 && qtype != i)
1659 continue;
1660 needs_writeout = 0;
1661 pctx.num = i;
1662 retval = quota_compare_and_update(ctx->qctx, i,
1663 &needs_writeout);
1664 if ((retval || needs_writeout) &&
1665 fix_problem(ctx, PR_6_UPDATE_QUOTAS, &pctx))
1666 quota_write_inode(ctx->qctx, i);
1667 }
Aditya Kalia86d55d2011-11-14 10:55:54 -05001668 quota_release_context(&ctx->qctx);
Aditya Kali624e4a62011-07-20 11:40:06 -07001669 }
1670
Theodore Ts'o08b21301997-11-03 19:42:40 +00001671 if (run_result == E2F_FLAG_RESTART) {
Theodore Ts'ob0e91c82012-03-17 23:21:00 -04001672 log_out(ctx, _("Restarting e2fsck from the beginning...\n"));
Theodore Ts'o1b6bf171997-10-03 17:48:10 +00001673 retval = e2fsck_reset_context(ctx);
1674 if (retval) {
1675 com_err(ctx->program_name, retval,
Theodore Ts'o0c4a0722000-02-07 03:11:03 +00001676 _("while resetting context"));
Theodore Ts'o243dc312000-08-22 21:37:47 +00001677 fatal_error(ctx, 0);
Theodore Ts'o1b6bf171997-10-03 17:48:10 +00001678 }
Theodore Ts'o73f17cf1999-01-04 07:35:45 +00001679 ext2fs_close(fs);
Theodore Ts'o1b6bf171997-10-03 17:48:10 +00001680 goto restart;
1681 }
Theodore Ts'o4cae0452002-07-21 14:14:03 -04001682 if (run_result & E2F_FLAG_CANCEL) {
Theodore Ts'ob0e91c82012-03-17 23:21:00 -04001683 log_out(ctx, _("%s: e2fsck canceled.\n"), ctx->device_name ?
1684 ctx->device_name : ctx->filesystem_name);
Theodore Ts'o4cae0452002-07-21 14:14:03 -04001685 exit_value |= FSCK_CANCELED;
1686 }
1687 if (run_result & E2F_FLAG_ABORT)
1688 fatal_error(ctx, _("aborted"));
Theodore Ts'o0c37f452007-10-01 09:18:54 -04001689 if (check_backup_super_block(ctx)) {
1690 fs->flags &= ~EXT2_FLAG_MASTER_SB_ONLY;
1691 ext2fs_mark_super_dirty(fs);
1692 }
Theodore Ts'o1b6bf171997-10-03 17:48:10 +00001693
1694#ifdef MTRACE
1695 mtrace_print("Cleanup");
1696#endif
1697 if (ext2fs_test_changed(fs)) {
Theodore Ts'o4cae0452002-07-21 14:14:03 -04001698 exit_value |= FSCK_NONDESTRUCT;
Theodore Ts'o1b6bf171997-10-03 17:48:10 +00001699 if (!(ctx->options & E2F_OPT_PREEN))
Theodore Ts'ob0e91c82012-03-17 23:21:00 -04001700 log_out(ctx, _("\n%s: ***** FILE SYSTEM WAS "
1701 "MODIFIED *****\n"),
1702 ctx->device_name);
Theodore Ts'oee895132002-11-07 16:16:55 -05001703 if (ctx->mount_flags & EXT2_MF_ISROOT) {
Theodore Ts'ob0e91c82012-03-17 23:21:00 -04001704 log_out(ctx, _("%s: ***** REBOOT LINUX *****\n"),
1705 ctx->device_name);
Theodore Ts'o4cae0452002-07-21 14:14:03 -04001706 exit_value |= FSCK_REBOOT;
Theodore Ts'o1b6bf171997-10-03 17:48:10 +00001707 }
1708 }
Theodore Ts'oeb065cc2005-12-31 00:52:23 -05001709 if (!ext2fs_test_valid(fs) ||
Theodore Ts'oefc6f622008-08-27 23:07:54 -04001710 ((exit_value & FSCK_CANCELED) &&
Theodore Ts'oeb065cc2005-12-31 00:52:23 -05001711 (sb->s_state & EXT2_ERROR_FS))) {
Theodore Ts'ob0e91c82012-03-17 23:21:00 -04001712 log_out(ctx, _("\n%s: ********** WARNING: Filesystem still has "
1713 "errors **********\n\n"), ctx->device_name);
Theodore Ts'o4cae0452002-07-21 14:14:03 -04001714 exit_value |= FSCK_UNCORRECTED;
1715 exit_value &= ~FSCK_NONDESTRUCT;
Theodore Ts'od3124012001-07-20 14:13:49 -04001716 }
Theodore Ts'oeb065cc2005-12-31 00:52:23 -05001717 if (exit_value & FSCK_CANCELED) {
1718 int allow_cancellation;
1719
1720 profile_get_boolean(ctx->profile, "options",
Theodore Ts'oefc6f622008-08-27 23:07:54 -04001721 "allow_cancellation", 0, 0,
Theodore Ts'oeb065cc2005-12-31 00:52:23 -05001722 &allow_cancellation);
Theodore Ts'o4cae0452002-07-21 14:14:03 -04001723 exit_value &= ~FSCK_NONDESTRUCT;
Theodore Ts'oeb065cc2005-12-31 00:52:23 -05001724 if (allow_cancellation && ext2fs_test_valid(fs) &&
Theodore Ts'oefc6f622008-08-27 23:07:54 -04001725 (sb->s_state & EXT2_VALID_FS) &&
Theodore Ts'oeb065cc2005-12-31 00:52:23 -05001726 !(sb->s_state & EXT2_ERROR_FS))
1727 exit_value = 0;
1728 } else {
Theodore Ts'o4cae0452002-07-21 14:14:03 -04001729 show_stats(ctx);
Theodore Ts'oc1637bd2002-11-08 15:55:17 -05001730 if (!(ctx->options & E2F_OPT_READONLY)) {
1731 if (ext2fs_test_valid(fs)) {
1732 if (!(sb->s_state & EXT2_VALID_FS))
1733 exit_value |= FSCK_NONDESTRUCT;
1734 sb->s_state = EXT2_VALID_FS;
1735 } else
1736 sb->s_state &= ~EXT2_VALID_FS;
1737 sb->s_mnt_count = 0;
Theodore Ts'o177839e2010-05-13 17:36:36 -04001738 if (!(ctx->flags & E2F_FLAG_TIME_INSANE))
1739 sb->s_lastcheck = ctx->now;
Theodore Ts'o993988f2010-06-25 10:53:13 -04001740 memset(((char *) sb) + EXT4_S_ERR_START, 0,
1741 EXT4_S_ERR_LEN);
Theodore Ts'oc1637bd2002-11-08 15:55:17 -05001742 ext2fs_mark_super_dirty(fs);
1743 }
1744 }
Theodore Ts'o1b6bf171997-10-03 17:48:10 +00001745
Theodore Ts'o2e6436d2010-05-17 22:54:06 -04001746 if ((run_result & E2F_FLAG_CANCEL) == 0 &&
1747 sb->s_feature_ro_compat & EXT4_FEATURE_RO_COMPAT_GDT_CSUM &&
Andreas Dilgerf628ace2008-03-31 10:50:19 -04001748 !(ctx->options & E2F_OPT_READONLY)) {
1749 retval = ext2fs_set_gdt_csum(ctx->fs);
1750 if (retval) {
1751 com_err(ctx->program_name, retval,
1752 _("while setting block group checksum info"));
1753 fatal_error(ctx, 0);
1754 }
1755 }
Jose R. Santos49a73602007-10-21 21:04:03 -05001756
Theodore Ts'of8188ff1997-11-14 05:23:04 +00001757 e2fsck_write_bitmaps(ctx);
Theodore Ts'o6d96b002007-08-03 20:07:09 -04001758 io_channel_flush(ctx->fs->io);
Ken Chen9facd072009-05-28 09:55:10 -04001759 print_resource_track(ctx, NULL, &ctx->global_rtrack, ctx->fs->io);
1760
Theodore Ts'o0628ae32001-07-29 12:26:46 -04001761 ext2fs_close(fs);
1762 ctx->fs = NULL;
Theodore Ts'of3640932003-03-01 19:47:44 -05001763 free(ctx->journal_name);
Theodore Ts'ob28a6e92005-07-25 11:36:43 -05001764
Theodore Ts'ob28a6e92005-07-25 11:36:43 -05001765 e2fsck_free_context(ctx);
Theodore Ts'oa6d83022006-12-26 03:38:07 -05001766 remove_error_table(&et_ext2_error_table);
1767 remove_error_table(&et_prof_error_table);
Theodore Ts'o1b6bf171997-10-03 17:48:10 +00001768 return exit_value;
1769}