]> git.ipfire.org Git - thirdparty/e2fsprogs.git/blame - e2fsck/unix.c
AOSP: Support UID/GID mapping
[thirdparty/e2fsprogs.git] / e2fsck / unix.c
CommitLineData
1b6bf175
TT
1/*
2 * unix.c - The unix-specific code for e2fsck
efc6f628 3 *
1b6bf175
TT
4 * Copyright (C) 1993, 1994, 1995, 1996, 1997 Theodore Ts'o.
5 *
6 * %Begin-Header%
7 * This file may be redistributed under the terms of the GNU Public
8 * License.
9 * %End-Header%
10 */
11
ebabf2ad
TT
12#define _XOPEN_SOURCE 600 /* for inclusion of sa_handler in Solaris */
13
d1154eb4 14#include "config.h"
1b6bf175
TT
15#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>
1b6bf175 22#include <time.h>
9ecd8bec 23#ifdef HAVE_SIGNAL_H
5596defa 24#include <signal.h>
9ecd8bec 25#endif
1b6bf175
TT
26#ifdef HAVE_GETOPT_H
27#include <getopt.h>
373b8337
TT
28#else
29extern char *optarg;
30extern int optind;
1b6bf175
TT
31#endif
32#include <unistd.h>
33#ifdef HAVE_ERRNO_H
34#include <errno.h>
35#endif
fff45483 36#ifdef HAVE_SYS_IOCTL_H
1b6bf175 37#include <sys/ioctl.h>
fff45483 38#endif
e71d8731 39#ifdef HAVE_MALLOC_H
1b6bf175 40#include <malloc.h>
e71d8731 41#endif
c07f9f26
TT
42#ifdef HAVE_SYS_TYPES_H
43#include <sys/types.h>
44#endif
45#ifdef HAVE_DIRENT_H
46#include <dirent.h>
47#endif
ce9b74ab 48#include <libgen.h>
1b6bf175 49
864b8d4e 50#include "e2p/e2p.h"
1b6bf175 51#include "et/com_err.h"
01c196b4 52#include "e2p/e2p.h"
99ceb8ec 53#include "support/plausible.h"
1b6bf175
TT
54#include "e2fsck.h"
55#include "problem.h"
27ce779d 56#include "jfs_user.h"
1b6bf175
TT
57#include "../version.h"
58
1b6bf175 59/* Command line options */
54a31a3b
TT
60static int cflag; /* check disk */
61static int show_version_only;
62static int verbose;
1b6bf175 63
54a31a3b 64static int replace_bad_blocks;
4fb9d52b 65static int keep_bad_blocks;
54a31a3b 66static char *bad_blocks_file;
1b6bf175 67
243dc31f
TT
68e2fsck_t e2fsck_global_ctx; /* Try your very best not to use this! */
69
1fc23b5e 70#ifdef CONFIG_JBD_DEBUG /* Enabled by configure --enable-jbd-debug */
5e72cdbe
TT
71int journal_enable_debug = -1;
72#endif
73
1b6bf175
TT
74static void usage(e2fsck_t ctx)
75{
76 fprintf(stderr,
bc8f1ae5 77 _("Usage: %s [-panyrcdfktvDFV] [-b superblock] [-B blocksize]\n"
bb145b01 78 "\t\t[-l|-L bad_blocks_file] [-C fd] [-j external_journal]\n"
ce9b74ab 79 "\t\t[-E extended-options] [-z undo_file] device\n"),
5596defa 80 ctx->program_name);
b55199ea 81
45ff69ff 82 fprintf(stderr, "%s", _("\nEmergency help:\n"
b55199ea
TT
83 " -p Automatic repair (no questions)\n"
84 " -n Make no changes to the filesystem\n"
85 " -y Assume \"yes\" to all questions\n"
19445ef9 86 " -c Check for bad blocks and add them to the badblock list\n"
53ef44c4 87 " -f Force checking even if filesystem is marked clean\n"));
45ff69ff 88 fprintf(stderr, "%s", _(""
b55199ea
TT
89 " -v Be verbose\n"
90 " -b superblock Use alternative superblock\n"
91 " -B blocksize Force blocksize when looking for superblock\n"
bb145b01 92 " -j external_journal Set location of the external journal\n"
b55199ea
TT
93 " -l bad_blocks_file Add to badblocks list\n"
94 " -L bad_blocks_file Set badblocks list\n"
ce9b74ab 95 " -z undo_file Create an undo file\n"
0c4a0726 96 ));
b55199ea 97
1b6bf175
TT
98 exit(FSCK_USAGE);
99}
100
101static void show_stats(e2fsck_t ctx)
102{
103 ext2_filsys fs = ctx->fs;
f3358643 104 ext2_ino_t inodes, inodes_used;
6dc64392
VAH
105 blk64_t blocks, blocks_used;
106 unsigned int dir_links;
107 unsigned int num_files, num_links;
c0a84966 108 __u32 *mask, m;
53600d30 109 int frag_percent_file = 0, frag_percent_dir = 0, frag_percent_total = 0;
c0a84966 110 int i, j, printed = 0;
1b6bf175
TT
111
112 dir_links = 2 * ctx->fs_directory_count - 1;
113 num_files = ctx->fs_total_count - dir_links;
114 num_links = ctx->fs_links_count - dir_links;
115 inodes = fs->super->s_inodes_count;
116 inodes_used = (fs->super->s_inodes_count -
117 fs->super->s_free_inodes_count);
4efbac6f
VAH
118 blocks = ext2fs_blocks_count(fs->super);
119 blocks_used = (ext2fs_blocks_count(fs->super) -
120 ext2fs_free_blocks_count(fs->super));
1b6bf175 121
53600d30
TT
122 if (inodes_used > 0) {
123 frag_percent_file = (10000 * ctx->fs_fragmented) / inodes_used;
124 frag_percent_file = (frag_percent_file + 5) / 10;
ce44d8ca 125
53600d30
TT
126 frag_percent_dir = (10000 * ctx->fs_fragmented_dir) / inodes_used;
127 frag_percent_dir = (frag_percent_dir + 5) / 10;
ce44d8ca 128
53600d30
TT
129 frag_percent_total = ((10000 * (ctx->fs_fragmented +
130 ctx->fs_fragmented_dir))
131 / inodes_used);
132 frag_percent_total = (frag_percent_total + 5) / 10;
133 }
efc6f628 134
1b6bf175 135 if (!verbose) {
b0e91c89
TT
136 log_out(ctx, _("%s: %u/%u files (%0d.%d%% non-contiguous), "
137 "%llu/%llu blocks\n"),
138 ctx->device_name, inodes_used, inodes,
139 frag_percent_total / 10, frag_percent_total % 10,
140 blocks_used, blocks);
1b6bf175
TT
141 return;
142 }
c0a84966
TT
143 profile_get_boolean(ctx->profile, "options", "report_features", 0, 0,
144 &i);
145 if (verbose && i) {
146 log_out(ctx, "\nFilesystem features:");
147 mask = &ctx->fs->super->s_feature_compat;
148 for (i = 0; i < 3; i++, mask++) {
149 for (j = 0, m = 1; j < 32; j++, m <<= 1) {
150 if (*mask & m) {
151 log_out(ctx, " %s",
152 e2p_feature2string(i, m));
153 printed++;
154 }
155 }
156 }
157 if (printed == 0)
158 log_out(ctx, " (none)");
159 log_out(ctx, "\n");
160 }
161
87e56a99
TT
162 log_out(ctx, P_("\n%12u inode used (%2.2f%%, out of %u)\n",
163 "\n%12u inodes used (%2.2f%%, out of %u)\n",
b0e91c89 164 inodes_used), inodes_used,
87e56a99 165 100.0 * inodes_used / inodes, inodes);
da0fa8f4
TT
166 log_out(ctx, P_("%12u non-contiguous file (%0d.%d%%)\n",
167 "%12u non-contiguous files (%0d.%d%%)\n",
b0e91c89 168 ctx->fs_fragmented),
ce44d8ca
TT
169 ctx->fs_fragmented, frag_percent_file / 10,
170 frag_percent_file % 10);
da0fa8f4
TT
171 log_out(ctx, P_("%12u non-contiguous directory (%0d.%d%%)\n",
172 "%12u non-contiguous directories (%0d.%d%%)\n",
b0e91c89 173 ctx->fs_fragmented_dir),
ce44d8ca
TT
174 ctx->fs_fragmented_dir, frag_percent_dir / 10,
175 frag_percent_dir % 10);
da0fa8f4 176 log_out(ctx, _(" # of inodes with ind/dind/tind blocks: "
b0e91c89 177 "%u/%u/%u\n"),
0c4a0726 178 ctx->fs_ind_count, ctx->fs_dind_count, ctx->fs_tind_count);
8da6d1a1
TT
179
180 for (j=MAX_EXTENT_DEPTH_COUNT-1; j >=0; j--)
181 if (ctx->extent_depth_count[j])
182 break;
183 if (++j) {
45ff69ff 184 log_out(ctx, "%s", _(" Extent depth histogram: "));
8da6d1a1
TT
185 for (i=0; i < j; i++) {
186 if (i)
187 fputc('/', stdout);
b0e91c89 188 log_out(ctx, "%u", ctx->extent_depth_count[i]);
8da6d1a1 189 }
b0e91c89 190 log_out(ctx, "\n");
8da6d1a1
TT
191 }
192
87e56a99
TT
193 log_out(ctx, P_("%12llu block used (%2.2f%%, out of %llu)\n",
194 "%12llu blocks used (%2.2f%%, out of %llu)\n",
195 blocks_used),
196 blocks_used, 100.0 * blocks_used / blocks, blocks);
da0fa8f4 197 log_out(ctx, P_("%12u bad block\n", "%12u bad blocks\n",
b0e91c89 198 ctx->fs_badblocks_count), ctx->fs_badblocks_count);
da0fa8f4 199 log_out(ctx, P_("%12u large file\n", "%12u large files\n",
b0e91c89 200 ctx->large_files), ctx->large_files);
da0fa8f4 201 log_out(ctx, P_("\n%12u regular file\n", "\n%12u regular files\n",
b0e91c89 202 ctx->fs_regular_count), ctx->fs_regular_count);
da0fa8f4 203 log_out(ctx, P_("%12u directory\n", "%12u directories\n",
b0e91c89 204 ctx->fs_directory_count), ctx->fs_directory_count);
da0fa8f4
TT
205 log_out(ctx, P_("%12u character device file\n",
206 "%12u character device files\n", ctx->fs_chardev_count),
113e405b 207 ctx->fs_chardev_count);
da0fa8f4 208 log_out(ctx, P_("%12u block device file\n", "%12u block device files\n",
b0e91c89 209 ctx->fs_blockdev_count), ctx->fs_blockdev_count);
da0fa8f4 210 log_out(ctx, P_("%12u fifo\n", "%12u fifos\n", ctx->fs_fifo_count),
113e405b 211 ctx->fs_fifo_count);
e3507739 212 log_out(ctx, P_("%12u link\n", "%12u links\n", num_links),
113e405b 213 ctx->fs_links_count - dir_links);
da0fa8f4 214 log_out(ctx, P_("%12u symbolic link", "%12u symbolic links",
b0e91c89
TT
215 ctx->fs_symlinks_count), ctx->fs_symlinks_count);
216 log_out(ctx, P_(" (%u fast symbolic link)\n",
217 " (%u fast symbolic links)\n",
218 ctx->fs_fast_symlinks_count),
219 ctx->fs_fast_symlinks_count);
da0fa8f4
TT
220 log_out(ctx, P_("%12u socket\n", "%12u sockets\n",
221 ctx->fs_sockets_count),
113e405b 222 ctx->fs_sockets_count);
da0fa8f4 223 log_out(ctx, "------------\n");
e3507739
TT
224 log_out(ctx, P_("%12u file\n", "%12u files\n", num_files),
225 num_files);
1b6bf175
TT
226}
227
228static void check_mount(e2fsck_t ctx)
229{
230 errcode_t retval;
ee895139 231 int cont;
1b6bf175 232
ee895139
TT
233 retval = ext2fs_check_if_mounted(ctx->filesystem_name,
234 &ctx->mount_flags);
1b6bf175
TT
235 if (retval) {
236 com_err("ext2fs_check_if_mount", retval,
0c4a0726 237 _("while determining whether %s is mounted."),
1b6bf175
TT
238 ctx->filesystem_name);
239 return;
240 }
1b6bf175 241
1b6bf175 242 /*
ae1182cb
TT
243 * If the filesystem isn't mounted, or it's the root
244 * filesystem and it's mounted read-only, and we're not doing
245 * a read/write check, then everything's fine.
1b6bf175 246 */
732e26b9 247 if ((!(ctx->mount_flags & (EXT2_MF_MOUNTED | EXT2_MF_BUSY))) ||
ee895139 248 ((ctx->mount_flags & EXT2_MF_ISROOT) &&
ae1182cb
TT
249 (ctx->mount_flags & EXT2_MF_READONLY) &&
250 !(ctx->options & E2F_OPT_WRITECHECK)))
83e6ac84
TT
251 return;
252
78a0d2ba
TT
253 if (((ctx->options & E2F_OPT_READONLY) ||
254 ((ctx->options & E2F_OPT_FORCE) &&
255 (ctx->mount_flags & EXT2_MF_READONLY))) &&
ae1182cb 256 !(ctx->options & E2F_OPT_WRITECHECK)) {
38f160d3
BS
257 if (ctx->mount_flags & EXT2_MF_MOUNTED)
258 log_out(ctx, _("Warning! %s is mounted.\n"),
259 ctx->filesystem_name);
260 else
261 log_out(ctx, _("Warning! %s is in use.\n"),
262 ctx->filesystem_name);
1b6bf175
TT
263 return;
264 }
265
38f160d3
BS
266 if (ctx->mount_flags & EXT2_MF_MOUNTED)
267 log_out(ctx, _("%s is mounted.\n"), ctx->filesystem_name);
268 else
269 log_out(ctx, _("%s is in use.\n"), ctx->filesystem_name);
732e26b9 270 if (!ctx->interactive || ctx->mount_flags & EXT2_MF_BUSY)
243dc31f 271 fatal_error(ctx, _("Cannot continue, aborting.\n\n"));
3fcd8fe8 272 puts("\007\007\007\007");
45ff69ff 273 log_out(ctx, "%s", _("\n\nWARNING!!! "
b0e91c89
TT
274 "The filesystem is mounted. "
275 "If you continue you ***WILL***\n"
276 "cause ***SEVERE*** filesystem damage.\n\n"));
3fcd8fe8 277 puts("\007\007\007");
b0e91c89 278 cont = ask_yn(ctx, _("Do you really want to continue"), 0);
1b6bf175 279 if (!cont) {
45ff69ff 280 printf("%s", _("check aborted.\n"));
1b6bf175
TT
281 exit (0);
282 }
283 return;
284}
285
54434927 286static int is_on_batt(void)
015b03df
TT
287{
288 FILE *f;
c07f9f26
TT
289 DIR *d;
290 char tmp[80], tmp2[80], fname[80];
015b03df 291 unsigned int acflag;
c07f9f26 292 struct dirent* de;
015b03df 293
ad880a0e
TT
294 f = fopen("/sys/class/power_supply/AC/online", "r");
295 if (f) {
e64e6761 296 if (fscanf(f, "%u\n", &acflag) == 1) {
ad880a0e
TT
297 fclose(f);
298 return (!acflag);
299 }
300 fclose(f);
301 }
015b03df
TT
302 f = fopen("/proc/apm", "r");
303 if (f) {
efc6f628 304 if (fscanf(f, "%s %s %s %x", tmp, tmp, tmp, &acflag) != 4)
015b03df
TT
305 acflag = 1;
306 fclose(f);
307 return (acflag != 1);
308 }
c07f9f26 309 d = opendir("/proc/acpi/ac_adapter");
ecd0d8fe 310 if (d) {
9214dccb 311 while ((de=readdir(d)) != NULL) {
ecd0d8fe
TT
312 if (!strncmp(".", de->d_name, 1))
313 continue;
efc6f628 314 snprintf(fname, 80, "/proc/acpi/ac_adapter/%s/state",
ecd0d8fe
TT
315 de->d_name);
316 f = fopen(fname, "r");
317 if (!f)
318 continue;
319 if (fscanf(f, "%s %s", tmp2, tmp) != 2)
320 tmp[0] = 0;
321 fclose(f);
322 if (strncmp(tmp, "off-line", 8) == 0) {
323 closedir(d);
324 return 1;
325 }
c07f9f26 326 }
4b13704c 327 closedir(d);
ecd0d8fe 328 }
015b03df
TT
329 return 0;
330}
331
1b6bf175
TT
332/*
333 * This routine checks to see if a filesystem can be skipped; if so,
334 * it will exit with E2FSCK_OK. Under some conditions it will print a
335 * message explaining why a check is being forced.
336 */
337static void check_if_skip(e2fsck_t ctx)
338{
339 ext2_filsys fs = ctx->fs;
a3efe484 340 struct problem_context pctx;
1b6bf175 341 const char *reason = NULL;
b6a0807b 342 unsigned int reason_arg = 0;
6de289cb 343 long next_check;
015b03df 344 int batt = is_on_batt();
a5f37a9b 345 int defer_check_on_battery;
177839e2 346 int broken_system_clock;
60702c26 347 time_t lastcheck;
a5f37a9b 348
7664c753
TT
349 if (ctx->flags & E2F_FLAG_PROBLEMS_FIXED)
350 return;
351
177839e2
TT
352 profile_get_boolean(ctx->profile, "options", "broken_system_clock",
353 0, 0, &broken_system_clock);
354 if (ctx->flags & E2F_FLAG_TIME_INSANE)
355 broken_system_clock = 1;
a5f37a9b 356 profile_get_boolean(ctx->profile, "options",
efc6f628 357 "defer_check_on_battery", 0, 1,
a5f37a9b
TT
358 &defer_check_on_battery);
359 if (!defer_check_on_battery)
360 batt = 0;
361
1a855cb2 362 if ((ctx->options & E2F_OPT_FORCE) || bad_blocks_file || cflag)
1b6bf175 363 return;
efc6f628 364
71873b17
BS
365 if (ctx->options & E2F_OPT_JOURNAL_ONLY)
366 goto skip;
367
60702c26
TT
368 lastcheck = fs->super->s_lastcheck;
369 if (lastcheck > ctx->now)
370 lastcheck -= ctx->time_fudge;
550a4afa
TT
371 if ((fs->super->s_state & EXT2_ERROR_FS) ||
372 !ext2fs_test_valid(fs))
b6a0807b 373 reason = _(" contains a file system with errors");
24fc5032 374 else if ((fs->super->s_state & EXT2_VALID_FS) == 0)
b6a0807b 375 reason = _(" was not cleanly unmounted");
0c37f456
TT
376 else if (check_backup_super_block(ctx))
377 reason = _(" primary superblock features different from backup");
bc57f153 378 else if ((fs->super->s_max_mnt_count > 0) &&
17390c04 379 (fs->super->s_mnt_count >=
b6a0807b
TT
380 (unsigned) fs->super->s_max_mnt_count)) {
381 reason = _(" has been mounted %u times without being checked");
382 reason_arg = fs->super->s_mnt_count;
efc6f628 383 if (batt && (fs->super->s_mnt_count <
015b03df
TT
384 (unsigned) fs->super->s_max_mnt_count*2))
385 reason = 0;
177839e2
TT
386 } else if (!broken_system_clock && fs->super->s_checkinterval &&
387 (ctx->now < lastcheck)) {
68eb092d
TT
388 reason = _(" has filesystem last checked time in the future");
389 if (batt)
390 reason = 0;
177839e2 391 } else if (!broken_system_clock && fs->super->s_checkinterval &&
efc6f628 392 ((ctx->now - lastcheck) >=
2acad6b4 393 ((time_t) fs->super->s_checkinterval))) {
b6a0807b 394 reason = _(" has gone %u days without being checked");
1f3ad14a 395 reason_arg = (ctx->now - fs->super->s_lastcheck)/(3600*24);
efc6f628 396 if (batt && ((ctx->now - fs->super->s_lastcheck) <
54434927 397 fs->super->s_checkinterval*2))
015b03df 398 reason = 0;
4c41e680
ES
399 } else if (broken_system_clock && fs->super->s_checkinterval) {
400 log_out(ctx, "%s: ", ctx->device_name);
401 log_out(ctx, "%s",
402 _("ignoring check interval, broken_system_clock set\n"));
b6a0807b 403 }
4c41e680 404
1b6bf175 405 if (reason) {
b0e91c89
TT
406 log_out(ctx, "%s", ctx->device_name);
407 log_out(ctx, reason, reason_arg);
45ff69ff 408 log_out(ctx, "%s", _(", check forced.\n"));
1b6bf175
TT
409 return;
410 }
a3efe484
TT
411
412 /*
413 * Update the global counts from the block group counts. This
414 * is needed since modern kernels don't update the global
415 * counts so as to avoid locking the entire file system. So
416 * if the filesystem is not unmounted cleanly, the global
417 * counts may not be accurate. Update them here if we can,
418 * for the benefit of users who might examine the file system
419 * using dumpe2fs. (This is for cosmetic reasons only.)
420 */
421 clear_problem_context(&pctx);
422 pctx.ino = fs->super->s_free_inodes_count;
423 pctx.ino2 = ctx->free_inodes;
424 if ((pctx.ino != pctx.ino2) &&
425 !(ctx->options & E2F_OPT_READONLY) &&
426 fix_problem(ctx, PR_0_FREE_INODE_COUNT, &pctx)) {
427 fs->super->s_free_inodes_count = ctx->free_inodes;
428 ext2fs_mark_super_dirty(fs);
429 }
430 clear_problem_context(&pctx);
431 pctx.blk = ext2fs_free_blocks_count(fs->super);
432 pctx.blk2 = ctx->free_blocks;
433 if ((pctx.blk != pctx.blk2) &&
434 !(ctx->options & E2F_OPT_READONLY) &&
435 fix_problem(ctx, PR_0_FREE_BLOCK_COUNT, &pctx)) {
436 ext2fs_free_blocks_count_set(fs->super, ctx->free_blocks);
437 ext2fs_mark_super_dirty(fs);
438 }
439
440 /* Print the summary message when we're skipping a full check */
b0e91c89
TT
441 log_out(ctx, _("%s: clean, %u/%u files, %llu/%llu blocks"),
442 ctx->device_name,
443 fs->super->s_inodes_count - fs->super->s_free_inodes_count,
444 fs->super->s_inodes_count,
445 ext2fs_blocks_count(fs->super) -
446 ext2fs_free_blocks_count(fs->super),
447 ext2fs_blocks_count(fs->super));
6de289cb
TT
448 next_check = 100000;
449 if (fs->super->s_max_mnt_count > 0) {
450 next_check = fs->super->s_max_mnt_count - fs->super->s_mnt_count;
efc6f628 451 if (next_check <= 0)
6de289cb
TT
452 next_check = 1;
453 }
177839e2 454 if (!broken_system_clock && fs->super->s_checkinterval &&
1f3ad14a 455 ((ctx->now - fs->super->s_lastcheck) >= fs->super->s_checkinterval))
6de289cb
TT
456 next_check = 1;
457 if (next_check <= 5) {
bc3392c3 458 if (next_check == 1) {
efc6f628 459 if (batt)
45ff69ff
AD
460 log_out(ctx, "%s",
461 _(" (check deferred; on battery)"));
bc3392c3 462 else
45ff69ff
AD
463 log_out(ctx, "%s",
464 _(" (check after next mount)"));
bc3392c3 465 } else
45ff69ff
AD
466 log_out(ctx, _(" (check in %ld mounts)"),
467 next_check);
6de289cb 468 }
b0e91c89 469 log_out(ctx, "\n");
71873b17 470skip:
ebdf895b 471 ext2fs_close_free(&ctx->fs);
6d222f32 472 e2fsck_free_context(ctx);
1b6bf175
TT
473 exit(FSCK_OK);
474}
475
efac9a1b
TT
476/*
477 * For completion notice
478 */
5596defa
TT
479struct percent_tbl {
480 int max_pass;
481 int table[32];
482};
f404167d 483static struct percent_tbl e2fsck_tbl = {
5596defa
TT
484 5, { 0, 70, 90, 92, 95, 100 }
485};
54a31a3b 486static char bar[128], spaces[128];
5596defa
TT
487
488static float calc_percent(struct percent_tbl *tbl, int pass, int curr,
489 int max)
490{
491 float percent;
efc6f628 492
5596defa
TT
493 if (pass <= 0)
494 return 0.0;
b8d164cd 495 if (pass > tbl->max_pass || max == 0)
5596defa
TT
496 return 100.0;
497 percent = ((float) curr) / ((float) max);
498 return ((percent * (tbl->table[pass] - tbl->table[pass-1]))
499 + tbl->table[pass-1]);
500}
501
f404167d 502void e2fsck_clear_progbar(e2fsck_t ctx)
5596defa
TT
503{
504 if (!(ctx->flags & E2F_FLAG_PROG_BAR))
505 return;
efc6f628 506
54a31a3b
TT
507 printf("%s%s\r%s", ctx->start_meta, spaces + (sizeof(spaces) - 80),
508 ctx->stop_meta);
bc34d6be 509 fflush(stdout);
5596defa
TT
510 ctx->flags &= ~E2F_FLAG_PROG_BAR;
511}
512
520ead37 513int e2fsck_simple_progress(e2fsck_t ctx, const char *label, float percent,
b0700a1b
TT
514 unsigned int dpynum)
515{
516 static const char spinner[] = "\\|/-";
b0700a1b 517 int i;
54434927 518 unsigned int tick;
b0700a1b
TT
519 struct timeval tv;
520 int dpywidth;
9214dccb 521 int fixed_percent;
b0700a1b
TT
522
523 if (ctx->flags & E2F_FLAG_PROG_SUPPRESS)
524 return 0;
525
526 /*
527 * Calculate the new progress position. If the
528 * percentage hasn't changed, then we skip out right
efc6f628 529 * away.
b0700a1b 530 */
9214dccb
TT
531 fixed_percent = (int) ((10 * percent) + 0.5);
532 if (ctx->progress_last_percent == fixed_percent)
b0700a1b 533 return 0;
9214dccb 534 ctx->progress_last_percent = fixed_percent;
b0700a1b
TT
535
536 /*
537 * If we've already updated the spinner once within
538 * the last 1/8th of a second, no point doing it
539 * again.
540 */
541 gettimeofday(&tv, NULL);
542 tick = (tv.tv_sec << 3) + (tv.tv_usec / (1000000 / 8));
543 if ((tick == ctx->progress_last_time) &&
9214dccb 544 (fixed_percent != 0) && (fixed_percent != 1000))
b0700a1b
TT
545 return 0;
546 ctx->progress_last_time = tick;
547
548 /*
549 * Advance the spinner, and note that the progress bar
550 * will be on the screen
551 */
552 ctx->progress_pos = (ctx->progress_pos+1) & 3;
553 ctx->flags |= E2F_FLAG_PROG_BAR;
554
555 dpywidth = 66 - strlen(label);
556 dpywidth = 8 * (dpywidth / 8);
557 if (dpynum)
558 dpywidth -= 8;
559
560 i = ((percent * dpywidth) + 50) / 100;
54a31a3b
TT
561 printf("%s%s: |%s%s", ctx->start_meta, label,
562 bar + (sizeof(bar) - (i+1)),
b0700a1b 563 spaces + (sizeof(spaces) - (dpywidth - i + 1)));
9214dccb 564 if (fixed_percent == 1000)
b0700a1b
TT
565 fputc('|', stdout);
566 else
567 fputc(spinner[ctx->progress_pos & 3], stdout);
9214dccb 568 printf(" %4.1f%% ", percent);
b0700a1b 569 if (dpynum)
9214dccb 570 printf("%u\r", dpynum);
b0700a1b 571 else
9214dccb
TT
572 fputs(" \r", stdout);
573 fputs(ctx->stop_meta, stdout);
efc6f628 574
9214dccb 575 if (fixed_percent == 1000)
b0700a1b
TT
576 e2fsck_clear_progbar(ctx);
577 fflush(stdout);
578
579 return 0;
580}
581
efac9a1b
TT
582static int e2fsck_update_progress(e2fsck_t ctx, int pass,
583 unsigned long cur, unsigned long max)
584{
1dc506cb 585 char buf[1024];
5596defa 586 float percent;
f75c28de
TT
587
588 if (pass == 0)
589 return 0;
efc6f628 590
efac9a1b 591 if (ctx->progress_fd) {
efc6f628 592 snprintf(buf, sizeof(buf), "%d %lu %lu %s\n",
1dc506cb 593 pass, cur, max, ctx->device_name);
b0258cbc 594 write_all(ctx->progress_fd, buf, strlen(buf));
efac9a1b 595 } else {
e4c8e885 596 percent = calc_percent(&e2fsck_tbl, pass, cur, max);
b0700a1b
TT
597 e2fsck_simple_progress(ctx, ctx->device_name,
598 percent, 0);
efac9a1b
TT
599 }
600 return 0;
601}
1b6bf175
TT
602
603#define PATH_SET "PATH=/sbin"
604
fe65f1ec
ES
605/*
606 * Make sure 0,1,2 file descriptors are open, so that we don't open
607 * the filesystem using the same file descriptor as stdout or stderr.
608 */
5ba23cb1 609static void reserve_stdio_fds(void)
24fc5032 610{
fe65f1ec 611 int fd = 0;
24fc5032 612
fe65f1ec 613 while (fd <= 2) {
24fc5032 614 fd = open("/dev/null", O_RDWR);
75d83bec 615 if (fd < 0) {
0c4a0726
TT
616 fprintf(stderr, _("ERROR: Couldn't open "
617 "/dev/null (%s)\n"),
75d83bec
TT
618 strerror(errno));
619 break;
620 }
24fc5032 621 }
24fc5032
TT
622}
623
9ecd8bec 624#ifdef HAVE_SIGNAL_H
54434927 625static void signal_progress_on(int sig EXT2FS_ATTR((unused)))
5596defa 626{
243dc31f 627 e2fsck_t ctx = e2fsck_global_ctx;
5596defa
TT
628
629 if (!ctx)
630 return;
631
632 ctx->progress = e2fsck_update_progress;
5596defa
TT
633}
634
54434927 635static void signal_progress_off(int sig EXT2FS_ATTR((unused)))
5596defa 636{
243dc31f 637 e2fsck_t ctx = e2fsck_global_ctx;
5596defa
TT
638
639 if (!ctx)
640 return;
641
642 e2fsck_clear_progbar(ctx);
643 ctx->progress = 0;
644}
4cae0452 645
54434927 646static void signal_cancel(int sig EXT2FS_ATTR((unused)))
4cae0452
TT
647{
648 e2fsck_t ctx = e2fsck_global_ctx;
649
650 if (!ctx)
651 exit(FSCK_CANCELED);
652
653 ctx->flags |= E2F_FLAG_CANCEL;
654}
9ecd8bec 655#endif
5596defa 656
0684a4f3
TT
657static void parse_extended_opts(e2fsck_t ctx, const char *opts)
658{
659 char *buf, *token, *next, *p, *arg;
f364093b 660 int ea_ver;
0684a4f3 661 int extended_usage = 0;
a5abfe03 662 unsigned long long reada_kb;
0684a4f3 663
f364093b 664 buf = string_copy(ctx, opts, 0);
0684a4f3
TT
665 for (token = buf; token && *token; token = next) {
666 p = strchr(token, ',');
667 next = 0;
668 if (p) {
669 *p = 0;
670 next = p+1;
cae542ce 671 }
0684a4f3
TT
672 arg = strchr(token, '=');
673 if (arg) {
674 *arg = 0;
675 arg++;
676 }
677 if (strcmp(token, "ea_ver") == 0) {
678 if (!arg) {
679 extended_usage++;
680 continue;
681 }
682 ea_ver = strtoul(arg, &p, 0);
683 if (*p ||
684 ((ea_ver != 1) && (ea_ver != 2))) {
45ff69ff 685 fprintf(stderr, "%s",
0684a4f3
TT
686 _("Invalid EA version.\n"));
687 extended_usage++;
688 continue;
689 }
690 ctx->ext_attr_ver = ea_ver;
a5abfe03 691 } else if (strcmp(token, "readahead_kb") == 0) {
63cd76d6
DW
692 if (!arg) {
693 extended_usage++;
694 continue;
695 }
a5abfe03
DW
696 reada_kb = strtoull(arg, &p, 0);
697 if (*p) {
698 fprintf(stderr, "%s",
699 _("Invalid readahead buffer size.\n"));
700 extended_usage++;
701 continue;
702 }
703 ctx->readahead_kb = reada_kb;
63b5e354
TT
704 } else if (strcmp(token, "fragcheck") == 0) {
705 ctx->options |= E2F_OPT_FRAGCHECK;
706 continue;
71873b17
BS
707 } else if (strcmp(token, "journal_only") == 0) {
708 if (arg) {
709 extended_usage++;
710 continue;
711 }
712 ctx->options |= E2F_OPT_JOURNAL_ONLY;
efa1a355
LC
713 } else if (strcmp(token, "discard") == 0) {
714 ctx->options |= E2F_OPT_DISCARD;
715 continue;
716 } else if (strcmp(token, "nodiscard") == 0) {
717 ctx->options &= ~E2F_OPT_DISCARD;
718 continue;
6304d212
JK
719 } else if (strcmp(token, "optimize_extents") == 0) {
720 ctx->options &= ~E2F_OPT_NOOPT_EXTENTS;
721 continue;
0b76d709
TT
722 } else if (strcmp(token, "no_optimize_extents") == 0) {
723 ctx->options |= E2F_OPT_NOOPT_EXTENTS;
724 continue;
6304d212
JK
725 } else if (strcmp(token, "inode_count_fullmap") == 0) {
726 ctx->options |= E2F_OPT_ICOUNT_FULLMAP;
727 continue;
728 } else if (strcmp(token, "no_inode_count_fullmap") == 0) {
729 ctx->options &= ~E2F_OPT_ICOUNT_FULLMAP;
730 continue;
b0e91c89
TT
731 } else if (strcmp(token, "log_filename") == 0) {
732 if (!arg)
733 extended_usage++;
734 else
735 ctx->log_fn = string_copy(ctx, arg, 0);
736 continue;
e228d700
DW
737 } else if (strcmp(token, "bmap2extent") == 0) {
738 ctx->options |= E2F_OPT_CONVERT_BMAP;
739 continue;
740 } else if (strcmp(token, "fixes_only") == 0) {
741 ctx->options |= E2F_OPT_FIXES_ONLY;
742 continue;
91327df4
DA
743 } else if (strcmp(token, "unshare_blocks") == 0) {
744 ctx->options |= E2F_OPT_UNSHARE_BLOCKS;
745 continue;
bb145b01
TT
746 } else {
747 fprintf(stderr, _("Unknown extended option: %s\n"),
748 token);
0684a4f3 749 extended_usage++;
bb145b01 750 }
0684a4f3 751 }
cae542ce
BB
752 free(buf);
753
0684a4f3 754 if (extended_usage) {
6304d212 755 fputs(_("\nExtended options are separated by commas, "
bb145b01
TT
756 "and may take an argument which\n"
757 "is set off by an equals ('=') sign. "
6304d212
JK
758 "Valid extended options are:\n\n"), stderr);
759 fputs(_("\tea_ver=<ea_version (1 or 2)>\n"), stderr);
760 fputs("\tfragcheck\n", stderr);
761 fputs("\tjournal_only\n", stderr);
762 fputs("\tdiscard\n", stderr);
763 fputs("\tnodiscard\n", stderr);
764 fputs("\toptimize_extents\n", stderr);
765 fputs("\tno_optimize_extents\n", stderr);
766 fputs("\tinode_count_fullmap\n", stderr);
767 fputs("\tno_inode_count_fullmap\n", stderr);
768 fputs(_("\treadahead_kb=<buffer size>\n"), stderr);
769 fputs("\tbmap2extent\n", stderr);
91327df4 770 fputs("\tunshare_blocks\n", stderr);
2070de7b 771 fputs("\tfixes_only\n", stderr);
63b5e354 772 fputc('\n', stderr);
0684a4f3
TT
773 exit(1);
774 }
cae542ce 775}
0684a4f3 776
f5f14fcf
TT
777static void syntax_err_report(const char *filename, long err, int line_num)
778{
efc6f628 779 fprintf(stderr,
f5f14fcf
TT
780 _("Syntax error in e2fsck config file (%s, line #%d)\n\t%s\n"),
781 filename, line_num, error_message(err));
782 exit(FSCK_ERROR);
783}
784
abcfdfda 785static const char *config_fn[] = { ROOT_SYSCONFDIR "/e2fsck.conf", 0 };
0684a4f3 786
1b6bf175
TT
787static errcode_t PRS(int argc, char *argv[], e2fsck_t *ret_ctx)
788{
789 int flush = 0;
ae8160e6 790 int c, fd;
1b6bf175
TT
791#ifdef MTRACE
792 extern void *mallwatch;
793#endif
1b6bf175
TT
794 e2fsck_t ctx;
795 errcode_t retval;
9ecd8bec 796#ifdef HAVE_SIGNAL_H
5596defa 797 struct sigaction sa;
9ecd8bec 798#endif
0684a4f3 799 char *extended_opts = 0;
5dd2a6e0 800 char *cp;
5845caa4
TT
801 int res; /* result of sscanf */
802#ifdef CONFIG_JBD_DEBUG
803 char *jbd_debug;
804#endif
a5abfe03 805 unsigned long long phys_mem_kb;
1b6bf175
TT
806
807 retval = e2fsck_allocate_context(&ctx);
808 if (retval)
809 return retval;
810
811 *ret_ctx = ctx;
dde6333b 812 e2fsck_global_ctx = ctx;
1b6bf175 813
908b785c
TT
814 setvbuf(stdout, NULL, _IONBF, BUFSIZ);
815 setvbuf(stderr, NULL, _IONBF, BUFSIZ);
aeb933b3 816 if (getenv("E2FSCK_FORCE_INTERACTIVE") || (isatty(0) && isatty(1))) {
54a31a3b
TT
817 ctx->interactive = 1;
818 } else {
819 ctx->start_meta[0] = '\001';
820 ctx->stop_meta[0] = '\002';
821 }
822 memset(bar, '=', sizeof(bar)-1);
823 memset(spaces, ' ', sizeof(spaces)-1);
a6d8302b
TT
824 add_error_table(&et_ext2_error_table);
825 add_error_table(&et_prof_error_table);
f364093b 826 blkid_get_cache(&ctx->blkid, NULL);
efc6f628 827
1b6bf175
TT
828 if (argc && *argv)
829 ctx->program_name = *argv;
830 else
831 ctx->program_name = "e2fsck";
efa1a355 832
a5abfe03
DW
833 phys_mem_kb = get_memory_size() / 1024;
834 ctx->readahead_kb = ~0ULL;
ce9b74ab 835 while ((c = getopt(argc, argv, "panyrcC:B:dE:fvtFVM:b:I:j:P:l:L:N:SsDkz:")) != EOF)
1b6bf175 836 switch (c) {
efac9a1b
TT
837 case 'C':
838 ctx->progress = e2fsck_update_progress;
5845caa4
TT
839 res = sscanf(optarg, "%d", &ctx->progress_fd);
840 if (res != 1)
841 goto sscanf_err;
842
be62523b
TT
843 if (ctx->progress_fd < 0) {
844 ctx->progress = 0;
845 ctx->progress_fd = ctx->progress_fd * -1;
846 }
fc9a69ca
TT
847 if (!ctx->progress_fd)
848 break;
ae8160e6
TT
849 /* Validate the file descriptor to avoid disasters */
850 fd = dup(ctx->progress_fd);
851 if (fd < 0) {
852 fprintf(stderr,
853 _("Error validating file descriptor %d: %s\n"),
854 ctx->progress_fd,
855 error_message(errno));
856 fatal_error(ctx,
857 _("Invalid completion information file descriptor"));
858 } else
859 close(fd);
efac9a1b 860 break;
850d05e9
TT
861 case 'D':
862 ctx->options |= E2F_OPT_COMPRESS_DIRS;
863 break;
0684a4f3
TT
864 case 'E':
865 extended_opts = optarg;
866 break;
1b6bf175
TT
867 case 'p':
868 case 'a':
8161a748
TT
869 if (ctx->options & (E2F_OPT_YES|E2F_OPT_NO)) {
870 conflict_opt:
efc6f628 871 fatal_error(ctx,
f4b6d2a0 872 _("Only one of the options -p/-a, -n or -y may be specified."));
8161a748 873 }
1b6bf175 874 ctx->options |= E2F_OPT_PREEN;
1b6bf175
TT
875 break;
876 case 'n':
8161a748
TT
877 if (ctx->options & (E2F_OPT_YES|E2F_OPT_PREEN))
878 goto conflict_opt;
1b6bf175 879 ctx->options |= E2F_OPT_NO;
1b6bf175
TT
880 break;
881 case 'y':
8161a748
TT
882 if (ctx->options & (E2F_OPT_PREEN|E2F_OPT_NO))
883 goto conflict_opt;
1b6bf175 884 ctx->options |= E2F_OPT_YES;
1b6bf175
TT
885 break;
886 case 't':
8bf191e8 887#ifdef RESOURCE_TRACK
1b6bf175
TT
888 if (ctx->options & E2F_OPT_TIME)
889 ctx->options |= E2F_OPT_TIME2;
890 else
891 ctx->options |= E2F_OPT_TIME;
8bf191e8 892#else
0c4a0726
TT
893 fprintf(stderr, _("The -t option is not "
894 "supported on this version of e2fsck.\n"));
8bf191e8 895#endif
1b6bf175
TT
896 break;
897 case 'c':
3ed57c27
TT
898 if (cflag++)
899 ctx->options |= E2F_OPT_WRITECHECK;
1b6bf175
TT
900 ctx->options |= E2F_OPT_CHECKBLOCKS;
901 break;
902 case 'r':
903 /* What we do by default, anyway! */
904 break;
905 case 'b':
6dc64392 906 res = sscanf(optarg, "%llu", &ctx->use_superblock);
5845caa4
TT
907 if (res != 1)
908 goto sscanf_err;
ae6cdcf7 909 ctx->flags |= E2F_FLAG_SB_SPECIFIED;
1b6bf175
TT
910 break;
911 case 'B':
f1a1761d 912 ctx->blocksize = atoi(optarg);
1b6bf175
TT
913 break;
914 case 'I':
5845caa4
TT
915 res = sscanf(optarg, "%d", &ctx->inode_buffer_blocks);
916 if (res != 1)
917 goto sscanf_err;
1b6bf175 918 break;
adee8d75 919 case 'j':
b95ca928
TT
920 ctx->journal_name = blkid_get_devname(ctx->blkid,
921 optarg, NULL);
922 if (!ctx->journal_name) {
923 com_err(ctx->program_name, 0,
924 _("Unable to resolve '%s'"),
925 optarg);
926 fatal_error(ctx, 0);
927 }
adee8d75 928 break;
1b6bf175 929 case 'P':
5845caa4
TT
930 res = sscanf(optarg, "%d", &ctx->process_inode_size);
931 if (res != 1)
932 goto sscanf_err;
1b6bf175
TT
933 break;
934 case 'L':
935 replace_bad_blocks++;
936 case 'l':
f0131bdc
DW
937 if (bad_blocks_file)
938 free(bad_blocks_file);
f364093b 939 bad_blocks_file = string_copy(ctx, optarg, 0);
1b6bf175
TT
940 break;
941 case 'd':
942 ctx->options |= E2F_OPT_DEBUG;
943 break;
944 case 'f':
d37066a9 945 ctx->options |= E2F_OPT_FORCE;
1b6bf175
TT
946 break;
947 case 'F':
1b6bf175 948 flush = 1;
1b6bf175
TT
949 break;
950 case 'v':
951 verbose = 1;
952 break;
953 case 'V':
954 show_version_only = 1;
955 break;
956#ifdef MTRACE
957 case 'M':
958 mallwatch = (void *) strtol(optarg, NULL, 0);
959 break;
960#endif
961 case 'N':
a2447f8c 962 ctx->device_name = string_copy(ctx, optarg, 0);
1b6bf175 963 break;
4fb9d52b
TT
964 case 'k':
965 keep_bad_blocks++;
bc69f82d 966 break;
ce9b74ab
DW
967 case 'z':
968 ctx->undo_file = optarg;
969 break;
1b6bf175
TT
970 default:
971 usage(ctx);
972 }
973 if (show_version_only)
974 return 0;
975 if (optind != argc - 1)
976 usage(ctx);
298c9c2f
TT
977 if ((ctx->options & E2F_OPT_NO) &&
978 (ctx->options & E2F_OPT_COMPRESS_DIRS)) {
45ff69ff 979 com_err(ctx->program_name, 0, "%s",
298c9c2f
TT
980 _("The -n and -D options are incompatible."));
981 fatal_error(ctx, 0);
982 }
983 if ((ctx->options & E2F_OPT_NO) && cflag) {
45ff69ff 984 com_err(ctx->program_name, 0, "%s",
298c9c2f
TT
985 _("The -n and -c options are incompatible."));
986 fatal_error(ctx, 0);
987 }
988 if ((ctx->options & E2F_OPT_NO) && bad_blocks_file) {
45ff69ff 989 com_err(ctx->program_name, 0, "%s",
298c9c2f
TT
990 _("The -n and -l/-L options are incompatible."));
991 fatal_error(ctx, 0);
992 }
993 if (ctx->options & E2F_OPT_NO)
1b6bf175 994 ctx->options |= E2F_OPT_READONLY;
49a7360b 995
2e8ca9a2 996 ctx->io_options = strchr(argv[optind], '?');
efc6f628 997 if (ctx->io_options)
2e8ca9a2 998 *ctx->io_options++ = 0;
f364093b 999 ctx->filesystem_name = blkid_get_devname(ctx->blkid, argv[optind], 0);
817e49e3 1000 if (!ctx->filesystem_name) {
efc6f628 1001 com_err(ctx->program_name, 0, _("Unable to resolve '%s'"),
817e49e3
TT
1002 argv[optind]);
1003 fatal_error(ctx, 0);
1004 }
0684a4f3
TT
1005 if (extended_opts)
1006 parse_extended_opts(ctx, extended_opts);
1017f651 1007
e228d700
DW
1008 /* Complain about mutually exclusive rebuilding activities */
1009 if (getenv("E2FSCK_FIXES_ONLY"))
1010 ctx->options |= E2F_OPT_FIXES_ONLY;
1011 if ((ctx->options & E2F_OPT_COMPRESS_DIRS) &&
1012 (ctx->options & E2F_OPT_FIXES_ONLY)) {
1013 com_err(ctx->program_name, 0, "%s",
1014 _("The -D and -E fixes_only options are incompatible."));
1015 fatal_error(ctx, 0);
1016 }
1017 if ((ctx->options & E2F_OPT_CONVERT_BMAP) &&
1018 (ctx->options & E2F_OPT_FIXES_ONLY)) {
1019 com_err(ctx->program_name, 0, "%s",
1020 _("The -E bmap2extent and fixes_only options are incompatible."));
1021 fatal_error(ctx, 0);
1022 }
1023
5dd2a6e0
TT
1024 if ((cp = getenv("E2FSCK_CONFIG")) != NULL)
1025 config_fn[0] = cp;
f5f14fcf 1026 profile_set_syntax_err_cb(syntax_err_report);
1017f651
TT
1027 profile_init(config_fn, &ctx->profile);
1028
c0a84966
TT
1029 profile_get_boolean(ctx->profile, "options", "report_time", 0, 0,
1030 &c);
1031 if (c)
1032 ctx->options |= E2F_OPT_TIME | E2F_OPT_TIME2;
1033 profile_get_boolean(ctx->profile, "options", "report_verbose", 0, 0,
1034 &c);
1035 if (c)
1036 verbose = 1;
1037
0b76d709
TT
1038 profile_get_boolean(ctx->profile, "options", "no_optimize_extents",
1039 0, 0, &c);
1040 if (c)
1041 ctx->options |= E2F_OPT_NOOPT_EXTENTS;
1042
6304d212
JK
1043 profile_get_boolean(ctx->profile, "options", "inode_count_fullmap",
1044 0, 0, &c);
1045 if (c)
1046 ctx->options |= E2F_OPT_ICOUNT_FULLMAP;
1047
a5abfe03
DW
1048 if (ctx->readahead_kb == ~0ULL) {
1049 profile_get_integer(ctx->profile, "options",
1050 "readahead_mem_pct", 0, -1, &c);
1051 if (c >= 0 && c <= 100)
1052 ctx->readahead_kb = phys_mem_kb * c / 100;
1053 profile_get_integer(ctx->profile, "options",
1054 "readahead_kb", 0, -1, &c);
1055 if (c >= 0)
1056 ctx->readahead_kb = c;
1057 if (ctx->readahead_kb != ~0ULL &&
1058 ctx->readahead_kb > phys_mem_kb)
1059 ctx->readahead_kb = phys_mem_kb;
1060 }
1061
f0fe5dae
LC
1062 /* Turn off discard in read-only mode */
1063 if ((ctx->options & E2F_OPT_NO) &&
1064 (ctx->options & E2F_OPT_DISCARD))
1065 ctx->options &= ~E2F_OPT_DISCARD;
1066
28ffafb0 1067 if (flush) {
4ea7bd04 1068 fd = open(ctx->filesystem_name, O_RDONLY, 0);
1b6bf175 1069 if (fd < 0) {
0c4a0726
TT
1070 com_err("open", errno,
1071 _("while opening %s for flushing"),
1b6bf175 1072 ctx->filesystem_name);
243dc31f 1073 fatal_error(ctx, 0);
1b6bf175 1074 }
5df55d7f 1075 if ((retval = ext2fs_sync_device(fd, 1))) {
5ba23cb1 1076 com_err("ext2fs_sync_device", retval,
0c4a0726 1077 _("while trying to flush %s"),
1b6bf175 1078 ctx->filesystem_name);
243dc31f 1079 fatal_error(ctx, 0);
1b6bf175
TT
1080 }
1081 close(fd);
1b6bf175 1082 }
3ed57c27 1083 if (cflag && bad_blocks_file) {
45ff69ff
AD
1084 fprintf(stderr, "%s", _("The -c and the -l/-L options may not "
1085 "be both used at the same time.\n"));
3ed57c27
TT
1086 exit(FSCK_USAGE);
1087 }
9ecd8bec 1088#ifdef HAVE_SIGNAL_H
5596defa
TT
1089 /*
1090 * Set up signal action
1091 */
1092 memset(&sa, 0, sizeof(struct sigaction));
850d05e9
TT
1093 sa.sa_handler = signal_cancel;
1094 sigaction(SIGINT, &sa, 0);
1095 sigaction(SIGTERM, &sa, 0);
5596defa
TT
1096#ifdef SA_RESTART
1097 sa.sa_flags = SA_RESTART;
1098#endif
5596defa
TT
1099 sa.sa_handler = signal_progress_on;
1100 sigaction(SIGUSR1, &sa, 0);
1101 sa.sa_handler = signal_progress_off;
1102 sigaction(SIGUSR2, &sa, 0);
9ecd8bec 1103#endif
6d222f32
TT
1104
1105 /* Update our PATH to include /sbin if we need to run badblocks */
1106 if (cflag) {
1107 char *oldpath = getenv("PATH");
642935c0
TT
1108 char *newpath;
1109 int len = sizeof(PATH_SET) + 1;
1110
1111 if (oldpath)
1112 len += strlen(oldpath);
1113
1114 newpath = malloc(len);
1115 if (!newpath)
1116 fatal_error(ctx, "Couldn't malloc() newpath");
1117 strcpy(newpath, PATH_SET);
1118
6d222f32 1119 if (oldpath) {
642935c0
TT
1120 strcat(newpath, ":");
1121 strcat(newpath, oldpath);
1122 }
1123 putenv(newpath);
6d222f32 1124 }
5e72cdbe 1125#ifdef CONFIG_JBD_DEBUG
5845caa4 1126 jbd_debug = getenv("E2FSCK_JBD_DEBUG");
414025e5 1127 if (jbd_debug) {
5845caa4
TT
1128 res = sscanf(jbd_debug, "%d", &journal_enable_debug);
1129 if (res != 1) {
1130 fprintf(stderr,
1131 _("E2FSCK_JBD_DEBUG \"%s\" not an integer\n\n"),
1132 jbd_debug);
1133 exit (1);
1134 }
414025e5 1135 }
5e72cdbe 1136#endif
1b6bf175 1137 return 0;
5845caa4
TT
1138
1139sscanf_err:
1140 fprintf(stderr, _("\nInvalid non-numeric argument to -%c (\"%s\")\n\n"),
1141 c, optarg);
1142 exit (1);
1b6bf175
TT
1143}
1144
60663890
TT
1145static errcode_t try_open_fs(e2fsck_t ctx, int flags, io_manager io_ptr,
1146 ext2_filsys *ret_fs)
1147{
1148 errcode_t retval;
1149
1150 *ret_fs = NULL;
1151 if (ctx->superblock && ctx->blocksize) {
1152 retval = ext2fs_open2(ctx->filesystem_name, ctx->io_options,
1153 flags, ctx->superblock, ctx->blocksize,
1154 io_ptr, ret_fs);
1155 } else if (ctx->superblock) {
1156 int blocksize;
1157 for (blocksize = EXT2_MIN_BLOCK_SIZE;
1158 blocksize <= EXT2_MAX_BLOCK_SIZE; blocksize *= 2) {
1159 if (*ret_fs) {
1160 ext2fs_free(*ret_fs);
1161 *ret_fs = NULL;
1162 }
1163 retval = ext2fs_open2(ctx->filesystem_name,
1164 ctx->io_options, flags,
1165 ctx->superblock, blocksize,
1166 io_ptr, ret_fs);
1167 if (!retval)
1168 break;
1169 }
1170 } else
1171 retval = ext2fs_open2(ctx->filesystem_name, ctx->io_options,
1172 flags, 0, 0, io_ptr, ret_fs);
830b44f4 1173
93d0db34
TT
1174 if (retval == 0) {
1175 (*ret_fs)->priv_data = ctx;
830b44f4
TT
1176 e2fsck_set_bitmap_type(*ret_fs, EXT2FS_BMAP64_RBTREE,
1177 "default", NULL);
93d0db34 1178 }
60663890
TT
1179 return retval;
1180}
1181
1b6bf175
TT
1182static const char *my_ver_string = E2FSPROGS_VERSION;
1183static const char *my_ver_date = E2FSPROGS_DATE;
49a7360b 1184
974d57d3 1185static errcode_t e2fsck_check_mmp(ext2_filsys fs, e2fsck_t ctx)
0f5eba75
AD
1186{
1187 struct mmp_struct *mmp_s;
1188 unsigned int mmp_check_interval;
1189 errcode_t retval = 0;
1190 struct problem_context pctx;
1191 unsigned int wait_time = 0;
1192
1193 clear_problem_context(&pctx);
1194 if (fs->mmp_buf == NULL) {
1195 retval = ext2fs_get_mem(fs->blocksize, &fs->mmp_buf);
1196 if (retval)
1197 goto check_error;
1198 }
1199
1200 retval = ext2fs_mmp_read(fs, fs->super->s_mmp_block, fs->mmp_buf);
1201 if (retval)
1202 goto check_error;
1203
1204 mmp_s = fs->mmp_buf;
1205
1206 mmp_check_interval = fs->super->s_mmp_update_interval;
1207 if (mmp_check_interval < EXT4_MMP_MIN_CHECK_INTERVAL)
1208 mmp_check_interval = EXT4_MMP_MIN_CHECK_INTERVAL;
1209
1210 /*
1211 * If check_interval in MMP block is larger, use that instead of
1212 * check_interval from the superblock.
1213 */
1214 if (mmp_s->mmp_check_interval > mmp_check_interval)
1215 mmp_check_interval = mmp_s->mmp_check_interval;
1216
1217 wait_time = mmp_check_interval * 2 + 1;
1218
1219 if (mmp_s->mmp_seq == EXT4_MMP_SEQ_CLEAN)
1220 retval = 0;
1221 else if (mmp_s->mmp_seq == EXT4_MMP_SEQ_FSCK)
1222 retval = EXT2_ET_MMP_FSCK_ON;
1223 else if (mmp_s->mmp_seq > EXT4_MMP_SEQ_MAX)
1224 retval = EXT2_ET_MMP_UNKNOWN_SEQ;
1225
1226 if (retval)
1227 goto check_error;
1228
055866d8 1229 /* Print warning if e2fsck will wait for more than 20 secs. */
0f5eba75 1230 if (verbose || wait_time > EXT4_MMP_MIN_CHECK_INTERVAL * 4) {
b0e91c89
TT
1231 log_out(ctx, _("MMP interval is %u seconds and total wait "
1232 "time is %u seconds. Please wait...\n"),
0f5eba75
AD
1233 mmp_check_interval, wait_time * 2);
1234 }
1235
1236 return 0;
1237
1238check_error:
1239
1240 if (retval == EXT2_ET_MMP_BAD_BLOCK) {
1241 if (fix_problem(ctx, PR_0_MMP_INVALID_BLK, &pctx)) {
1242 fs->super->s_mmp_block = 0;
1243 ext2fs_mark_super_dirty(fs);
1244 retval = 0;
1245 }
1246 } else if (retval == EXT2_ET_MMP_FAILED) {
45ff69ff 1247 com_err(ctx->program_name, retval, "%s",
0f5eba75
AD
1248 _("while checking MMP block"));
1249 dump_mmp_msg(fs->mmp_buf, NULL);
1250 } else if (retval == EXT2_ET_MMP_FSCK_ON ||
1251 retval == EXT2_ET_MMP_UNKNOWN_SEQ) {
45ff69ff 1252 com_err(ctx->program_name, retval, "%s",
0f5eba75
AD
1253 _("while checking MMP block"));
1254 dump_mmp_msg(fs->mmp_buf,
1255 _("If you are sure the filesystem is not "
1256 "in use on any node, run:\n"
1257 "'tune2fs -f -E clear_mmp {device}'\n"));
1258 } else if (retval == EXT2_ET_MMP_MAGIC_INVALID) {
1259 if (fix_problem(ctx, PR_0_MMP_INVALID_MAGIC, &pctx)) {
1260 ext2fs_mmp_clear(fs);
1261 retval = 0;
1262 }
f57b3715
DW
1263 } else if (retval == EXT2_ET_MMP_CSUM_INVALID) {
1264 if (fix_problem(ctx, PR_0_MMP_CSUM_INVALID, &pctx)) {
1265 ext2fs_mmp_clear(fs);
1266 retval = 0;
1267 }
a8a1ee12
DW
1268 } else
1269 com_err(ctx->program_name, retval, "%s",
1270 _("while reading MMP block"));
0f5eba75
AD
1271 return retval;
1272}
1273
ce9b74ab
DW
1274static int e2fsck_setup_tdb(e2fsck_t ctx, io_manager *io_ptr)
1275{
1276 errcode_t retval = ENOMEM;
1277 char *tdb_dir = NULL, *tdb_file = NULL;
1278 char *dev_name, *tmp_name;
1279 int free_tdb_dir = 0;
1280
1281 /* (re)open a specific undo file */
1282 if (ctx->undo_file && ctx->undo_file[0] != 0) {
b0851392
DW
1283 retval = set_undo_io_backing_manager(*io_ptr);
1284 if (retval)
1285 goto err;
ce9b74ab
DW
1286 *io_ptr = undo_io_manager;
1287 retval = set_undo_io_backup_file(ctx->undo_file);
1288 if (retval)
1289 goto err;
1290 printf(_("Overwriting existing filesystem; this can be undone "
1291 "using the command:\n"
1292 " e2undo %s %s\n\n"),
1293 ctx->undo_file, ctx->filesystem_name);
b0851392 1294 return retval;
ce9b74ab
DW
1295 }
1296
1297 /*
1298 * Configuration via a conf file would be
1299 * nice
1300 */
1301 tdb_dir = getenv("E2FSPROGS_UNDO_DIR");
1302 if (!tdb_dir) {
1303 profile_get_string(ctx->profile, "defaults",
1304 "undo_dir", 0, "/var/lib/e2fsprogs",
1305 &tdb_dir);
1306 free_tdb_dir = 1;
1307 }
1308
1309 if (!strcmp(tdb_dir, "none") || (tdb_dir[0] == 0) ||
1310 access(tdb_dir, W_OK)) {
1311 if (free_tdb_dir)
1312 free(tdb_dir);
1313 return 0;
1314 }
1315
1316 tmp_name = strdup(ctx->filesystem_name);
1317 if (!tmp_name)
1318 goto errout;
1319 dev_name = basename(tmp_name);
1320 tdb_file = malloc(strlen(tdb_dir) + 8 + strlen(dev_name) + 7 + 1);
1321 if (!tdb_file) {
1322 free(tmp_name);
1323 goto errout;
1324 }
1325 sprintf(tdb_file, "%s/e2fsck-%s.e2undo", tdb_dir, dev_name);
1326 free(tmp_name);
1327
1328 if ((unlink(tdb_file) < 0) && (errno != ENOENT)) {
1329 retval = errno;
b0851392
DW
1330 com_err(ctx->program_name, retval,
1331 _("while trying to delete %s"), tdb_file);
ce9b74ab
DW
1332 goto errout;
1333 }
1334
b0851392
DW
1335 retval = set_undo_io_backing_manager(*io_ptr);
1336 if (retval)
1337 goto errout;
ce9b74ab
DW
1338 *io_ptr = undo_io_manager;
1339 retval = set_undo_io_backup_file(tdb_file);
1340 if (retval)
1341 goto errout;
1342 printf(_("Overwriting existing filesystem; this can be undone "
1343 "using the command:\n"
1344 " e2undo %s %s\n\n"), tdb_file, ctx->filesystem_name);
1345
1346 if (free_tdb_dir)
1347 free(tdb_dir);
1348 free(tdb_file);
1349 return 0;
1350
1351errout:
1352 if (free_tdb_dir)
1353 free(tdb_dir);
1354 free(tdb_file);
1355err:
1356 com_err(ctx->program_name, retval, "%s",
1357 _("while trying to setup undo file\n"));
1358 return retval;
1359}
1360
1b6bf175
TT
1361int main (int argc, char *argv[])
1362{
82b59ca1 1363 errcode_t retval = 0, retval2 = 0, orig_retval = 0;
1b6bf175 1364 int exit_value = FSCK_OK;
1b6bf175
TT
1365 ext2_filsys fs = 0;
1366 io_manager io_ptr;
5dd8f963 1367 struct ext2_super_block *sb;
1b6bf175
TT
1368 const char *lib_ver_date;
1369 int my_ver, lib_ver;
1370 e2fsck_t ctx;
35b459ff 1371 blk64_t orig_superblock = ~(blk64_t)0;
1b6bf175 1372 struct problem_context pctx;
115d4b4b 1373 int flags, run_result, was_changed;
5107d0d1 1374 int journal_size;
9f0288d3 1375 int sysval, sys_page_size = 4096;
c5d2f50d 1376 int old_bitmaps;
dcc91e10 1377 __u32 features[3];
1dc506cb 1378 char *cp;
2d2d799c 1379 enum quota_type qtype;
efc6f628 1380
1b6bf175 1381 clear_problem_context(&pctx);
9b3018a8 1382 sigcatcher_setup();
1b6bf175
TT
1383#ifdef MTRACE
1384 mtrace();
1385#endif
1386#ifdef MCHECK
1387 mcheck(0);
0c4a0726
TT
1388#endif
1389#ifdef ENABLE_NLS
1390 setlocale(LC_MESSAGES, "");
14308a53 1391 setlocale(LC_CTYPE, "");
0c4a0726
TT
1392 bindtextdomain(NLS_CAT_NAME, LOCALEDIR);
1393 textdomain(NLS_CAT_NAME);
9d4507c5 1394 set_com_err_gettext(gettext);
1b6bf175
TT
1395#endif
1396 my_ver = ext2fs_parse_version_string(my_ver_string);
1397 lib_ver = ext2fs_get_library_version(0, &lib_ver_date);
1398 if (my_ver > lib_ver) {
45ff69ff
AD
1399 fprintf( stderr, "%s",
1400 _("Error: ext2fs library version out of date!\n"));
1b6bf175
TT
1401 show_version_only++;
1402 }
efc6f628 1403
1b6bf175
TT
1404 retval = PRS(argc, argv, &ctx);
1405 if (retval) {
45ff69ff 1406 com_err("e2fsck", retval, "%s",
0c4a0726 1407 _("while trying to initialize program"));
243dc31f 1408 exit(FSCK_ERROR);
1b6bf175 1409 }
24fc5032 1410 reserve_stdio_fds();
efc6f628 1411
b0e91c89
TT
1412 set_up_logging(ctx);
1413 if (ctx->logf) {
1414 int i;
1415 fputs("E2fsck run: ", ctx->logf);
1416 for (i = 0; i < argc; i++) {
1417 if (i)
1418 fputc(' ', ctx->logf);
1419 fputs(argv[i], ctx->logf);
1420 }
1421 fputc('\n', ctx->logf);
1422 }
1423
6d96b00d 1424 init_resource_track(&ctx->global_rtrack, NULL);
1b6bf175 1425 if (!(ctx->options & E2F_OPT_PREEN) || show_version_only)
b0e91c89 1426 log_err(ctx, "e2fsck %s (%s)\n", my_ver_string,
0f8973fb 1427 my_ver_date);
1b6bf175
TT
1428
1429 if (show_version_only) {
b0e91c89 1430 log_err(ctx, _("\tUsing %s, %s\n"),
1b6bf175 1431 error_message(EXT2_ET_BASE), lib_ver_date);
243dc31f 1432 exit(FSCK_OK);
1b6bf175 1433 }
efc6f628 1434
1b6bf175 1435 check_mount(ctx);
efc6f628 1436
1b6bf175
TT
1437 if (!(ctx->options & E2F_OPT_PREEN) &&
1438 !(ctx->options & E2F_OPT_NO) &&
1439 !(ctx->options & E2F_OPT_YES)) {
54a31a3b 1440 if (!ctx->interactive)
f8188fff 1441 fatal_error(ctx,
0c4a0726 1442 _("need terminal for interactive repairs"));
1b6bf175
TT
1443 }
1444 ctx->superblock = ctx->use_superblock;
0f5eba75
AD
1445
1446 flags = EXT2_FLAG_SKIP_MMP;
1b6bf175 1447restart:
2a29f135 1448#ifdef CONFIG_TESTIO_DEBUG
f38cf3cb
TT
1449 if (getenv("TEST_IO_FLAGS") || getenv("TEST_IO_BLOCK")) {
1450 io_ptr = test_io_manager;
1451 test_io_backing_manager = unix_io_manager;
1452 } else
1b6bf175 1453#endif
f38cf3cb 1454 io_ptr = unix_io_manager;
0f5eba75 1455 flags |= EXT2_FLAG_NOFREE_ON_ERROR;
c5d2f50d
VAH
1456 profile_get_boolean(ctx->profile, "options", "old_bitmaps", 0, 0,
1457 &old_bitmaps);
1458 if (!old_bitmaps)
1459 flags |= EXT2_FLAG_64BITS;
cd5bb7c8
AD
1460 if ((ctx->options & E2F_OPT_READONLY) == 0) {
1461 flags |= EXT2_FLAG_RW;
1462 if (!(ctx->mount_flags & EXT2_MF_ISROOT &&
1463 ctx->mount_flags & EXT2_MF_READONLY))
1464 flags |= EXT2_FLAG_EXCLUSIVE;
78a0d2ba
TT
1465 if ((ctx->mount_flags & EXT2_MF_READONLY) &&
1466 (ctx->options & E2F_OPT_FORCE))
1467 flags &= ~EXT2_FLAG_EXCLUSIVE;
cd5bb7c8 1468 }
17390c04 1469
ce9b74ab
DW
1470 if (ctx->undo_file) {
1471 retval = e2fsck_setup_tdb(ctx, &io_ptr);
1472 if (retval)
1473 exit(FSCK_ERROR);
1474 }
1475
0d19ccbd 1476 ctx->openfs_flags = flags;
60663890
TT
1477 retval = try_open_fs(ctx, flags, io_ptr, &fs);
1478
ae6cdcf7
TT
1479 if (!ctx->superblock && !(ctx->options & E2F_OPT_PREEN) &&
1480 !(ctx->flags & E2F_FLAG_SB_SPECIFIED) &&
1b6bf175 1481 ((retval == EXT2_ET_BAD_MAGIC) ||
dbfab110 1482 (retval == EXT2_ET_SB_CSUM_INVALID) ||
cd538080 1483 (retval == EXT2_ET_CORRUPT_SUPERBLOCK) ||
82b59ca1 1484 ((retval == 0) && (retval2 = ext2fs_check_desc(fs))))) {
010c49cf
TT
1485 if (retval) {
1486 pctx.errcode = retval;
1487 fix_problem(ctx, PR_0_OPEN_FAILED, &pctx);
1488 }
1489 if (retval2) {
1490 pctx.errcode = retval2;
1491 fix_problem(ctx, PR_0_CHECK_DESC_FAILED, &pctx);
1492 }
1493 pctx.errcode = 0;
41cec349 1494 if (retval2 == ENOMEM || retval2 == EXT2_ET_NO_MEMORY) {
82b59ca1
TT
1495 retval = retval2;
1496 goto failure;
1497 }
dcc91e10
TT
1498 if (fs->flags & EXT2_FLAG_NOFREE_ON_ERROR) {
1499 ext2fs_free(fs);
1500 fs = NULL;
1501 }
1b6bf175 1502 if (!fs || (fs->group_desc_count > 1)) {
b0e91c89
TT
1503 log_out(ctx, _("%s: %s trying backup blocks...\n"),
1504 ctx->program_name,
1505 retval ? _("Superblock invalid,") :
1506 _("Group descriptors look bad..."));
60663890 1507 orig_superblock = ctx->superblock;
f1a1761d 1508 get_backup_sb(ctx, fs, ctx->filesystem_name, io_ptr);
1b6bf175 1509 if (fs)
47fee2ef 1510 ext2fs_close_free(&fs);
cd538080 1511 orig_retval = retval;
60663890
TT
1512 retval = try_open_fs(ctx, flags, io_ptr, &fs);
1513 if ((orig_retval == 0) && retval != 0) {
22ff06d5 1514 if (fs)
47fee2ef 1515 ext2fs_close_free(&fs);
b0e91c89
TT
1516 log_out(ctx, _("%s: %s while using the "
1517 "backup blocks"),
1518 ctx->program_name,
1519 error_message(retval));
1520 log_out(ctx, _("%s: going back to original "
1521 "superblock\n"),
1522 ctx->program_name);
60663890
TT
1523 ctx->superblock = orig_superblock;
1524 retval = try_open_fs(ctx, flags, io_ptr, &fs);
1525 }
1b6bf175
TT
1526 }
1527 }
dcc91e10
TT
1528 if (((retval == EXT2_ET_UNSUPP_FEATURE) ||
1529 (retval == EXT2_ET_RO_UNSUPP_FEATURE)) &&
1530 fs && fs->super) {
1531 sb = fs->super;
efc6f628 1532 features[0] = (sb->s_feature_compat &
dcc91e10 1533 ~EXT2_LIB_FEATURE_COMPAT_SUPP);
efc6f628 1534 features[1] = (sb->s_feature_incompat &
dcc91e10 1535 ~EXT2_LIB_FEATURE_INCOMPAT_SUPP);
efc6f628 1536 features[2] = (sb->s_feature_ro_compat &
dcc91e10
TT
1537 ~EXT2_LIB_FEATURE_RO_COMPAT_SUPP);
1538 if (features[0] || features[1] || features[2])
1539 goto print_unsupp_features;
1540 }
82b59ca1 1541failure:
1b6bf175 1542 if (retval) {
cd538080
TT
1543 if (orig_retval)
1544 retval = orig_retval;
0c4a0726 1545 com_err(ctx->program_name, retval, _("while trying to open %s"),
1b6bf175 1546 ctx->filesystem_name);
24dd4028 1547 if (retval == EXT2_ET_REV_TOO_HIGH) {
45ff69ff
AD
1548 log_out(ctx, "%s",
1549 _("The filesystem revision is apparently "
1550 "too high for this version of e2fsck.\n"
1551 "(Or the filesystem superblock "
1552 "is corrupt)\n\n"));
24dd4028
TT
1553 fix_problem(ctx, PR_0_SB_CORRUPT, &pctx);
1554 } else if (retval == EXT2_ET_SHORT_READ)
45ff69ff
AD
1555 log_out(ctx, "%s",
1556 _("Could this be a zero-length partition?\n"));
1b6bf175 1557 else if ((retval == EPERM) || (retval == EACCES))
b0e91c89 1558 log_out(ctx, _("You must have %s access to the "
45ff69ff 1559 "filesystem or be root\n"),
1b6bf175
TT
1560 (ctx->options & E2F_OPT_READONLY) ?
1561 "r/o" : "r/w");
1562 else if (retval == ENXIO)
45ff69ff
AD
1563 log_out(ctx, "%s",
1564 _("Possibly non-existent or swap device?\n"));
2e14e0c8 1565 else if (retval == EBUSY)
45ff69ff
AD
1566 log_out(ctx, "%s", _("Filesystem mounted or opened "
1567 "exclusively by another program?\n"));
32f66cc7 1568 else if (retval == ENOENT)
45ff69ff
AD
1569 log_out(ctx, "%s",
1570 _("Possibly non-existent device?\n"));
68227542
TT
1571#ifdef EROFS
1572 else if (retval == EROFS)
45ff69ff
AD
1573 log_out(ctx, "%s", _("Disk write-protected; use the "
1574 "-n option to do a read-only\n"
1575 "check of the device.\n"));
68227542 1576#endif
c8b20b40 1577 else {
35b459ff
JK
1578 /*
1579 * Let's try once more will less consistency checking
1580 * so that we are able to recover from more errors
1581 * (e.g. some tool messing up some value in the sb).
1582 */
1583 if (!(flags & EXT2_FLAG_IGNORE_SB_ERRORS)) {
1584 if (fs)
1585 ext2fs_close_free(&fs);
1586 log_out(ctx, _("%s: Trying to load superblock "
1587 "despite errors...\n"),
1588 ctx->program_name);
1589 flags |= EXT2_FLAG_IGNORE_SB_ERRORS;
1590 /*
1591 * If we tried backup sb, revert to the
1592 * original one now.
1593 */
1594 if (orig_superblock != ~(blk64_t)0)
1595 ctx->superblock = orig_superblock;
1596 goto restart;
1597 }
1b6bf175 1598 fix_problem(ctx, PR_0_SB_CORRUPT, &pctx);
c8b20b40
DW
1599 if (retval == EXT2_ET_BAD_MAGIC)
1600 check_plausibility(ctx->filesystem_name,
1601 CHECK_FS_EXIST, NULL);
1602 }
243dc31f 1603 fatal_error(ctx, 0);
1b6bf175 1604 }
058ad1c7
TT
1605 /*
1606 * We only update the master superblock because (a) paranoia;
1607 * we don't want to corrupt the backup superblocks, and (b) we
1608 * don't need to update the mount count and last checked
1609 * fields in the backup superblock (the kernel doesn't update
1610 * the backup superblocks anyway). With newer versions of the
1611 * library this flag is set by ext2fs_open2(), but we set this
1612 * here just to be sure. (No, we don't support e2fsck running
1613 * with some other libext2fs than the one that it was shipped
1614 * with, but just in case....)
1615 */
1616 fs->flags |= EXT2_FLAG_MASTER_SB_ONLY;
d2af1bdd
TT
1617
1618 if (!(ctx->flags & E2F_FLAG_GOT_DEVSIZE)) {
1619 __u32 blocksize = EXT2_BLOCK_SIZE(fs->super);
1620 int need_restart = 0;
1621
59119646
TT
1622 pctx.errcode = ext2fs_get_device_size2(ctx->filesystem_name,
1623 blocksize,
1624 &ctx->num_blocks);
d2af1bdd
TT
1625 /*
1626 * The floppy driver refuses to allow anyone else to
1627 * open the device if has been opened with O_EXCL;
1628 * this is unlike other block device drivers in Linux.
1629 * To handle this, we close the filesystem and then
1630 * reopen the filesystem after we get the device size.
1631 */
1632 if (pctx.errcode == EBUSY) {
47fee2ef 1633 ext2fs_close_free(&fs);
d2af1bdd 1634 need_restart++;
efc6f628 1635 pctx.errcode =
59119646
TT
1636 ext2fs_get_device_size2(ctx->filesystem_name,
1637 blocksize,
1638 &ctx->num_blocks);
d2af1bdd
TT
1639 }
1640 if (pctx.errcode == EXT2_ET_UNIMPLEMENTED)
1641 ctx->num_blocks = 0;
1642 else if (pctx.errcode) {
1643 fix_problem(ctx, PR_0_GETSIZE_ERROR, &pctx);
1644 ctx->flags |= E2F_FLAG_ABORT;
1645 fatal_error(ctx, 0);
d2af1bdd
TT
1646 }
1647 ctx->flags |= E2F_FLAG_GOT_DEVSIZE;
1648 if (need_restart)
1649 goto restart;
1650 }
1651
1b6bf175 1652 ctx->fs = fs;
8dceb924 1653 fs->now = ctx->now;
5dd8f963 1654 sb = fs->super;
b0e91c89 1655
5dd8f963 1656 if (sb->s_rev_level > E2FSCK_CURRENT_REV) {
1b6bf175 1657 com_err(ctx->program_name, EXT2_ET_REV_TOO_HIGH,
0c4a0726 1658 _("while trying to open %s"),
1b6bf175 1659 ctx->filesystem_name);
f8188fff 1660 get_newer:
0c4a0726 1661 fatal_error(ctx, _("Get a newer version of e2fsck!"));
1b6bf175 1662 }
3b5386dc
TT
1663
1664 /*
1665 * Set the device name, which is used whenever we print error
1666 * or informational messages to the user.
1667 */
1668 if (ctx->device_name == 0 &&
5dd8f963 1669 (sb->s_volume_name[0] != 0)) {
f364093b
TT
1670 ctx->device_name = string_copy(ctx, sb->s_volume_name,
1671 sizeof(sb->s_volume_name));
3b5386dc
TT
1672 }
1673 if (ctx->device_name == 0)
1dc506cb
TT
1674 ctx->device_name = string_copy(ctx, ctx->filesystem_name, 0);
1675 for (cp = ctx->device_name; *cp; cp++)
1676 if (isspace(*cp) || *cp == ':')
1677 *cp = '_';
3b5386dc 1678
14c5af32
AD
1679 ehandler_init(fs->io);
1680
86f3b6cf 1681 if (ext2fs_has_feature_mmp(fs->super) &&
0f5eba75
AD
1682 (flags & EXT2_FLAG_SKIP_MMP)) {
1683 if (e2fsck_check_mmp(fs, ctx))
1684 fatal_error(ctx, 0);
0f5eba75 1685
349b8a37
TT
1686 /*
1687 * Restart in order to reopen fs but this time start mmp.
1688 */
ebdf895b 1689 ext2fs_close_free(&ctx->fs);
0f5eba75
AD
1690 flags &= ~EXT2_FLAG_SKIP_MMP;
1691 goto restart;
1692 }
1693
b0e91c89
TT
1694 if (ctx->logf)
1695 fprintf(ctx->logf, "Filesystem UUID: %s\n",
1696 e2p_uuid2str(sb->s_uuid));
1697
17390c04 1698 /*
9b565759 1699 * Make sure the ext3 superblock fields are consistent.
17390c04 1700 */
6f5bb811
TT
1701 if ((ctx->mount_flags & (EXT2_MF_MOUNTED | EXT2_MF_BUSY)) == 0) {
1702 retval = e2fsck_check_ext3_journal(ctx);
1703 if (retval) {
1704 com_err(ctx->program_name, retval,
27ce779d 1705 _("while checking journal for %s"),
6f5bb811 1706 ctx->device_name);
d37026ea
TT
1707 fatal_error(ctx,
1708 _("Cannot proceed with file system check"));
6f5bb811 1709 }
3b5386dc
TT
1710 }
1711
9b565759
TT
1712 /*
1713 * Check to see if we need to do ext3-style recovery. If so,
1714 * do it, and then restart the fsck.
1715 */
86f3b6cf 1716 if (ext2fs_has_feature_journal_needs_recovery(sb)) {
2575fb04 1717 if (ctx->options & E2F_OPT_READONLY) {
45ff69ff
AD
1718 log_out(ctx, "%s",
1719 _("Warning: skipping journal recovery because "
1720 "doing a read-only filesystem check.\n"));
2575fb04
TT
1721 io_channel_flush(ctx->fs->io);
1722 } else {
b92ae153
TT
1723 if (ctx->flags & E2F_FLAG_RESTARTED) {
1724 /*
1725 * Whoops, we attempted to run the
1726 * journal twice. This should never
1727 * happen, unless the hardware or
1728 * device driver is being bogus.
1729 */
1730 com_err(ctx->program_name, 0,
45ff69ff
AD
1731 _("unable to set superblock flags "
1732 "on %s\n"), ctx->device_name);
b92ae153
TT
1733 fatal_error(ctx, 0);
1734 }
2575fb04 1735 retval = e2fsck_run_ext3_journal(ctx);
d530271f
TT
1736 if (retval == EFSBADCRC) {
1737 log_out(ctx, _("Journal checksum error "
1738 "found in %s\n"),
1739 ctx->device_name);
1740 } else if (retval == EFSCORRUPTED) {
1741 log_out(ctx, _("Journal corrupted in %s\n"),
1742 ctx->device_name);
1743 } else if (retval) {
2575fb04 1744 com_err(ctx->program_name, retval,
27ce779d 1745 _("while recovering journal of %s"),
2575fb04 1746 ctx->device_name);
2575fb04 1747 }
47fee2ef 1748 ext2fs_close_free(&ctx->fs);
b92ae153 1749 ctx->flags |= E2F_FLAG_RESTARTED;
2575fb04 1750 goto restart;
17390c04 1751 }
17390c04 1752 }
3b5386dc 1753
1b6bf175
TT
1754 /*
1755 * Check for compatibility with the feature sets. We need to
1756 * be more stringent than ext2fs_open().
1757 */
dcc91e10
TT
1758 features[0] = sb->s_feature_compat & ~EXT2_LIB_FEATURE_COMPAT_SUPP;
1759 features[1] = sb->s_feature_incompat & ~EXT2_LIB_FEATURE_INCOMPAT_SUPP;
efc6f628 1760 features[2] = (sb->s_feature_ro_compat &
dcc91e10
TT
1761 ~EXT2_LIB_FEATURE_RO_COMPAT_SUPP);
1762print_unsupp_features:
1763 if (features[0] || features[1] || features[2]) {
1764 int i, j;
1765 __u32 *mask = features, m;
1766
b0e91c89 1767 log_err(ctx, _("%s has unsupported feature(s):"),
dcc91e10
TT
1768 ctx->filesystem_name);
1769
1770 for (i=0; i <3; i++,mask++) {
1771 for (j=0,m=1; j < 32; j++, m<<=1) {
1772 if (*mask & m)
b0e91c89 1773 log_err(ctx, " %s",
dcc91e10
TT
1774 e2p_feature2string(i, m));
1775 }
1776 }
b0e91c89 1777 log_err(ctx, "\n");
1b6bf175
TT
1778 goto get_newer;
1779 }
8fdc9985 1780
1b6bf175
TT
1781 /*
1782 * If the user specified a specific superblock, presumably the
1783 * master superblock has been trashed. So we mark the
1784 * superblock as dirty, so it can be written out.
1785 */
1786 if (ctx->superblock &&
1787 !(ctx->options & E2F_OPT_READONLY))
1788 ext2fs_mark_super_dirty(fs);
1789
9f0288d3
TT
1790 /*
1791 * Calculate the number of filesystem blocks per pagesize. If
1792 * fs->blocksize > page_size, set the number of blocks per
1793 * pagesize to 1 to avoid division by zero errors.
1794 */
1795#ifdef _SC_PAGESIZE
1796 sysval = sysconf(_SC_PAGESIZE);
1797 if (sysval > 0)
1798 sys_page_size = sysval;
1799#endif /* _SC_PAGESIZE */
1800 ctx->blocks_per_page = sys_page_size / fs->blocksize;
1801 if (ctx->blocks_per_page == 0)
1802 ctx->blocks_per_page = 1;
1803
1b6bf175
TT
1804 if (ctx->superblock)
1805 set_latch_flags(PR_LATCH_RELOC, PRL_LATCHED, 0);
550a4afa 1806 ext2fs_mark_valid(fs);
1b6bf175 1807 check_super_block(ctx);
a02ce9df 1808 if (ctx->flags & E2F_FLAG_SIGNAL_MASK)
243dc31f 1809 fatal_error(ctx, 0);
1b6bf175 1810 check_if_skip(ctx);
69d0edfd 1811 check_resize_inode(ctx);
1b6bf175
TT
1812 if (bad_blocks_file)
1813 read_bad_blocks_file(ctx, bad_blocks_file, replace_bad_blocks);
1814 else if (cflag)
4fb9d52b 1815 read_bad_blocks_file(ctx, 0, !keep_bad_blocks); /* Test disk */
a02ce9df 1816 if (ctx->flags & E2F_FLAG_SIGNAL_MASK)
243dc31f 1817 fatal_error(ctx, 0);
1b6bf175
TT
1818
1819 /*
1820 * Mark the system as valid, 'til proven otherwise
1821 */
1822 ext2fs_mark_valid(fs);
1823
1824 retval = ext2fs_read_bb_inode(fs, &fs->badblocks);
1825 if (retval) {
b0e91c89
TT
1826 log_out(ctx, _("%s: %s while reading bad blocks inode\n"),
1827 ctx->program_name, error_message(retval));
1b6bf175 1828 preenhalt(ctx);
45ff69ff
AD
1829 log_out(ctx, "%s", _("This doesn't bode well, "
1830 "but we'll try to go on...\n"));
1b6bf175 1831 }
08b21301 1832
5107d0d1
KS
1833 /*
1834 * Save the journal size in megabytes.
1835 * Try and use the journal size from the backup else let e2fsck
1836 * find the default journal size.
1837 */
1838 if (sb->s_jnl_backup_type == EXT3_JNL_BACKUP_BLOCKS)
931b58e1
AD
1839 journal_size = (sb->s_jnl_blocks[15] << (32 - 20)) |
1840 (sb->s_jnl_blocks[16] >> 20);
5107d0d1
KS
1841 else
1842 journal_size = -1;
1843
86f3b6cf 1844 if (ext2fs_has_feature_quota(sb)) {
624e4a64 1845 /* Quotas were enabled. Do quota accounting during fsck. */
a701823a 1846 clear_problem_context(&pctx);
5c2a665a 1847 pctx.errcode = quota_init_context(&ctx->qctx, ctx->fs, 0);
a701823a
TT
1848 if (pctx.errcode) {
1849 fix_problem(ctx, PR_0_QUOTA_INIT_CTX, &pctx);
1850 fatal_error(ctx, 0);
1851 }
624e4a64
AK
1852 }
1853
08b21301 1854 run_result = e2fsck_run(ctx);
5596defa 1855 e2fsck_clear_progbar(ctx);
5107d0d1 1856
c4c93e2d
DW
1857 if (!ctx->invalid_bitmaps &&
1858 (ctx->flags & E2F_FLAG_JOURNAL_INODE)) {
5107d0d1
KS
1859 if (fix_problem(ctx, PR_6_RECREATE_JOURNAL, &pctx)) {
1860 if (journal_size < 1024)
4efbac6f 1861 journal_size = ext2fs_default_journal_size(ext2fs_blocks_count(fs->super));
5107d0d1 1862 if (journal_size < 0) {
86f3b6cf 1863 ext2fs_clear_feature_journal(fs->super);
0cfce7f7 1864 fs->flags &= ~EXT2_FLAG_MASTER_SB_ONLY;
b0e91c89
TT
1865 log_out(ctx, "%s: Couldn't determine "
1866 "journal size\n", ctx->program_name);
5107d0d1
KS
1867 goto no_journal;
1868 }
b0e91c89 1869 log_out(ctx, _("Creating journal (%d blocks): "),
5107d0d1
KS
1870 journal_size);
1871 fflush(stdout);
1872 retval = ext2fs_add_journal_inode(fs,
1873 journal_size, 0);
1874 if (retval) {
b0e91c89
TT
1875 log_out(ctx, "%s: while trying to create "
1876 "journal\n", error_message(retval));
5107d0d1
KS
1877 goto no_journal;
1878 }
45ff69ff
AD
1879 log_out(ctx, "%s", _(" Done.\n"));
1880 log_out(ctx, "%s",
b151d346 1881 _("\n*** journal has been regenerated ***\n"));
5107d0d1
KS
1882 }
1883 }
1884no_journal:
1885
db3d8718
AD
1886 if (run_result & E2F_FLAG_ABORT) {
1887 fatal_error(ctx, _("aborted"));
1888 } else if (run_result & E2F_FLAG_CANCEL) {
1889 log_out(ctx, _("%s: e2fsck canceled.\n"), ctx->device_name ?
1890 ctx->device_name : ctx->filesystem_name);
1891 exit_value |= FSCK_CANCELED;
1892 } else if (ctx->qctx && !ctx->invalid_bitmaps) {
2d2d799c 1893 int needs_writeout;
db3d8718 1894
2d2d799c 1895 for (qtype = 0; qtype < MAXQUOTAS; qtype++) {
5c2a665a 1896 if (*quota_sb_inump(sb, qtype) == 0)
7943ccf5
AK
1897 continue;
1898 needs_writeout = 0;
2d2d799c
LX
1899 pctx.num = qtype;
1900 retval = quota_compare_and_update(ctx->qctx, qtype,
7943ccf5
AK
1901 &needs_writeout);
1902 if ((retval || needs_writeout) &&
a701823a
TT
1903 fix_problem(ctx, PR_6_UPDATE_QUOTAS, &pctx)) {
1904 pctx.errcode = quota_write_inode(ctx->qctx,
1905 1 << qtype);
1906 if (pctx.errcode)
1907 (void) fix_problem(ctx,
1908 PR_6_WRITE_QUOTAS, &pctx);
1909 }
7943ccf5 1910 }
a86d55da 1911 quota_release_context(&ctx->qctx);
624e4a64
AK
1912 }
1913
08b21301 1914 if (run_result == E2F_FLAG_RESTART) {
45ff69ff
AD
1915 log_out(ctx, "%s",
1916 _("Restarting e2fsck from the beginning...\n"));
1b6bf175
TT
1917 retval = e2fsck_reset_context(ctx);
1918 if (retval) {
45ff69ff 1919 com_err(ctx->program_name, retval, "%s",
0c4a0726 1920 _("while resetting context"));
243dc31f 1921 fatal_error(ctx, 0);
1b6bf175 1922 }
ebdf895b 1923 ext2fs_close_free(&ctx->fs);
1b6bf175
TT
1924 goto restart;
1925 }
115d4b4b
TT
1926
1927#ifdef MTRACE
1928 mtrace_print("Cleanup");
1929#endif
1930 was_changed = ext2fs_test_changed(fs);
db3d8718
AD
1931 if (!(ctx->flags & E2F_FLAG_RUN_RETURN) &&
1932 !(ctx->options & E2F_OPT_READONLY)) {
115d4b4b
TT
1933 if (ext2fs_test_valid(fs)) {
1934 if (!(sb->s_state & EXT2_VALID_FS))
1935 exit_value |= FSCK_NONDESTRUCT;
1936 sb->s_state = EXT2_VALID_FS;
1937 if (check_backup_super_block(ctx))
1938 fs->flags &= ~EXT2_FLAG_MASTER_SB_ONLY;
1939 } else
1940 sb->s_state &= ~EXT2_VALID_FS;
1941 if (!(ctx->flags & E2F_FLAG_TIME_INSANE))
1942 sb->s_lastcheck = ctx->now;
1943 sb->s_mnt_count = 0;
1944 memset(((char *) sb) + EXT4_S_ERR_START, 0, EXT4_S_ERR_LEN);
1945 pctx.errcode = ext2fs_set_gdt_csum(ctx->fs);
1946 if (pctx.errcode)
1947 fix_problem(ctx, PR_6_SET_BG_CHECKSUM, &pctx);
0c37f456
TT
1948 ext2fs_mark_super_dirty(fs);
1949 }
1b6bf175 1950
b67bf3b0
KC
1951 if (!(ctx->options & E2F_OPT_READONLY)) {
1952 e2fsck_write_bitmaps(ctx);
1953 if (fs->flags & EXT2_FLAG_DIRTY) {
1954 pctx.errcode = ext2fs_flush(ctx->fs);
1955 if (pctx.errcode)
1956 fix_problem(ctx, PR_6_FLUSH_FILESYSTEM, &pctx);
1957 }
1958 pctx.errcode = io_channel_flush(ctx->fs->io);
ab2cd4a4 1959 if (pctx.errcode)
b67bf3b0 1960 fix_problem(ctx, PR_6_IO_FLUSH, &pctx);
ab2cd4a4 1961 }
115d4b4b
TT
1962
1963 if (was_changed) {
bf9f3b6d
TT
1964 int fs_fixed = (ctx->flags & E2F_FLAG_PROBLEMS_FIXED);
1965
1966 if (fs_fixed)
1967 exit_value |= FSCK_NONDESTRUCT;
1968 if (!(ctx->options & E2F_OPT_PREEN)) {
1969#if 0 /* Do this later; it breaks too many tests' golden outputs */
1970 log_out(ctx, fs_fixed ?
1971 _("\n%s: ***** FILE SYSTEM ERRORS "
1972 "CORRECTED *****\n") :
1973 _("%s: File system was modified.\n"),
b0e91c89 1974 ctx->device_name);
bf9f3b6d
TT
1975#else
1976 log_out(ctx,
1977 _("\n%s: ***** FILE SYSTEM WAS MODIFIED *****\n"),
1978 ctx->device_name);
1979#endif
1980 }
ee895139 1981 if (ctx->mount_flags & EXT2_MF_ISROOT) {
c2db4cb7 1982 log_out(ctx, _("%s: ***** REBOOT SYSTEM *****\n"),
b0e91c89 1983 ctx->device_name);
4cae0452 1984 exit_value |= FSCK_REBOOT;
1b6bf175
TT
1985 }
1986 }
eb065ccf 1987 if (!ext2fs_test_valid(fs) ||
efc6f628 1988 ((exit_value & FSCK_CANCELED) &&
eb065ccf 1989 (sb->s_state & EXT2_ERROR_FS))) {
b0e91c89
TT
1990 log_out(ctx, _("\n%s: ********** WARNING: Filesystem still has "
1991 "errors **********\n\n"), ctx->device_name);
4cae0452
TT
1992 exit_value |= FSCK_UNCORRECTED;
1993 exit_value &= ~FSCK_NONDESTRUCT;
d3124019 1994 }
eb065ccf
TT
1995 if (exit_value & FSCK_CANCELED) {
1996 int allow_cancellation;
1997
1998 profile_get_boolean(ctx->profile, "options",
efc6f628 1999 "allow_cancellation", 0, 0,
eb065ccf 2000 &allow_cancellation);
4cae0452 2001 exit_value &= ~FSCK_NONDESTRUCT;
eb065ccf 2002 if (allow_cancellation && ext2fs_test_valid(fs) &&
efc6f628 2003 (sb->s_state & EXT2_VALID_FS) &&
eb065ccf
TT
2004 !(sb->s_state & EXT2_ERROR_FS))
2005 exit_value = 0;
115d4b4b 2006 } else
4cae0452 2007 show_stats(ctx);
1b6bf175 2008
9facd076
KC
2009 print_resource_track(ctx, NULL, &ctx->global_rtrack, ctx->fs->io);
2010
a82d88ea 2011 ext2fs_close_free(&ctx->fs);
f364093b 2012 free(ctx->journal_name);
b28a6e96 2013
7a2a0145
TT
2014 if (ctx->logf)
2015 fprintf(ctx->logf, "Exit status: %d\n", exit_value);
b28a6e96 2016 e2fsck_free_context(ctx);
a6d8302b
TT
2017 remove_error_table(&et_ext2_error_table);
2018 remove_error_table(&et_prof_error_table);
1b6bf175
TT
2019 return exit_value;
2020}