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
|
// distribution boxbackup-0.11rc2 (svn version: 2072)
//
// Copyright (c) 2003 - 2008
// Ben Summers and contributors. All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions
// are met:
//
// 1. Redistributions of source code must retain the above copyright
// notice, this list of conditions and the following disclaimer.
// 2. Redistributions in binary form must reproduce the above copyright
// notice, this list of conditions and the following disclaimer in the
// documentation and/or other materials provided with the distribution.
// 3. All use of this software and associated advertising materials must
// display the following acknowledgment:
// This product includes software developed by Ben Summers.
// 4. The names of the Authors may not be used to endorse or promote
// products derived from this software without specific prior written
// permission.
//
// [Where legally impermissible the Authors do not disclaim liability for
// direct physical injury or death caused solely by defects in the software
// unless it is modified by a third party.]
//
// THIS SOFTWARE IS PROVIDED BY THE AUTHORS ``AS IS'' AND ANY EXPRESS OR
// IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
// WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
// DISCLAIMED. IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY DIRECT,
// INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
// (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
// SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
// HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
// STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
// ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
// POSSIBILITY OF SUCH DAMAGE.
//
//
//
// --------------------------------------------------------------------------
//
// File
// Name: BackupStoreCheck.cpp
// Purpose: Check a store for consistency
// Created: 21/4/04
//
// --------------------------------------------------------------------------
#include "Box.h"
#include <stdio.h>
#include <string.h>
#include <unistd.h>
#include "BackupStoreCheck.h"
#include "StoreStructure.h"
#include "RaidFileRead.h"
#include "RaidFileWrite.h"
#include "autogen_BackupStoreException.h"
#include "BackupStoreObjectMagic.h"
#include "BackupStoreFile.h"
#include "BackupStoreDirectory.h"
#include "BackupStoreConstants.h"
#include "MemLeakFindOn.h"
// --------------------------------------------------------------------------
//
// Function
// Name: BackupStoreCheck::BackupStoreCheck(const std::string &, int, int32_t, bool, bool)
// Purpose: Constructor
// Created: 21/4/04
//
// --------------------------------------------------------------------------
BackupStoreCheck::BackupStoreCheck(const std::string &rStoreRoot, int DiscSetNumber, int32_t AccountID, bool FixErrors, bool Quiet)
: mStoreRoot(rStoreRoot),
mDiscSetNumber(DiscSetNumber),
mAccountID(AccountID),
mFixErrors(FixErrors),
mQuiet(Quiet),
mNumberErrorsFound(0),
mLastIDInInfo(0),
mpInfoLastBlock(0),
mInfoLastBlockEntries(0),
mLostDirNameSerial(0),
mLostAndFoundDirectoryID(0),
mBlocksUsed(0),
mBlocksInOldFiles(0),
mBlocksInDeletedFiles(0),
mBlocksInDirectories(0)
{
}
// --------------------------------------------------------------------------
//
// Function
// Name: BackupStoreCheck::~BackupStoreCheck()
// Purpose: Destructor
// Created: 21/4/04
//
// --------------------------------------------------------------------------
BackupStoreCheck::~BackupStoreCheck()
{
// Clean up
FreeInfo();
}
// --------------------------------------------------------------------------
//
// Function
// Name: BackupStoreCheck::Check()
// Purpose: Perform the check on the given account
// Created: 21/4/04
//
// --------------------------------------------------------------------------
void BackupStoreCheck::Check()
{
// Lock the account
{
std::string writeLockFilename;
StoreStructure::MakeWriteLockFilename(mStoreRoot, mDiscSetNumber, writeLockFilename);
bool gotLock = false;
int triesLeft = 8;
do
{
gotLock = mAccountLock.TryAndGetLock(writeLockFilename.c_str(), 0600 /* restrictive file permissions */);
if(!gotLock)
{
--triesLeft;
::sleep(1);
}
} while(!gotLock && triesLeft > 0);
if(!gotLock)
{
// Couldn't lock the account -- just stop now
if(!mQuiet)
{
BOX_ERROR("Failed to lock the account -- did not check.\nTry again later after the client has disconnected.\nAlternatively, forcibly kill the server.");
}
THROW_EXCEPTION(BackupStoreException, CouldNotLockStoreAccount)
}
}
if(!mQuiet && mFixErrors)
{
BOX_NOTICE("Will fix errors encountered during checking.");
}
// Phase 1, check objects
if(!mQuiet)
{
BOX_INFO("Checking store account ID " <<
BOX_FORMAT_ACCOUNT(mAccountID) << "...");
BOX_INFO("Phase 1, check objects...");
}
CheckObjects();
// Phase 2, check directories
if(!mQuiet)
{
BOX_INFO("Phase 2, check directories...");
}
CheckDirectories();
// Phase 3, check root
if(!mQuiet)
{
BOX_INFO("Phase 3, check root...");
}
CheckRoot();
// Phase 4, check unattached objects
if(!mQuiet)
{
BOX_INFO("Phase 4, fix unattached objects...");
}
CheckUnattachedObjects();
// Phase 5, fix bad info
if(!mQuiet)
{
BOX_INFO("Phase 5, fix unrecovered inconsistencies...");
}
FixDirsWithWrongContainerID();
FixDirsWithLostDirs();
// Phase 6, regenerate store info
if(!mQuiet)
{
BOX_INFO("Phase 6, regenerate store info...");
}
WriteNewStoreInfo();
// DUMP_OBJECT_INFO
if(mNumberErrorsFound > 0)
{
BOX_WARNING("Finished checking store account ID " <<
BOX_FORMAT_ACCOUNT(mAccountID) << ": " <<
mNumberErrorsFound << " errors found");
if(!mFixErrors)
{
BOX_WARNING("No changes to the store account "
"have been made.");
}
if(!mFixErrors && mNumberErrorsFound > 0)
{
BOX_WARNING("Run again with fix option to "
"fix these errors");
}
if(mFixErrors && mNumberErrorsFound > 0)
{
BOX_WARNING("You should now use bbackupquery "
"on the client machine to examine the store.");
if(mLostAndFoundDirectoryID != 0)
{
BOX_WARNING("A lost+found directory was "
"created in the account root.\n"
"This contains files and directories "
"which could not be matched to "
"existing directories.\n"\
"bbackupd will delete this directory "
"in a few days time.");
}
}
}
else
{
BOX_NOTICE("Finished checking store account ID " <<
BOX_FORMAT_ACCOUNT(mAccountID) << ": "
"no errors found");
}
}
// --------------------------------------------------------------------------
//
// Function
// Name: static TwoDigitHexToInt(const char *, int &)
// Purpose: Convert a two digit hex string to an int, returning whether it's valid or not
// Created: 21/4/04
//
// --------------------------------------------------------------------------
static inline bool TwoDigitHexToInt(const char *String, int &rNumberOut)
{
int n = 0;
// Char 0
if(String[0] >= '0' && String[0] <= '9')
{
n = (String[0] - '0') << 4;
}
else if(String[0] >= 'a' && String[0] <= 'f')
{
n = ((String[0] - 'a') + 0xa) << 4;
}
else
{
return false;
}
// Char 1
if(String[1] >= '0' && String[1] <= '9')
{
n |= String[1] - '0';
}
else if(String[1] >= 'a' && String[1] <= 'f')
{
n |= (String[1] - 'a') + 0xa;
}
else
{
return false;
}
// Return a valid number
rNumberOut = n;
return true;
}
// --------------------------------------------------------------------------
//
// Function
// Name: BackupStoreCheck::CheckObjects()
// Purpose: Read in the contents of the directory, recurse to other levels,
// checking objects for sanity and readability
// Created: 21/4/04
//
// --------------------------------------------------------------------------
void BackupStoreCheck::CheckObjects()
{
// Maximum start ID of directories -- worked out by looking at disc contents, not trusting anything
int64_t maxDir = 0;
// Find the maximum directory starting ID
{
// Make sure the starting root dir doesn't end with '/'.
std::string start(mStoreRoot);
if(start.size() > 0 && start[start.size() - 1] == '/')
{
start.resize(start.size() - 1);
}
maxDir = CheckObjectsScanDir(0, 1, mStoreRoot);
TRACE1("Max dir starting ID is %llx\n", maxDir);
}
// Then go through and scan all the objects within those directories
for(int64_t d = 0; d <= maxDir; d += (1<<STORE_ID_SEGMENT_LENGTH))
{
CheckObjectsDir(d);
}
}
// --------------------------------------------------------------------------
//
// Function
// Name: BackupStoreCheck::CheckObjectsScanDir(int64_t, int, int, const std::string &)
// Purpose: Read in the contents of the directory, recurse to other levels,
// return the maximum starting ID of any directory found.
// Created: 21/4/04
//
// --------------------------------------------------------------------------
int64_t BackupStoreCheck::CheckObjectsScanDir(int64_t StartID, int Level, const std::string &rDirName)
{
//TRACE2("Scan directory for max dir starting ID %s, StartID %lld\n", rDirName.c_str(), StartID);
int64_t maxID = StartID;
// Read in all the directories, and recurse downwards
{
std::vector<std::string> dirs;
RaidFileRead::ReadDirectoryContents(mDiscSetNumber, rDirName,
RaidFileRead::DirReadType_DirsOnly, dirs);
for(std::vector<std::string>::const_iterator i(dirs.begin()); i != dirs.end(); ++i)
{
// Check to see if it's the right name
int n = 0;
if((*i).size() == 2 && TwoDigitHexToInt((*i).c_str(), n)
&& n < (1<<STORE_ID_SEGMENT_LENGTH))
{
// Next level down
int64_t mi = CheckObjectsScanDir(StartID | (n << (Level * STORE_ID_SEGMENT_LENGTH)), Level + 1,
rDirName + DIRECTORY_SEPARATOR + *i);
// Found a greater starting ID?
if(mi > maxID)
{
maxID = mi;
}
}
else
{
BOX_WARNING("Spurious or invalid directory " <<
rDirName << DIRECTORY_SEPARATOR <<
(*i) << " found, " <<
(mFixErrors?"deleting":"delete manually"));
++mNumberErrorsFound;
}
}
}
return maxID;
}
// --------------------------------------------------------------------------
//
// Function
// Name: BackupStoreCheck::CheckObjectsDir(int64_t)
// Purpose: Check all the files within this directory which has the given starting ID.
// Created: 22/4/04
//
// --------------------------------------------------------------------------
void BackupStoreCheck::CheckObjectsDir(int64_t StartID)
{
// Make directory name -- first generate the filename of an entry in it
std::string dirName;
StoreStructure::MakeObjectFilename(StartID, mStoreRoot, mDiscSetNumber, dirName, false /* don't make sure the dir exists */);
// Check expectations
ASSERT(dirName.size() > 4 &&
dirName[dirName.size() - 4] == DIRECTORY_SEPARATOR_ASCHAR);
// Remove the filename from it
dirName.resize(dirName.size() - 4); // four chars for "/o00"
// Check directory exists
if(!RaidFileRead::DirectoryExists(mDiscSetNumber, dirName))
{
BOX_WARNING("RaidFile dir " << dirName << " does not exist");
return;
}
// Read directory contents
std::vector<std::string> files;
RaidFileRead::ReadDirectoryContents(mDiscSetNumber, dirName,
RaidFileRead::DirReadType_FilesOnly, files);
// Array of things present
bool idsPresent[(1<<STORE_ID_SEGMENT_LENGTH)];
for(int l = 0; l < (1<<STORE_ID_SEGMENT_LENGTH); ++l)
{
idsPresent[l] = false;
}
// Parse each entry, building up a list of object IDs which are present in the dir.
// This is done so that whatever order is retured from the directory, objects are scanned
// in order.
// Filename must begin with a 'o' and be three characters long, otherwise it gets deleted.
for(std::vector<std::string>::const_iterator i(files.begin()); i != files.end(); ++i)
{
bool fileOK = true;
int n = 0;
if((*i).size() == 3 && (*i)[0] == 'o' && TwoDigitHexToInt((*i).c_str() + 1, n)
&& n < (1<<STORE_ID_SEGMENT_LENGTH))
{
// Filename is valid, mark as existing
idsPresent[n] = true;
}
else
{
// info file in root dir is OK!
if(StartID != 0 || ::strcmp("info", (*i).c_str()) != 0)
{
fileOK = false;
}
}
if(!fileOK)
{
// Unexpected or bad file, delete it
BOX_WARNING("Spurious file " << dirName <<
DIRECTORY_SEPARATOR << (*i) << " found" <<
(mFixErrors?", deleting":""));
++mNumberErrorsFound;
if(mFixErrors)
{
RaidFileWrite del(mDiscSetNumber, dirName + DIRECTORY_SEPARATOR + *i);
del.Delete();
}
}
}
// Check all the objects found in this directory
for(int i = 0; i < (1<<STORE_ID_SEGMENT_LENGTH); ++i)
{
if(idsPresent[i])
{
// Check the object is OK, and add entry
char leaf[8];
::sprintf(leaf, DIRECTORY_SEPARATOR "o%02x", i);
if(!CheckAndAddObject(StartID | i, dirName + leaf))
{
// File was bad, delete it
BOX_WARNING("Corrupted file " << dirName <<
leaf << " found" <<
(mFixErrors?", deleting":""));
++mNumberErrorsFound;
if(mFixErrors)
{
RaidFileWrite del(mDiscSetNumber, dirName + leaf);
del.Delete();
}
}
}
}
}
// --------------------------------------------------------------------------
//
// Function
// Name: BackupStoreCheck::CheckAndAddObject(int64_t, const std::string &)
// Purpose: Check a specific object and add it to the list if it's OK -- if
// there are any errors with the reading, return false and it'll be deleted.
// Created: 21/4/04
//
// --------------------------------------------------------------------------
bool BackupStoreCheck::CheckAndAddObject(int64_t ObjectID, const std::string &rFilename)
{
// Info on object...
bool isFile = true;
int64_t containerID = -1;
int64_t size = -1;
try
{
// Open file
std::auto_ptr<RaidFileRead> file(RaidFileRead::Open(mDiscSetNumber, rFilename));
size = file->GetDiscUsageInBlocks();
// Read in first four bytes -- don't have to worry about retrying if not all bytes read as is RaidFile
uint32_t signature;
if(file->Read(&signature, sizeof(signature)) != sizeof(signature))
{
// Too short, can't read signature from it
return false;
}
// Seek back to beginning
file->Seek(0, IOStream::SeekType_Absolute);
// Then... check depending on the type
switch(ntohl(signature))
{
case OBJECTMAGIC_FILE_MAGIC_VALUE_V1:
#ifndef BOX_DISABLE_BACKWARDS_COMPATIBILITY_BACKUPSTOREFILE
case OBJECTMAGIC_FILE_MAGIC_VALUE_V0:
#endif
// File... check
containerID = CheckFile(ObjectID, *file);
break;
case OBJECTMAGIC_DIR_MAGIC_VALUE:
isFile = false;
containerID = CheckDirInitial(ObjectID, *file);
break;
default:
// Unknown signature. Bad file. Very bad file.
return false;
break;
}
// Add to usage counts
mBlocksUsed += size;
if(!isFile)
{
mBlocksInDirectories += size;
}
}
catch(...)
{
// Error caught, not a good file then, let it be deleted
return false;
}
// Got a container ID? (ie check was successful)
if(containerID == -1)
{
return false;
}
// Add to list of IDs known about
AddID(ObjectID, containerID, size, isFile);
// Report success
return true;
}
// --------------------------------------------------------------------------
//
// Function
// Name: BackupStoreCheck::CheckFile(int64_t, IOStream &)
// Purpose: Do check on file, return original container ID if OK, or -1 on error
// Created: 22/4/04
//
// --------------------------------------------------------------------------
int64_t BackupStoreCheck::CheckFile(int64_t ObjectID, IOStream &rStream)
{
// Check that it's not the root directory ID. Having a file as the root directory would be bad.
if(ObjectID == BACKUPSTORE_ROOT_DIRECTORY_ID)
{
// Get that dodgy thing deleted!
BOX_ERROR("Have file as root directory. This is bad.");
return -1;
}
// Check the format of the file, and obtain the container ID
int64_t originalContainerID = -1;
if(!BackupStoreFile::VerifyEncodedFileFormat(rStream, 0 /* don't want diffing from ID */,
&originalContainerID))
{
// Didn't verify
return -1;
}
return originalContainerID;
}
// --------------------------------------------------------------------------
//
// Function
// Name: BackupStoreCheck::CheckDirInitial(int64_t, IOStream &)
// Purpose: Do initial check on directory, return container ID if OK, or -1 on error
// Created: 22/4/04
//
// --------------------------------------------------------------------------
int64_t BackupStoreCheck::CheckDirInitial(int64_t ObjectID, IOStream &rStream)
{
// Simply attempt to read in the directory
BackupStoreDirectory dir;
dir.ReadFromStream(rStream, IOStream::TimeOutInfinite);
// Check object ID
if(dir.GetObjectID() != ObjectID)
{
// Wrong object ID
return -1;
}
// Return container ID
return dir.GetContainerID();
}
// --------------------------------------------------------------------------
//
// Function
// Name: BackupStoreCheck::CheckDirectories()
// Purpose: Check the directories
// Created: 22/4/04
//
// --------------------------------------------------------------------------
void BackupStoreCheck::CheckDirectories()
{
// Phase 1 did this:
// Checked that all the directories are readable
// Built a list of all directories and files which exist on the store
//
// This phase will check all the files in the directories, make
// a note of all directories which are missing, and do initial fixing.
// Scan all objects
for(Info_t::const_iterator i(mInfo.begin()); i != mInfo.end(); ++i)
{
IDBlock *pblock = i->second;
int32_t bentries = (pblock == mpInfoLastBlock)?mInfoLastBlockEntries:BACKUPSTORECHECK_BLOCK_SIZE;
for(int e = 0; e < bentries; ++e)
{
uint8_t flags = GetFlags(pblock, e);
if(flags & Flags_IsDir)
{
// Found a directory. Read it in.
std::string filename;
StoreStructure::MakeObjectFilename(pblock->mID[e], mStoreRoot, mDiscSetNumber, filename, false /* no dir creation */);
BackupStoreDirectory dir;
{
std::auto_ptr<RaidFileRead> file(RaidFileRead::Open(mDiscSetNumber, filename));
dir.ReadFromStream(*file, IOStream::TimeOutInfinite);
}
// Flag for modifications
bool isModified = false;
// Check for validity
if(dir.CheckAndFix())
{
// Wasn't quite right, and has been modified
BOX_WARNING("Directory ID " <<
BOX_FORMAT_OBJECTID(pblock->mID[e]) <<
" has bad structure");
++mNumberErrorsFound;
isModified = true;
}
// Go through, and check that everything in that directory exists and is valid
std::vector<int64_t> toDelete;
BackupStoreDirectory::Iterator i(dir);
BackupStoreDirectory::Entry *en = 0;
while((en = i.Next()) != 0)
{
// Lookup the item
int32_t iIndex;
IDBlock *piBlock = LookupID(en->GetObjectID(), iIndex);
bool badEntry = false;
if(piBlock != 0)
{
// Found. Get flags
uint8_t iflags = GetFlags(piBlock, iIndex);
// Is the type the same?
if(((iflags & Flags_IsDir) == Flags_IsDir)
!= ((en->GetFlags() & BackupStoreDirectory::Entry::Flags_Dir) == BackupStoreDirectory::Entry::Flags_Dir))
{
// Entry is of wrong type
BOX_WARNING("Directory ID " <<
BOX_FORMAT_OBJECTID(pblock->mID[e]) <<
" references object " <<
BOX_FORMAT_OBJECTID(en->GetObjectID()) <<
" which has a different type than expected.");
badEntry = true;
}
else
{
// Check that the entry is not already contained.
if(iflags & Flags_IsContained)
{
BOX_WARNING("Directory ID " <<
BOX_FORMAT_OBJECTID(pblock->mID[e]) <<
" references object " <<
BOX_FORMAT_OBJECTID(en->GetObjectID()) <<
" which is already contained.");
badEntry = true;
}
else
{
// Not already contained -- mark as contained
SetFlags(piBlock, iIndex, iflags | Flags_IsContained);
// Check that the container ID of the object is correct
if(piBlock->mContainer[iIndex] != pblock->mID[e])
{
// Needs fixing...
if(iflags & Flags_IsDir)
{
// Add to will fix later list
BOX_WARNING("Directory ID " << BOX_FORMAT_OBJECTID(en->GetObjectID()) << " has wrong container ID.");
mDirsWithWrongContainerID.push_back(en->GetObjectID());
}
else
{
// This is OK for files, they might move
BOX_WARNING("File ID " << BOX_FORMAT_OBJECTID(en->GetObjectID()) << " has different container ID, probably moved");
}
// Fix entry for now
piBlock->mContainer[iIndex] = pblock->mID[e];
}
}
}
// Check the object size, if it's OK and a file
if(!badEntry && !((iflags & Flags_IsDir) == Flags_IsDir))
{
if(en->GetSizeInBlocks() != piBlock->mObjectSizeInBlocks[iIndex])
{
// Correct
en->SetSizeInBlocks(piBlock->mObjectSizeInBlocks[iIndex]);
// Mark as changed
isModified = true;
// Tell user
BOX_WARNING("Directory ID " << BOX_FORMAT_OBJECTID(pblock->mID[e]) << " has wrong size for object " << BOX_FORMAT_OBJECTID(en->GetObjectID()));
}
}
}
else
{
// Item can't be found. Is it a directory?
if(en->GetFlags() & BackupStoreDirectory::Entry::Flags_Dir)
{
// Store the directory for later attention
mDirsWhichContainLostDirs[en->GetObjectID()] = pblock->mID[e];
}
else
{
// Just remove the entry
badEntry = true;
BOX_WARNING("Directory ID " << BOX_FORMAT_OBJECTID(pblock->mID[e]) << " references object " << BOX_FORMAT_OBJECTID(en->GetObjectID()) << " which does not exist.");
}
}
// Is this entry worth keeping?
if(badEntry)
{
toDelete.push_back(en->GetObjectID());
}
else
{
// Add to sizes?
if(en->GetFlags() & BackupStoreDirectory::Entry::Flags_OldVersion)
{
mBlocksInOldFiles += en->GetSizeInBlocks();
}
if(en->GetFlags() & BackupStoreDirectory::Entry::Flags_Deleted)
{
mBlocksInDeletedFiles += en->GetSizeInBlocks();
}
}
}
if(toDelete.size() > 0)
{
// Delete entries from directory
for(std::vector<int64_t>::const_iterator d(toDelete.begin()); d != toDelete.end(); ++d)
{
dir.DeleteEntry(*d);
}
// Mark as modified
isModified = true;
// Check the directory again, now that entries have been removed
dir.CheckAndFix();
// Errors found
++mNumberErrorsFound;
}
if(isModified && mFixErrors)
{
BOX_WARNING("Fixing directory ID " << BOX_FORMAT_OBJECTID(pblock->mID[e]));
// Save back to disc
RaidFileWrite fixed(mDiscSetNumber, filename);
fixed.Open(true /* allow overwriting */);
dir.WriteToStream(fixed);
// Commit it
fixed.Commit(true /* convert to raid representation now */);
}
}
}
}
}
|