2003-01-20 06:01:18 +08:00
|
|
|
/**
|
2002-11-29 20:16:35 +08:00
|
|
|
* NtfsFix - Part of the Linux-NTFS project.
|
|
|
|
*
|
2003-01-19 00:02:37 +08:00
|
|
|
* Copyright (c) 2000-2003 Anton Altaparmakov.
|
2002-11-29 20:16:35 +08:00
|
|
|
*
|
|
|
|
* This utility will attempt to fix a partition that has been damaged by the
|
|
|
|
* current Linux-NTFS driver. It should be run after dismounting a NTFS
|
|
|
|
* partition that has been mounted read-write under Linux and before rebooting
|
|
|
|
* into Windows NT/2000. NtfsFix can be run even after Windows has had mounted
|
|
|
|
* the partition, but it might be too late and irreversible damage to the data
|
|
|
|
* might have been done already.
|
|
|
|
*
|
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"
|
|
|
|
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
#include "types.h"
|
|
|
|
#include "attrib.h"
|
|
|
|
#include "mft.h"
|
|
|
|
#include "disk_io.h"
|
|
|
|
#include "logfile.h"
|
|
|
|
|
2003-01-20 06:01:18 +08:00
|
|
|
/**
|
|
|
|
* main
|
|
|
|
*/
|
2002-11-29 20:16:35 +08:00
|
|
|
int main(int argc, char **argv)
|
|
|
|
{
|
|
|
|
s64 l, br;
|
|
|
|
const char *EXEC_NAME = "NtfsFix";
|
|
|
|
const char *OK = "OK";
|
|
|
|
const char *FAILED = "FAILED";
|
|
|
|
unsigned char *m = NULL, *m2 = NULL;
|
|
|
|
ntfs_volume *vol;
|
|
|
|
unsigned long mnt_flags;
|
|
|
|
int i;
|
|
|
|
u16 flags;
|
|
|
|
BOOL done, force = FALSE;
|
|
|
|
|
|
|
|
printf("\n");
|
|
|
|
if (argc != 2 || !argv[1]) {
|
|
|
|
printf("%s v%s - Attempt to fix an NTFS partition that "
|
|
|
|
"has been damaged by the\nLinux NTFS driver. Note that "
|
|
|
|
"you should run it every time after you have used\nthe "
|
|
|
|
"Linux NTFS driver to write to an NTFS partition to "
|
|
|
|
"prevent massive data\ncorruption from happening when "
|
|
|
|
"Windows mounts the partition.\nIMPORTANT: Run this "
|
|
|
|
"only *after* unmounting the partition in Linux but "
|
|
|
|
"*before*\nrebooting into Windows NT/2000/XP or you "
|
|
|
|
"*will* suffer! - You have been warned!\n\n"
|
|
|
|
/* Generic copyright / disclaimer. */
|
2003-01-19 00:02:37 +08:00
|
|
|
"Copyright (c) 2000-2003 Anton Altaparmakov.\n\n"
|
2002-11-29 20:16:35 +08:00
|
|
|
"%s is free software, released under the GNU "
|
|
|
|
"General Public License and you\nare welcome to "
|
|
|
|
"redistribute it under certain conditions.\n"
|
|
|
|
"%s comes with ABSOLUTELY NO WARRANTY; for details "
|
|
|
|
"read the file GNU\nGeneral Public License to be found "
|
|
|
|
"in the file COPYING in the main Linux-NTFS\n"
|
|
|
|
"distribution directory.\n\n"
|
|
|
|
/* Generic part ends here. */
|
|
|
|
"Syntax: ntfsfix partition_or_file_name\n"
|
|
|
|
" e.g. ntfsfix /dev/hda6\n\n", EXEC_NAME,
|
|
|
|
VERSION, EXEC_NAME, EXEC_NAME);
|
|
|
|
fprintf(stderr, "Error: incorrect syntax\n");
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
if (!ntfs_check_if_mounted(argv[1], &mnt_flags)) {
|
|
|
|
if ((mnt_flags & NTFS_MF_MOUNTED) &&
|
|
|
|
!(mnt_flags & NTFS_MF_READONLY) && !force) {
|
|
|
|
fprintf(stderr, "Refusing to operate on read-write "
|
|
|
|
"mounted device %s.\n", argv[1]);
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
} else
|
|
|
|
fprintf(stderr, "Failed to determine whether %s is mounted: "
|
|
|
|
"%s\n", argv[1], strerror(errno));
|
|
|
|
/* Attempt a full mount first. */
|
|
|
|
printf("Mounting volume... ");
|
|
|
|
vol = ntfs_mount(argv[1], 0);
|
|
|
|
if (vol) {
|
|
|
|
puts(OK);
|
|
|
|
printf("\nProcessing of $MFT and $MFTMirr completed "
|
|
|
|
"successfully.\n\n");
|
|
|
|
goto mount_ok;
|
|
|
|
}
|
|
|
|
puts(FAILED);
|
|
|
|
|
|
|
|
puts("Attempting to correct errors.");
|
|
|
|
|
2002-12-10 19:53:41 +08:00
|
|
|
vol = ntfs_volume_startup(argv[1], 0);
|
2002-11-29 20:16:35 +08:00
|
|
|
if (!vol) {
|
|
|
|
puts(FAILED);
|
|
|
|
perror("Failed to startup volume");
|
|
|
|
fprintf(stderr, "Volume is corrupt. You should run chkdsk.");
|
|
|
|
goto error_exit;
|
|
|
|
}
|
|
|
|
|
|
|
|
puts("Processing $MFT and $MFTMirr.");
|
|
|
|
|
|
|
|
/* Load data from $MFT and $MFTMirr and compare the contents. */
|
|
|
|
m = (u8*)malloc(vol->mftmirr_size << vol->mft_record_size_bits);
|
|
|
|
m2 = (u8*)malloc(vol->mftmirr_size << vol->mft_record_size_bits);
|
|
|
|
if (!m || !m2) {
|
|
|
|
perror("Failed to allocate memory");
|
|
|
|
goto error_exit;
|
|
|
|
}
|
|
|
|
|
|
|
|
printf("Reading $MFT... ");
|
|
|
|
l = ntfs_attr_mst_pread(vol->mft_na, 0, vol->mftmirr_size,
|
|
|
|
vol->mft_record_size, m);
|
|
|
|
if (l != vol->mftmirr_size) {
|
|
|
|
puts(FAILED);
|
|
|
|
if (l != -1)
|
|
|
|
errno = EIO;
|
|
|
|
perror("Failed to read $MFT");
|
|
|
|
goto error_exit;
|
|
|
|
}
|
|
|
|
puts(OK);
|
|
|
|
|
|
|
|
printf("Reading $MFTMirr... ");
|
|
|
|
l = ntfs_attr_mst_pread(vol->mftmirr_na, 0, vol->mftmirr_size,
|
|
|
|
vol->mft_record_size, m2);
|
|
|
|
if (l != vol->mftmirr_size) {
|
|
|
|
puts(FAILED);
|
|
|
|
if (l != -1)
|
|
|
|
errno = EIO;
|
|
|
|
perror("Failed to read $MFTMirr");
|
|
|
|
goto error_exit;
|
|
|
|
}
|
|
|
|
puts(OK);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* 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?
|
|
|
|
*/
|
|
|
|
|
|
|
|
printf("Comparing $MFTMirr to $MFT... ");
|
|
|
|
done = FALSE;
|
|
|
|
for (i = 0; i < vol->mftmirr_size; ++i) {
|
|
|
|
const char *ESTR[12] = { "$MFT", "$MFTMirr", "$LogFile",
|
|
|
|
"$Volume", "$AttrDef", "root directory", "$Bitmap",
|
|
|
|
"$Boot", "$BadClus", "$Secure", "$UpCase", "$Extend" };
|
|
|
|
const char *s;
|
|
|
|
|
|
|
|
if (i < 12)
|
|
|
|
s = ESTR[i];
|
|
|
|
else if (i < 16)
|
|
|
|
s = "system file";
|
|
|
|
else
|
|
|
|
s = "mft record";
|
|
|
|
|
2002-12-10 19:53:41 +08:00
|
|
|
if (ntfs_is_baad_recordp(m + i * vol->mft_record_size)) {
|
2002-11-29 20:16:35 +08:00
|
|
|
puts("FAILED");
|
|
|
|
fprintf(stderr, "$MFT error: Incomplete multi sector "
|
|
|
|
"transfer detected in %s.\nCannot "
|
|
|
|
"handle this yet. )-:\n", s);
|
|
|
|
goto error_exit;
|
|
|
|
}
|
2002-12-10 19:53:41 +08:00
|
|
|
if (!ntfs_is_mft_recordp(m + i * vol->mft_record_size)) {
|
2002-11-29 20:16:35 +08:00
|
|
|
puts("FAILED");
|
|
|
|
fprintf(stderr, "$MFT error: Invalid mft record for "
|
|
|
|
"%s.\nCannot handle this yet. )-:\n",
|
|
|
|
s);
|
|
|
|
goto error_exit;
|
|
|
|
}
|
2002-12-10 19:53:41 +08:00
|
|
|
if (ntfs_is_baad_recordp(m2 + i * vol->mft_record_size)) {
|
2002-11-29 20:16:35 +08:00
|
|
|
puts("FAILED");
|
|
|
|
fprintf(stderr, "$MFTMirr error: Incomplete multi "
|
|
|
|
"sector transfer detected in %s.\n", s);
|
|
|
|
goto error_exit;
|
|
|
|
}
|
2002-12-10 19:53:41 +08:00
|
|
|
if (!ntfs_is_mft_recordp(m2 + i * vol->mft_record_size)) {
|
2002-11-29 20:16:35 +08:00
|
|
|
puts("FAILED");
|
|
|
|
fprintf(stderr, "$MFTMirr error: Invalid mft record "
|
|
|
|
"for %s.\n", s);
|
|
|
|
goto error_exit;
|
|
|
|
}
|
|
|
|
if (memcmp((u8*)m + i * vol->mft_record_size, (u8*)m2 +
|
|
|
|
i * vol->mft_record_size,
|
2002-12-10 19:53:41 +08:00
|
|
|
ntfs_mft_record_get_data_size((MFT_RECORD*)(
|
2002-11-29 20:16:35 +08:00
|
|
|
(u8*)m + i * vol->mft_record_size)))) {
|
|
|
|
if (!done) {
|
|
|
|
done = TRUE;
|
|
|
|
puts(FAILED);
|
|
|
|
printf("Correcting differences in "
|
|
|
|
"$MFTMirr... ");
|
|
|
|
}
|
2002-12-09 17:42:12 +08:00
|
|
|
br = ntfs_mft_record_write(vol, i, (MFT_RECORD*)(m +
|
2002-11-29 20:16:35 +08:00
|
|
|
i * vol->mft_record_size));
|
|
|
|
if (br) {
|
|
|
|
puts(FAILED);
|
|
|
|
perror("Error correcting $MFTMirr");
|
|
|
|
goto error_exit;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
puts(OK);
|
|
|
|
|
|
|
|
free(m);
|
|
|
|
free(m2);
|
|
|
|
m = m2 = NULL;
|
|
|
|
|
|
|
|
printf("Processing of $MFT and $MFTMirr completed successfully.\n\n");
|
|
|
|
if (ntfs_umount(vol, 0))
|
|
|
|
ntfs_umount(vol, 1);
|
|
|
|
vol = ntfs_mount(argv[1], 0);
|
|
|
|
if (!vol) {
|
|
|
|
perror("Remount failed");
|
|
|
|
goto error_exit;
|
|
|
|
}
|
|
|
|
mount_ok:
|
|
|
|
m = NULL;
|
|
|
|
|
|
|
|
/* Check NTFS version is ok for us (in $Volume) */
|
|
|
|
printf("NTFS volume version is %i.%i.\n\n", vol->major_ver,
|
|
|
|
vol->minor_ver);
|
2002-12-10 19:53:41 +08:00
|
|
|
if (ntfs_version_is_supported(vol)) {
|
2002-12-02 02:54:13 +08:00
|
|
|
fprintf(stderr, "Error: Unknown NTFS version.\n");
|
2002-11-29 20:16:35 +08:00
|
|
|
goto error_exit;
|
|
|
|
}
|
|
|
|
|
|
|
|
printf("Setting required flags on partition... ");
|
|
|
|
/*
|
|
|
|
* 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 NTFS volume version >= 2.0 then set mounted on NT4 flag. */
|
|
|
|
if (vol->major_ver >= 2)
|
|
|
|
flags |= VOLUME_MOUNTED_ON_NT4;
|
2002-12-10 19:53:41 +08:00
|
|
|
if (ntfs_volume_set_flags(vol, flags)) {
|
2002-11-29 20:16:35 +08:00
|
|
|
puts(FAILED);
|
|
|
|
fprintf(stderr, "Error setting volume flags.\n");
|
|
|
|
goto error_exit;
|
|
|
|
}
|
|
|
|
puts(OK);
|
|
|
|
printf("\n");
|
|
|
|
|
|
|
|
printf("Going to empty the journal ($LogFile)... ");
|
2002-12-10 19:53:41 +08:00
|
|
|
if (ntfs_logfile_reset(vol)) {
|
2002-11-29 20:16:35 +08:00
|
|
|
puts(FAILED);
|
|
|
|
perror("Failed to reset $LogFile");
|
|
|
|
goto error_exit;
|
|
|
|
}
|
|
|
|
puts(OK);
|
|
|
|
printf("\n");
|
|
|
|
|
|
|
|
if (vol->major_ver >= 3) {
|
|
|
|
/* FIXME: If on NTFS 3.0+, check for presence of the usn journal and
|
|
|
|
disable it (if present) as Win2k might be unhappy otherwise and Bad
|
|
|
|
Things(TM) could happen depending on what applications are actually
|
|
|
|
using it for. */
|
|
|
|
}
|
|
|
|
|
|
|
|
/* FIXME: Should we be marking the quota out of date, too? */
|
|
|
|
|
|
|
|
/* That's all for now! */
|
|
|
|
printf("NTFS partition %s was processed successfully.\n",
|
|
|
|
vol->dev_name);
|
|
|
|
/* Set return code to 0. */
|
|
|
|
i = 0;
|
|
|
|
final_exit:
|
|
|
|
if (m)
|
|
|
|
free(m);
|
|
|
|
if (m2)
|
|
|
|
free(m2);
|
|
|
|
if (vol && ntfs_umount(vol, 0))
|
|
|
|
ntfs_umount(vol, 1);
|
|
|
|
return i;
|
|
|
|
error_exit:
|
|
|
|
i = 1;
|
|
|
|
goto final_exit;
|
|
|
|
}
|
|
|
|
|