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