2014-03-06 03:53:13 +03:00
|
|
|
#!/usr/bin/perl
|
2014-03-30 01:16:08 +03:00
|
|
|
####################################################################################################################################
|
|
|
|
# pg_backrest.pl - Simple Postgres Backup and Restore
|
|
|
|
####################################################################################################################################
|
2014-03-06 03:53:13 +03:00
|
|
|
|
2014-03-30 01:16:08 +03:00
|
|
|
####################################################################################################################################
|
|
|
|
# Perl includes
|
|
|
|
####################################################################################################################################
|
2014-03-06 03:53:13 +03:00
|
|
|
use strict;
|
|
|
|
use warnings;
|
2014-03-30 01:16:08 +03:00
|
|
|
use threads;
|
2014-03-06 03:53:13 +03:00
|
|
|
|
|
|
|
use File::Basename;
|
|
|
|
use Getopt::Long;
|
|
|
|
use Config::IniFiles;
|
|
|
|
use Carp;
|
|
|
|
|
2014-06-22 17:30:17 +03:00
|
|
|
use lib dirname($0) . "/../lib";
|
|
|
|
use BackRest::Utility;
|
|
|
|
use BackRest::File;
|
|
|
|
use BackRest::Backup;
|
|
|
|
use BackRest::Db;
|
2014-03-06 03:53:13 +03:00
|
|
|
|
2014-03-30 01:16:08 +03:00
|
|
|
####################################################################################################################################
|
|
|
|
# Operation constants - basic operations that are allowed in backrest
|
|
|
|
####################################################################################################################################
|
2014-03-06 03:53:13 +03:00
|
|
|
use constant
|
|
|
|
{
|
2014-03-30 01:16:08 +03:00
|
|
|
OP_ARCHIVE_GET => "archive-get",
|
2014-03-06 03:53:13 +03:00
|
|
|
OP_ARCHIVE_PUSH => "archive-push",
|
|
|
|
OP_BACKUP => "backup",
|
2014-03-30 01:16:08 +03:00
|
|
|
OP_EXPIRE => "expire"
|
2014-03-06 03:53:13 +03:00
|
|
|
};
|
|
|
|
|
2014-03-30 01:16:08 +03:00
|
|
|
####################################################################################################################################
|
|
|
|
# Configuration constants - configuration sections and keys
|
|
|
|
####################################################################################################################################
|
2014-03-06 03:53:13 +03:00
|
|
|
use constant
|
|
|
|
{
|
|
|
|
CONFIG_SECTION_COMMAND => "command",
|
|
|
|
CONFIG_SECTION_COMMAND_OPTION => "command:option",
|
|
|
|
CONFIG_SECTION_LOG => "log",
|
|
|
|
CONFIG_SECTION_BACKUP => "backup",
|
|
|
|
CONFIG_SECTION_ARCHIVE => "archive",
|
|
|
|
CONFIG_SECTION_RETENTION => "retention",
|
|
|
|
CONFIG_SECTION_STANZA => "stanza",
|
|
|
|
|
|
|
|
CONFIG_KEY_USER => "user",
|
|
|
|
CONFIG_KEY_HOST => "host",
|
|
|
|
CONFIG_KEY_PATH => "path",
|
|
|
|
|
|
|
|
CONFIG_KEY_THREAD_MAX => "thread-max",
|
|
|
|
CONFIG_KEY_THREAD_TIMEOUT => "thread-timeout",
|
|
|
|
CONFIG_KEY_HARDLINK => "hardlink",
|
|
|
|
CONFIG_KEY_ARCHIVE_REQUIRED => "archive-required",
|
|
|
|
CONFIG_KEY_ARCHIVE_MAX_MB => "archive-max-mb",
|
2014-03-30 01:16:08 +03:00
|
|
|
CONFIG_KEY_START_FAST => "start_fast",
|
2014-06-22 17:30:17 +03:00
|
|
|
CONFIG_KEY_COMPRESS_ASYNC => "compress-async",
|
2014-03-06 03:53:13 +03:00
|
|
|
|
|
|
|
CONFIG_KEY_LEVEL_FILE => "level-file",
|
|
|
|
CONFIG_KEY_LEVEL_CONSOLE => "level-console",
|
|
|
|
|
|
|
|
CONFIG_KEY_COMPRESS => "compress",
|
2014-06-22 17:30:17 +03:00
|
|
|
CONFIG_KEY_CHECKSUM => "checksum",
|
|
|
|
CONFIG_KEY_PSQL => "psql",
|
|
|
|
CONFIG_KEY_REMOTE => "remote"
|
2014-03-06 03:53:13 +03:00
|
|
|
};
|
|
|
|
|
2014-03-30 01:16:08 +03:00
|
|
|
####################################################################################################################################
|
2014-03-06 03:53:13 +03:00
|
|
|
# Command line parameters
|
2014-03-30 01:16:08 +03:00
|
|
|
####################################################################################################################################
|
2014-03-06 03:53:13 +03:00
|
|
|
my $strConfigFile; # Configuration file
|
|
|
|
my $strStanza; # Stanza in the configuration file to load
|
|
|
|
my $strType; # Type of backup: full, differential (diff), incremental (incr)
|
|
|
|
|
2014-07-13 17:37:16 +03:00
|
|
|
# Test parameters - not for general use
|
|
|
|
my $bNoFork = false; # Prevents the archive process from forking when local archiving is enabled
|
2014-07-27 21:03:21 +03:00
|
|
|
my $bTest = false; # Enters test mode - not harmful in anyway, but adds special logging and pauses for unit testing
|
|
|
|
my $iTestDelay = 5; # Amount of time to delay after hitting a test point (the default would not be enough for manual tests)
|
2014-07-13 17:37:16 +03:00
|
|
|
|
2014-03-06 03:53:13 +03:00
|
|
|
GetOptions ("config=s" => \$strConfigFile,
|
|
|
|
"stanza=s" => \$strStanza,
|
2014-07-27 21:03:21 +03:00
|
|
|
"type=s" => \$strType,
|
2014-07-13 17:37:16 +03:00
|
|
|
|
|
|
|
# Test parameters - not for general use
|
2014-07-27 21:03:21 +03:00
|
|
|
"no-fork" => \$bNoFork,
|
|
|
|
"test" => \$bTest,
|
|
|
|
"test-delay=s" => \$iTestDelay)
|
2014-07-13 17:37:16 +03:00
|
|
|
or confess("Error in command line arguments\n");
|
2014-03-06 03:53:13 +03:00
|
|
|
|
2014-07-27 21:03:21 +03:00
|
|
|
# Test delay should be between 1 and 600 seconds
|
|
|
|
if (!($iTestDelay >= 1 && $iTestDelay <= 600))
|
|
|
|
{
|
|
|
|
confess &log(ERROR, 'test-delay must be between 1 and 600 seconds');
|
|
|
|
}
|
|
|
|
|
2014-03-30 01:16:08 +03:00
|
|
|
####################################################################################################################################
|
|
|
|
# Global variables
|
|
|
|
####################################################################################################################################
|
|
|
|
my %oConfig; # Configuration hash
|
2014-06-30 00:23:34 +03:00
|
|
|
my $oRemote; # Remote object
|
2014-07-13 02:03:39 +03:00
|
|
|
my $strRemote; # Defines which side is remote, DB or BACKUP
|
2014-06-04 18:58:30 +03:00
|
|
|
|
2014-03-06 03:53:13 +03:00
|
|
|
####################################################################################################################################
|
|
|
|
# CONFIG_LOAD - Get a value from the config and be sure that it is defined (unless bRequired is false)
|
|
|
|
####################################################################################################################################
|
|
|
|
sub config_load
|
|
|
|
{
|
|
|
|
my $strSection = shift;
|
|
|
|
my $strKey = shift;
|
|
|
|
my $bRequired = shift;
|
|
|
|
my $strDefault = shift;
|
|
|
|
|
|
|
|
# Default is that the key is not required
|
|
|
|
if (!defined($bRequired))
|
|
|
|
{
|
|
|
|
$bRequired = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
my $strValue;
|
|
|
|
|
|
|
|
# Look in the default stanza section
|
|
|
|
if ($strSection eq CONFIG_SECTION_STANZA)
|
|
|
|
{
|
|
|
|
$strValue = $oConfig{"${strStanza}"}{"${strKey}"};
|
|
|
|
}
|
|
|
|
# Else look in the supplied section
|
|
|
|
else
|
|
|
|
{
|
|
|
|
# First check the stanza section
|
|
|
|
$strValue = $oConfig{"${strStanza}:${strSection}"}{"${strKey}"};
|
2014-06-04 18:58:30 +03:00
|
|
|
|
2014-03-06 03:53:13 +03:00
|
|
|
# If the stanza section value is undefined then check global
|
|
|
|
if (!defined($strValue))
|
|
|
|
{
|
|
|
|
$strValue = $oConfig{"global:${strSection}"}{"${strKey}"};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!defined($strValue) && $bRequired)
|
|
|
|
{
|
|
|
|
if (defined($strDefault))
|
|
|
|
{
|
|
|
|
return $strDefault;
|
|
|
|
}
|
2014-06-04 18:58:30 +03:00
|
|
|
|
2014-03-06 03:53:13 +03:00
|
|
|
confess &log(ERROR, "config value " . (defined($strSection) ? $strSection : "[stanza]") . "->${strKey} is undefined");
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($strSection eq CONFIG_SECTION_COMMAND)
|
|
|
|
{
|
|
|
|
my $strOption = config_load(CONFIG_SECTION_COMMAND_OPTION, $strKey);
|
2014-06-04 18:58:30 +03:00
|
|
|
|
2014-03-06 03:53:13 +03:00
|
|
|
if (defined($strOption))
|
|
|
|
{
|
|
|
|
$strValue =~ s/\%option\%/${strOption}/g;
|
2014-06-04 18:58:30 +03:00
|
|
|
}
|
2014-03-06 03:53:13 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
return $strValue;
|
|
|
|
}
|
|
|
|
|
2014-06-30 00:23:34 +03:00
|
|
|
####################################################################################################################################
|
|
|
|
# REMOTE_EXIT - Close the remote object if it exists
|
|
|
|
####################################################################################################################################
|
|
|
|
sub remote_exit
|
|
|
|
{
|
|
|
|
my $iExitCode = shift;
|
|
|
|
|
|
|
|
if (defined($oRemote))
|
|
|
|
{
|
|
|
|
$oRemote->thread_kill()
|
|
|
|
}
|
|
|
|
|
|
|
|
if (defined($iExitCode))
|
|
|
|
{
|
|
|
|
exit $iExitCode;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-07-13 02:03:39 +03:00
|
|
|
|
|
|
|
####################################################################################################################################
|
|
|
|
# REMOTE_GET - Get the remote object or create it if not exists
|
|
|
|
####################################################################################################################################
|
|
|
|
sub remote_get()
|
|
|
|
{
|
|
|
|
if (!defined($oRemote) && $strRemote ne REMOTE_NONE)
|
|
|
|
{
|
|
|
|
$oRemote = BackRest::Remote->new
|
|
|
|
(
|
|
|
|
strHost => config_load($strRemote eq REMOTE_DB ? CONFIG_SECTION_STANZA : CONFIG_SECTION_BACKUP, CONFIG_KEY_HOST, true),
|
|
|
|
strUser => config_load($strRemote eq REMOTE_DB ? CONFIG_SECTION_STANZA : CONFIG_SECTION_BACKUP, CONFIG_KEY_USER, true),
|
|
|
|
strCommand => config_load(CONFIG_SECTION_COMMAND, CONFIG_KEY_REMOTE, true)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
return $oRemote;
|
|
|
|
}
|
|
|
|
|
2014-03-06 03:53:13 +03:00
|
|
|
####################################################################################################################################
|
|
|
|
# SAFE_EXIT - terminate all SSH sessions when the script is terminated
|
|
|
|
####################################################################################################################################
|
|
|
|
sub safe_exit
|
|
|
|
{
|
2014-06-30 00:23:34 +03:00
|
|
|
remote_exit();
|
|
|
|
|
2014-03-06 03:53:13 +03:00
|
|
|
my $iTotal = backup_thread_kill();
|
|
|
|
|
|
|
|
confess &log(ERROR, "process was terminated on signal, ${iTotal} threads stopped");
|
|
|
|
}
|
|
|
|
|
|
|
|
$SIG{TERM} = \&safe_exit;
|
|
|
|
$SIG{HUP} = \&safe_exit;
|
|
|
|
$SIG{INT} = \&safe_exit;
|
|
|
|
|
|
|
|
####################################################################################################################################
|
|
|
|
# START MAIN
|
|
|
|
####################################################################################################################################
|
|
|
|
# Get the operation
|
|
|
|
my $strOperation = $ARGV[0];
|
|
|
|
|
|
|
|
# Validate the operation
|
|
|
|
if (!defined($strOperation))
|
|
|
|
{
|
|
|
|
confess &log(ERROR, "operation is not defined");
|
|
|
|
}
|
|
|
|
|
2014-03-30 01:16:08 +03:00
|
|
|
if ($strOperation ne OP_ARCHIVE_GET &&
|
|
|
|
$strOperation ne OP_ARCHIVE_PUSH &&
|
2014-03-06 03:53:13 +03:00
|
|
|
$strOperation ne OP_BACKUP &&
|
|
|
|
$strOperation ne OP_EXPIRE)
|
|
|
|
{
|
|
|
|
confess &log(ERROR, "invalid operation ${strOperation}");
|
|
|
|
}
|
|
|
|
|
|
|
|
# Type should only be specified for backups
|
|
|
|
if (defined($strType) && $strOperation ne OP_BACKUP)
|
|
|
|
{
|
|
|
|
confess &log(ERROR, "type can only be specified for the backup operation")
|
|
|
|
}
|
|
|
|
|
|
|
|
####################################################################################################################################
|
|
|
|
# LOAD CONFIG FILE
|
|
|
|
####################################################################################################################################
|
|
|
|
if (!defined($strConfigFile))
|
|
|
|
{
|
|
|
|
$strConfigFile = "/etc/pg_backrest.conf";
|
|
|
|
}
|
|
|
|
|
|
|
|
tie %oConfig, 'Config::IniFiles', (-file => $strConfigFile) or confess &log(ERROR, "unable to find config file ${strConfigFile}");
|
|
|
|
|
|
|
|
# Load and check the cluster
|
|
|
|
if (!defined($strStanza))
|
|
|
|
{
|
|
|
|
confess "a backup stanza must be specified - show usage";
|
|
|
|
}
|
|
|
|
|
|
|
|
# Set the log levels
|
|
|
|
log_level_set(uc(config_load(CONFIG_SECTION_LOG, CONFIG_KEY_LEVEL_FILE, true, "INFO")),
|
|
|
|
uc(config_load(CONFIG_SECTION_LOG, CONFIG_KEY_LEVEL_CONSOLE, true, "ERROR")));
|
|
|
|
|
2014-06-22 17:30:17 +03:00
|
|
|
####################################################################################################################################
|
|
|
|
# DETERMINE IF THERE IS A REMOTE
|
|
|
|
####################################################################################################################################
|
|
|
|
# First check if backup is remote
|
|
|
|
if (defined(config_load(CONFIG_SECTION_BACKUP, CONFIG_KEY_HOST)))
|
|
|
|
{
|
|
|
|
$strRemote = REMOTE_BACKUP;
|
|
|
|
}
|
|
|
|
# Else check if db is remote
|
|
|
|
elsif (defined(config_load(CONFIG_SECTION_STANZA, CONFIG_KEY_HOST)))
|
|
|
|
{
|
|
|
|
# Don't allow both sides to be remote
|
|
|
|
if (defined($strRemote))
|
|
|
|
{
|
|
|
|
confess &log(ERROR, 'db and backup cannot both be configured as remote');
|
|
|
|
}
|
2014-06-22 17:54:31 +03:00
|
|
|
|
2014-06-22 17:30:17 +03:00
|
|
|
$strRemote = REMOTE_DB;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
$strRemote = REMOTE_NONE;
|
|
|
|
}
|
|
|
|
|
2014-03-06 03:53:13 +03:00
|
|
|
####################################################################################################################################
|
2014-07-13 02:03:39 +03:00
|
|
|
# ARCHIVE-PUSH Command
|
2014-03-30 01:16:08 +03:00
|
|
|
####################################################################################################################################
|
2014-07-13 02:03:39 +03:00
|
|
|
if ($strOperation eq OP_ARCHIVE_PUSH)
|
2014-03-30 01:16:08 +03:00
|
|
|
{
|
2014-07-13 02:03:39 +03:00
|
|
|
# Make sure the archive push operation happens on the db side
|
|
|
|
if ($strRemote eq REMOTE_DB)
|
2014-03-30 01:16:08 +03:00
|
|
|
{
|
2014-07-13 02:03:39 +03:00
|
|
|
confess &log(ERROR, 'archive-push operation must run on the db host');
|
2014-03-30 01:16:08 +03:00
|
|
|
}
|
|
|
|
|
2014-03-06 03:53:13 +03:00
|
|
|
# If an archive section has been defined, use that instead of the backup section when operation is OP_ARCHIVE_PUSH
|
2014-07-13 02:03:39 +03:00
|
|
|
my $bArchiveLocal = defined(config_load(CONFIG_SECTION_ARCHIVE, CONFIG_KEY_PATH));
|
|
|
|
my $strSection = $bArchiveLocal ? CONFIG_SECTION_ARCHIVE : CONFIG_SECTION_BACKUP;
|
|
|
|
my $strArchivePath = config_load($strSection, CONFIG_KEY_PATH);
|
2014-03-06 03:53:13 +03:00
|
|
|
|
2014-07-16 05:32:41 +03:00
|
|
|
# Get checksum flag
|
|
|
|
my $bChecksum = config_load(CONFIG_SECTION_BACKUP, CONFIG_KEY_CHECKSUM, true, "y") eq "y" ? true : false;
|
|
|
|
|
2014-07-13 02:03:39 +03:00
|
|
|
# Get the async compress flag. If compress_async=y then compression is off for the initial push when archiving locally
|
|
|
|
my $bCompressAsync = false;
|
2014-06-04 18:58:30 +03:00
|
|
|
|
2014-07-13 02:03:39 +03:00
|
|
|
if ($bArchiveLocal)
|
|
|
|
{
|
|
|
|
config_load($strSection, CONFIG_KEY_COMPRESS_ASYNC, true, "n") eq "n" ? false : true;
|
|
|
|
}
|
2014-03-06 03:53:13 +03:00
|
|
|
|
|
|
|
# If logging locally then create the stop archiving file name
|
2014-07-13 02:03:39 +03:00
|
|
|
my $strStopFile;
|
|
|
|
|
|
|
|
if ($bArchiveLocal)
|
2014-03-06 03:53:13 +03:00
|
|
|
{
|
|
|
|
$strStopFile = "${strArchivePath}/lock/${strStanza}-archive.stop";
|
|
|
|
}
|
|
|
|
|
2014-07-13 02:03:39 +03:00
|
|
|
# If an archive file is defined, then push it
|
|
|
|
if (defined($ARGV[1]))
|
2014-03-06 03:53:13 +03:00
|
|
|
{
|
|
|
|
# If the stop file exists then discard the archive log
|
|
|
|
if (defined($strStopFile))
|
|
|
|
{
|
|
|
|
if (-e $strStopFile)
|
|
|
|
{
|
2014-07-13 02:03:39 +03:00
|
|
|
&log(ERROR, "archive stop file (${strStopFile}) exists , discarding " . basename($ARGV[1]));
|
2014-06-30 00:23:34 +03:00
|
|
|
remote_exit(0);
|
2014-03-06 03:53:13 +03:00
|
|
|
}
|
|
|
|
}
|
2014-06-04 18:58:30 +03:00
|
|
|
|
2014-03-06 03:53:13 +03:00
|
|
|
# Get the compress flag
|
|
|
|
my $bCompress = $bCompressAsync ? false : config_load($strSection, CONFIG_KEY_COMPRESS, true, "y") eq "y" ? true : false;
|
|
|
|
|
2014-07-13 02:03:39 +03:00
|
|
|
# Create the file object
|
2014-06-22 21:51:28 +03:00
|
|
|
my $oFile = BackRest::File->new
|
2014-03-06 03:53:13 +03:00
|
|
|
(
|
2014-06-23 03:19:13 +03:00
|
|
|
strStanza => $strStanza,
|
2014-07-13 02:03:39 +03:00
|
|
|
strRemote => $bArchiveLocal ? REMOTE_NONE : $strRemote,
|
|
|
|
oRemote => $bArchiveLocal ? undef : remote_get(),
|
|
|
|
strBackupPath => config_load($strSection, CONFIG_KEY_PATH, true)
|
2014-03-06 03:53:13 +03:00
|
|
|
);
|
|
|
|
|
2014-07-13 02:03:39 +03:00
|
|
|
# Init backup
|
2014-03-06 03:53:13 +03:00
|
|
|
backup_init
|
|
|
|
(
|
|
|
|
undef,
|
|
|
|
$oFile,
|
|
|
|
undef,
|
2014-06-24 02:08:36 +03:00
|
|
|
$bCompress,
|
2014-03-06 03:53:13 +03:00
|
|
|
undef,
|
|
|
|
!$bChecksum
|
|
|
|
);
|
|
|
|
|
2014-07-13 02:03:39 +03:00
|
|
|
&log(INFO, "pushing archive log " . $ARGV[1] . ($bArchiveLocal ? " asynchronously" : ""));
|
2014-03-06 03:53:13 +03:00
|
|
|
|
2014-06-24 01:54:00 +03:00
|
|
|
archive_push(config_load(CONFIG_SECTION_STANZA, CONFIG_KEY_PATH), $ARGV[1]);
|
2014-03-06 03:53:13 +03:00
|
|
|
|
2014-07-13 02:03:39 +03:00
|
|
|
# Exit if we are archiving local but no backup host has been defined
|
|
|
|
if (!($bArchiveLocal && defined(config_load(CONFIG_SECTION_BACKUP, CONFIG_KEY_HOST))))
|
2014-03-06 03:53:13 +03:00
|
|
|
{
|
2014-06-30 00:23:34 +03:00
|
|
|
remote_exit(0);
|
2014-03-06 03:53:13 +03:00
|
|
|
}
|
|
|
|
|
2014-07-13 02:03:39 +03:00
|
|
|
# Fork and exit the parent process so the async process can continue
|
2014-07-13 17:37:16 +03:00
|
|
|
if (!$bNoFork)
|
2014-03-06 03:53:13 +03:00
|
|
|
{
|
2014-07-13 17:37:16 +03:00
|
|
|
if (fork())
|
|
|
|
{
|
|
|
|
remote_exit(0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
# Else the no-fork flag has been specified for testing
|
|
|
|
else
|
|
|
|
{
|
|
|
|
&log(INFO, "No fork on archive local for TESTING");
|
2014-03-06 03:53:13 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-07-13 02:03:39 +03:00
|
|
|
# If no backup host is defined it makes no sense to run archive-push without a specified archive file so throw an error
|
|
|
|
if (!defined(config_load(CONFIG_SECTION_BACKUP, CONFIG_KEY_HOST)))
|
2014-03-06 03:53:13 +03:00
|
|
|
{
|
2014-07-13 02:03:39 +03:00
|
|
|
&log(ERROR, "archive-push called without an archive file or backup host");
|
|
|
|
}
|
2014-06-04 18:58:30 +03:00
|
|
|
|
2014-07-13 02:03:39 +03:00
|
|
|
&log(INFO, "starting async archive-push");
|
2014-03-06 03:53:13 +03:00
|
|
|
|
2014-07-13 02:03:39 +03:00
|
|
|
# Create a lock file to make sure async archive-push does not run more than once
|
|
|
|
my $strLockPath = "${strArchivePath}/lock/${strStanza}-archive.lock";
|
2014-03-06 03:53:13 +03:00
|
|
|
|
2014-07-13 02:03:39 +03:00
|
|
|
if (!lock_file_create($strLockPath))
|
|
|
|
{
|
|
|
|
&log(DEBUG, "archive-push process is already running - exiting");
|
|
|
|
remote_exit(0);
|
|
|
|
}
|
2014-07-13 17:37:16 +03:00
|
|
|
|
2014-07-13 02:03:39 +03:00
|
|
|
# Build the basic command string that will be used to modify the command during processing
|
|
|
|
my $strCommand = $^X . " " . $0 . " --stanza=${strStanza}";
|
2014-03-06 03:53:13 +03:00
|
|
|
|
2014-07-13 02:03:39 +03:00
|
|
|
# Get the new operational flags
|
|
|
|
my $bCompress = config_load(CONFIG_SECTION_BACKUP, CONFIG_KEY_COMPRESS, true, "y") eq "y" ? true : false;
|
|
|
|
my $iArchiveMaxMB = config_load(CONFIG_SECTION_ARCHIVE, CONFIG_KEY_ARCHIVE_MAX_MB);
|
2014-03-06 03:53:13 +03:00
|
|
|
|
2014-07-13 02:03:39 +03:00
|
|
|
# eval
|
|
|
|
# {
|
|
|
|
# Create the file object
|
|
|
|
my $oFile = BackRest::File->new
|
|
|
|
(
|
|
|
|
strStanza => $strStanza,
|
|
|
|
strRemote => $strRemote,
|
|
|
|
oRemote => remote_get(),
|
|
|
|
strBackupPath => config_load(CONFIG_SECTION_BACKUP, CONFIG_KEY_PATH, true)
|
|
|
|
);
|
|
|
|
|
|
|
|
# Init backup
|
|
|
|
backup_init
|
|
|
|
(
|
|
|
|
undef,
|
|
|
|
$oFile,
|
|
|
|
undef,
|
|
|
|
$bCompress,
|
|
|
|
undef,
|
|
|
|
!$bChecksum,
|
|
|
|
config_load(CONFIG_SECTION_BACKUP, CONFIG_KEY_THREAD_MAX),
|
|
|
|
undef,
|
|
|
|
config_load(CONFIG_SECTION_BACKUP, CONFIG_KEY_THREAD_TIMEOUT)
|
|
|
|
);
|
2014-03-06 03:53:13 +03:00
|
|
|
|
2014-07-13 17:37:16 +03:00
|
|
|
# Call the archive_xfer function and continue to loop as long as there are files to process
|
2014-07-13 02:03:39 +03:00
|
|
|
my $iLogTotal;
|
|
|
|
|
|
|
|
while (!defined($iLogTotal) || $iLogTotal > 0)
|
2014-03-06 03:53:13 +03:00
|
|
|
{
|
2014-07-13 17:37:16 +03:00
|
|
|
$iLogTotal = archive_xfer($strArchivePath . "/archive/${strStanza}", $strStopFile, $strCommand, $iArchiveMaxMB);
|
2014-07-13 02:03:39 +03:00
|
|
|
|
|
|
|
if ($iLogTotal > 0)
|
2014-03-06 03:53:13 +03:00
|
|
|
{
|
2014-07-13 17:37:16 +03:00
|
|
|
&log(DEBUG, "${iLogTotal} archive logs were transferred, calling archive_xfer() again");
|
2014-03-06 03:53:13 +03:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2014-07-13 02:03:39 +03:00
|
|
|
&log(DEBUG, "no more logs to transfer - exiting");
|
2014-03-06 03:53:13 +03:00
|
|
|
}
|
|
|
|
}
|
2014-07-13 02:03:39 +03:00
|
|
|
#
|
|
|
|
# };
|
|
|
|
|
|
|
|
# # If there were errors above then start compressing
|
|
|
|
# if ($@)
|
|
|
|
# {
|
|
|
|
# if ($bCompressAsync)
|
|
|
|
# {
|
|
|
|
# &log(ERROR, "error during transfer: $@");
|
|
|
|
# &log(WARN, "errors during transfer, starting compression");
|
|
|
|
#
|
|
|
|
# # Run file_init_archive - this is the minimal config needed to run archive pulling !!! need to close the old file
|
|
|
|
# my $oFile = BackRest::File->new
|
|
|
|
# (
|
|
|
|
# # strStanza => $strStanza,
|
|
|
|
# # bNoCompression => false,
|
|
|
|
# # strBackupPath => config_load(CONFIG_SECTION_BACKUP, CONFIG_KEY_PATH, true),
|
|
|
|
# # strCommand => $0,
|
|
|
|
# # strCommandCompress => config_load(CONFIG_SECTION_COMMAND, CONFIG_KEY_COMPRESS, $bCompress),
|
|
|
|
# # strCommandDecompress => config_load(CONFIG_SECTION_COMMAND, CONFIG_KEY_DECOMPRESS, $bCompress)
|
|
|
|
# );
|
|
|
|
#
|
|
|
|
# backup_init
|
|
|
|
# (
|
|
|
|
# undef,
|
|
|
|
# $oFile,
|
|
|
|
# undef,
|
|
|
|
# $bCompress,
|
|
|
|
# undef,
|
|
|
|
# !$bChecksum,
|
|
|
|
# config_load(CONFIG_SECTION_BACKUP, CONFIG_KEY_THREAD_MAX),
|
|
|
|
# undef,
|
|
|
|
# config_load(CONFIG_SECTION_BACKUP, CONFIG_KEY_THREAD_TIMEOUT)
|
|
|
|
# );
|
|
|
|
#
|
|
|
|
# archive_compress($strArchivePath . "/archive/${strStanza}", $strCommand, 256);
|
|
|
|
# }
|
|
|
|
# else
|
|
|
|
# {
|
|
|
|
# confess $@;
|
|
|
|
# }
|
|
|
|
# }
|
|
|
|
|
|
|
|
lock_file_remove();
|
|
|
|
remote_exit(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
####################################################################################################################################
|
|
|
|
# ARCHIVE-GET Command
|
|
|
|
####################################################################################################################################
|
|
|
|
if ($strOperation eq OP_ARCHIVE_GET)
|
|
|
|
{
|
|
|
|
# Make sure the archive file is defined
|
|
|
|
if (!defined($ARGV[1]))
|
|
|
|
{
|
|
|
|
confess &log(ERROR, "archive file not provided - show usage");
|
|
|
|
}
|
2014-03-06 03:53:13 +03:00
|
|
|
|
2014-07-13 02:03:39 +03:00
|
|
|
# Make sure the destination file is defined
|
|
|
|
if (!defined($ARGV[2]))
|
|
|
|
{
|
|
|
|
confess &log(ERROR, "destination file not provided - show usage");
|
2014-03-06 03:53:13 +03:00
|
|
|
}
|
|
|
|
|
2014-07-13 02:03:39 +03:00
|
|
|
# Init the file object
|
|
|
|
my $oFile = BackRest::File->new
|
|
|
|
(
|
|
|
|
strStanza => $strStanza,
|
|
|
|
strRemote => $strRemote,
|
|
|
|
oRemote => remote_get(),
|
|
|
|
strBackupPath => config_load(CONFIG_SECTION_BACKUP, CONFIG_KEY_PATH, true)
|
|
|
|
);
|
|
|
|
|
|
|
|
# Init the backup object
|
|
|
|
backup_init
|
|
|
|
(
|
|
|
|
undef,
|
|
|
|
$oFile
|
|
|
|
);
|
|
|
|
|
|
|
|
# Info for the Postgres log
|
|
|
|
&log(INFO, "getting archive log " . $ARGV[1]);
|
|
|
|
|
|
|
|
# Get the archive file
|
|
|
|
remote_exit(archive_get($ARGV[1], $ARGV[2]));
|
2014-03-06 03:53:13 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
####################################################################################################################################
|
|
|
|
# OPEN THE LOG FILE
|
|
|
|
####################################################################################################################################
|
|
|
|
if (defined(config_load(CONFIG_SECTION_BACKUP, CONFIG_KEY_HOST)))
|
|
|
|
{
|
|
|
|
confess &log(ASSERT, "backup/expire operations must be performed locally on the backup server");
|
|
|
|
}
|
|
|
|
|
|
|
|
log_file_set(config_load(CONFIG_SECTION_BACKUP, CONFIG_KEY_PATH, true) . "/log/${strStanza}");
|
|
|
|
|
|
|
|
####################################################################################################################################
|
|
|
|
# GET MORE CONFIG INFO
|
|
|
|
####################################################################################################################################
|
2014-07-13 02:03:39 +03:00
|
|
|
# Make sure backup and expire operations happen on the backup side
|
2014-06-22 21:51:28 +03:00
|
|
|
if ($strRemote eq REMOTE_BACKUP)
|
2014-06-22 17:30:17 +03:00
|
|
|
{
|
|
|
|
confess &log(ERROR, 'backup and expire operations must run on the backup host');
|
|
|
|
}
|
|
|
|
|
2014-03-06 03:53:13 +03:00
|
|
|
# Set the backup type
|
|
|
|
if (!defined($strType))
|
|
|
|
{
|
|
|
|
$strType = "incremental";
|
|
|
|
}
|
|
|
|
elsif ($strType eq "diff")
|
|
|
|
{
|
|
|
|
$strType = "differential";
|
|
|
|
}
|
|
|
|
elsif ($strType eq "incr")
|
|
|
|
{
|
|
|
|
$strType = "incremental";
|
|
|
|
}
|
|
|
|
elsif ($strType ne "full" && $strType ne "differential" && $strType ne "incremental")
|
|
|
|
{
|
|
|
|
confess &log(ERROR, "backup type must be full, differential (diff), incremental (incr)");
|
|
|
|
}
|
|
|
|
|
|
|
|
# Get the operational flags
|
|
|
|
my $bCompress = config_load(CONFIG_SECTION_BACKUP, CONFIG_KEY_COMPRESS, true, "y") eq "y" ? true : false;
|
|
|
|
my $bChecksum = config_load(CONFIG_SECTION_BACKUP, CONFIG_KEY_CHECKSUM, true, "y") eq "y" ? true : false;
|
|
|
|
|
2014-04-28 16:13:25 +03:00
|
|
|
# Set the lock path
|
|
|
|
my $strLockPath = config_load(CONFIG_SECTION_BACKUP, CONFIG_KEY_PATH, true) . "/lock/${strStanza}-${strOperation}.lock";
|
|
|
|
|
|
|
|
if (!lock_file_create($strLockPath))
|
|
|
|
{
|
|
|
|
&log(ERROR, "backup process is already running for stanza ${strStanza} - exiting");
|
2014-06-30 00:23:34 +03:00
|
|
|
remote_exit(0);
|
2014-04-28 16:13:25 +03:00
|
|
|
}
|
|
|
|
|
2014-03-06 03:53:13 +03:00
|
|
|
# Run file_init_archive - the rest of the file config required for backup and restore
|
2014-06-22 21:51:28 +03:00
|
|
|
my $oFile = BackRest::File->new
|
2014-03-06 03:53:13 +03:00
|
|
|
(
|
|
|
|
strStanza => $strStanza,
|
2014-06-22 17:30:17 +03:00
|
|
|
strRemote => $strRemote,
|
2014-07-13 02:03:39 +03:00
|
|
|
oRemote => remote_get(),
|
2014-06-22 17:30:17 +03:00
|
|
|
strBackupPath => config_load(CONFIG_SECTION_BACKUP, CONFIG_KEY_PATH, true)
|
2014-03-06 03:53:13 +03:00
|
|
|
);
|
|
|
|
|
2014-06-22 21:51:28 +03:00
|
|
|
my $oDb = BackRest::Db->new
|
2014-03-06 03:53:13 +03:00
|
|
|
(
|
|
|
|
strDbUser => config_load(CONFIG_SECTION_STANZA, CONFIG_KEY_USER),
|
|
|
|
strDbHost => config_load(CONFIG_SECTION_STANZA, CONFIG_KEY_HOST),
|
|
|
|
strCommandPsql => config_load(CONFIG_SECTION_COMMAND, CONFIG_KEY_PSQL),
|
|
|
|
oDbSSH => $oFile->{oDbSSH}
|
|
|
|
);
|
|
|
|
|
|
|
|
# Run backup_init - parameters required for backup and restore operations
|
|
|
|
backup_init
|
|
|
|
(
|
|
|
|
$oDb,
|
|
|
|
$oFile,
|
|
|
|
$strType,
|
2014-06-24 02:08:36 +03:00
|
|
|
config_load(CONFIG_SECTION_BACKUP, CONFIG_KEY_COMPRESS, true, "y") eq "y" ? true : false,
|
2014-03-06 03:53:13 +03:00
|
|
|
config_load(CONFIG_SECTION_BACKUP, CONFIG_KEY_HARDLINK, true, "n") eq "y" ? true : false,
|
|
|
|
!$bChecksum,
|
|
|
|
config_load(CONFIG_SECTION_BACKUP, CONFIG_KEY_THREAD_MAX),
|
|
|
|
config_load(CONFIG_SECTION_BACKUP, CONFIG_KEY_ARCHIVE_REQUIRED, true, "y") eq "y" ? true : false,
|
2014-07-27 21:03:21 +03:00
|
|
|
config_load(CONFIG_SECTION_BACKUP, CONFIG_KEY_THREAD_TIMEOUT),
|
|
|
|
$bTest,
|
|
|
|
$iTestDelay
|
2014-03-06 03:53:13 +03:00
|
|
|
);
|
|
|
|
|
|
|
|
####################################################################################################################################
|
|
|
|
# BACKUP
|
|
|
|
####################################################################################################################################
|
|
|
|
if ($strOperation eq OP_BACKUP)
|
|
|
|
{
|
2014-03-30 01:16:08 +03:00
|
|
|
backup(config_load(CONFIG_SECTION_STANZA, CONFIG_KEY_PATH),
|
|
|
|
config_load(CONFIG_SECTION_BACKUP, CONFIG_KEY_START_FAST, true, "n") eq "y" ? true : false);
|
2014-03-06 03:53:13 +03:00
|
|
|
|
|
|
|
$strOperation = OP_EXPIRE;
|
|
|
|
}
|
|
|
|
|
|
|
|
####################################################################################################################################
|
|
|
|
# EXPIRE
|
|
|
|
####################################################################################################################################
|
|
|
|
if ($strOperation eq OP_EXPIRE)
|
|
|
|
{
|
|
|
|
backup_expire
|
|
|
|
(
|
|
|
|
$oFile->path_get(PATH_BACKUP_CLUSTER),
|
|
|
|
config_load(CONFIG_SECTION_RETENTION, "full_retention"),
|
|
|
|
config_load(CONFIG_SECTION_RETENTION, "differential_retention"),
|
|
|
|
config_load(CONFIG_SECTION_RETENTION, "archive_retention_type"),
|
|
|
|
config_load(CONFIG_SECTION_RETENTION, "archive_retention")
|
|
|
|
);
|
|
|
|
|
|
|
|
lock_file_remove();
|
|
|
|
}
|
|
|
|
|
2014-06-30 00:23:34 +03:00
|
|
|
remote_exit(0);
|