1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388
|
// This file is part of par2cmdline (a PAR 2.0 compatible file verification and
// repair tool). See http://parchive.sourceforge.net for details of PAR 2.0.
//
// Copyright (c) 2003 Peter Brian Clements
//
// par2cmdline 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.
//
// par2cmdline 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; if not, write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
#include "par2cmdline.h"
#ifdef _MSC_VER
#ifdef _DEBUG
#undef THIS_FILE
static char THIS_FILE[]=__FILE__;
#define new DEBUG_NEW
#endif
#endif
static u32 smartpar11 = 0x03000101;
Par1Repairer::Par1Repairer(void)
{
filelist = 0;
filelistsize = 0;
blocksize = 0;
completefilecount = 0;
renamedfilecount = 0;
damagedfilecount = 0;
missingfilecount = 0;
inputbuffer = 0;
outputbuffer = 0;
noiselevel = CommandLine::nlNormal;
}
Par1Repairer::~Par1Repairer(void)
{
map<u32,DataBlock*>::iterator i = recoveryblocks.begin();
while (i != recoveryblocks.end())
{
DataBlock *datablock = i->second;
delete datablock;
++i;
}
vector<Par1RepairerSourceFile*>::iterator sourceiterator = sourcefiles.begin();
while (sourceiterator != sourcefiles.end())
{
Par1RepairerSourceFile *sourcefile = *sourceiterator;
delete sourcefile;
++sourceiterator;
}
sourceiterator = extrafiles.begin();
while (sourceiterator != extrafiles.end())
{
Par1RepairerSourceFile *sourcefile = *sourceiterator;
delete sourcefile;
++sourceiterator;
}
delete [] filelist;
}
Result Par1Repairer::Process(const CommandLine &commandline, bool dorepair)
{
// How noisy should we be
noiselevel = commandline.GetNoiseLevel();
// Get filesnames from the command line
string par1filename = commandline.GetParFilename();
const list<CommandLine::ExtraFile> &extrafiles = commandline.GetExtraFiles();
// Determine the searchpath from the location of the main PAR file
string name;
DiskFile::SplitFilename(par1filename, searchpath, name);
// Load the main PAR file
if (!LoadRecoveryFile(searchpath + name))
return eLogicError;
// Load other PAR files related to the main PAR file
if (!LoadOtherRecoveryFiles(par1filename))
return eLogicError;
// Load any extra PAR files specified on the command line
if (!LoadExtraRecoveryFiles(extrafiles))
return eLogicError;
if (noiselevel > CommandLine::nlQuiet)
cout << endl << "Verifying source files:" << endl << endl;
// Check for the existence of and verify each of the source files
if (!VerifySourceFiles())
return eFileIOError;
if (completefilecount<sourcefiles.size())
{
if (noiselevel > CommandLine::nlQuiet)
cout << endl << "Scanning extra files:" << endl << endl;
// Check any other files specified on the command line to see if they are
// actually copies of the source files that have the wrong filename
if (!VerifyExtraFiles(extrafiles))
return eLogicError;
}
// Find out how much data we have found
UpdateVerificationResults();
if (noiselevel > CommandLine::nlSilent)
cout << endl;
// Check the verification results and report the details
if (!CheckVerificationResults())
return eRepairNotPossible;
// Are any of the files incomplete
if (completefilecount<sourcefiles.size())
{
// Do we want to carry out a repair
if (dorepair)
{
if (noiselevel > CommandLine::nlSilent)
cout << endl;
// Rename any damaged or missnamed target files.
if (!RenameTargetFiles())
return eFileIOError;
// Are we still missing any files
if (completefilecount<sourcefiles.size())
{
// Work out which files are being repaired, create them, and allocate
// target DataBlocks to them, and remember them for later verification.
if (!CreateTargetFiles())
return eFileIOError;
// Work out which data blocks are available, which need to be recreated,
// and compute the appropriate Reed Solomon matrix.
if (!ComputeRSmatrix())
{
// Delete all of the partly reconstructed files
DeleteIncompleteTargetFiles();
return eFileIOError;
}
// Allocate memory buffers for reading and writing data to disk.
if (!AllocateBuffers(commandline.GetMemoryLimit()))
{
// Delete all of the partly reconstructed files
DeleteIncompleteTargetFiles();
return eMemoryError;
}
if (noiselevel > CommandLine::nlSilent)
cout << endl;
// Set the total amount of data to be processed.
progress = 0;
totaldata = blocksize * sourcefiles.size() * verifylist.size();
// Start at an offset of 0 within a block.
u64 blockoffset = 0;
while (blockoffset < blocksize) // Continue until the end of the block.
{
// Work out how much data to process this time.
size_t blocklength = (size_t)min((u64)chunksize, blocksize-blockoffset);
// Read source data, process it through the RS matrix and write it to disk.
if (!ProcessData(blockoffset, blocklength))
{
// Delete all of the partly reconstructed files
DeleteIncompleteTargetFiles();
return eFileIOError;
}
// Advance to the need offset within each block
blockoffset += blocklength;
}
if (noiselevel > CommandLine::nlSilent)
cout << endl << "Verifying repaired files:" << endl << endl;
// Verify that all of the reconstructed target files are now correct
if (!VerifyTargetFiles())
{
// Delete all of the partly reconstructed files
DeleteIncompleteTargetFiles();
return eFileIOError;
}
}
// Are all of the target files now complete?
if (completefilecount<sourcefiles.size())
{
cerr << "Repair Failed." << endl;
return eRepairFailed;
}
else
{
if (noiselevel > CommandLine::nlSilent)
cout << endl << "Repair complete." << endl;
}
}
else
{
return eRepairPossible;
}
}
return eSuccess;
}
bool Par1Repairer::LoadRecoveryFile(string filename)
{
// Skip the file if it has already been processed
if (diskfilemap.Find(filename) != 0)
{
return true;
}
DiskFile *diskfile = new DiskFile;
// Open the file
if (!diskfile->Open(filename))
{
// If we could not open the file, ignore the error and
// proceed to the next file
delete diskfile;
return true;
}
if (noiselevel > CommandLine::nlSilent)
{
string path;
string name;
DiskFile::SplitFilename(filename, path, name);
cout << "Loading \"" << name << "\"." << endl;
}
bool havevolume = false;
u32 volumenumber = 0;
// How big is the file
u64 filesize = diskfile->FileSize();
if (filesize >= sizeof(PAR1FILEHEADER))
{
// Allocate a buffer to read data into
size_t buffersize = (size_t)min((u64)1048576, filesize);
u8 *buffer = new u8[buffersize];
do
{
PAR1FILEHEADER fileheader;
if (!diskfile->Read(0, &fileheader, sizeof(fileheader)))
break;
// Is this really a PAR file?
if (fileheader.magic != par1_magic)
break;
// Is the version number correct?
if (fileheader.fileversion != 0x00010000)
break;
ignore16kfilehash = (fileheader.programversion == smartpar11);
// Prepare to carry out MD5 Hash check of the Control Hash
MD5Context context;
u64 offset = offsetof(PAR1FILEHEADER, sethash);
// Process until the end of the file is reached
while (offset < filesize)
{
// How much data should we read?
size_t want = (size_t)min((u64)buffersize, filesize-offset);
if (!diskfile->Read(offset, buffer, want))
break;
context.Update(buffer, want);
offset += want;
}
// Did we read the whole file
if (offset < filesize)
break;
// Compute the hash value
MD5Hash hash;
context.Final(hash);
// Is it correct?
if (hash != fileheader.controlhash)
break;
// Check that the volume number is ok
if (fileheader.volumenumber >= 256)
break;
// Are there any files?
if (fileheader.numberoffiles == 0 ||
fileheader.filelistoffset < sizeof(PAR1FILEHEADER) ||
fileheader.filelistsize == 0)
break;
// Verify that the file list and data offsets are ok
if ((fileheader.filelistoffset + fileheader.filelistsize > filesize)
||
(fileheader.datasize && (fileheader.dataoffset < sizeof(fileheader) || fileheader.dataoffset + fileheader.datasize > filesize))
||
(fileheader.datasize && (((fileheader.filelistoffset <= fileheader.dataoffset) && (fileheader.dataoffset < fileheader.filelistoffset+fileheader.filelistsize)) || fileheader.dataoffset <= (fileheader.filelistoffset && (fileheader.filelistoffset) < (fileheader.dataoffset + fileheader.datasize)))))
break;
// Check the size of the file list
if (fileheader.filelistsize > 200000)
break;
// If we already have a copy of the file list, make sure this one has the same size
if (filelist != 0 && filelistsize != fileheader.filelistsize)
break;
// Allocate a buffer to hold a copy of the file list
unsigned char *temp = new unsigned char[(size_t)fileheader.filelistsize];
// Read the file list into the buffer
if (!diskfile->Read(fileheader.filelistoffset, temp, (size_t)fileheader.filelistsize))
{
delete [] temp;
break;
}
// If we already have a copy of the file list, make sure this copy is identical
if (filelist != 0)
{
bool match = (0 == memcmp(filelist, temp, filelistsize));
delete [] temp;
if (!match)
break;
}
else
{
// Prepare to scan the file list
unsigned char *current = temp;
size_t remaining = (size_t)fileheader.filelistsize;
unsigned int fileindex = 0;
// Allocate a buffer to copy each file entry into so that
// all fields will be correctly aligned in memory.
PAR1FILEENTRY *fileentry = (PAR1FILEENTRY*)new u64[(remaining + sizeof(u64)-1)/sizeof(u64)];
// Process until we run out of files or data
while (remaining > 0 && fileindex < fileheader.numberoffiles)
{
// Copy fixed portion of file entry
memcpy((void*)fileentry, (void*)current, sizeof(PAR1FILEENTRY));
// Is there enough data remaining
if (remaining < sizeof(fileentry->entrysize) ||
remaining < fileentry->entrysize)
break;
// Check the length of the filename
if (fileentry->entrysize <= sizeof(PAR1FILEENTRY))
break;
// Check the file size
if (blocksize < fileentry->filesize)
blocksize = fileentry->filesize;
// Copy whole of file entry
memcpy((void*)fileentry, (void*)current, (size_t)(u64)fileentry->entrysize);
// Create source file and add it to the appropriate list
Par1RepairerSourceFile *sourcefile = new Par1RepairerSourceFile(fileentry, searchpath);
if (fileentry->status & INPARITYVOLUME)
{
sourcefiles.push_back(sourcefile);
}
else
{
extrafiles.push_back(sourcefile);
}
remaining -= (size_t)fileentry->entrysize;
current += (size_t)fileentry->entrysize;
fileindex++;
}
delete [] (u64*)fileentry;
// Did we find the correct number of files
if (fileindex < fileheader.numberoffiles)
{
vector<Par1RepairerSourceFile*>::iterator i = sourcefiles.begin();
while (i != sourcefiles.end())
{
Par1RepairerSourceFile *sourcefile = *i;
delete sourcefile;
++i;
}
sourcefiles.clear();
i = extrafiles.begin();
while (i != extrafiles.end())
{
Par1RepairerSourceFile *sourcefile = *i;
delete sourcefile;
++i;
}
extrafiles.clear();
delete [] temp;
break;
}
filelist = temp;
filelistsize = (u32)fileheader.filelistsize;
}
// Is this a recovery volume?
if (fileheader.volumenumber > 0)
{
// Make sure there is data and that it is the correct size
if (fileheader.dataoffset == 0 || fileheader.datasize != blocksize)
break;
// What volume number is this?
volumenumber = (u32)(fileheader.volumenumber - 1);
// Do we already have this volume?
if (recoveryblocks.find(volumenumber) == recoveryblocks.end())
{
// Create a data block
DataBlock *datablock = new DataBlock;
datablock->SetLength(blocksize);
datablock->SetLocation(diskfile, fileheader.dataoffset);
// Store it in the map
recoveryblocks.insert(pair<u32, DataBlock*>(volumenumber, datablock));
havevolume = true;
}
}
} while (false);
delete [] buffer;
}
// We have finished with the file for now
diskfile->Close();
if (noiselevel > CommandLine::nlQuiet)
{
if (havevolume)
{
cout << "Loaded recovery volume " << volumenumber << endl;
}
else
{
cout << "No new recovery volumes found" << endl;
}
}
// Remember that the file was processed
bool success = diskfilemap.Insert(diskfile);
assert(success);
return true;
}
bool Par1Repairer::LoadOtherRecoveryFiles(string filename)
{
// Split the original PAR filename into path and name parts
string path;
string name;
DiskFile::SplitFilename(filename, path, name);
// Find the file extension
string::size_type where = name.find_last_of('.');
if (where != string::npos)
{
// remove it
name = name.substr(0, where);
}
// Search for additional PAR files
string wildcard = name + ".???";
list<string> *files = DiskFile::FindFiles(path, wildcard);
for (list<string>::const_iterator s=files->begin(); s!=files->end(); ++s)
{
string filename = *s;
// Find the file extension
where = filename.find_last_of('.');
if (where != string::npos)
{
string tail = filename.substr(where+1);
// Check the the file extension is the correct form
if ((tail[0] == 'P' || tail[0] == 'p') &&
(
((tail[1] == 'A' || tail[1] == 'a') && (tail[2] == 'R' || tail[2] == 'r'))
||
(isdigit(tail[1]) && isdigit(tail[2]))
))
{
LoadRecoveryFile(filename);
}
}
}
delete files;
return true;
}
// Load packets from any other PAR files whose names are given on the command line
bool Par1Repairer::LoadExtraRecoveryFiles(const list<CommandLine::ExtraFile> &extrafiles)
{
for (ExtraFileIterator i=extrafiles.begin(); i!=extrafiles.end(); i++)
{
string filename = i->FileName();
// Find the file extension
string::size_type where = filename.find_last_of('.');
if (where != string::npos)
{
string tail = filename.substr(where+1);
// Check the the file extension is the correct form
if ((tail[0] == 'P' || tail[0] == 'p') &&
(
((tail[1] == 'A' || tail[1] == 'a') && (tail[2] == 'R' || tail[2] == 'r'))
||
(isdigit(tail[1]) && isdigit(tail[2]))
))
{
LoadRecoveryFile(filename);
}
}
}
return true;
}
// Attempt to verify all of the source files
bool Par1Repairer::VerifySourceFiles(void)
{
bool finalresult = true;
u32 filenumber = 0;
vector<Par1RepairerSourceFile*>::iterator sourceiterator = sourcefiles.begin();
while (sourceiterator != sourcefiles.end())
{
Par1RepairerSourceFile *sourcefile = *sourceiterator;
string filename = sourcefile->FileName();
// Check to see if we have already used this file
if (diskfilemap.Find(filename) != 0)
{
// The file has already been used!
cerr << "Source file " << filenumber+1 << " is a duplicate." << endl;
return false;
}
DiskFile *diskfile = new DiskFile;
// Does the target file exist
if (diskfile->Open(filename))
{
// Yes. Record that fact.
sourcefile->SetTargetExists(true);
// Remember that the DiskFile is the target file
sourcefile->SetTargetFile(diskfile);
// Remember that we have processed this file
bool success = diskfilemap.Insert(diskfile);
assert(success);
// Do the actual verification
if (!VerifyDataFile(diskfile, sourcefile))
finalresult = false;
// We have finished with the file for now
diskfile->Close();
// Find out how much data we have found
UpdateVerificationResults();
}
else
{
// The file does not exist.
delete diskfile;
if (noiselevel > CommandLine::nlSilent)
{
string path;
string name;
DiskFile::SplitFilename(filename, path, name);
cout << "Target: \"" << name << "\" - missing." << endl;
}
}
++sourceiterator;
++filenumber;
}
return finalresult;
}
// Scan any extra files specified on the command line
bool Par1Repairer::VerifyExtraFiles(const list<CommandLine::ExtraFile> &extrafiles)
{
for (ExtraFileIterator i=extrafiles.begin();
i!=extrafiles.end() && completefilecount<sourcefiles.size();
++i)
{
string filename = i->FileName();
bool skip = false;
// Find the file extension
string::size_type where = filename.find_last_of('.');
if (where != string::npos)
{
string tail = filename.substr(where+1);
// Check the the file extension is the correct form
if ((tail[0] == 'P' || tail[0] == 'p') &&
(
((tail[1] == 'A' || tail[1] == 'a') && (tail[2] == 'R' || tail[2] == 'r'))
||
(isdigit(tail[1]) && isdigit(tail[2]))
))
{
skip = true;
}
}
if (!skip)
{
filename = DiskFile::GetCanonicalPathname(filename);
// Has this file already been dealt with
if (diskfilemap.Find(filename) == 0)
{
DiskFile *diskfile = new DiskFile;
// Does the file exist
if (!diskfile->Open(filename))
{
delete diskfile;
continue;
}
// Remember that we have processed this file
bool success = diskfilemap.Insert(diskfile);
assert(success);
// Do the actual verification
VerifyDataFile(diskfile, 0);
// Ignore errors
// We have finished with the file for now
diskfile->Close();
// Find out how much data we have found
UpdateVerificationResults();
}
}
}
return true;
}
bool Par1Repairer::VerifyDataFile(DiskFile *diskfile, Par1RepairerSourceFile *sourcefile)
{
Par1RepairerSourceFile *match = 0;
string path;
string name;
DiskFile::SplitFilename(diskfile->FileName(), path, name);
// How big is the file we are checking
u64 filesize = diskfile->FileSize();
if (filesize == 0)
return true;
// Search for the first file that is the correct size
vector<Par1RepairerSourceFile*>::iterator sourceiterator = sourcefiles.begin();
while (sourceiterator != sourcefiles.end() &&
filesize != (*sourceiterator)->FileSize())
{
++sourceiterator;
}
// Are there any files that are the correct size?
if (sourceiterator != sourcefiles.end())
{
// Allocate a buffer to compute the file hash
size_t buffersize = (size_t)min((u64)1048576, filesize);
char *buffer = new char[buffersize];
// Read the first 16k of the file
size_t want = (size_t)min((u64)16384, filesize);
if (!diskfile->Read(0, buffer, want))
{
delete [] buffer;
return false;
}
// Compute the MD5 hash of the first 16k
MD5Context contextfull;
contextfull.Update(buffer, want);
MD5Context context16k = contextfull;
MD5Hash hash16k;
context16k.Final(hash16k);
if (!ignore16kfilehash)
{
// Search for the first file that has the correct 16k hash
while (sourceiterator != sourcefiles.end() &&
(filesize != (*sourceiterator)->FileSize() ||
hash16k != (*sourceiterator)->Hash16k()))
{
++sourceiterator;
}
}
// Are there any files with the correct 16k hash?
if (sourceiterator != sourcefiles.end())
{
// Compute the MD5 hash of the whole file
if (filesize > 16384)
{
u64 progress = 0;
u64 offset = 16384;
while (offset < filesize)
{
if (noiselevel > CommandLine::nlQuiet)
{
// Update a progress indicator
u32 oldfraction = (u32)(1000 * (progress) / filesize);
u32 newfraction = (u32)(1000 * (progress=offset) / filesize);
if (oldfraction != newfraction)
{
cout << "Scanning: \"" << name << "\": " << newfraction/10 << '.' << newfraction%10 << "%\r" << flush;
}
}
want = (size_t)min((u64)buffersize, filesize-offset);
if (!diskfile->Read(offset, buffer, want))
{
delete [] buffer;
return false;
}
contextfull.Update(buffer, want);
offset += want;
}
}
MD5Hash hashfull;
contextfull.Final(hashfull);
// Search for the first file that has the correct full hash
while (sourceiterator != sourcefiles.end() &&
(filesize != (*sourceiterator)->FileSize() ||
(!ignore16kfilehash && hash16k != (*sourceiterator)->Hash16k()) ||
hashfull != (*sourceiterator)->HashFull()))
{
++sourceiterator;
}
// Are there any files with the correct full hash?
if (sourceiterator != sourcefiles.end())
{
// If a source file was originally specified, check to see if it is a match
if (sourcefile != 0 &&
sourcefile->FileSize() == filesize &&
(ignore16kfilehash || sourcefile->Hash16k() == hash16k) &&
sourcefile->HashFull() == hashfull)
{
match = sourcefile;
}
else
{
// Search for a file which matches and has not already been matched
while (sourceiterator != sourcefiles.end() &&
(filesize != (*sourceiterator)->FileSize() ||
(!ignore16kfilehash && hash16k != (*sourceiterator)->Hash16k()) ||
hashfull != (*sourceiterator)->HashFull() ||
(*sourceiterator)->GetCompleteFile() != 0))
{
++sourceiterator;
}
// Did we find a match
if (sourceiterator != sourcefiles.end())
{
match = *sourceiterator;
}
}
}
}
delete [] buffer;
}
// Did we find a match
if (match != 0)
{
match->SetCompleteFile(diskfile);
if (noiselevel > CommandLine::nlSilent)
{
// Was the match the file we were originally looking for
if (match == sourcefile)
{
cout << "Target: \"" << name << "\" - found." << endl;
}
// Were we looking for a specific file
else if (sourcefile != 0)
{
string targetname;
DiskFile::SplitFilename(sourcefile->FileName(), path, targetname);
cout << "Target: \""
<< name
<< "\" - is a match for \""
<< targetname
<< "\"."
<< endl;
}
}
else
{
if (noiselevel > CommandLine::nlSilent)
{
string targetname;
DiskFile::SplitFilename(match->FileName(), path, targetname);
cout << "File: \""
<< name
<< "\" - is a match for \""
<< targetname
<< "\"."
<< endl;
}
}
}
else
{
if (noiselevel > CommandLine:: nlSilent)
cout << "File: \""
<< name
<< "\" - no data found."
<< endl;
}
return true;
}
void Par1Repairer::UpdateVerificationResults(void)
{
completefilecount = 0;
renamedfilecount = 0;
damagedfilecount = 0;
missingfilecount = 0;
vector<Par1RepairerSourceFile*>::iterator sf = sourcefiles.begin();
// Check the recoverable files
while (sf != sourcefiles.end())
{
Par1RepairerSourceFile *sourcefile = *sf;
// Was a perfect match for the file found
if (sourcefile->GetCompleteFile() != 0)
{
// Is it the target file or a different one
if (sourcefile->GetCompleteFile() == sourcefile->GetTargetFile())
{
completefilecount++;
}
else
{
renamedfilecount++;
}
}
else
{
// Does the target file exist
if (sourcefile->GetTargetExists())
{
damagedfilecount++;
}
else
{
missingfilecount++;
}
}
++sf;
}
}
bool Par1Repairer::CheckVerificationResults(void)
{
// Is repair needed
if (completefilecount < sourcefiles.size() ||
renamedfilecount > 0 ||
damagedfilecount > 0 ||
missingfilecount > 0)
{
if (noiselevel > CommandLine::nlSilent)
cout << "Repair is required." << endl;
if (noiselevel > CommandLine::nlQuiet)
{
if (renamedfilecount > 0) cout << renamedfilecount << " file(s) have the wrong name." << endl;
if (missingfilecount > 0) cout << missingfilecount << " file(s) are missing." << endl;
if (damagedfilecount > 0) cout << damagedfilecount << " file(s) exist but are damaged." << endl;
if (completefilecount > 0) cout << completefilecount << " file(s) are ok." << endl;
}
// Is repair possible
if (recoveryblocks.size() >= damagedfilecount+missingfilecount)
{
if (noiselevel > CommandLine::nlSilent)
cout << "Repair is possible." << endl;
if (noiselevel > CommandLine::nlQuiet)
{
if (recoveryblocks.size() > damagedfilecount+missingfilecount)
cout << "You have an excess of "
<< (u32)recoveryblocks.size() - (damagedfilecount+missingfilecount)
<< " recovery files." << endl;
if (damagedfilecount+missingfilecount > 0)
cout << damagedfilecount+missingfilecount
<< " recovery files will be used to repair." << endl;
else if (recoveryblocks.size())
cout << "None of the recovery files will be used for the repair." << endl;
}
return true;
}
else
{
if (noiselevel > CommandLine::nlSilent)
{
cout << "Repair is not possible." << endl;
cout << "You need " << damagedfilecount+missingfilecount - recoveryblocks.size()
<< " more recovery files to be able to repair." << endl;
}
return false;
}
}
else
{
if (noiselevel > CommandLine::nlSilent)
cout << "All files are correct, repair is not required." << endl;
return true;
}
return true;
}
bool Par1Repairer::RenameTargetFiles(void)
{
vector<Par1RepairerSourceFile*>::iterator sf = sourcefiles.begin();
// Rename any damaged target files
while (sf != sourcefiles.end())
{
Par1RepairerSourceFile *sourcefile = *sf;
// If the target file exists but is not a complete version of the file
if (sourcefile->GetTargetExists() &&
sourcefile->GetTargetFile() != sourcefile->GetCompleteFile())
{
DiskFile *targetfile = sourcefile->GetTargetFile();
// Rename it
diskfilemap.Remove(targetfile);
if (!targetfile->Rename())
return false;
bool success = diskfilemap.Insert(targetfile);
assert(success);
// We no longer have a target file
sourcefile->SetTargetExists(false);
sourcefile->SetTargetFile(0);
}
++sf;
}
sf = sourcefiles.begin();
// Rename any missnamed but complete versions of the files
while (sf != sourcefiles.end())
{
Par1RepairerSourceFile *sourcefile = *sf;
// If there is no targetfile and there is a complete version
if (sourcefile->GetTargetFile() == 0 &&
sourcefile->GetCompleteFile() != 0)
{
DiskFile *targetfile = sourcefile->GetCompleteFile();
// Rename it
diskfilemap.Remove(targetfile);
if (!targetfile->Rename(sourcefile->FileName()))
return false;
bool success = diskfilemap.Insert(targetfile);
assert(success);
// This file is now the target file
sourcefile->SetTargetExists(true);
sourcefile->SetTargetFile(targetfile);
// We have one more complete file
completefilecount++;
}
++sf;
}
return true;
}
// Work out which files are being repaired, create them, and allocate
// target DataBlocks to them, and remember them for later verification.
bool Par1Repairer::CreateTargetFiles(void)
{
vector<Par1RepairerSourceFile*>::iterator sf = sourcefiles.begin();
// Create any missing target files
while (sf != sourcefiles.end())
{
Par1RepairerSourceFile *sourcefile = *sf;
// If the file does not exist
if (!sourcefile->GetTargetExists())
{
DiskFile *targetfile = new DiskFile;
string filename = sourcefile->FileName();
u64 filesize = sourcefile->FileSize();
// Create the target file
if (!targetfile->Create(filename, filesize))
{
delete targetfile;
return false;
}
// This file is now the target file
sourcefile->SetTargetExists(true);
sourcefile->SetTargetFile(targetfile);
// Remember this file
bool success = diskfilemap.Insert(targetfile);
assert(success);
sourcefile->SetTargetBlock(targetfile);
// Add the file to the list of those that will need to be verified
// once the repair has completed.
verifylist.push_back(sourcefile);
}
++sf;
}
return true;
}
// Work out which data blocks are available, which need to be recreated,
// and compute the appropriate Reed Solomon matrix.
bool Par1Repairer::ComputeRSmatrix(void)
{
inputblocks.resize(sourcefiles.size()); // The DataBlocks that will read from disk
outputblocks.resize(verifylist.size()); // Those DataBlocks that will re recalculated
vector<DataBlock*>::iterator inputblock = inputblocks.begin();
vector<DataBlock*>::iterator outputblock = outputblocks.begin();
// Build an array listing which source data blocks are present and which are missing
vector<bool> present;
present.resize(sourcefiles.size());
vector<Par1RepairerSourceFile*>::iterator sourceiterator = sourcefiles.begin();
vector<bool>::iterator pres = present.begin();
// Iterate through all source files
while (sourceiterator != sourcefiles.end())
{
Par1RepairerSourceFile *sourcefile = *sourceiterator;
DataBlock *sourceblock = sourcefile->SourceBlock();
DataBlock *targetblock = sourcefile->TargetBlock();
// Was this block found
if (sourceblock->IsSet())
{
// Open the file the block was found in.
if (!sourceblock->Open())
{
return false;
}
// Record that the block was found
*pres = true;
// Add the block to the list of those which will be read
// as input (and which might also need to be copied).
*inputblock = sourceblock;
++inputblock;
}
else
{
// Record that the block was missing
*pres = false;
// Add the block to the list of those to be written
*outputblock = targetblock;
++outputblock;
}
++sourceiterator;
++pres;
}
// Set the number of source blocks and which of them are present
if (!rs.SetInput(present))
{
return false;
}
// Start iterating through the available recovery packets
map<u32, DataBlock*>::iterator recoveryiterator = recoveryblocks.begin();
// Continue to fill the remaining list of data blocks to be read
while (inputblock != inputblocks.end())
{
// Get the next available recovery block
u32 exponent = recoveryiterator->first;
DataBlock *recoveryblock = recoveryiterator->second;
// Make sure the file is open
if (!recoveryblock->Open())
{
return false;
}
// Add the recovery block to the list of blocks that will be read
*inputblock = recoveryblock;
// Record that the corresponding exponent value is the next one
// to use in the RS matrix
if (!rs.SetOutput(true, (u16)exponent))
{
return false;
}
++inputblock;
++recoveryiterator;
}
// If we need to, compute and solve the RS matrix
if (verifylist.size() == 0)
{
return true;
}
bool success = rs.Compute(noiselevel);
return success;
}
// Allocate memory buffers for reading and writing data to disk.
bool Par1Repairer::AllocateBuffers(size_t memorylimit)
{
// Would single pass processing use too much memory
if (blocksize * verifylist.size() > memorylimit)
{
// Pick a size that is small enough
chunksize = ~3 & (memorylimit / verifylist.size());
}
else
{
chunksize = (size_t)blocksize;
}
// Allocate the two buffers
inputbuffersize = (size_t)chunksize;
inputbuffer = new u8[inputbuffersize];
outputbufferalignment = (inputbuffersize + sizeof(u32)-1) & ~(sizeof(u32)-1);
outputbuffersize = outputbufferalignment * verifylist.size();
outputbuffer = new u8[outputbuffersize];
if (inputbuffer == NULL || outputbuffer == NULL)
{
cerr << "Could not allocate buffer memory." << endl;
return false;
}
return true;
}
// Read source data, process it through the RS matrix and write it to disk.
bool Par1Repairer::ProcessData(u64 blockoffset, size_t blocklength)
{
u64 totalwritten = 0;
// Clear the output buffer
memset(outputbuffer, 0, outputbuffersize);
vector<DataBlock*>::iterator inputblock = inputblocks.begin();
u32 inputindex = 0;
// Are there any blocks which need to be reconstructed
if (verifylist.size() > 0)
{
// For each input block
while (inputblock != inputblocks.end())
{
// Read data from the current input block
if (!(*inputblock)->ReadData(blockoffset, blocklength, inputbuffer))
return false;
// For each output block
for (u32 outputindex=0; outputindex<verifylist.size(); outputindex++)
{
// Select the appropriate part of the output buffer
void *outbuf = &outputbuffer[outputbufferalignment * outputindex];
// Process the data
rs.Process(blocklength, inputindex, inputbuffer, outputindex, outbuf);
if (noiselevel > CommandLine::nlQuiet)
{
// Update a progress indicator
u32 oldfraction = (u32)(1000 * progress / totaldata);
progress += blocklength;
u32 newfraction = (u32)(1000 * progress / totaldata);
if (oldfraction != newfraction)
{
cout << "Repairing: " << newfraction/10 << '.' << newfraction%10 << "%\r" << flush;
}
}
}
++inputblock;
++inputindex;
}
}
if (noiselevel > CommandLine::nlQuiet)
cout << "Writing recovered data\r";
// For each output block that has been recomputed
vector<DataBlock*>::iterator outputblock = outputblocks.begin();
for (u32 outputindex=0; outputindex<verifylist.size();outputindex++)
{
// Select the appropriate part of the output buffer
char *outbuf = &((char*)outputbuffer)[outputbufferalignment * outputindex];
// Write the data to the target file
size_t wrote;
if (!(*outputblock)->WriteData(blockoffset, blocklength, outbuf, wrote))
return false;
totalwritten += wrote;
++outputblock;
}
if (noiselevel > CommandLine::nlQuiet)
cout << "Wrote " << totalwritten << " bytes to disk" << endl;
return true;
}
// Verify that all of the reconstructed target files are now correct
bool Par1Repairer::VerifyTargetFiles(void)
{
bool finalresult = true;
// Verify the target files in alphabetical order
// sort(verifylist.begin(), verifylist.end(), SortSourceFilesByFileName);
// Iterate through each file in the verification list
for (list<Par1RepairerSourceFile*>::iterator sf = verifylist.begin();
sf != verifylist.end();
++sf)
{
Par1RepairerSourceFile *sourcefile = *sf;
DiskFile *targetfile = sourcefile->GetTargetFile();
// Close the file
if (targetfile->IsOpen())
targetfile->Close();
// Say we don't have a complete version of the file
sourcefile->SetCompleteFile(0);
// Re-open the target file
if (!targetfile->Open())
{
finalresult = false;
continue;
}
// Verify the file again
if (!VerifyDataFile(targetfile, sourcefile))
finalresult = false;
// Close the file again
targetfile->Close();
// Find out how much data we have found
UpdateVerificationResults();
}
return finalresult;
}
// Delete all of the partly reconstructed files
bool Par1Repairer::DeleteIncompleteTargetFiles(void)
{
list<Par1RepairerSourceFile*>::iterator sf = verifylist.begin();
// Iterate through each file in the verification list
while (sf != verifylist.end())
{
Par1RepairerSourceFile *sourcefile = *sf;
if (sourcefile->GetTargetExists())
{
DiskFile *targetfile = sourcefile->GetTargetFile();
// Close and delete the file
if (targetfile->IsOpen())
targetfile->Close();
targetfile->Delete();
// Forget the file
diskfilemap.Remove(targetfile);
delete targetfile;
// There is no target file
sourcefile->SetTargetExists(false);
sourcefile->SetTargetFile(0);
}
++sf;
}
return true;
}
|