628 lines
15 KiB
C
628 lines
15 KiB
C
/**
|
|
* ntfscluster - Part of the Linux-NTFS project.
|
|
*
|
|
* Copyright (c) 2002 Richard Russon <ntfs@flatcap.org>
|
|
*
|
|
* This utility will locate the owner of any given sector or cluster.
|
|
*
|
|
* 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
|
|
* distribution in the file COPYING); if not, write to the Free Software
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
*/
|
|
|
|
#include "config.h"
|
|
|
|
#include <stdio.h>
|
|
#include <errno.h>
|
|
#include <stdarg.h>
|
|
#include <getopt.h>
|
|
#include <string.h>
|
|
#include <stdlib.h>
|
|
|
|
#include "ntfscluster.h"
|
|
#include "types.h"
|
|
#include "attrib.h"
|
|
#include "utils.h"
|
|
#include "volume.h"
|
|
|
|
static const char *AUTHOR = "Richard Russon (FlatCap)";
|
|
static const char *EXEC_NAME = "ntfscluster";
|
|
static struct options opts;
|
|
|
|
GEN_PRINTF (Eprintf, stderr, NULL, FALSE)
|
|
GEN_PRINTF (Vprintf, stdout, &opts.verbose, TRUE)
|
|
GEN_PRINTF (Iprintf, stdout, &opts.quiet, FALSE)
|
|
|
|
/**
|
|
* Dprintf - Print debug messages
|
|
*/
|
|
#ifndef DEBUG
|
|
#define Dprintf(...)
|
|
#else
|
|
void Dprintf (const char *format, ...)
|
|
{
|
|
va_list va;
|
|
va_start (va, format);
|
|
vfprintf (stdout, format, va);
|
|
va_end (va);
|
|
}
|
|
#endif
|
|
/**
|
|
* version - Print version information about the program
|
|
*
|
|
* Print a copyright statement and a brief description of the program.
|
|
*
|
|
* Return: none
|
|
*/
|
|
void version (void)
|
|
{
|
|
Iprintf ("%s v%s Copyright (C) 2002 %s\n***XXX***on "
|
|
"an NTFS Volume\n\n%s is free software, released under the GNU "
|
|
"General Public License\nand you are welcome to redistribute "
|
|
"it under certain conditions.\n%s comes with ABSOLUTELY NO "
|
|
"WARRANTY; for details read the GNU\nGeneral Public License "
|
|
"to be found in the file COPYING in the main\nLinux-NTFS "
|
|
"distribution directory.\n\n",
|
|
EXEC_NAME, VERSION, AUTHOR, EXEC_NAME, EXEC_NAME);
|
|
}
|
|
|
|
/**
|
|
* usage - Print a list of the parameters to the program
|
|
*
|
|
* Print a list of the parameters and options for the program.
|
|
*
|
|
* Return: none
|
|
*/
|
|
void usage (void)
|
|
{
|
|
Iprintf ("Usage: %s [options] device\n"
|
|
" -i --info Print information about the volume\n"
|
|
" -c range --cluster range Look for objects in this range of clusters\n"
|
|
" -s range --sector range Look for objects in this range of sectors\n"
|
|
/* " -l --last Find the last file on the volume\n" */
|
|
"\n"
|
|
" -f --force Use less caution\n"
|
|
" -q --quiet Less output\n"
|
|
" -v --verbose More output\n"
|
|
" -V --version Version information\n"
|
|
" -h --help Print this help\n\n",
|
|
EXEC_NAME);
|
|
Iprintf ("Please report bugs to: linux-ntfs-dev@lists.sf.net\n\n");
|
|
}
|
|
|
|
/**
|
|
* parse_options - Read and validate the programs command line
|
|
*
|
|
* Read the command line, verify the syntax and parse the options.
|
|
* This function is very long, but quite simple.
|
|
*
|
|
* Return: 1 Success
|
|
* 0 Error, one or more problems
|
|
*/
|
|
int parse_options (int argc, char **argv)
|
|
{
|
|
static const char *sopt = "-c:fhiqs:vV"; // l
|
|
static const struct option lopt[] = {
|
|
{ "cluster", required_argument, NULL, 'c' },
|
|
{ "force", no_argument, NULL, 'f' },
|
|
{ "help", no_argument, NULL, 'h' },
|
|
{ "info", no_argument, NULL, 'i' },
|
|
//{ "last", no_argument, NULL, 'l' },
|
|
{ "quiet", no_argument, NULL, 'q' },
|
|
{ "sector", required_argument, NULL, 's' },
|
|
{ "verbose", no_argument, NULL, 'v' },
|
|
{ "version", no_argument, NULL, 'V' },
|
|
{ NULL, 0, NULL, 0 }
|
|
};
|
|
|
|
char c = -1;
|
|
int err = 0;
|
|
int ver = 0;
|
|
int help = 0;
|
|
|
|
opterr = 0; /* We'll handle the errors, thank you. */
|
|
|
|
opts.action = act_none;
|
|
opts.range_begin = -1;
|
|
opts.range_end = -1;
|
|
|
|
while ((c = getopt_long (argc, argv, sopt, lopt, NULL)) != -1) {
|
|
switch (c) {
|
|
case 1: /* A non-option argument */
|
|
if (!opts.device) {
|
|
opts.device = argv[optind-1];
|
|
} else {
|
|
opts.device = NULL;
|
|
err++;
|
|
}
|
|
break;
|
|
|
|
case 'c':
|
|
if ((opts.action == act_none) &&
|
|
(utils_parse_range (optarg, &opts.range_begin, &opts.range_end, FALSE)))
|
|
opts.action = act_cluster;
|
|
else
|
|
opts.action = act_error;
|
|
break;
|
|
case 'f':
|
|
opts.force++;
|
|
break;
|
|
case 'h':
|
|
help++;
|
|
break;
|
|
case 'i':
|
|
if (opts.action == act_none) {
|
|
opts.action = act_info;
|
|
} else {
|
|
opts.action = act_error;
|
|
err++;
|
|
}
|
|
break;
|
|
/*
|
|
case 'l':
|
|
if (opts.action == act_none)
|
|
opts.action = act_last;
|
|
else
|
|
opts.action = act_error;
|
|
break;
|
|
*/
|
|
case 'q':
|
|
opts.quiet++;
|
|
break;
|
|
case 's':
|
|
if ((opts.action == act_none) &&
|
|
(utils_parse_range (optarg, &opts.range_begin, &opts.range_end, FALSE)))
|
|
opts.action = act_sector;
|
|
else
|
|
opts.action = act_error;
|
|
break;
|
|
case 'v':
|
|
opts.verbose++;
|
|
break;
|
|
case 'V':
|
|
ver++;
|
|
break;
|
|
default:
|
|
if ((optopt == 'c') || (optopt == 's'))
|
|
Eprintf ("Option '%s' requires an argument.\n", argv[optind-1]);
|
|
else
|
|
Eprintf ("Unknown option '%s'.\n", argv[optind-1]);
|
|
err++;
|
|
break;
|
|
}
|
|
}
|
|
|
|
if (help || ver) {
|
|
opts.quiet = 0;
|
|
} else {
|
|
if (opts.action == act_none)
|
|
opts.action = act_info;
|
|
if (opts.action == act_info)
|
|
opts.quiet = 0;
|
|
|
|
if (opts.device == NULL) {
|
|
Eprintf ("You must specify exactly one device.\n");
|
|
err++;
|
|
}
|
|
|
|
if (opts.quiet && opts.verbose) {
|
|
Eprintf ("You may not use --quiet and --verbose at the same time.\n");
|
|
err++;
|
|
}
|
|
|
|
if (opts.action == act_error) {
|
|
Eprintf ("You may only specify one action: --info, --cluster, --sector or --last.\n");
|
|
err++;
|
|
} else if (opts.range_begin > opts.range_end) {
|
|
Eprintf ("The range must be in ascending order.\n");
|
|
err++;
|
|
}
|
|
}
|
|
|
|
if (ver)
|
|
version();
|
|
if (help || err)
|
|
usage();
|
|
|
|
return (!err && !help && !ver);
|
|
}
|
|
|
|
/**
|
|
* mftrec_in_use - Determine if a MFT Record is in use
|
|
* @vol: An ntfs volume obtained from ntfs_mount
|
|
* @mref: MFT Reference (inode number)
|
|
*
|
|
* The metadata file $BITMAP has one binary bit representing each record in the
|
|
* MFT. The bit will be set for each record that is in use. The function
|
|
* reads the relevant part of $BITMAP into a buffer and tests the bit.
|
|
*
|
|
* This function has a static buffer in which it caches a section of $BITMAP.
|
|
* If the mref, being tested, lies outside the range, the buffer will be
|
|
* refreshed.
|
|
*
|
|
* Return: 1 MFT Record is in use
|
|
* 0 MFT Record is unused
|
|
* -1 Error occurred
|
|
*/
|
|
int mftrec_in_use (ntfs_volume *vol, MFT_REF mref)
|
|
{
|
|
static u8 buffer[512];
|
|
static s64 bmpmref = -sizeof (buffer) - 1; /* Which bit of $BITMAP is in the buffer */
|
|
|
|
int byte, bit;
|
|
|
|
if (!vol)
|
|
return -1;
|
|
|
|
/* Does mref lie in the section of $Bitmap we already have cached? */
|
|
if ((mref < bmpmref) || (mref >= (bmpmref + (sizeof (buffer) << 3)))) {
|
|
Dprintf ("Bit lies outside cache.\n");
|
|
|
|
/* Mark the buffer as not in use, in case the read is shorter. */
|
|
memset (buffer, 0, sizeof (buffer));
|
|
bmpmref = mref & (~((sizeof (buffer) << 3) - 1));
|
|
|
|
if (ntfs_attr_pread (vol->mftbmp_na, (bmpmref>>3), sizeof (buffer), buffer) < 0) {
|
|
Eprintf ("Couldn't read $MFT/$BITMAP: %s\n", strerror (errno));
|
|
return -1;
|
|
}
|
|
|
|
Dprintf ("Reloaded bitmap buffer.\n");
|
|
}
|
|
|
|
bit = 1 << (mref & 7);
|
|
byte = (mref >> 3) & (sizeof (buffer) - 1);
|
|
Dprintf ("cluster = %lld, bmpmref = %lld, byte = %d, bit = %d, in use %d\n",
|
|
mref, bmpmref, byte, bit, buffer[byte] & bit);
|
|
|
|
return (buffer[byte] & bit);
|
|
}
|
|
|
|
|
|
/**
|
|
* get_inode_name
|
|
*
|
|
* using inode
|
|
* get filename
|
|
* add name to list
|
|
* get parent
|
|
* if parent is 5 (/) stop
|
|
* get inode of parent
|
|
*/
|
|
int get_inode_name (ntfs_inode *inode, char *buffer, int bufsize)
|
|
{
|
|
// XXX option: names = posix/win32 or dos
|
|
// flags: path, filename, or both
|
|
const int max_path = 20;
|
|
|
|
ntfs_volume *vol;
|
|
ntfs_attr_search_ctx *ctx;
|
|
ATTR_RECORD *rec;
|
|
FILE_NAME_ATTR *attr;
|
|
int name_space;
|
|
MFT_REF parent = FILE_root;
|
|
char *names[max_path + 1];
|
|
int i, len, offset = 0;
|
|
|
|
if (!inode || !buffer)
|
|
return 0;
|
|
|
|
vol = inode->vol;
|
|
|
|
//printf ("sizeof (char*) = %d, sizeof (names) = %d\n", sizeof (char*), sizeof (names));
|
|
memset (names, 0, sizeof (names));
|
|
memset (buffer, 0, bufsize); //XXX remove
|
|
|
|
for (i = 0; i < max_path; i++) {
|
|
|
|
ctx = ntfs_attr_get_search_ctx (inode, NULL);
|
|
if (!ctx) {
|
|
Eprintf ("Couldn't create a search context.\n");
|
|
return 0;
|
|
}
|
|
|
|
//printf ("i = %d, inode = %p (%lld)\n", i, inode, inode->mft_no);
|
|
|
|
name_space = 4;
|
|
while ((rec = find_attribute (AT_FILE_NAME, ctx))) {
|
|
/* We know this will always be resident. */
|
|
attr = (FILE_NAME_ATTR *) ((char *) rec + le16_to_cpu (rec->value_offset));
|
|
|
|
if (attr->file_name_type >= name_space) { //XXX find the ...
|
|
continue;
|
|
}
|
|
|
|
name_space = attr->file_name_type;
|
|
parent = attr->parent_directory;
|
|
|
|
if (names[i]) {
|
|
free (names[i]);
|
|
names[i] = NULL;
|
|
}
|
|
|
|
if (ntfs_ucstombs (attr->file_name, attr->file_name_length,
|
|
&names[i], attr->file_name_length) < 0) {
|
|
Eprintf ("Couldn't translate filename to current locale.\n");
|
|
// <MFT1234>?
|
|
}
|
|
|
|
//printf ("names[%d] %s\n", i, names[i]);
|
|
//printf ("parent = %lld\n", MREF (parent));
|
|
}
|
|
|
|
ntfs_attr_put_search_ctx(ctx);
|
|
if (MREF (parent) == FILE_root) {
|
|
//printf ("inode 5\n");
|
|
break;
|
|
}
|
|
|
|
if (i > 0) { /* Don't close the original inode */
|
|
ntfs_inode_close (inode);
|
|
}
|
|
|
|
inode = ntfs_inode_open (vol, parent);
|
|
if (!inode) {
|
|
//Eprintf ()
|
|
}
|
|
}
|
|
|
|
if (i >= max_path) {
|
|
// trouble
|
|
}
|
|
|
|
for (i = max_path; i >= 0; i--) {
|
|
if (!names[i])
|
|
continue;
|
|
|
|
len = snprintf (buffer + offset, bufsize - offset, "/%s", names[i]);
|
|
//printf ("len = %d, offset = %d\n", len, offset);
|
|
if (len >= (bufsize - offset)) {
|
|
Eprintf ("Pathname was truncated.\n");
|
|
break;
|
|
}
|
|
|
|
offset += len;
|
|
free (names[i]);
|
|
}
|
|
|
|
//printf ("Pathname: %s\n", buffer);
|
|
|
|
return 0;
|
|
}
|
|
|
|
/**
|
|
* get_attr_name
|
|
*/
|
|
int get_attr_name (ATTR_RECORD *attr, char *buffer, int bufsize)
|
|
{
|
|
static const char *attrs[] = {
|
|
NULL,
|
|
"$STANDARD_INFORMATION",
|
|
"$ATTRIBUTE_LIST",
|
|
"$FILE_NAME",
|
|
"$OBJECT_ID",
|
|
"$SECURITY_DESCRIPTOR",
|
|
"$VOLUME_NAME",
|
|
"$VOLUME_INFORMATION",
|
|
"$DATA",
|
|
"$INDEX_ROOT",
|
|
"$INDEX_ALLOCATION",
|
|
"$BITMAP",
|
|
"$REPARSE_POINT",
|
|
"$EA_INFORMATION",
|
|
"$EA",
|
|
"$PROPERTY_SET",
|
|
"$LOGGED_UTILITY_STREAM",
|
|
};
|
|
int len, offset = 0;
|
|
const char *name;
|
|
char *attr_name = NULL;
|
|
|
|
// flags: attr, name, or both
|
|
if (!attr || !buffer)
|
|
return 0;
|
|
|
|
memset (buffer, 0, bufsize); // XXX remove
|
|
|
|
if ((attr->type < 0x10) || (attr->type > 0x100) || (attr->type & 0x0F)) {
|
|
Eprintf ("Unknown attribute type 0x%02x\n", attr->type);
|
|
name = "<UNKNOWN>";
|
|
} else {
|
|
name = attrs[attr->type >> 4];
|
|
}
|
|
|
|
len = snprintf (buffer, bufsize, "%s", name);
|
|
if (len >= bufsize) {
|
|
Eprintf ("Attribute type was truncated.\n");
|
|
return 0;
|
|
}
|
|
|
|
offset += len;
|
|
|
|
if (!attr->name_length) {
|
|
return 0;
|
|
}
|
|
|
|
if (ntfs_ucstombs ((uchar_t *)((char *)attr + attr->name_offset),
|
|
attr->name_length, &attr_name, attr->name_length) < 0) {
|
|
Eprintf ("Couldn't translate attribute name to current locale.\n");
|
|
// <UNKNOWN>?
|
|
return 0;
|
|
}
|
|
|
|
snprintf (buffer + offset, bufsize - offset, "(%s)", attr_name);
|
|
free (attr_name);
|
|
|
|
return 0;
|
|
}
|
|
|
|
|
|
/**
|
|
* cluster_find
|
|
*/
|
|
int cluster_find (ntfs_volume *vol, LCN s_begin, LCN s_end)
|
|
{
|
|
int i;
|
|
int result = 1;
|
|
u8 *buffer;
|
|
|
|
if (!vol)
|
|
return 1;
|
|
|
|
buffer = malloc (vol->mft_record_size);
|
|
if (!buffer) {
|
|
Eprintf ("Couldn't allocate memory.\n");
|
|
return 1;
|
|
}
|
|
|
|
// first, is the cluster in use in $Bitmap?
|
|
|
|
for (i = 0; i < vol->nr_mft_records; i++) {
|
|
ntfs_inode *inode;
|
|
ntfs_attr_search_ctx *ctx;
|
|
|
|
if (!mftrec_in_use (vol, i)) {
|
|
//printf ("%d skipped\n", i);
|
|
continue;
|
|
}
|
|
|
|
inode = ntfs_inode_open (vol, i);
|
|
if (!inode) {
|
|
Eprintf ("Can't read inode %d\n", i);
|
|
goto free;
|
|
}
|
|
|
|
if (inode->nr_extents == -1) {
|
|
printf ("inode %d is an extent record\n", i);
|
|
goto close;
|
|
}
|
|
|
|
Vprintf ("Inode: %d\n", i);
|
|
ctx = ntfs_attr_get_search_ctx (inode, NULL);
|
|
|
|
if (ntfs_attr_lookup (AT_STANDARD_INFORMATION, NULL, 0, IGNORE_CASE, 0, NULL, 0, ctx) < 0) {
|
|
//printf ("extent inode\n");
|
|
continue;
|
|
}
|
|
ntfs_attr_reinit_search_ctx (ctx);
|
|
|
|
//printf ("Searching for cluster range %lld-%lld\n", s_begin, s_end);
|
|
while (ntfs_attr_lookup (AT_UNUSED, NULL, 0, IGNORE_CASE, 0, NULL, 0, ctx) >= 0) {
|
|
runlist_element *runs;
|
|
int j;
|
|
|
|
if (!ctx->attr->non_resident) {
|
|
//printf ("0x%02X ", ctx->attr->type);
|
|
continue;
|
|
}
|
|
|
|
runs = ntfs_mapping_pairs_decompress (vol, ctx->attr, NULL);
|
|
if (!runs) {
|
|
Eprintf ("Couldn't read the data runs.\n");
|
|
ntfs_inode_close (inode);
|
|
goto free;
|
|
}
|
|
|
|
Vprintf ("\t[0x%02X]\n", ctx->attr->type);
|
|
|
|
Vprintf ("\t\tVCN\tLCN\tLength\n");
|
|
for (j = 0; runs[j].length > 0; j++) {
|
|
LCN a_begin = runs[j].lcn;
|
|
LCN a_end = a_begin + runs[j].length - 1;
|
|
|
|
if (a_begin < 0)
|
|
continue; // sparse, discontiguous, etc
|
|
|
|
Vprintf ("\t\t%lld\t%lld-%lld (%lld)\n", runs[j].vcn, runs[j].lcn, runs[j].lcn + runs[j].length - 1, runs[j].length);
|
|
//Vprintf ("\t\t%lld\t%lld\t%lld\n", runs[j].vcn, runs[j].lcn, runs[j].length);
|
|
//dprint list
|
|
|
|
if ((a_begin > s_end) || (a_end < s_begin))
|
|
continue; // before or after search range
|
|
|
|
{
|
|
char buffer[256];
|
|
get_inode_name (inode, buffer, sizeof (buffer));
|
|
//XXX distinguish between file/dir
|
|
printf ("inode %d %s", i, buffer);
|
|
get_attr_name (ctx->attr, buffer, sizeof (buffer));
|
|
printf ("/%s\n", buffer);
|
|
//printf ("\n");
|
|
}
|
|
break;
|
|
}
|
|
}
|
|
|
|
ntfs_attr_put_search_ctx (ctx);
|
|
ctx = NULL;
|
|
close:
|
|
//printf ("\n");
|
|
ntfs_inode_close (inode);
|
|
}
|
|
free:
|
|
free (buffer);
|
|
result = 0;
|
|
return result;
|
|
}
|
|
|
|
/**
|
|
* main - Begin here
|
|
*
|
|
* Start from here.
|
|
*
|
|
* Return: 0 Success, the program worked
|
|
* 1 Error, something went wrong
|
|
*/
|
|
int main (int argc, char *argv[])
|
|
{
|
|
ntfs_volume *vol;
|
|
int result = 1;
|
|
|
|
if (!parse_options (argc, argv))
|
|
return 1;
|
|
|
|
utils_set_locale();
|
|
|
|
vol = utils_mount_volume (opts.device, MS_RDONLY, opts.force);
|
|
if (!vol)
|
|
return 1;
|
|
|
|
switch (opts.action) {
|
|
case act_sector:
|
|
Iprintf ("Searching for sector range %lld-%lld\n", opts.range_begin, opts.range_end);
|
|
/* Convert to clusters */
|
|
opts.range_begin <<= (vol->cluster_size_bits - vol->sector_size_bits);
|
|
opts.range_end <<= (vol->cluster_size_bits - vol->sector_size_bits);
|
|
result = cluster_find (vol, opts.range_begin, opts.range_end);
|
|
break;
|
|
case act_cluster:
|
|
Iprintf ("Searching for cluster range %lld-%lld\n", opts.range_begin, opts.range_end);
|
|
result = cluster_find (vol, opts.range_begin, opts.range_end);
|
|
break;
|
|
/*
|
|
case act_last:
|
|
printf ("Last\n");
|
|
break;
|
|
*/
|
|
case act_info:
|
|
default:
|
|
printf ("Info\n");
|
|
break;
|
|
}
|
|
|
|
ntfs_umount (vol, FALSE);
|
|
return result;
|
|
}
|
|
|