summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStef Walter <stef@thewalter.net>2004-05-20 01:29:47 +0000
committerStef Walter <stef@thewalter.net>2004-05-20 01:29:47 +0000
commit5077703809c6ab8781e2b796678ee98b3212c45d (patch)
tree79e35e167c71195f5e67c236b83f9336f05fe1ff
parent005da26302a728810adc5e891aa172b9101f34ea (diff)
Support for files with uninitialized data
-rw-r--r--src/scrounge.c68
1 files changed, 54 insertions, 14 deletions
diff --git a/src/scrounge.c b/src/scrounge.c
index 66b608e..eb1ac10 100644
--- a/src/scrounge.c
+++ b/src/scrounge.c
@@ -147,7 +147,8 @@ void processMFTRecord(partitioninfo* pi, uint64 sector, uint32 flags)
uint64 parentSector;
uint64 dataSector;
uint16 rename = 0;
- uint64 fileSize;
+ uint64 dataSize = 0; /* Length of initialized file data */
+ uint64 sparseSize = 0; /* Length of sparse data following */
uint32 i;
bool haddata = false;
uint32 num;
@@ -297,11 +298,17 @@ void processMFTRecord(partitioninfo* pi, uint64 sector, uint32 flags)
if(attrhead->bNonResident)
{
nonres = (ntfs_attribnonresident*)attrhead;
- fileSize = nonres->cbAttribData;
+
+ if(nonres->cbInitData > nonres->cbAttribData)
+ RETWARNX("invalid file length.");
+
+ dataSize = nonres->cbInitData;
+ sparseSize = nonres->cbAttribData - nonres->cbInitData;
}
else
{
- fileSize = ntfsx_attribute_getresidentsize(attribdata);
+ dataSize = ntfsx_attribute_getresidentsize(attribdata);
+ sparseSize = 0;
}
}
@@ -327,7 +334,7 @@ void processMFTRecord(partitioninfo* pi, uint64 sector, uint32 flags)
if(write(ofile, data, length) != (int32)length)
RETWARN("couldn't write data to output file");
- fileSize -= length;
+ dataSize -= length;
}
/* For non resident data it's a bit more involved */
@@ -348,7 +355,7 @@ void processMFTRecord(partitioninfo* pi, uint64 sector, uint32 flags)
* data runs mapped for a file, so just cut out
* when that's the case
*/
- if(fileSize == 0)
+ if(dataSize == 0)
break;
/* Sparse clusters we just write zeros */
@@ -356,12 +363,12 @@ void processMFTRecord(partitioninfo* pi, uint64 sector, uint32 flags)
{
memset(cluster.data, 0, cluster.size);
- for(i = 0; i < datarun->length && fileSize; i++)
+ for(i = 0; i < datarun->length && dataSize; i++)
{
num = cluster.size;
- if(fileSize < 0xFFFFFFFF && num > (uint32)fileSize)
- num = (uint32)fileSize;
+ if(dataSize < 0xFFFFFFFF && num > (uint32)dataSize)
+ num = (uint32)dataSize;
#ifdef _DEBUG
if(g_verifyMode)
@@ -374,7 +381,7 @@ void processMFTRecord(partitioninfo* pi, uint64 sector, uint32 flags)
if(write(ofile, cluster.data, num) != (int32)num)
err(1, "couldn't write to output file: " FC_PRINTF, basics.filename);
- fileSize -= num;
+ dataSize -= num;
}
}
@@ -389,9 +396,9 @@ void processMFTRecord(partitioninfo* pi, uint64 sector, uint32 flags)
CLUSTER_TO_SECTOR(*pi, datarun->cluster + datarun->length));
}
- for(i = 0; i < datarun->length && fileSize; i++)
+ for(i = 0; i < datarun->length && dataSize; i++)
{
- num = min(cluster.size, (uint32)fileSize);
+ num = min(cluster.size, (uint32)dataSize);
dataSector = CLUSTER_TO_SECTOR(*pi, (datarun->cluster + i));
if(!ntfsx_cluster_read(&cluster, pi, dataSector, pi->device))
@@ -408,7 +415,7 @@ void processMFTRecord(partitioninfo* pi, uint64 sector, uint32 flags)
if(write(ofile, cluster.data, num) != (int32)num)
err(1, "couldn't write to output file: " FC_PRINTF, basics.filename);
- fileSize -= num;
+ dataSize -= num;
}
}
}
@@ -423,16 +430,49 @@ void processMFTRecord(partitioninfo* pi, uint64 sector, uint32 flags)
attribdata = NULL;
/* Cut out when there's extra clusters allocated */
- if(fileSize == 0)
+ if(dataSize == 0)
break;
}
if(!haddata)
RETWARNX("invalid mft record. no data attribute found");
- if(fileSize != 0)
+ if(dataSize != 0)
warnx("invalid mft record. couldn't find all data for file");
+ /*
+ * Now we write blanks for all the sparse non-inited data
+ * We might be able to just resize the file to the right
+ * size, but let's go the safe way and write out zeros
+ */
+
+ if(sparseSize > 0)
+ {
+ ntfsx_cluster_reserve(&cluster, pi);
+ memset(cluster.data, 0, cluster.size);
+
+ while(sparseSize > 0)
+ {
+ num = cluster.size;
+
+ if(sparseSize < 0xFFFFFFFF && num > (uint32)sparseSize)
+ num = (uint32)sparseSize;
+
+#ifdef _DEBUG
+ if(g_verifyMode)
+ {
+ if(compareFileData(ofile, cluster.data, num) != 0)
+ RETWARNX("verify failed. read file data wrong.");
+ }
+ else
+#endif
+ if(write(ofile, cluster.data, num) != (int32)num)
+ err(1, "couldn't write to output file: " FC_PRINTF, basics.filename);
+
+ sparseSize -= num;
+ }
+ }
+
close(ofile);
ofile = -1;