2003-01-20 06:01:18 +08:00
|
|
|
/**
|
2006-02-12 10:00:45 +08:00
|
|
|
* ntfsfix - Part of the Linux-NTFS project.
|
2002-11-29 20:16:35 +08:00
|
|
|
*
|
2007-06-08 18:47:57 +08:00
|
|
|
* Copyright (c) 2000-2006 Anton Altaparmakov
|
|
|
|
* Copyright (c) 2002-2006 Szabolcs Szakacsits
|
|
|
|
* Copyright (c) 2007 Yura Pakhuchiy
|
2002-11-29 20:16:35 +08:00
|
|
|
*
|
2006-02-12 10:00:45 +08:00
|
|
|
* This utility fixes some common NTFS problems, resets the NTFS journal file
|
|
|
|
* and schedules an NTFS consistency check for the first boot into Windows.
|
2002-11-29 20:16:35 +08:00
|
|
|
*
|
2002-12-02 02:54:13 +08:00
|
|
|
* Anton Altaparmakov <aia21@cantab.net>
|
2002-11-29 20:16:35 +08:00
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program (in the main directory of the Linux-NTFS source
|
|
|
|
* in the file COPYING); if not, write to the Free Software Foundation,
|
|
|
|
* Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* WARNING: This program might not work on architectures which do not allow
|
|
|
|
* unaligned access. For those, the program would need to start using
|
|
|
|
* get/put_unaligned macros (#include <asm/unaligned.h>), but not doing it yet,
|
|
|
|
* since NTFS really mostly applies to ia32 only, which does allow unaligned
|
|
|
|
* accesses. We might not actually have a problem though, since the structs are
|
|
|
|
* defined as being packed so that might be enough for gcc to insert the
|
|
|
|
* correct code.
|
|
|
|
*
|
|
|
|
* If anyone using a non-little endian and/or an aligned access only CPU tries
|
|
|
|
* this program please let me know whether it works or not!
|
|
|
|
*
|
2002-12-02 02:54:13 +08:00
|
|
|
* Anton Altaparmakov <aia21@cantab.net>
|
2002-11-29 20:16:35 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
|
2005-09-28 21:47:47 +08:00
|
|
|
#ifdef HAVE_UNISTD_H
|
2002-11-29 20:16:35 +08:00
|
|
|
#include <unistd.h>
|
2005-09-28 21:47:47 +08:00
|
|
|
#endif
|
|
|
|
#ifdef HAVE_STDLIB_H
|
2002-11-29 20:16:35 +08:00
|
|
|
#include <stdlib.h>
|
2005-09-28 21:47:47 +08:00
|
|
|
#endif
|
|
|
|
#ifdef HAVE_STDIO_H
|
2002-11-29 20:16:35 +08:00
|
|
|
#include <stdio.h>
|
2005-09-28 21:47:47 +08:00
|
|
|
#endif
|
|
|
|
#ifdef HAVE_FCNTL_H
|
2002-11-29 20:16:35 +08:00
|
|
|
#include <fcntl.h>
|
2005-09-28 21:47:47 +08:00
|
|
|
#endif
|
|
|
|
#ifdef HAVE_ERRNO_H
|
2002-11-29 20:16:35 +08:00
|
|
|
#include <errno.h>
|
2005-09-28 21:47:47 +08:00
|
|
|
#endif
|
|
|
|
#ifdef HAVE_STRING_H
|
2002-11-29 20:16:35 +08:00
|
|
|
#include <string.h>
|
2005-09-28 21:47:47 +08:00
|
|
|
#endif
|
|
|
|
#ifdef HAVE_GETOPT_H
|
2005-02-20 03:34:37 +08:00
|
|
|
#include <getopt.h>
|
2005-09-28 21:47:47 +08:00
|
|
|
#endif
|
2002-11-29 20:16:35 +08:00
|
|
|
|
2010-12-15 19:03:51 +08:00
|
|
|
#include "types.h"
|
|
|
|
#include "attrib.h"
|
|
|
|
#include "mft.h"
|
|
|
|
#include "device.h"
|
|
|
|
#include "logfile.h"
|
2005-02-20 03:34:37 +08:00
|
|
|
#include "utils.h"
|
2010-01-15 16:33:54 +08:00
|
|
|
/* #include "version.h" */
|
2010-12-15 19:03:51 +08:00
|
|
|
#include "logging.h"
|
2002-11-29 20:16:35 +08:00
|
|
|
|
2004-02-26 19:41:48 +08:00
|
|
|
#ifdef NO_NTFS_DEVICE_DEFAULT_IO_OPS
|
|
|
|
# error "No default device io operations! Cannot build ntfsfix. \
|
|
|
|
You need to run ./configure without the --disable-default-device-io-ops \
|
|
|
|
switch if you want to be able to build the NTFS utilities."
|
|
|
|
#endif
|
|
|
|
|
2005-02-21 06:20:54 +08:00
|
|
|
static const char *EXEC_NAME = "ntfsfix";
|
2010-12-21 22:51:07 +08:00
|
|
|
static const char OK[] = "OK\n";
|
|
|
|
static const char FAILED[] = "FAILED\n";
|
2005-02-20 03:34:37 +08:00
|
|
|
|
2006-12-13 03:00:00 +08:00
|
|
|
static struct {
|
2005-02-20 03:34:37 +08:00
|
|
|
char *volume;
|
|
|
|
} opt;
|
|
|
|
|
2005-11-20 22:15:33 +08:00
|
|
|
/**
|
|
|
|
* usage
|
|
|
|
*/
|
2005-10-12 19:52:40 +08:00
|
|
|
__attribute__((noreturn))
|
2005-02-20 03:34:37 +08:00
|
|
|
static int usage(void)
|
|
|
|
{
|
2010-11-22 21:00:04 +08:00
|
|
|
ntfs_log_info("%s v%s (libntfs-3g)\n"
|
2005-02-20 03:34:37 +08:00
|
|
|
"\n"
|
|
|
|
"Usage: %s [options] device\n"
|
|
|
|
" Attempt to fix an NTFS partition.\n"
|
|
|
|
"\n"
|
|
|
|
" -h, --help Display this help\n"
|
|
|
|
" -V, --version Display version information\n"
|
|
|
|
"\n"
|
2005-06-20 05:09:40 +08:00
|
|
|
"For example: %s /dev/hda6\n\n",
|
2010-11-22 21:00:04 +08:00
|
|
|
EXEC_NAME, VERSION, EXEC_NAME,
|
2005-10-07 22:10:56 +08:00
|
|
|
EXEC_NAME);
|
2005-11-20 22:15:33 +08:00
|
|
|
ntfs_log_info("%s%s", ntfs_bugs, ntfs_home);
|
2005-02-20 03:34:37 +08:00
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
2005-11-20 22:15:33 +08:00
|
|
|
/**
|
|
|
|
* version
|
|
|
|
*/
|
2005-10-12 19:52:40 +08:00
|
|
|
__attribute__((noreturn))
|
2005-10-07 21:26:44 +08:00
|
|
|
static void version(void)
|
2005-02-20 03:34:37 +08:00
|
|
|
{
|
2005-11-20 22:15:33 +08:00
|
|
|
ntfs_log_info("%s v%s\n\n"
|
2005-02-20 03:34:37 +08:00
|
|
|
"Attempt to fix an NTFS partition.\n\n"
|
2007-06-08 18:47:57 +08:00
|
|
|
"Copyright (c) 2000-2006 Anton Altaparmakov\n"
|
|
|
|
"Copyright (c) 2002-2006 Szabolcs Szakacsits\n"
|
|
|
|
"Copyright (c) 2007 Yura Pakhuchiy\n\n",
|
2005-02-20 03:34:37 +08:00
|
|
|
EXEC_NAME, VERSION);
|
2005-11-20 22:15:33 +08:00
|
|
|
ntfs_log_info("%s\n%s%s", ntfs_gpl, ntfs_bugs, ntfs_home);
|
2005-02-20 03:34:37 +08:00
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
2005-11-20 22:15:33 +08:00
|
|
|
/**
|
|
|
|
* parse_options
|
|
|
|
*/
|
2005-02-20 03:34:37 +08:00
|
|
|
static void parse_options(int argc, char **argv)
|
|
|
|
{
|
2006-04-05 20:43:06 +08:00
|
|
|
int c;
|
2005-02-20 03:34:37 +08:00
|
|
|
static const char *sopt = "-hV";
|
|
|
|
static const struct option lopt[] = {
|
2005-11-20 22:15:33 +08:00
|
|
|
{ "help", no_argument, NULL, 'h' },
|
|
|
|
{ "version", no_argument, NULL, 'V' },
|
2005-02-20 03:34:37 +08:00
|
|
|
{ NULL, 0, NULL, 0 }
|
|
|
|
};
|
|
|
|
|
|
|
|
memset(&opt, 0, sizeof(opt));
|
|
|
|
|
2006-04-05 20:43:06 +08:00
|
|
|
while ((c = getopt_long(argc, argv, sopt, lopt, NULL)) != -1) {
|
2005-02-20 03:34:37 +08:00
|
|
|
switch (c) {
|
|
|
|
case 1: /* A non-option argument */
|
|
|
|
if (!opt.volume)
|
|
|
|
opt.volume = argv[optind - 1];
|
|
|
|
else {
|
2005-11-20 22:15:33 +08:00
|
|
|
ntfs_log_info("ERROR: Too many arguments.\n");
|
2005-02-20 03:34:37 +08:00
|
|
|
usage();
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 'h':
|
|
|
|
case '?':
|
|
|
|
usage();
|
|
|
|
case 'V':
|
|
|
|
version();
|
|
|
|
default:
|
2005-11-20 22:15:33 +08:00
|
|
|
ntfs_log_info("ERROR: Unknown option '%s'.\n", argv[optind - 1]);
|
2005-02-20 03:34:37 +08:00
|
|
|
usage();
|
|
|
|
}
|
|
|
|
}
|
2005-06-20 05:09:40 +08:00
|
|
|
|
2005-02-20 03:34:37 +08:00
|
|
|
if (opt.volume == NULL) {
|
2005-11-20 22:15:33 +08:00
|
|
|
ntfs_log_info("ERROR: You must specify a device.\n");
|
2005-02-20 03:34:37 +08:00
|
|
|
usage();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-11-20 22:15:33 +08:00
|
|
|
/**
|
|
|
|
* OLD_ntfs_volume_set_flags
|
|
|
|
*/
|
2007-06-08 18:47:57 +08:00
|
|
|
static int OLD_ntfs_volume_set_flags(ntfs_volume *vol, const le16 flags)
|
2005-10-05 21:01:10 +08:00
|
|
|
{
|
|
|
|
MFT_RECORD *m = NULL;
|
|
|
|
ATTR_RECORD *a;
|
|
|
|
VOLUME_INFORMATION *c;
|
|
|
|
ntfs_attr_search_ctx *ctx;
|
|
|
|
int ret = -1; /* failure */
|
|
|
|
|
|
|
|
if (!vol) {
|
|
|
|
errno = EINVAL;
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
if (ntfs_file_record_read(vol, FILE_Volume, &m, NULL)) {
|
2005-10-25 09:28:10 +08:00
|
|
|
ntfs_log_perror("Failed to read $Volume");
|
2005-10-05 21:01:10 +08:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
/* Sanity check */
|
|
|
|
if (!(m->flags & MFT_RECORD_IN_USE)) {
|
2005-10-25 09:28:10 +08:00
|
|
|
ntfs_log_error("$Volume has been deleted. Cannot handle this "
|
|
|
|
"yet. Run chkdsk to fix this.\n");
|
2005-10-05 21:01:10 +08:00
|
|
|
errno = EIO;
|
|
|
|
goto err_exit;
|
|
|
|
}
|
|
|
|
/* Get a pointer to the volume information attribute. */
|
|
|
|
ctx = ntfs_attr_get_search_ctx(NULL, m);
|
|
|
|
if (!ctx) {
|
2005-10-25 09:28:10 +08:00
|
|
|
ntfs_log_debug("Failed to allocate attribute search "
|
|
|
|
"context.\n");
|
2005-10-05 21:01:10 +08:00
|
|
|
goto err_exit;
|
|
|
|
}
|
|
|
|
if (ntfs_attr_lookup(AT_VOLUME_INFORMATION, AT_UNNAMED, 0, 0, 0, NULL,
|
|
|
|
0, ctx)) {
|
2005-10-25 09:28:10 +08:00
|
|
|
ntfs_log_error("Attribute $VOLUME_INFORMATION was not found in "
|
|
|
|
"$Volume!\n");
|
2005-10-05 21:01:10 +08:00
|
|
|
goto err_out;
|
|
|
|
}
|
|
|
|
a = ctx->attr;
|
|
|
|
/* Sanity check. */
|
|
|
|
if (a->non_resident) {
|
2005-10-25 09:28:10 +08:00
|
|
|
ntfs_log_error("Attribute $VOLUME_INFORMATION must be resident "
|
|
|
|
"(and it isn't)!\n");
|
2005-10-05 21:01:10 +08:00
|
|
|
errno = EIO;
|
|
|
|
goto err_out;
|
|
|
|
}
|
|
|
|
/* Get a pointer to the value of the attribute. */
|
|
|
|
c = (VOLUME_INFORMATION*)(le16_to_cpu(a->value_offset) + (char*)a);
|
|
|
|
/* Sanity checks. */
|
|
|
|
if ((char*)c + le32_to_cpu(a->value_length) >
|
2005-10-16 07:13:49 +08:00
|
|
|
(char*)m + le32_to_cpu(m->bytes_in_use) ||
|
2005-10-05 21:01:10 +08:00
|
|
|
le16_to_cpu(a->value_offset) +
|
|
|
|
le32_to_cpu(a->value_length) > le32_to_cpu(a->length)) {
|
2005-10-25 09:28:10 +08:00
|
|
|
ntfs_log_error("Attribute $VOLUME_INFORMATION in $Volume is "
|
|
|
|
"corrupt!\n");
|
2005-10-05 21:01:10 +08:00
|
|
|
errno = EIO;
|
|
|
|
goto err_out;
|
|
|
|
}
|
|
|
|
/* Set the volume flags. */
|
2007-06-08 18:47:57 +08:00
|
|
|
vol->flags = c->flags = flags;
|
2005-10-05 21:01:10 +08:00
|
|
|
if (ntfs_mft_record_write(vol, FILE_Volume, m)) {
|
2005-10-25 09:28:10 +08:00
|
|
|
ntfs_log_perror("Error writing $Volume");
|
2005-10-05 21:01:10 +08:00
|
|
|
goto err_out;
|
|
|
|
}
|
|
|
|
ret = 0; /* success */
|
|
|
|
err_out:
|
|
|
|
ntfs_attr_put_search_ctx(ctx);
|
|
|
|
err_exit:
|
2005-10-22 02:05:13 +08:00
|
|
|
free(m);
|
2005-10-05 21:01:10 +08:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2005-11-20 22:15:33 +08:00
|
|
|
/**
|
|
|
|
* set_dirty_flag
|
|
|
|
*/
|
2005-10-05 21:01:10 +08:00
|
|
|
static int set_dirty_flag(ntfs_volume *vol)
|
|
|
|
{
|
2007-06-08 18:47:57 +08:00
|
|
|
le16 flags;
|
2005-10-05 21:01:10 +08:00
|
|
|
|
2010-12-02 14:56:29 +08:00
|
|
|
/* Porting note: We test for the current state of VOLUME_IS_DIRTY. This
|
|
|
|
* should actually be more appropriate than testing for NVolWasDirty. */
|
|
|
|
if (vol->flags | VOLUME_IS_DIRTY)
|
2005-10-05 21:01:10 +08:00
|
|
|
return 0;
|
2005-11-20 22:15:33 +08:00
|
|
|
ntfs_log_info("Setting required flags on partition... ");
|
2005-10-05 21:01:10 +08:00
|
|
|
/*
|
|
|
|
* Set chkdsk flag, i.e. mark the partition dirty so chkdsk will run
|
|
|
|
* and fix it for us.
|
|
|
|
*/
|
|
|
|
flags = vol->flags | VOLUME_IS_DIRTY;
|
|
|
|
if (OLD_ntfs_volume_set_flags(vol, flags)) {
|
2005-11-20 22:15:33 +08:00
|
|
|
ntfs_log_info(FAILED);
|
|
|
|
ntfs_log_error("Error setting volume flags.\n");
|
2005-10-05 21:01:10 +08:00
|
|
|
return -1;
|
|
|
|
}
|
2006-11-28 18:09:56 +08:00
|
|
|
vol->flags = flags;
|
2005-10-05 21:01:10 +08:00
|
|
|
|
2010-12-02 16:26:00 +08:00
|
|
|
/* Porting note: libntfs-3g does not have the 'WasDirty' flag/property,
|
|
|
|
* and never touches the 'dirty' bit except when explicitly told to do
|
|
|
|
* so. Since we just wrote the VOLUME_IS_DIRTY bit to disk, and
|
|
|
|
* vol->flags is up-to-date, we can just ignore the NVolSetWasDirty
|
|
|
|
* statement. */
|
|
|
|
/* NVolSetWasDirty(vol); */
|
2005-10-05 21:01:10 +08:00
|
|
|
|
2005-11-20 22:15:33 +08:00
|
|
|
ntfs_log_info(OK);
|
2005-10-05 21:01:10 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2005-11-20 22:15:33 +08:00
|
|
|
/**
|
|
|
|
* empty_journal
|
|
|
|
*/
|
2005-02-21 06:20:54 +08:00
|
|
|
static int empty_journal(ntfs_volume *vol)
|
|
|
|
{
|
2006-11-28 18:09:56 +08:00
|
|
|
if (NVolLogFileEmpty(vol))
|
2005-02-21 06:20:54 +08:00
|
|
|
return 0;
|
2005-11-20 22:15:33 +08:00
|
|
|
ntfs_log_info("Going to empty the journal ($LogFile)... ");
|
2005-02-21 06:20:54 +08:00
|
|
|
if (ntfs_logfile_reset(vol)) {
|
2005-11-20 22:15:33 +08:00
|
|
|
ntfs_log_info(FAILED);
|
|
|
|
ntfs_log_perror("Failed to reset $LogFile");
|
2005-02-21 06:20:54 +08:00
|
|
|
return -1;
|
|
|
|
}
|
2005-11-20 22:15:33 +08:00
|
|
|
ntfs_log_info(OK);
|
2005-02-21 06:20:54 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2005-11-20 22:15:33 +08:00
|
|
|
/**
|
|
|
|
* fix_mftmirr
|
|
|
|
*/
|
2005-10-23 03:54:01 +08:00
|
|
|
static int fix_mftmirr(ntfs_volume *vol)
|
2002-11-29 20:16:35 +08:00
|
|
|
{
|
|
|
|
s64 l, br;
|
2005-10-23 03:54:01 +08:00
|
|
|
unsigned char *m, *m2;
|
|
|
|
int i, ret = -1; /* failure */
|
|
|
|
BOOL done;
|
2005-10-27 06:54:57 +08:00
|
|
|
|
2005-11-20 22:15:33 +08:00
|
|
|
ntfs_log_info("\nProcessing $MFT and $MFTMirr...\n");
|
2002-11-29 20:16:35 +08:00
|
|
|
|
|
|
|
/* Load data from $MFT and $MFTMirr and compare the contents. */
|
|
|
|
m = (u8*)malloc(vol->mftmirr_size << vol->mft_record_size_bits);
|
2005-10-23 03:54:01 +08:00
|
|
|
if (!m) {
|
2005-11-20 22:15:33 +08:00
|
|
|
ntfs_log_perror("Failed to allocate memory");
|
2005-10-23 03:54:01 +08:00
|
|
|
return -1;
|
|
|
|
}
|
2002-11-29 20:16:35 +08:00
|
|
|
m2 = (u8*)malloc(vol->mftmirr_size << vol->mft_record_size_bits);
|
2005-10-23 03:54:01 +08:00
|
|
|
if (!m2) {
|
2005-11-20 22:15:33 +08:00
|
|
|
ntfs_log_perror("Failed to allocate memory");
|
2005-10-23 03:54:01 +08:00
|
|
|
free(m);
|
|
|
|
return -1;
|
2002-11-29 20:16:35 +08:00
|
|
|
}
|
|
|
|
|
2005-11-20 22:15:33 +08:00
|
|
|
ntfs_log_info("Reading $MFT... ");
|
2002-11-29 20:16:35 +08:00
|
|
|
l = ntfs_attr_mst_pread(vol->mft_na, 0, vol->mftmirr_size,
|
|
|
|
vol->mft_record_size, m);
|
|
|
|
if (l != vol->mftmirr_size) {
|
2005-11-20 22:15:33 +08:00
|
|
|
ntfs_log_info(FAILED);
|
2002-11-29 20:16:35 +08:00
|
|
|
if (l != -1)
|
|
|
|
errno = EIO;
|
2005-11-20 22:15:33 +08:00
|
|
|
ntfs_log_perror("Failed to read $MFT");
|
2002-11-29 20:16:35 +08:00
|
|
|
goto error_exit;
|
|
|
|
}
|
2005-11-20 22:15:33 +08:00
|
|
|
ntfs_log_info(OK);
|
2002-11-29 20:16:35 +08:00
|
|
|
|
2005-11-20 22:15:33 +08:00
|
|
|
ntfs_log_info("Reading $MFTMirr... ");
|
2002-11-29 20:16:35 +08:00
|
|
|
l = ntfs_attr_mst_pread(vol->mftmirr_na, 0, vol->mftmirr_size,
|
|
|
|
vol->mft_record_size, m2);
|
|
|
|
if (l != vol->mftmirr_size) {
|
2005-11-20 22:15:33 +08:00
|
|
|
ntfs_log_info(FAILED);
|
2002-11-29 20:16:35 +08:00
|
|
|
if (l != -1)
|
|
|
|
errno = EIO;
|
2005-11-20 22:15:33 +08:00
|
|
|
ntfs_log_perror("Failed to read $MFTMirr");
|
2002-11-29 20:16:35 +08:00
|
|
|
goto error_exit;
|
|
|
|
}
|
2005-11-20 22:15:33 +08:00
|
|
|
ntfs_log_info(OK);
|
2002-11-29 20:16:35 +08:00
|
|
|
|
|
|
|
/*
|
|
|
|
* FIXME: Need to actually check the $MFTMirr for being real. Otherwise
|
|
|
|
* we might corrupt the partition if someone is experimenting with
|
|
|
|
* software RAID and the $MFTMirr is not actually in the position we
|
|
|
|
* expect it to be... )-:
|
|
|
|
* FIXME: We should emit a warning it $MFTMirr is damaged and ask
|
|
|
|
* user whether to recreate it from $MFT or whether to abort. - The
|
|
|
|
* warning needs to include the danger of software RAID arrays.
|
|
|
|
* Maybe we should go as far as to detect whether we are running on a
|
|
|
|
* MD disk and if yes then bomb out right at the start of the program?
|
|
|
|
*/
|
|
|
|
|
2005-11-20 22:15:33 +08:00
|
|
|
ntfs_log_info("Comparing $MFTMirr to $MFT... ");
|
2002-11-29 20:16:35 +08:00
|
|
|
done = FALSE;
|
|
|
|
for (i = 0; i < vol->mftmirr_size; ++i) {
|
2006-03-28 06:43:09 +08:00
|
|
|
MFT_RECORD *mrec, *mrec2;
|
2002-11-29 20:16:35 +08:00
|
|
|
const char *ESTR[12] = { "$MFT", "$MFTMirr", "$LogFile",
|
|
|
|
"$Volume", "$AttrDef", "root directory", "$Bitmap",
|
|
|
|
"$Boot", "$BadClus", "$Secure", "$UpCase", "$Extend" };
|
|
|
|
const char *s;
|
2006-03-28 06:43:09 +08:00
|
|
|
BOOL use_mirr;
|
2002-11-29 20:16:35 +08:00
|
|
|
|
|
|
|
if (i < 12)
|
|
|
|
s = ESTR[i];
|
|
|
|
else if (i < 16)
|
|
|
|
s = "system file";
|
|
|
|
else
|
|
|
|
s = "mft record";
|
|
|
|
|
2006-03-28 06:43:09 +08:00
|
|
|
use_mirr = FALSE;
|
|
|
|
mrec = (MFT_RECORD*)(m + i * vol->mft_record_size);
|
|
|
|
if (mrec->flags & MFT_RECORD_IN_USE) {
|
2007-06-08 18:47:57 +08:00
|
|
|
if (ntfs_is_baad_record(mrec->magic)) {
|
2006-03-28 06:43:09 +08:00
|
|
|
ntfs_log_info(FAILED);
|
|
|
|
ntfs_log_error("$MFT error: Incomplete multi "
|
|
|
|
"sector transfer detected in "
|
|
|
|
"%s.\nCannot handle this yet. "
|
|
|
|
")-:\n", s);
|
|
|
|
goto error_exit;
|
|
|
|
}
|
2007-06-08 18:47:57 +08:00
|
|
|
if (!ntfs_is_mft_record(mrec->magic)) {
|
2006-03-28 06:43:09 +08:00
|
|
|
ntfs_log_info(FAILED);
|
|
|
|
ntfs_log_error("$MFT error: Invalid mft "
|
|
|
|
"record for %s.\nCannot "
|
|
|
|
"handle this yet. )-:\n", s);
|
|
|
|
goto error_exit;
|
|
|
|
}
|
2002-11-29 20:16:35 +08:00
|
|
|
}
|
2006-03-28 06:43:09 +08:00
|
|
|
mrec2 = (MFT_RECORD*)(m2 + i * vol->mft_record_size);
|
|
|
|
if (mrec2->flags & MFT_RECORD_IN_USE) {
|
2007-06-08 18:47:57 +08:00
|
|
|
if (ntfs_is_baad_record(mrec2->magic)) {
|
2006-03-28 06:43:09 +08:00
|
|
|
ntfs_log_info(FAILED);
|
|
|
|
ntfs_log_error("$MFTMirr error: Incomplete "
|
|
|
|
"multi sector transfer "
|
|
|
|
"detected in %s.\n", s);
|
|
|
|
goto error_exit;
|
|
|
|
}
|
2007-06-08 18:47:57 +08:00
|
|
|
if (!ntfs_is_mft_record(mrec2->magic)) {
|
2006-03-28 06:43:09 +08:00
|
|
|
ntfs_log_info(FAILED);
|
|
|
|
ntfs_log_error("$MFTMirr error: Invalid mft "
|
|
|
|
"record for %s.\n", s);
|
|
|
|
goto error_exit;
|
|
|
|
}
|
|
|
|
/* $MFT is corrupt but $MFTMirr is ok, use $MFTMirr. */
|
|
|
|
if (!(mrec->flags & MFT_RECORD_IN_USE) &&
|
2007-06-08 18:47:57 +08:00
|
|
|
!ntfs_is_mft_record(mrec->magic))
|
2006-03-28 06:43:09 +08:00
|
|
|
use_mirr = TRUE;
|
2002-11-29 20:16:35 +08:00
|
|
|
}
|
2006-03-28 06:43:09 +08:00
|
|
|
if (memcmp(mrec, mrec2, ntfs_mft_record_get_data_size(mrec))) {
|
2002-11-29 20:16:35 +08:00
|
|
|
if (!done) {
|
|
|
|
done = TRUE;
|
2005-11-20 22:15:33 +08:00
|
|
|
ntfs_log_info(FAILED);
|
2002-11-29 20:16:35 +08:00
|
|
|
}
|
2006-03-28 06:43:09 +08:00
|
|
|
ntfs_log_info("Correcting differences in $MFT%s "
|
|
|
|
"record %d...", use_mirr ? "" : "Mirr",
|
|
|
|
i);
|
|
|
|
br = ntfs_mft_record_write(vol, i,
|
|
|
|
use_mirr ? mrec2 : mrec);
|
2002-11-29 20:16:35 +08:00
|
|
|
if (br) {
|
2005-11-20 22:15:33 +08:00
|
|
|
ntfs_log_info(FAILED);
|
2006-03-28 06:43:09 +08:00
|
|
|
ntfs_log_perror("Error correcting $MFT%s",
|
|
|
|
use_mirr ? "" : "Mirr");
|
2002-11-29 20:16:35 +08:00
|
|
|
goto error_exit;
|
|
|
|
}
|
2006-03-28 06:43:09 +08:00
|
|
|
ntfs_log_info(OK);
|
2002-11-29 20:16:35 +08:00
|
|
|
}
|
|
|
|
}
|
2006-03-28 06:43:09 +08:00
|
|
|
if (!done)
|
|
|
|
ntfs_log_info(OK);
|
|
|
|
ntfs_log_info("Processing of $MFT and $MFTMirr completed "
|
|
|
|
"successfully.\n");
|
2005-10-23 03:54:01 +08:00
|
|
|
ret = 0;
|
|
|
|
error_exit:
|
2002-11-29 20:16:35 +08:00
|
|
|
free(m);
|
|
|
|
free(m2);
|
2005-10-23 03:54:01 +08:00
|
|
|
return ret;
|
|
|
|
}
|
2002-11-29 20:16:35 +08:00
|
|
|
|
2005-11-20 22:15:33 +08:00
|
|
|
/**
|
|
|
|
* fix_mount
|
|
|
|
*/
|
2005-10-23 03:54:01 +08:00
|
|
|
static int fix_mount(void)
|
|
|
|
{
|
|
|
|
int ret = -1; /* failure */
|
|
|
|
ntfs_volume *vol;
|
|
|
|
struct ntfs_device *dev;
|
2005-10-27 06:54:57 +08:00
|
|
|
|
2005-11-20 22:15:33 +08:00
|
|
|
ntfs_log_info("Attempting to correct errors... ");
|
2005-10-23 03:54:01 +08:00
|
|
|
|
2006-11-28 18:09:56 +08:00
|
|
|
dev = ntfs_device_alloc(opt.volume, 0, &ntfs_device_default_io_ops,
|
|
|
|
NULL);
|
2005-10-23 03:54:01 +08:00
|
|
|
if (!dev) {
|
2005-11-20 22:15:33 +08:00
|
|
|
ntfs_log_info(FAILED);
|
|
|
|
ntfs_log_perror("Failed to allocate device");
|
2005-10-23 03:54:01 +08:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
vol = ntfs_volume_startup(dev, 0);
|
|
|
|
if (!vol) {
|
2005-11-20 22:15:33 +08:00
|
|
|
ntfs_log_info(FAILED);
|
|
|
|
ntfs_log_perror("Failed to startup volume");
|
|
|
|
ntfs_log_error("Volume is corrupt. You should run chkdsk.\n");
|
2005-10-23 03:54:01 +08:00
|
|
|
ntfs_device_free(dev);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
if (fix_mftmirr(vol) < 0)
|
|
|
|
goto error_exit;
|
2005-10-05 21:01:10 +08:00
|
|
|
if (set_dirty_flag(vol) < 0)
|
|
|
|
goto error_exit;
|
2005-02-21 06:20:54 +08:00
|
|
|
if (empty_journal(vol) < 0)
|
|
|
|
goto error_exit;
|
2005-10-23 03:54:01 +08:00
|
|
|
ret = 0;
|
|
|
|
error_exit:
|
2003-06-03 19:07:54 +08:00
|
|
|
/* ntfs_umount() will invoke ntfs_device_free() for us. */
|
2002-11-29 20:16:35 +08:00
|
|
|
if (ntfs_umount(vol, 0))
|
|
|
|
ntfs_umount(vol, 1);
|
2005-10-23 03:54:01 +08:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* main
|
|
|
|
*/
|
|
|
|
int main(int argc, char **argv)
|
|
|
|
{
|
|
|
|
ntfs_volume *vol;
|
|
|
|
unsigned long mnt_flags;
|
|
|
|
int ret = 1; /* failure */
|
|
|
|
BOOL force = FALSE;
|
|
|
|
|
2005-11-20 22:15:33 +08:00
|
|
|
ntfs_log_set_handler(ntfs_log_handler_outerr);
|
|
|
|
|
2005-10-23 03:54:01 +08:00
|
|
|
parse_options(argc, argv);
|
|
|
|
|
|
|
|
if (!ntfs_check_if_mounted(opt.volume, &mnt_flags)) {
|
|
|
|
if ((mnt_flags & NTFS_MF_MOUNTED) &&
|
|
|
|
!(mnt_flags & NTFS_MF_READONLY) && !force) {
|
2005-11-20 22:15:33 +08:00
|
|
|
ntfs_log_error("Refusing to operate on read-write "
|
2005-10-23 03:54:01 +08:00
|
|
|
"mounted device %s.\n", opt.volume);
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
} else
|
2005-11-20 22:15:33 +08:00
|
|
|
ntfs_log_perror("Failed to determine whether %s is mounted",
|
|
|
|
opt.volume);
|
2005-10-23 03:54:01 +08:00
|
|
|
/* Attempt a full mount first. */
|
2005-11-20 22:15:33 +08:00
|
|
|
ntfs_log_info("Mounting volume... ");
|
2005-02-20 03:34:37 +08:00
|
|
|
vol = ntfs_mount(opt.volume, 0);
|
2005-10-23 03:54:01 +08:00
|
|
|
if (vol) {
|
2005-11-20 22:15:33 +08:00
|
|
|
ntfs_log_info(OK);
|
|
|
|
ntfs_log_info("Processing of $MFT and $MFTMirr completed "
|
2005-10-23 03:54:01 +08:00
|
|
|
"successfully.\n");
|
|
|
|
} else {
|
2005-11-20 22:15:33 +08:00
|
|
|
ntfs_log_info(FAILED);
|
2005-10-23 03:54:01 +08:00
|
|
|
if (fix_mount() < 0)
|
|
|
|
exit(1);
|
|
|
|
vol = ntfs_mount(opt.volume, 0);
|
|
|
|
if (!vol) {
|
2005-11-20 22:15:33 +08:00
|
|
|
ntfs_log_perror("Remount failed");
|
2005-10-23 03:54:01 +08:00
|
|
|
exit(1);
|
|
|
|
}
|
2002-11-29 20:16:35 +08:00
|
|
|
}
|
2006-11-28 18:09:56 +08:00
|
|
|
/* So the unmount does not clear it again. */
|
2010-12-02 16:26:00 +08:00
|
|
|
|
|
|
|
/* Porting note: The WasDirty flag was set here to prevent ntfs_unmount
|
|
|
|
* from clearing the dirty bit (which might have been set in
|
|
|
|
* fix_mount()). So the intention is to leave the dirty bit set.
|
|
|
|
*
|
|
|
|
* libntfs-3g does not automatically set or clear dirty flags on
|
|
|
|
* mount/unmount, this means that the assumption that the dirty flag is
|
|
|
|
* now set does not hold. So we need to set it if not already set. */
|
|
|
|
if(!(vol->flags & VOLUME_IS_DIRTY) && ntfs_volume_write_flags(vol,
|
|
|
|
vol->flags | VOLUME_IS_DIRTY)) {
|
|
|
|
ntfs_log_error("Error: Failed to set volume dirty flag (%d "
|
|
|
|
"(%s))!\n", errno, strerror(errno));
|
|
|
|
}
|
2002-11-29 20:16:35 +08:00
|
|
|
|
|
|
|
/* Check NTFS version is ok for us (in $Volume) */
|
2005-11-20 22:15:33 +08:00
|
|
|
ntfs_log_info("NTFS volume version is %i.%i.\n", vol->major_ver,
|
2002-11-29 20:16:35 +08:00
|
|
|
vol->minor_ver);
|
2002-12-10 19:53:41 +08:00
|
|
|
if (ntfs_version_is_supported(vol)) {
|
2005-11-20 22:15:33 +08:00
|
|
|
ntfs_log_error("Error: Unknown NTFS version.\n");
|
2002-11-29 20:16:35 +08:00
|
|
|
goto error_exit;
|
|
|
|
}
|
|
|
|
if (vol->major_ver >= 3) {
|
2006-11-28 18:09:56 +08:00
|
|
|
/*
|
|
|
|
* FIXME: If on NTFS 3.0+, check for presence of the usn
|
|
|
|
* journal and stamp it if present.
|
|
|
|
*/
|
2002-11-29 20:16:35 +08:00
|
|
|
}
|
2006-11-28 18:09:56 +08:00
|
|
|
/* FIXME: We should be marking the quota out of date, too. */
|
2002-11-29 20:16:35 +08:00
|
|
|
/* That's all for now! */
|
2005-11-20 22:15:33 +08:00
|
|
|
ntfs_log_info("NTFS partition %s was processed successfully.\n",
|
2003-06-03 19:07:54 +08:00
|
|
|
vol->dev->d_name);
|
2002-11-29 20:16:35 +08:00
|
|
|
/* Set return code to 0. */
|
2005-10-23 03:54:01 +08:00
|
|
|
ret = 0;
|
2002-11-29 20:16:35 +08:00
|
|
|
error_exit:
|
2005-10-23 03:54:01 +08:00
|
|
|
if (ntfs_umount(vol, 0))
|
|
|
|
ntfs_umount(vol, 1);
|
2011-02-08 20:52:12 +08:00
|
|
|
if (ret)
|
|
|
|
exit(ret);
|
2005-10-23 03:54:01 +08:00
|
|
|
return ret;
|
2002-11-29 20:16:35 +08:00
|
|
|
}
|
|
|
|
|