unix.c 25.8 KB
Newer Older
Theodore Ts'o's avatar
Theodore Ts'o committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
/*
 * unix.c - The unix-specific code for e2fsck
 * 
 * Copyright (C) 1993, 1994, 1995, 1996, 1997 Theodore Ts'o.
 *
 * %Begin-Header%
 * This file may be redistributed under the terms of the GNU Public
 * License.
 * %End-Header%
 */

#include <stdio.h>
#ifdef HAVE_STDLIB_H
#include <stdlib.h>
#endif
#include <string.h>
#include <fcntl.h>
#include <ctype.h>
#include <time.h>
Theodore Ts'o's avatar
Theodore Ts'o committed
20
#ifdef HAVE_SIGNAL_H
Theodore Ts'o's avatar
Theodore Ts'o committed
21
#include <signal.h>
Theodore Ts'o's avatar
Theodore Ts'o committed
22
#endif
Theodore Ts'o's avatar
Theodore Ts'o committed
23 24
#ifdef HAVE_GETOPT_H
#include <getopt.h>
Theodore Ts'o's avatar
Theodore Ts'o committed
25 26 27
#else
extern char *optarg;
extern int optind;
Theodore Ts'o's avatar
Theodore Ts'o committed
28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58
#endif
#include <unistd.h>
#ifdef HAVE_ERRNO_H
#include <errno.h>
#endif
#ifdef HAVE_MNTENT_H
#include <mntent.h>
#endif
#include <sys/ioctl.h>
#include <malloc.h>

#include "et/com_err.h"
#include "e2fsck.h"
#include "problem.h"
#include "../version.h"

/* Command line options */
static int swapfs = 0;
static int normalize_swapfs = 0;
static int cflag = 0;		/* check disk */
static int show_version_only = 0;
static int verbose = 0;

static int replace_bad_blocks = 0;
static char *bad_blocks_file = 0;

static int possible_block_sizes[] = { 1024, 2048, 4096, 8192, 0};

static int root_filesystem = 0;
static int read_only_root = 0;

Theodore Ts'o's avatar
Theodore Ts'o committed
59 60
e2fsck_t e2fsck_global_ctx;	/* Try your very best not to use this! */

Theodore Ts'o's avatar
Theodore Ts'o committed
61 62 63
static void usage(e2fsck_t ctx)
{
	fprintf(stderr,
Theodore Ts'o's avatar
Theodore Ts'o committed
64
		_("Usage: %s [-panyrcdfvstFSV] [-b superblock] [-B blocksize]\n"
Theodore Ts'o's avatar
Theodore Ts'o committed
65
		"\t\t[-I inode_buffer_blocks] [-P process_inode_size]\n"
66
		"\t\t[-l|-L bad_blocks_file] [-C fd] [-j ext-journal] device\n"),
Theodore Ts'o's avatar
Theodore Ts'o committed
67
		ctx->program_name);
Theodore Ts'o's avatar
Theodore Ts'o committed
68

Theodore Ts'o's avatar
Theodore Ts'o committed
69
	fprintf(stderr, _("\nEmergency help:\n"
Theodore Ts'o's avatar
Theodore Ts'o committed
70 71 72 73
		" -p                   Automatic repair (no questions)\n"
		" -n                   Make no changes to the filesystem\n"
		" -y                   Assume \"yes\" to all questions\n"
		" -c                   Check for bad blocks\n"
Theodore Ts'o's avatar
Theodore Ts'o committed
74 75
		" -f                   Force checking even if filesystem is marked clean\n"));
	fprintf(stderr, _(""
Theodore Ts'o's avatar
Theodore Ts'o committed
76 77 78
		" -v                   Be verbose\n"
		" -b superblock        Use alternative superblock\n"
		" -B blocksize         Force blocksize when looking for superblock\n"
79
		" -j external-journal  Set location of the external journal\n"
Theodore Ts'o's avatar
Theodore Ts'o committed
80 81
		" -l bad_blocks_file   Add to badblocks list\n"
		" -L bad_blocks_file   Set badblocks list\n"
Theodore Ts'o's avatar
Theodore Ts'o committed
82
		));
Theodore Ts'o's avatar
Theodore Ts'o committed
83

Theodore Ts'o's avatar
Theodore Ts'o committed
84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108
	exit(FSCK_USAGE);
}

static void show_stats(e2fsck_t	ctx)
{
	ext2_filsys fs = ctx->fs;
	int inodes, inodes_used, blocks, blocks_used;
	int dir_links;
	int num_files, num_links;
	int frag_percent;

	dir_links = 2 * ctx->fs_directory_count - 1;
	num_files = ctx->fs_total_count - dir_links;
	num_links = ctx->fs_links_count - dir_links;
	inodes = fs->super->s_inodes_count;
	inodes_used = (fs->super->s_inodes_count -
		       fs->super->s_free_inodes_count);
	blocks = fs->super->s_blocks_count;
	blocks_used = (fs->super->s_blocks_count -
		       fs->super->s_free_blocks_count);

	frag_percent = (10000 * ctx->fs_fragmented) / inodes_used;
	frag_percent = (frag_percent + 5) / 10;
	
	if (!verbose) {
Theodore Ts'o's avatar
Theodore Ts'o committed
109
		printf(_("%s: %d/%d files (%0d.%d%% non-contiguous), %d/%d blocks\n"),
Theodore Ts'o's avatar
Theodore Ts'o committed
110 111 112 113 114
		       ctx->device_name, inodes_used, inodes,
		       frag_percent / 10, frag_percent % 10,
		       blocks_used, blocks);
		return;
	}
Theodore Ts'o's avatar
Theodore Ts'o committed
115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131
	/*
	 * This is a bit ugly. But I think there will nearly always be more
	 * than one "thing" to report about, so I won't try writing complex
	 * code to handle one/two/many forms of all words.
	 * Some languages (Italian, at least) never uses the plural form
	 * of foreign words, so in real life this could not be a problem.
	 * md@linux.it - 2000-1-15
	 */
#ifdef ENABLE_NLS
	printf (_("\n%8d inodes used (%d%%)\n"), inodes_used,
		(inodes_used != 1), 100 * inodes_used / inodes);
	printf (_("%8d non-contiguous inodes (%0d.%d%%)\n"),
		ctx->fs_fragmented, frag_percent / 10, frag_percent % 10);
	printf (_("         # of inodes with ind/dind/tind blocks: %d/%d/%d\n"),
		ctx->fs_ind_count, ctx->fs_dind_count, ctx->fs_tind_count);
	printf (_("%8d blocks used (%d%%)\n"
		"%8d bad blocks\n"), blocks_used,
132 133
		(int) ((long long) 100 * blocks_used / blocks),
		ctx->fs_badblocks_count);
134
	printf(_("%8d large files\n"), ctx->large_files);
Theodore Ts'o's avatar
Theodore Ts'o committed
135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155
	printf (_("\n%8d regular files\n"
		"%8d directories\n"
		"%8d character device files\n"
		"%8d block device files\n"
		"%8d fifos\n"
		"%8d links\n"
		"%8d symbolic links (%d fast symbolic links)\n"
		"%8d sockets\n"
		"--------\n"
		"%8d files\n"),
		ctx->fs_regular_count,
		ctx->fs_directory_count,
		ctx->fs_chardev_count,
		ctx->fs_blockdev_count,
		ctx->fs_fifo_count,
		ctx->fs_links_count - dir_links,
		ctx->fs_symlinks_count,
		ctx->fs_fast_symlinks_count,
		ctx->fs_sockets_count,
		ctx->fs_total_count - dir_links);
#else
Theodore Ts'o's avatar
Theodore Ts'o committed
156 157 158 159 160 161 162 163 164 165 166 167
	printf ("\n%8d inode%s used (%d%%)\n", inodes_used,
		(inodes_used != 1) ? "s" : "",
		100 * inodes_used / inodes);
	printf ("%8d non-contiguous inodes (%0d.%d%%)\n",
		ctx->fs_fragmented, frag_percent / 10, frag_percent % 10);
	printf ("         # of inodes with ind/dind/tind blocks: %d/%d/%d\n",
		ctx->fs_ind_count, ctx->fs_dind_count, ctx->fs_tind_count);
	printf ("%8d block%s used (%d%%)\n"
		"%8d bad block%s\n", blocks_used,
		(blocks_used != 1) ? "s" : "",
		100 * blocks_used / blocks, ctx->fs_badblocks_count,
		ctx->fs_badblocks_count != 1 ? "s" : "");
168 169
	printf(_("%8d large file%s\n"), ctx->large_files,
	       (ctx->large_files != 1) ? "s" : "");
Theodore Ts'o's avatar
Theodore Ts'o committed
170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198
	printf ("\n%8d regular file%s\n"
		"%8d director%s\n"
		"%8d character device file%s\n"
		"%8d block device file%s\n"
		"%8d fifo%s\n"
		"%8d link%s\n"
		"%8d symbolic link%s (%d fast symbolic link%s)\n"
		"%8d socket%s\n"
		"--------\n"
		"%8d file%s\n",
		ctx->fs_regular_count,
		(ctx->fs_regular_count != 1) ? "s" : "",
		ctx->fs_directory_count,
		(ctx->fs_directory_count != 1) ? "ies" : "y",
		ctx->fs_chardev_count,
		(ctx->fs_chardev_count != 1) ? "s" : "",
		ctx->fs_blockdev_count,
		(ctx->fs_blockdev_count != 1) ? "s" : "",
		ctx->fs_fifo_count,
		(ctx->fs_fifo_count != 1) ? "s" : "",
		ctx->fs_links_count - dir_links,
		((ctx->fs_links_count - dir_links) != 1) ? "s" : "",
		ctx->fs_symlinks_count,
		(ctx->fs_symlinks_count != 1) ? "s" : "",
		ctx->fs_fast_symlinks_count,
		(ctx->fs_fast_symlinks_count != 1) ? "s" : "",
		ctx->fs_sockets_count, (ctx->fs_sockets_count != 1) ? "s" : "",
		ctx->fs_total_count - dir_links,
		((ctx->fs_total_count - dir_links) != 1) ? "s" : "");
Theodore Ts'o's avatar
Theodore Ts'o committed
199
#endif
Theodore Ts'o's avatar
Theodore Ts'o committed
200 201 202 203 204
}

static void check_mount(e2fsck_t ctx)
{
	errcode_t	retval;
205
	int		mount_flags, cont;
Theodore Ts'o's avatar
Theodore Ts'o committed
206 207 208 209

	retval = ext2fs_check_if_mounted(ctx->filesystem_name, &mount_flags);
	if (retval) {
		com_err("ext2fs_check_if_mount", retval,
Theodore Ts'o's avatar
Theodore Ts'o committed
210
			_("while determining whether %s is mounted."),
Theodore Ts'o's avatar
Theodore Ts'o committed
211 212 213 214 215
			ctx->filesystem_name);
		return;
	}

	/*
216 217
	 * If the filesystem isn't mounted, or it's the root filesystem
	 * and it's mounted read-only, then everything's fine.
Theodore Ts'o's avatar
Theodore Ts'o committed
218
	 */
219 220 221 222 223
	if ((!(mount_flags & EXT2_MF_MOUNTED)) ||
	    ((mount_flags & EXT2_MF_ISROOT) &&
	     (mount_flags & EXT2_MF_READONLY)))
		return;

Theodore Ts'o's avatar
Theodore Ts'o committed
224
	if (ctx->options & E2F_OPT_READONLY) {
Theodore Ts'o's avatar
Theodore Ts'o committed
225
		printf(_("Warning!  %s is mounted.\n"), ctx->filesystem_name);
Theodore Ts'o's avatar
Theodore Ts'o committed
226 227 228
		return;
	}

Theodore Ts'o's avatar
Theodore Ts'o committed
229
	printf(_("%s is mounted.  "), ctx->filesystem_name);
Theodore Ts'o's avatar
Theodore Ts'o committed
230 231
	if (!isatty(0) || !isatty(1))
		fatal_error(ctx, _("Cannot continue, aborting.\n\n"));
Theodore Ts'o's avatar
Theodore Ts'o committed
232
	printf(_("\n\n\007\007\007\007WARNING!!!  "
Theodore Ts'o's avatar
Theodore Ts'o committed
233
	       "Running e2fsck on a mounted filesystem may cause\n"
Theodore Ts'o's avatar
Theodore Ts'o committed
234 235
	       "SEVERE filesystem damage.\007\007\007\n\n"));
	cont = ask_yn(_("Do you really want to continue"), -1);
Theodore Ts'o's avatar
Theodore Ts'o committed
236
	if (!cont) {
Theodore Ts'o's avatar
Theodore Ts'o committed
237
		printf (_("check aborted.\n"));
Theodore Ts'o's avatar
Theodore Ts'o committed
238 239 240 241 242 243 244 245 246 247 248 249 250 251
		exit (0);
	}
	return;
}

/*
 * This routine checks to see if a filesystem can be skipped; if so,
 * it will exit with E2FSCK_OK.  Under some conditions it will print a
 * message explaining why a check is being forced.
 */
static void check_if_skip(e2fsck_t ctx)
{
	ext2_filsys fs = ctx->fs;
	const char *reason = NULL;
Theodore Ts'o's avatar
Theodore Ts'o committed
252
	unsigned int reason_arg = 0;
Theodore Ts'o's avatar
Theodore Ts'o committed
253
	
254 255
	if ((ctx->options & E2F_OPT_FORCE) || bad_blocks_file ||
	    cflag || swapfs)
Theodore Ts'o's avatar
Theodore Ts'o committed
256 257 258
		return;
	
	if (fs->super->s_state & EXT2_ERROR_FS)
Theodore Ts'o's avatar
Theodore Ts'o committed
259
		reason = _(" contains a file system with errors");
Theodore Ts'o's avatar
Theodore Ts'o committed
260
	else if ((fs->super->s_state & EXT2_VALID_FS) == 0)
Theodore Ts'o's avatar
Theodore Ts'o committed
261
		reason = _(" was not cleanly unmounted");
Theodore Ts'o's avatar
Theodore Ts'o committed
262
	else if ((fs->super->s_max_mnt_count > 0) &&
263
		 (fs->super->s_mnt_count >=
Theodore Ts'o's avatar
Theodore Ts'o committed
264 265 266 267
		  (unsigned) fs->super->s_max_mnt_count)) {
		reason = _(" has been mounted %u times without being checked");
		reason_arg = fs->super->s_mnt_count;
	} else if (fs->super->s_checkinterval &&
Theodore Ts'o's avatar
Theodore Ts'o committed
268
		 time(0) >= (fs->super->s_lastcheck +
Theodore Ts'o's avatar
Theodore Ts'o committed
269 270 271 272
			     fs->super->s_checkinterval)) {
		reason = _(" has gone %u days without being checked");
		reason_arg = (time(0) - fs->super->s_lastcheck)/(3600*24);
	}
Theodore Ts'o's avatar
Theodore Ts'o committed
273
	if (reason) {
Theodore Ts'o's avatar
Theodore Ts'o committed
274 275 276
		fputs(ctx->device_name, stdout);
		printf(reason, reason_arg);
		fputs(_(", check forced.\n"), stdout);
Theodore Ts'o's avatar
Theodore Ts'o committed
277 278
		return;
	}
Theodore Ts'o's avatar
Theodore Ts'o committed
279
	printf(_("%s: clean, %d/%d files, %d/%d blocks\n"), ctx->device_name,
Theodore Ts'o's avatar
Theodore Ts'o committed
280 281 282 283 284
	       fs->super->s_inodes_count - fs->super->s_free_inodes_count,
	       fs->super->s_inodes_count,
	       fs->super->s_blocks_count - fs->super->s_free_blocks_count,
	       fs->super->s_blocks_count);
	ext2fs_close(fs);
285 286
	ctx->fs = NULL;
	e2fsck_free_context(ctx);
Theodore Ts'o's avatar
Theodore Ts'o committed
287 288 289
	exit(FSCK_OK);
}

290 291 292
/*
 * For completion notice
 */
Theodore Ts'o's avatar
Theodore Ts'o committed
293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313
struct percent_tbl {
	int	max_pass;
	int	table[32];
};
struct percent_tbl e2fsck_tbl = {
	5, { 0, 70, 90, 92,  95, 100 }
};
static char bar[] =
	"==============================================================="
	"===============================================================";
static char spaces[] =
	"                                                               "
	"                                                               ";

static float calc_percent(struct percent_tbl *tbl, int pass, int curr,
			  int max)
{
	float	percent;
	
	if (pass <= 0)
		return 0.0;
Theodore Ts'o's avatar
Theodore Ts'o committed
314
	if (pass > tbl->max_pass || max == 0)
Theodore Ts'o's avatar
Theodore Ts'o committed
315 316 317 318 319 320 321 322 323 324 325 326 327 328 329
		return 100.0;
	percent = ((float) curr) / ((float) max);
	return ((percent * (tbl->table[pass] - tbl->table[pass-1]))
		+ tbl->table[pass-1]);
}

extern void e2fsck_clear_progbar(e2fsck_t ctx)
{
	if (!(ctx->flags & E2F_FLAG_PROG_BAR))
		return;
	
	printf("%s\r", spaces + (sizeof(spaces) - 80));
	ctx->flags &= ~E2F_FLAG_PROG_BAR;
}

330 331 332
static int e2fsck_update_progress(e2fsck_t ctx, int pass,
				  unsigned long cur, unsigned long max)
{
Theodore Ts'o's avatar
Theodore Ts'o committed
333
	static const char spinner[] = "\\|/-";
334
	char buf[80];
Theodore Ts'o's avatar
Theodore Ts'o committed
335 336
	int	i;
	float percent;
Theodore Ts'o's avatar
Theodore Ts'o committed
337 338
	int	tick;
	struct timeval	tv;
339
	static int dpywidth = 0;
340 341 342

	if (pass == 0)
		return 0;
343 344 345 346 347
	
	if (ctx->progress_fd) {
		sprintf(buf, "%d %lu %lu\n", pass, cur, max);
		write(ctx->progress_fd, buf, strlen(buf));
	} else {
Theodore Ts'o's avatar
Theodore Ts'o committed
348 349
		if (ctx->flags & E2F_FLAG_PROG_SUPPRESS)
			return 0;
350 351 352 353
		if (dpywidth == 0) {
			dpywidth = 66 - strlen(ctx->device_name);
			dpywidth = 8 * (dpywidth / 8);
		}
Theodore Ts'o's avatar
Theodore Ts'o committed
354 355 356 357 358 359 360 361 362 363 364 365 366 367 368
		/*
		 * Calculate the new progress position.  If the
		 * percentage hasn't changed, then we skip out right
		 * away. 
		 */
		percent = calc_percent(&e2fsck_tbl, pass, cur, max);
		if (ctx->progress_last_percent == (int) 10 * percent)
			return 0;
		ctx->progress_last_percent = (int) 10 * percent;

		/*
		 * If we've already updated the spinner once within
		 * the last 1/8th of a second, no point doing it
		 * again.
		 */
Theodore Ts'o's avatar
Theodore Ts'o committed
369 370 371 372 373 374
		gettimeofday(&tv, NULL);
		tick = (tv.tv_sec << 3) + (tv.tv_usec / (1000000 / 8));
		if ((tick == ctx->progress_last_time) &&
		    (cur != max) && (cur != 0))
			return 0;
		ctx->progress_last_time = tick;
Theodore Ts'o's avatar
Theodore Ts'o committed
375 376 377 378 379

		/*
		 * Advance the spinner, and note that the progress bar
		 * will be on the screen
		 */
380
		ctx->progress_pos = (ctx->progress_pos+1) & 3;
Theodore Ts'o's avatar
Theodore Ts'o committed
381
		ctx->flags |= E2F_FLAG_PROG_BAR;
Theodore Ts'o's avatar
Theodore Ts'o committed
382
		
Theodore Ts'o's avatar
Theodore Ts'o committed
383 384 385 386 387 388 389 390 391 392 393
		i = ((percent * dpywidth) + 50) / 100;
		printf("%s: |%s%s", ctx->device_name,
		       bar + (sizeof(bar) - (i+1)),
		       spaces + (sizeof(spaces) - (dpywidth - i + 1)));
		if (percent == 100.0)
			fputc('|', stdout);
		else
			fputc(spinner[ctx->progress_pos & 3], stdout);
		printf(" %4.1f%%   \r", percent);
		if (percent == 100.0)
			e2fsck_clear_progbar(ctx);
394 395 396 397
		fflush(stdout);
	}
	return 0;
}
Theodore Ts'o's avatar
Theodore Ts'o committed
398 399 400

#define PATH_SET "PATH=/sbin"

401
static void reserve_stdio_fds(void)
Theodore Ts'o's avatar
Theodore Ts'o committed
402 403 404 405 406 407 408
{
	int	fd;

	while (1) {
		fd = open("/dev/null", O_RDWR);
		if (fd > 2)
			break;
Theodore Ts'o's avatar
Theodore Ts'o committed
409
		if (fd < 0) {
Theodore Ts'o's avatar
Theodore Ts'o committed
410 411
			fprintf(stderr, _("ERROR: Couldn't open "
				"/dev/null (%s)\n"),
Theodore Ts'o's avatar
Theodore Ts'o committed
412 413 414
				strerror(errno));
			break;
		}
Theodore Ts'o's avatar
Theodore Ts'o committed
415 416 417 418
	}
	close(fd);
}

Theodore Ts'o's avatar
Theodore Ts'o committed
419
#ifdef HAVE_SIGNAL_H
Theodore Ts'o's avatar
Theodore Ts'o committed
420 421
static void signal_progress_on(int sig)
{
Theodore Ts'o's avatar
Theodore Ts'o committed
422
	e2fsck_t ctx = e2fsck_global_ctx;
Theodore Ts'o's avatar
Theodore Ts'o committed
423 424 425 426 427 428 429 430 431 432

	if (!ctx)
		return;

	ctx->progress = e2fsck_update_progress;
	ctx->progress_fd = 0;
}

static void signal_progress_off(int sig)
{
Theodore Ts'o's avatar
Theodore Ts'o committed
433
	e2fsck_t ctx = e2fsck_global_ctx;
Theodore Ts'o's avatar
Theodore Ts'o committed
434 435 436 437 438 439 440

	if (!ctx)
		return;

	e2fsck_clear_progbar(ctx);
	ctx->progress = 0;
}
Theodore Ts'o's avatar
Theodore Ts'o committed
441
#endif
Theodore Ts'o's avatar
Theodore Ts'o committed
442

Theodore Ts'o's avatar
Theodore Ts'o committed
443 444 445
static errcode_t PRS(int argc, char *argv[], e2fsck_t *ret_ctx)
{
	int		flush = 0;
Theodore Ts'o's avatar
Theodore Ts'o committed
446
	int		c, fd;
Theodore Ts'o's avatar
Theodore Ts'o committed
447 448 449 450 451
#ifdef MTRACE
	extern void	*mallwatch;
#endif
	e2fsck_t	ctx;
	errcode_t	retval;
Theodore Ts'o's avatar
Theodore Ts'o committed
452
#ifdef HAVE_SIGNAL_H
Theodore Ts'o's avatar
Theodore Ts'o committed
453
	struct sigaction	sa;
Theodore Ts'o's avatar
Theodore Ts'o committed
454
#endif
Theodore Ts'o's avatar
Theodore Ts'o committed
455 456 457 458 459 460 461 462 463 464 465 466 467 468 469

	retval = e2fsck_allocate_context(&ctx);
	if (retval)
		return retval;

	*ret_ctx = ctx;

	setbuf(stdout, NULL);
	setbuf(stderr, NULL);
	initialize_ext2_error_table();
	
	if (argc && *argv)
		ctx->program_name = *argv;
	else
		ctx->program_name = "e2fsck";
470
	while ((c = getopt (argc, argv, "panyrcC:B:dfvtFVM:b:I:j:P:l:L:N:Ss")) != EOF)
Theodore Ts'o's avatar
Theodore Ts'o committed
471
		switch (c) {
472 473 474
		case 'C':
			ctx->progress = e2fsck_update_progress;
			ctx->progress_fd = atoi(optarg);
Theodore Ts'o's avatar
Theodore Ts'o committed
475 476
			if (!ctx->progress_fd)
				break;
Theodore Ts'o's avatar
Theodore Ts'o committed
477 478 479 480 481 482 483 484 485 486 487
			/* Validate the file descriptor to avoid disasters */
			fd = dup(ctx->progress_fd);
			if (fd < 0) {
				fprintf(stderr,
				_("Error validating file descriptor %d: %s\n"),
					ctx->progress_fd,
					error_message(errno));
				fatal_error(ctx,
			_("Invalid completion information file descriptor"));
			} else
				close(fd);
488
			break;
Theodore Ts'o's avatar
Theodore Ts'o committed
489 490 491 492 493 494 495 496 497 498 499 500 501 502
		case 'p':
		case 'a':
			ctx->options |= E2F_OPT_PREEN;
			ctx->options &= ~(E2F_OPT_YES|E2F_OPT_NO);
			break;
		case 'n':
			ctx->options |= E2F_OPT_NO;
			ctx->options &= ~(E2F_OPT_YES|E2F_OPT_PREEN);
			break;
		case 'y':
			ctx->options |= E2F_OPT_YES;
			ctx->options &= ~(E2F_OPT_PREEN|E2F_OPT_NO);
			break;
		case 't':
Theodore Ts'o's avatar
Theodore Ts'o committed
503
#ifdef RESOURCE_TRACK
Theodore Ts'o's avatar
Theodore Ts'o committed
504 505 506 507
			if (ctx->options & E2F_OPT_TIME)
				ctx->options |= E2F_OPT_TIME2;
			else
				ctx->options |= E2F_OPT_TIME;
Theodore Ts'o's avatar
Theodore Ts'o committed
508
#else
Theodore Ts'o's avatar
Theodore Ts'o committed
509 510
			fprintf(stderr, _("The -t option is not "
				"supported on this version of e2fsck.\n"));
Theodore Ts'o's avatar
Theodore Ts'o committed
511
#endif
Theodore Ts'o's avatar
Theodore Ts'o committed
512 513 514 515 516 517 518 519 520 521
			break;
		case 'c':
			cflag++;
			ctx->options |= E2F_OPT_CHECKBLOCKS;
			break;
		case 'r':
			/* What we do by default, anyway! */
			break;
		case 'b':
			ctx->use_superblock = atoi(optarg);
522
			ctx->flags |= E2F_FLAG_SB_SPECIFIED;
Theodore Ts'o's avatar
Theodore Ts'o committed
523 524
			break;
		case 'B':
525
			ctx->blocksize = atoi(optarg);
Theodore Ts'o's avatar
Theodore Ts'o committed
526 527 528 529
			break;
		case 'I':
			ctx->inode_buffer_blocks = atoi(optarg);
			break;
530 531 532
		case 'j':
			ctx->journal_name = optarg;
			break;
Theodore Ts'o's avatar
Theodore Ts'o committed
533 534 535 536 537 538
		case 'P':
			ctx->process_inode_size = atoi(optarg);
			break;
		case 'L':
			replace_bad_blocks++;
		case 'l':
Theodore Ts'o's avatar
Theodore Ts'o committed
539
			bad_blocks_file = (char *) malloc(strlen(optarg)+1);
Theodore Ts'o's avatar
Theodore Ts'o committed
540
			if (!bad_blocks_file)
Theodore Ts'o's avatar
Theodore Ts'o committed
541 542
				fatal_error(ctx,
					    "Couldn't malloc bad_blocks_file");
Theodore Ts'o's avatar
Theodore Ts'o committed
543 544 545 546 547 548
			strcpy(bad_blocks_file, optarg);
			break;
		case 'd':
			ctx->options |= E2F_OPT_DEBUG;
			break;
		case 'f':
549
			ctx->options |= E2F_OPT_FORCE;
Theodore Ts'o's avatar
Theodore Ts'o committed
550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567
			break;
		case 'F':
			flush = 1;
			break;
		case 'v':
			verbose = 1;
			break;
		case 'V':
			show_version_only = 1;
			break;
#ifdef MTRACE
		case 'M':
			mallwatch = (void *) strtol(optarg, NULL, 0);
			break;
#endif
		case 'N':
			ctx->device_name = optarg;
			break;
568
#ifdef ENABLE_SWAPFS
Theodore Ts'o's avatar
Theodore Ts'o committed
569 570 571 572 573
		case 's':
			normalize_swapfs = 1;
		case 'S':
			swapfs = 1;
			break;
574 575 576 577 578 579 580 581
#else
		case 's':
		case 'S':
			fprintf(stderr, _("Byte-swapping filesystems "
					  "not compiled in this version "
					  "of e2fsck\n"));
			exit(1);
#endif
Theodore Ts'o's avatar
Theodore Ts'o committed
582 583 584 585 586 587 588 589 590 591 592
		default:
			usage(ctx);
		}
	if (show_version_only)
		return 0;
	if (optind != argc - 1)
		usage(ctx);
	if ((ctx->options & E2F_OPT_NO) && !bad_blocks_file &&
	    !cflag && !swapfs)
		ctx->options |= E2F_OPT_READONLY;
	ctx->filesystem_name = argv[optind];
Theodore Ts'o's avatar
Theodore Ts'o committed
593
	if (flush) {
594
		fd = open(ctx->filesystem_name, O_RDONLY, 0);
Theodore Ts'o's avatar
Theodore Ts'o committed
595
		if (fd < 0) {
Theodore Ts'o's avatar
Theodore Ts'o committed
596 597
			com_err("open", errno,
				_("while opening %s for flushing"),
Theodore Ts'o's avatar
Theodore Ts'o committed
598
				ctx->filesystem_name);
Theodore Ts'o's avatar
Theodore Ts'o committed
599
			fatal_error(ctx, 0);
Theodore Ts'o's avatar
Theodore Ts'o committed
600
		}
601
		if ((retval = ext2fs_sync_device(fd, 1))) {
602
			com_err("ext2fs_sync_device", retval,
Theodore Ts'o's avatar
Theodore Ts'o committed
603
				_("while trying to flush %s"),
Theodore Ts'o's avatar
Theodore Ts'o committed
604
				ctx->filesystem_name);
Theodore Ts'o's avatar
Theodore Ts'o committed
605
			fatal_error(ctx, 0);
Theodore Ts'o's avatar
Theodore Ts'o committed
606 607 608
		}
		close(fd);
	}
609
#ifdef ENABLE_SWAPFS
Theodore Ts'o's avatar
Theodore Ts'o committed
610 611
	if (swapfs) {
		if (cflag || bad_blocks_file) {
Theodore Ts'o's avatar
Theodore Ts'o committed
612 613
			fprintf(stderr, _("Incompatible options not "
				"allowed when byte-swapping.\n"));
Theodore Ts'o's avatar
Theodore Ts'o committed
614
			exit(FSCK_USAGE);
Theodore Ts'o's avatar
Theodore Ts'o committed
615 616
		}
	}
617
#endif
Theodore Ts'o's avatar
Theodore Ts'o committed
618
#ifdef HAVE_SIGNAL_H
Theodore Ts'o's avatar
Theodore Ts'o committed
619 620 621 622 623 624 625
	/*
	 * Set up signal action
	 */
	memset(&sa, 0, sizeof(struct sigaction));
#ifdef SA_RESTART
	sa.sa_flags = SA_RESTART;
#endif
Theodore Ts'o's avatar
Theodore Ts'o committed
626
	e2fsck_global_ctx = ctx;
Theodore Ts'o's avatar
Theodore Ts'o committed
627 628 629 630
	sa.sa_handler = signal_progress_on;
	sigaction(SIGUSR1, &sa, 0);
	sa.sa_handler = signal_progress_off;
	sigaction(SIGUSR2, &sa, 0);
Theodore Ts'o's avatar
Theodore Ts'o committed
631
#endif
632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649

	/* Update our PATH to include /sbin if we need to run badblocks  */
	if (cflag) {
		char *oldpath = getenv("PATH");
		if (oldpath) {
			char *newpath;

			newpath = (char *) malloc(sizeof (PATH_SET) + 1 +
						  strlen (oldpath));
			if (!newpath)
				fatal_error(ctx, "Couldn't malloc() newpath");
			strcpy (newpath, PATH_SET);
			strcat (newpath, ":");
			strcat (newpath, oldpath);
			putenv (newpath);
		} else
			putenv (PATH_SET);
	}
Theodore Ts'o's avatar
Theodore Ts'o committed
650 651 652 653 654 655 656 657 658 659 660 661 662
	return 0;
}

static const char *my_ver_string = E2FSPROGS_VERSION;
static const char *my_ver_date = E2FSPROGS_DATE;
					
int main (int argc, char *argv[])
{
	errcode_t	retval = 0;
	int		exit_value = FSCK_OK;
	int		i;
	ext2_filsys	fs = 0;
	io_manager	io_ptr;
663
	struct ext2_super_block *sb;
Theodore Ts'o's avatar
Theodore Ts'o committed
664 665 666 667
	const char	*lib_ver_date;
	int		my_ver, lib_ver;
	e2fsck_t	ctx;
	struct problem_context pctx;
Theodore Ts'o's avatar
Theodore Ts'o committed
668
	int flags, run_result;
Theodore Ts'o's avatar
Theodore Ts'o committed
669 670 671 672 673 674 675
	
	clear_problem_context(&pctx);
#ifdef MTRACE
	mtrace();
#endif
#ifdef MCHECK
	mcheck(0);
Theodore Ts'o's avatar
Theodore Ts'o committed
676 677 678 679 680
#endif
#ifdef ENABLE_NLS
	setlocale(LC_MESSAGES, "");
	bindtextdomain(NLS_CAT_NAME, LOCALEDIR);
	textdomain(NLS_CAT_NAME);
Theodore Ts'o's avatar
Theodore Ts'o committed
681 682 683 684
#endif
	my_ver = ext2fs_parse_version_string(my_ver_string);
	lib_ver = ext2fs_get_library_version(0, &lib_ver_date);
	if (my_ver > lib_ver) {
Theodore Ts'o's avatar
Theodore Ts'o committed
685 686
		fprintf( stderr, _("Error: ext2fs library version "
			"out of date!\n"));
Theodore Ts'o's avatar
Theodore Ts'o committed
687 688 689 690 691 692
		show_version_only++;
	}
	
	retval = PRS(argc, argv, &ctx);
	if (retval) {
		com_err("e2fsck", retval,
Theodore Ts'o's avatar
Theodore Ts'o committed
693
			_("while trying to initialize program"));
Theodore Ts'o's avatar
Theodore Ts'o committed
694
		exit(FSCK_ERROR);
Theodore Ts'o's avatar
Theodore Ts'o committed
695
	}
Theodore Ts'o's avatar
Theodore Ts'o committed
696 697
	reserve_stdio_fds();
	
Theodore Ts'o's avatar
Theodore Ts'o committed
698
#ifdef RESOURCE_TRACK
Theodore Ts'o's avatar
Theodore Ts'o committed
699
	init_resource_track(&ctx->global_rtrack);
Theodore Ts'o's avatar
Theodore Ts'o committed
700
#endif
Theodore Ts'o's avatar
Theodore Ts'o committed
701 702

	if (!(ctx->options & E2F_OPT_PREEN) || show_version_only)
703 704
		fprintf (stderr, "e2fsck %s (%s)\n", my_ver_string,
			 my_ver_date);
Theodore Ts'o's avatar
Theodore Ts'o committed
705 706

	if (show_version_only) {
Theodore Ts'o's avatar
Theodore Ts'o committed
707
		fprintf(stderr, _("\tUsing %s, %s\n"),
Theodore Ts'o's avatar
Theodore Ts'o committed
708
			error_message(EXT2_ET_BASE), lib_ver_date);
Theodore Ts'o's avatar
Theodore Ts'o committed
709
		exit(FSCK_OK);
Theodore Ts'o's avatar
Theodore Ts'o committed
710 711 712 713 714 715 716 717
	}
	
	check_mount(ctx);
	
	if (!(ctx->options & E2F_OPT_PREEN) &&
	    !(ctx->options & E2F_OPT_NO) &&
	    !(ctx->options & E2F_OPT_YES)) {
		if (!isatty (0) || !isatty (1))
Theodore Ts'o's avatar
Theodore Ts'o committed
718
			fatal_error(ctx,
Theodore Ts'o's avatar
Theodore Ts'o committed
719
				    _("need terminal for interactive repairs"));
Theodore Ts'o's avatar
Theodore Ts'o committed
720 721 722 723 724 725 726 727 728
	}
	ctx->superblock = ctx->use_superblock;
restart:
#if 1
	io_ptr = unix_io_manager;
#else
	io_ptr = test_io_manager;
	test_io_backing_manager = unix_io_manager;
#endif
729 730 731 732
	flags = 0;
	if ((ctx->options & E2F_OPT_READONLY) == 0)
		flags |= EXT2_FLAG_RW;

733
	if (ctx->superblock && ctx->blocksize) {
Theodore Ts'o's avatar
Theodore Ts'o committed
734
		retval = ext2fs_open(ctx->filesystem_name, flags,
735 736
				     ctx->superblock, ctx->blocksize,
				     io_ptr, &fs);
Theodore Ts'o's avatar
Theodore Ts'o committed
737 738 739 740 741 742 743 744 745 746 747 748
	} else if (ctx->superblock) {
		for (i=0; possible_block_sizes[i]; i++) {
			retval = ext2fs_open(ctx->filesystem_name, flags,
					     ctx->superblock,
					     possible_block_sizes[i],
					     io_ptr, &fs);
			if (!retval)
				break;
		}
	} else 
		retval = ext2fs_open(ctx->filesystem_name, flags, 
				     0, 0, io_ptr, &fs);
749 750
	if (!ctx->superblock && !(ctx->options & E2F_OPT_PREEN) &&
	    !(ctx->flags & E2F_FLAG_SB_SPECIFIED) &&
Theodore Ts'o's avatar
Theodore Ts'o committed
751 752 753
	    ((retval == EXT2_ET_BAD_MAGIC) ||
	     ((retval == 0) && ext2fs_check_desc(fs)))) {
		if (!fs || (fs->group_desc_count > 1)) {
Theodore Ts'o's avatar
Theodore Ts'o committed
754 755 756
			printf(_("%s trying backup blocks...\n"),
			       retval ? _("Couldn't find ext2 superblock,") :
			       _("Group descriptors look bad..."));
757
			get_backup_sb(ctx, fs, ctx->filesystem_name, io_ptr);
Theodore Ts'o's avatar
Theodore Ts'o committed
758 759 760 761 762 763
			if (fs)
				ext2fs_close(fs);
			goto restart;
		}
	}
	if (retval) {
Theodore Ts'o's avatar
Theodore Ts'o committed
764
		com_err(ctx->program_name, retval, _("while trying to open %s"),
Theodore Ts'o's avatar
Theodore Ts'o committed
765
			ctx->filesystem_name);
766
		if (retval == EXT2_ET_REV_TOO_HIGH) {
Theodore Ts'o's avatar
Theodore Ts'o committed
767
			printf(_("The filesystem revision is apparently "
768 769
			       "too high for this version of e2fsck.\n"
			       "(Or the filesystem superblock "
Theodore Ts'o's avatar
Theodore Ts'o committed
770
			       "is corrupt)\n\n"));
771 772
			fix_problem(ctx, PR_0_SB_CORRUPT, &pctx);
		} else if (retval == EXT2_ET_SHORT_READ)
Theodore Ts'o's avatar
Theodore Ts'o committed
773
			printf(_("Could this be a zero-length partition?\n"));
Theodore Ts'o's avatar
Theodore Ts'o committed
774
		else if ((retval == EPERM) || (retval == EACCES))
Theodore Ts'o's avatar
Theodore Ts'o committed
775 776
			printf(_("You must have %s access to the "
			       "filesystem or be root\n"),
Theodore Ts'o's avatar
Theodore Ts'o committed
777 778 779
			       (ctx->options & E2F_OPT_READONLY) ?
			       "r/o" : "r/w");
		else if (retval == ENXIO)
Theodore Ts'o's avatar
Theodore Ts'o committed
780
			printf(_("Possibly non-existent or swap device?\n"));
Theodore Ts'o's avatar
Theodore Ts'o committed
781 782
#ifdef EROFS
		else if (retval == EROFS)
Theodore Ts'o's avatar
Theodore Ts'o committed
783
			printf(_("Disk write-protected; use the -n option "
Theodore Ts'o's avatar
Theodore Ts'o committed
784
			       "to do a read-only\n"
Theodore Ts'o's avatar
Theodore Ts'o committed
785
			       "check of the device.\n"));
Theodore Ts'o's avatar
Theodore Ts'o committed
786
#endif
Theodore Ts'o's avatar
Theodore Ts'o committed
787 788
		else
			fix_problem(ctx, PR_0_SB_CORRUPT, &pctx);
Theodore Ts'o's avatar
Theodore Ts'o committed
789
		fatal_error(ctx, 0);
Theodore Ts'o's avatar
Theodore Ts'o committed
790 791
	}
	ctx->fs = fs;
Theodore Ts'o's avatar
Theodore Ts'o committed
792
	fs->priv_data = ctx;
793 794
	sb = fs->super;
	if (sb->s_rev_level > E2FSCK_CURRENT_REV) {
Theodore Ts'o's avatar
Theodore Ts'o committed
795
		com_err(ctx->program_name, EXT2_ET_REV_TOO_HIGH,
Theodore Ts'o's avatar
Theodore Ts'o committed
796
			_("while trying to open %s"),
Theodore Ts'o's avatar
Theodore Ts'o committed
797
			ctx->filesystem_name);
Theodore Ts'o's avatar
Theodore Ts'o committed
798
	get_newer:
Theodore Ts'o's avatar
Theodore Ts'o committed
799
		fatal_error(ctx, _("Get a newer version of e2fsck!"));
Theodore Ts'o's avatar
Theodore Ts'o committed
800
	}
Theodore Ts'o's avatar
Theodore Ts'o committed
801 802 803 804 805 806

	/*
	 * Set the device name, which is used whenever we print error
	 * or informational messages to the user.
	 */
	if (ctx->device_name == 0 &&
807 808
	    (sb->s_volume_name[0] != 0)) {
		char *cp = malloc(sizeof(sb->s_volume_name)+1);
Theodore Ts'o's avatar
Theodore Ts'o committed
809
		if (cp) {
810 811 812
			strncpy(cp, sb->s_volume_name,
				sizeof(sb->s_volume_name));
			cp[sizeof(sb->s_volume_name)] = 0;
Theodore Ts'o's avatar
Theodore Ts'o committed
813 814 815 816 817 818
			ctx->device_name = cp;
		}
	}
	if (ctx->device_name == 0)
		ctx->device_name = ctx->filesystem_name;

819
	/*
Theodore Ts'o's avatar
Theodore Ts'o committed
820
	 * Make sure the ext3 superblock fields are consistent.
821
	 */
Theodore Ts'o's avatar
Theodore Ts'o committed
822 823 824 825 826 827
	retval = e2fsck_check_ext3_journal(ctx);
	if (retval) {
		com_err(ctx->program_name, retval,
			_("while checking ext3 journal for %s"),
			ctx->device_name);
		ext2fs_close(ctx->fs);
Theodore Ts'o's avatar
Theodore Ts'o committed
828
		fatal_error(ctx, 0);
Theodore Ts'o's avatar
Theodore Ts'o committed
829 830
	}

Theodore Ts'o's avatar
Theodore Ts'o committed
831 832 833 834
	/*
	 * Check to see if we need to do ext3-style recovery.  If so,
	 * do it, and then restart the fsck.
	 */
835
	if (sb->s_feature_incompat & EXT3_FEATURE_INCOMPAT_RECOVER) {
Theodore Ts'o's avatar
Theodore Ts'o committed
836 837 838 839 840 841 842 843 844
		if (ctx->options & E2F_OPT_READONLY) {
			printf(_("Warning: skipping journal recovery "
				 "because doing a read-only filesystem "
				 "check.\n"));
			io_channel_flush(ctx->fs->io);
		} else {
			retval = e2fsck_run_ext3_journal(ctx);
			if (retval) {
				com_err(ctx->program_name, retval,
Theodore Ts'o's avatar
Theodore Ts'o committed
845
				_("while recovering ext3 journal of %s"),
Theodore Ts'o's avatar
Theodore Ts'o committed
846 847 848 849 850 851
					ctx->device_name);
				fatal_error(ctx, 0);
			}
			ext2fs_close(ctx->fs);
			ctx->fs = 0;
			goto restart;
852 853
		}
	}
Theodore Ts'o's avatar
Theodore Ts'o committed
854

Theodore Ts'o's avatar
Theodore Ts'o committed
855 856 857 858
	/*
	 * Check for compatibility with the feature sets.  We need to
	 * be more stringent than ext2fs_open().
	 */
859 860
	if ((sb->s_feature_compat & ~EXT2_LIB_FEATURE_COMPAT_SUPP) ||
	    (sb->s_feature_incompat & ~EXT2_LIB_FEATURE_INCOMPAT_SUPP)) {
Theodore Ts'o's avatar
Theodore Ts'o committed
861
		com_err(ctx->program_name, EXT2_ET_UNSUPP_FEATURE,
Theodore Ts'o's avatar
Theodore Ts'o committed
862
			"(%s)", ctx->device_name);
Theodore Ts'o's avatar
Theodore Ts'o committed
863
		goto get_newer;
Theodore Ts'o's avatar
Theodore Ts'o committed
864
	}
865
	if (sb->s_feature_ro_compat & ~EXT2_LIB_FEATURE_RO_COMPAT_SUPP) {
Theodore Ts'o's avatar
Theodore Ts'o committed
866
		com_err(ctx->program_name, EXT2_ET_RO_UNSUPP_FEATURE,
Theodore Ts'o's avatar
Theodore Ts'o committed
867
			"(%s)", ctx->device_name);
Theodore Ts'o's avatar
Theodore Ts'o committed
868 869
		goto get_newer;
	}
Theodore Ts'o's avatar
Theodore Ts'o committed
870
#ifdef ENABLE_COMPRESSION
871
	if (sb->s_feature_incompat & EXT2_FEATURE_INCOMPAT_COMPRESSION)
Theodore Ts'o's avatar
Theodore Ts'o committed
872 873 874
		com_err(ctx->program_name, 0,
			_("Warning: compression support is experimental.\n"));
#endif
Theodore Ts'o's avatar
Theodore Ts'o committed
875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895
	
	/*
	 * If the user specified a specific superblock, presumably the
	 * master superblock has been trashed.  So we mark the
	 * superblock as dirty, so it can be written out.
	 */
	if (ctx->superblock &&
	    !(ctx->options & E2F_OPT_READONLY))
		ext2fs_mark_super_dirty(fs);

	/*
	 * Don't overwrite the backup superblock and block
	 * descriptors, until we're sure the filesystem is OK....
	 */
	fs->flags |= EXT2_FLAG_MASTER_SB_ONLY;

	ehandler_init(fs->io);

	if (ctx->superblock)
		set_latch_flags(PR_LATCH_RELOC, PRL_LATCHED, 0);
	check_super_block(ctx);
Theodore Ts'o's avatar
Theodore Ts'o committed
896
	if (ctx->flags & E2F_FLAG_SIGNAL_MASK)
Theodore Ts'o's avatar
Theodore Ts'o committed
897
		fatal_error(ctx, 0);
Theodore Ts'o's avatar
Theodore Ts'o committed
898 899 900 901 902
	check_if_skip(ctx);
	if (bad_blocks_file)
		read_bad_blocks_file(ctx, bad_blocks_file, replace_bad_blocks);
	else if (cflag)
		test_disk(ctx);
Theodore Ts'o's avatar
Theodore Ts'o committed
903
	if (ctx->flags & E2F_FLAG_SIGNAL_MASK)
Theodore Ts'o's avatar
Theodore Ts'o committed
904
		fatal_error(ctx, 0);
905
#ifdef ENABLE_SWAPFS
Theodore Ts'o's avatar
Theodore Ts'o committed
906 907 908
	if (normalize_swapfs) {
		if ((fs->flags & EXT2_FLAG_SWAP_BYTES) ==
		    ext2fs_native_flag()) {
Theodore Ts'o's avatar
Theodore Ts'o committed
909 910
			fprintf(stderr, _("%s: Filesystem byte order "
				"already normalized.\n"), ctx->device_name);
Theodore Ts'o's avatar
Theodore Ts'o committed
911
			fatal_error(ctx, 0);
Theodore Ts'o's avatar
Theodore Ts'o committed
912 913
		}
	}
Theodore Ts'o's avatar
Theodore Ts'o committed
914
	if (swapfs) {
Theodore Ts'o's avatar
Theodore Ts'o committed
915
		swap_filesys(ctx);
Theodore Ts'o's avatar
Theodore Ts'o committed
916
		if (ctx->flags & E2F_FLAG_SIGNAL_MASK)
Theodore Ts'o's avatar
Theodore Ts'o committed
917
			fatal_error(ctx, 0);
Theodore Ts'o's avatar
Theodore Ts'o committed
918
	}
919
#endif
Theodore Ts'o's avatar
Theodore Ts'o committed
920 921 922 923 924 925 926 927 928

	/*
	 * Mark the system as valid, 'til proven otherwise
	 */
	ext2fs_mark_valid(fs);

	retval = ext2fs_read_bb_inode(fs, &fs->badblocks);
	if (retval) {
		com_err(ctx->program_name, retval,
Theodore Ts'o's avatar
Theodore Ts'o committed
929
			_("while reading bad blocks inode"));
Theodore Ts'o's avatar
Theodore Ts'o committed
930
		preenhalt(ctx);
Theodore Ts'o's avatar
Theodore Ts'o committed
931 932
		printf(_("This doesn't bode well,"
			 " but we'll try to go on...\n"));
Theodore Ts'o's avatar
Theodore Ts'o committed
933
	}
Theodore Ts'o's avatar
Theodore Ts'o committed
934 935

	run_result = e2fsck_run(ctx);
Theodore Ts'o's avatar
Theodore Ts'o committed
936
	e2fsck_clear_progbar(ctx);
Theodore Ts'o's avatar
Theodore Ts'o committed
937
	if (run_result == E2F_FLAG_RESTART) {
Theodore Ts'o's avatar
Theodore Ts'o committed
938
		printf(_("Restarting e2fsck from the beginning...\n"));
Theodore Ts'o's avatar
Theodore Ts'o committed
939 940 941
		retval = e2fsck_reset_context(ctx);
		if (retval) {
			com_err(ctx->program_name, retval,
Theodore Ts'o's avatar
Theodore Ts'o committed
942
				_("while resetting context"));
Theodore Ts'o's avatar
Theodore Ts'o committed
943
			fatal_error(ctx, 0);
Theodore Ts'o's avatar
Theodore Ts'o committed
944
		}
Theodore Ts'o's avatar
Theodore Ts'o committed
945
		ext2fs_close(fs);
Theodore Ts'o's avatar
Theodore Ts'o committed
946 947
		goto restart;
	}
Theodore Ts'o's avatar
Theodore Ts'o committed
948
	if (run_result & E2F_FLAG_SIGNAL_MASK)
Theodore Ts'o's avatar
Theodore Ts'o committed
949
		fatal_error(ctx, 0);
Theodore Ts'o's avatar
Theodore Ts'o committed
950 951
	if (run_result & E2F_FLAG_CANCEL)
		ext2fs_unmark_valid(fs);
Theodore Ts'o's avatar
Theodore Ts'o committed
952 953 954 955 956 957 958

#ifdef MTRACE
	mtrace_print("Cleanup");
#endif
	if (ext2fs_test_changed(fs)) {
		exit_value = FSCK_NONDESTRUCT;
		if (!(ctx->options & E2F_OPT_PREEN))
Theodore Ts'o's avatar
Theodore Ts'o committed
959
		    printf(_("\n%s: ***** FILE SYSTEM WAS MODIFIED *****\n"),
Theodore Ts'o's avatar
Theodore Ts'o committed
960 961
			       ctx->device_name);
		if (root_filesystem && !read_only_root) {
Theodore Ts'o's avatar
Theodore Ts'o committed
962
			printf(_("%s: ***** REBOOT LINUX *****\n"),
Theodore Ts'o's avatar
Theodore Ts'o committed
963 964 965 966 967 968
			       ctx->device_name);
			exit_value = FSCK_REBOOT;
		}
	}
	if (ext2fs_test_valid(fs))
		fs->flags &= ~EXT2_FLAG_MASTER_SB_ONLY;
969 970 971
	else {
		printf(_("\n%s: ********** WARNING: Filesystem still has "
			 "errors **********\n\n"), ctx->device_name);
Theodore Ts'o's avatar
Theodore Ts'o committed
972
		exit_value = FSCK_UNCORRECTED;
973
	}
Theodore Ts'o's avatar
Theodore Ts'o committed
974 975
	if (!(ctx->options & E2F_OPT_READONLY)) {
		if (ext2fs_test_valid(fs)) {
976
			if (!(sb->s_state & EXT2_VALID_FS))
Theodore Ts'o's avatar
Theodore Ts'o committed
977
				exit_value = FSCK_NONDESTRUCT;
978
			sb->s_state = EXT2_VALID_FS;
Theodore Ts'o's avatar
Theodore Ts'o committed
979
		} else
980 981 982
			sb->s_state &= ~EXT2_VALID_FS;
		sb->s_mnt_count = 0;
		sb->s_lastcheck = time(NULL);
Theodore Ts'o's avatar
Theodore Ts'o committed
983 984 985 986
		ext2fs_mark_super_dirty(fs);
	}
	show_stats(ctx);

Theodore Ts'o's avatar
Theodore Ts'o committed
987
	e2fsck_write_bitmaps(ctx);
Theodore Ts'o's avatar
Theodore Ts'o committed
988
	
989 990 991 992
	ext2fs_close(fs);
	ctx->fs = NULL;
	e2fsck_free_context(ctx);
	
Theodore Ts'o's avatar
Theodore Ts'o committed
993
#ifdef RESOURCE_TRACK
Theodore Ts'o's avatar
Theodore Ts'o committed
994 995
	if (ctx->options & E2F_OPT_TIME)
		print_resource_track(NULL, &ctx->global_rtrack);
Theodore Ts'o's avatar
Theodore Ts'o committed
996
#endif
Theodore Ts'o's avatar
Theodore Ts'o committed
997 998 999

	return exit_value;
}