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