2015-04-07 13:34:37 +02:00
|
|
|
####################################################################################################################################
|
|
|
|
# RESTORE FILE MODULE
|
|
|
|
####################################################################################################################################
|
2016-04-14 15:30:54 +02:00
|
|
|
package pgBackRest::RestoreFile;
|
2015-04-07 13:34:37 +02:00
|
|
|
|
|
|
|
use threads;
|
|
|
|
use threads::shared;
|
|
|
|
use Thread::Queue;
|
|
|
|
use strict;
|
|
|
|
use warnings FATAL => qw(all);
|
|
|
|
use Carp qw(confess);
|
|
|
|
|
2015-06-14 00:25:49 +02:00
|
|
|
use Exporter qw(import);
|
2015-08-29 20:20:46 +02:00
|
|
|
our @EXPORT = qw();
|
2015-04-07 13:34:37 +02:00
|
|
|
use File::Basename qw(dirname);
|
|
|
|
use File::stat qw(lstat);
|
|
|
|
|
|
|
|
use lib dirname($0);
|
2016-04-14 15:30:54 +02:00
|
|
|
use pgBackRest::Common::Exception;
|
|
|
|
use pgBackRest::Common::Log;
|
|
|
|
use pgBackRest::Common::String;
|
|
|
|
use pgBackRest::Config::Config;
|
|
|
|
use pgBackRest::File;
|
|
|
|
use pgBackRest::Manifest;
|
2015-08-29 20:20:46 +02:00
|
|
|
|
|
|
|
####################################################################################################################################
|
|
|
|
# Operation constants
|
|
|
|
####################################################################################################################################
|
|
|
|
use constant OP_RESTORE_FILE => 'RestoreFile';
|
|
|
|
|
|
|
|
use constant OP_RESTORE_FILE_RESTORE_FILE => OP_RESTORE_FILE . '::restoreFile';
|
2015-04-07 13:34:37 +02:00
|
|
|
|
|
|
|
####################################################################################################################################
|
|
|
|
# restoreFile
|
|
|
|
#
|
|
|
|
# Restores a single file.
|
|
|
|
####################################################################################################################################
|
|
|
|
sub restoreFile
|
|
|
|
{
|
2015-05-07 23:56:56 +02:00
|
|
|
my $oFileHash = shift; # File to restore
|
2015-08-29 20:20:46 +02:00
|
|
|
|
|
|
|
# Assign function parameters, defaults, and log debug info
|
|
|
|
my
|
|
|
|
(
|
|
|
|
$strOperation,
|
|
|
|
$lCopyTimeBegin, # Time that the backup begain - used for size/timestamp deltas
|
|
|
|
$bDelta, # Is restore a delta?
|
|
|
|
$bForce, # Force flag
|
|
|
|
$strBackupPath, # Backup path
|
|
|
|
$bSourceCompression, # Is the source compressed?
|
|
|
|
$strCurrentUser, # Current OS user
|
|
|
|
$strCurrentGroup, # Current OS group
|
|
|
|
$oFile, # File object
|
|
|
|
$lSizeTotal, # Total size of files to be restored
|
|
|
|
$lSizeCurrent # Current size of files restored
|
|
|
|
) =
|
|
|
|
logDebugParam
|
|
|
|
(
|
|
|
|
OP_RESTORE_FILE_RESTORE_FILE, \@_,
|
|
|
|
{name => 'lCopyTimeBegin', trace => true},
|
|
|
|
{name => 'bDelta', trace => true},
|
|
|
|
{name => 'bForce', trace => true},
|
|
|
|
{name => 'strBackupPath', trace => true},
|
|
|
|
{name => 'bSourceCompression', trace => true},
|
|
|
|
{name => 'strCurrentUser', trace => true},
|
|
|
|
{name => 'strCurrentGroup', trace => true},
|
|
|
|
{name => 'oFile', trace => true},
|
|
|
|
{name => 'lSizeTotal', trace => true},
|
|
|
|
{name => 'lSizeCurrent', trace => true}
|
|
|
|
);
|
2015-04-07 13:34:37 +02:00
|
|
|
|
|
|
|
# Generate destination file name
|
2015-08-29 20:20:46 +02:00
|
|
|
my $strDestinationFile = $oFile->pathGet(PATH_DB_ABSOLUTE, "$$oFileHash{destination_path}/$$oFileHash{file}");
|
2015-05-07 23:56:56 +02:00
|
|
|
|
|
|
|
# Copy flag and log message
|
|
|
|
my $bCopy = true;
|
|
|
|
my $strLog;
|
|
|
|
$lSizeCurrent += $$oFileHash{size};
|
2015-04-07 13:34:37 +02:00
|
|
|
|
|
|
|
if ($oFile->exists(PATH_DB_ABSOLUTE, $strDestinationFile))
|
|
|
|
{
|
|
|
|
# Perform delta if requested
|
|
|
|
if ($bDelta)
|
|
|
|
{
|
|
|
|
# If force then use size/timestamp delta
|
|
|
|
if ($bForce)
|
|
|
|
{
|
|
|
|
my $oStat = lstat($strDestinationFile);
|
|
|
|
|
|
|
|
# Make sure that timestamp/size are equal and that timestamp is before the copy start time of the backup
|
2015-05-07 23:56:56 +02:00
|
|
|
if (defined($oStat) && $oStat->size == $$oFileHash{size} &&
|
|
|
|
$oStat->mtime == $$oFileHash{modification_time} && $oStat->mtime < $lCopyTimeBegin)
|
2015-04-07 13:34:37 +02:00
|
|
|
{
|
2015-08-29 20:20:46 +02:00
|
|
|
$strLog = 'exists and matches size ' . $oStat->size . ' and modification time ' . $oStat->mtime;
|
2015-05-07 23:56:56 +02:00
|
|
|
$bCopy = false;
|
2015-04-07 13:34:37 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2015-08-29 20:20:46 +02:00
|
|
|
my ($strChecksum, $lSize) = $oFile->hashSize(PATH_DB_ABSOLUTE, $strDestinationFile);
|
2015-04-07 13:34:37 +02:00
|
|
|
|
2015-05-07 23:56:56 +02:00
|
|
|
if ($lSize == $$oFileHash{size} && ($lSize == 0 || $strChecksum eq $$oFileHash{checksum}))
|
2015-04-07 13:34:37 +02:00
|
|
|
{
|
2015-08-29 20:20:46 +02:00
|
|
|
$strLog = 'exists and ' . ($lSize == 0 ? 'is zero size' : "matches backup");
|
2015-04-07 13:34:37 +02:00
|
|
|
|
|
|
|
# Even if hash is the same set the time back to backup time. This helps with unit testing, but also
|
2015-05-07 23:56:56 +02:00
|
|
|
# presents a pristine version of the database after restore.
|
|
|
|
utime($$oFileHash{modification_time}, $$oFileHash{modification_time}, $strDestinationFile)
|
2015-04-07 13:34:37 +02:00
|
|
|
or confess &log(ERROR, "unable to set time for ${strDestinationFile}");
|
|
|
|
|
2015-05-07 23:56:56 +02:00
|
|
|
$bCopy = false;
|
2015-04-07 13:34:37 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
# Copy the file from the backup to the database
|
2015-05-07 23:56:56 +02:00
|
|
|
if ($bCopy)
|
2015-04-07 13:34:37 +02:00
|
|
|
{
|
2015-05-07 23:56:56 +02:00
|
|
|
my ($bCopyResult, $strCopyChecksum, $lCopySize) =
|
|
|
|
$oFile->copy(PATH_BACKUP_CLUSTER, (defined($$oFileHash{reference}) ? $$oFileHash{reference} : $strBackupPath) .
|
|
|
|
"/$$oFileHash{source_path}/$$oFileHash{file}" .
|
|
|
|
($bSourceCompression ? '.' . $oFile->{strCompressExtension} : ''),
|
|
|
|
PATH_DB_ABSOLUTE, $strDestinationFile,
|
|
|
|
$bSourceCompression, # Source is compressed based on backup settings
|
|
|
|
undef, undef,
|
|
|
|
$$oFileHash{modification_time},
|
|
|
|
$$oFileHash{mode},
|
|
|
|
undef,
|
|
|
|
$$oFileHash{user},
|
|
|
|
$$oFileHash{group});
|
|
|
|
|
|
|
|
if ($lCopySize != 0 && $strCopyChecksum ne $$oFileHash{checksum})
|
|
|
|
{
|
|
|
|
confess &log(ERROR, "error restoring ${strDestinationFile}: actual checksum ${strCopyChecksum} " .
|
|
|
|
"does not match expected checksum $$oFileHash{checksum}", ERROR_CHECKSUM);
|
|
|
|
}
|
2015-04-07 13:34:37 +02:00
|
|
|
}
|
2015-05-07 23:56:56 +02:00
|
|
|
|
2015-08-29 20:20:46 +02:00
|
|
|
&log(INFO, "restore file ${strDestinationFile}" . (defined($strLog) ? " - ${strLog}" : '') .
|
|
|
|
' (' . fileSizeFormat($$oFileHash{size}) .
|
2015-05-07 23:56:56 +02:00
|
|
|
($lSizeTotal > 0 ? ', ' . int($lSizeCurrent * 100 / $lSizeTotal) . '%' : '') . ')' .
|
|
|
|
($$oFileHash{size} != 0 ? " checksum $$oFileHash{checksum}" : ''));
|
|
|
|
|
2015-08-29 20:20:46 +02:00
|
|
|
# Return from function and log return values if any
|
|
|
|
return logDebugReturn
|
|
|
|
(
|
|
|
|
$strOperation,
|
|
|
|
{name => 'lSizeCurrent', value => $lSizeCurrent, trace => true}
|
|
|
|
);
|
2015-04-07 13:34:37 +02:00
|
|
|
}
|
|
|
|
|
2015-08-29 20:20:46 +02:00
|
|
|
push @EXPORT, qw(restoreFile);
|
2015-04-07 13:34:37 +02:00
|
|
|
|
|
|
|
1;
|