2014-05-26 22:50:46 +00:00
#!/usr/bin/env bash
2013-06-18 11:34:14 +00:00
2015-11-12 00:37:43 +00:00
PROGRAM = "osync" # Rsync based two way sync engine with fault tolerance
2015-01-16 09:55:01 +00:00
AUTHOR = "(L) 2013-2015 by Orsiris \"Ozy\" de Jong"
2014-01-19 19:31:14 +00:00
CONTACT = "http://www.netpower.fr/osync - ozy@netpower.fr"
2015-09-28 12:10:53 +00:00
PROGRAM_VERSION = 1.1-pre
2015-11-27 13:12:44 +00:00
PROGRAM_BUILD = 2015112702
2015-11-12 00:37:43 +00:00
IS_STABLE = no
2014-05-26 22:50:46 +00:00
2015-11-19 22:07:02 +00:00
FUNC_BUILD = 2015111901
2015-11-12 00:37:43 +00:00
## BEGIN Generic functions for osync & obackup written in 2013-2015 by Orsiris de Jong - http://www.netpower.fr - ozy@netpower.fr
## type -p does not work on platforms other than linux (bash). If if does not work, always assume output is not a zero exitcode
if ! type " $BASH " > /dev/null; then
2014-05-26 22:50:46 +00:00
echo "Please run this script only with bash shell. Tested on bash >= 3.2"
exit 127
fi
2014-05-08 10:36:36 +00:00
2015-11-12 00:37:43 +00:00
# Environment variables
_DRYRUN = 0
_SILENT = 0
# Initial error status, logging 'WARN', 'ERROR' or 'CRITICAL' will enable alerts flags
ERROR_ALERT = 0
WARN_ALERT = 0
## allow debugging from command line with _DEBUG=yes
2015-09-09 16:59:23 +00:00
if [ ! " $_DEBUG " = = "yes" ] ; then
_DEBUG = no
2015-03-30 17:51:31 +00:00
SLEEP_TIME = .1
2015-11-12 00:37:43 +00:00
_VERBOSE = 0
2014-07-08 00:00:23 +00:00
else
2015-09-10 15:48:57 +00:00
SLEEP_TIME = 1
2015-11-12 00:37:43 +00:00
trap 'TrapError ${LINENO} $?' ERR
_VERBOSE = 1
2015-09-10 15:48:57 +00:00
fi
2013-06-18 11:34:14 +00:00
SCRIPT_PID = $$
LOCAL_USER = $( whoami)
LOCAL_HOST = $( hostname)
2013-07-15 22:10:23 +00:00
## Default log file until config file is loaded
2015-09-08 12:04:48 +00:00
if [ -w /var/log ] ; then
2015-11-12 00:37:43 +00:00
LOG_FILE = " /var/log/ $PROGRAM .log "
2013-10-10 18:17:40 +00:00
else
2015-11-12 00:37:43 +00:00
LOG_FILE = " ./ $PROGRAM .log "
2013-10-10 18:17:40 +00:00
fi
2014-01-19 19:31:14 +00:00
## Default directory where to store temporary run files
2015-09-08 12:04:48 +00:00
if [ -w /tmp ] ; then
2013-10-10 18:17:40 +00:00
RUN_DIR = /tmp
2015-09-08 12:04:48 +00:00
elif [ -w /var/tmp ] ; then
2013-10-10 18:17:40 +00:00
RUN_DIR = /var/tmp
else
RUN_DIR = .
fi
2013-07-15 22:10:23 +00:00
2015-09-23 14:51:30 +00:00
## Log a state message every $KEEP_LOGGING seconds. Should not be equal to soft or hard execution time so your log will not be unnecessary big.
2013-07-15 22:10:23 +00:00
KEEP_LOGGING = 1801
2013-06-18 11:34:14 +00:00
2013-08-03 21:06:09 +00:00
## Correct output of sort command (language agnostic sorting)
export LC_ALL = C
2015-11-12 00:37:43 +00:00
# Standard alert mail body
MAIL_ALERT_MSG = " Execution of $PROGRAM instance $INSTANCE_ID on $( date) has warnings/errors. "
# Default alert attachment filename
ALERT_LOG_FILE = " $RUN_DIR / $PROGRAM .last.log "
# Set error exit code if a piped command fails
set -o pipefail
set -o errtrace
2014-09-22 19:21:37 +00:00
2015-09-08 12:11:08 +00:00
function Dummy {
2015-03-30 17:51:31 +00:00
sleep .1
2015-03-28 19:06:17 +00:00
}
2015-11-27 13:12:44 +00:00
#__FUNC:Logger
2015-09-10 19:42:11 +00:00
function _Logger {
2015-11-12 00:37:43 +00:00
local svalue = " ${ 1 } " # What to log to screen
local lvalue = " ${ 2 :- $svalue } " # What to log to logfile, defaults to screen value
echo -e " $lvalue " >> " $LOG_FILE "
2015-09-23 14:10:11 +00:00
2015-09-09 16:59:23 +00:00
if [ $_SILENT -eq 0 ] ; then
2015-11-12 00:37:43 +00:00
echo -e " $svalue "
2015-09-08 14:08:14 +00:00
fi
}
function Logger {
2015-09-10 19:42:11 +00:00
local value = " ${ 1 } " # Sentence to log (in double quotes)
2015-09-19 16:46:30 +00:00
local level = " ${ 2 } " # Log level: PARANOIA_DEBUG, DEBUG, NOTICE, WARN, ERROR, CRITIAL
2015-09-08 14:08:14 +00:00
2015-11-12 00:37:43 +00:00
# <OSYNC SPECIFIC> Special case in daemon mode we should timestamp instead of counting seconds
if [ " $sync_on_changes " = = "1" ] ; then
2014-01-19 19:31:14 +00:00
prefix = " $( date) - "
2013-11-18 22:50:39 +00:00
else
2014-01-19 19:31:14 +00:00
prefix = " TIME: $SECONDS - "
2013-11-18 22:50:39 +00:00
fi
2015-11-12 00:37:43 +00:00
# </OSYNC SPECIFIC>
2013-11-18 22:50:39 +00:00
2015-09-08 14:08:14 +00:00
if [ " $level " = = "CRITICAL" ] ; then
2015-11-12 00:37:43 +00:00
_Logger " $prefix \e[41m $value \e[0m " " $prefix $value "
2015-09-08 14:08:14 +00:00
ERROR_ALERT = 1
2015-09-10 19:42:11 +00:00
return
2015-09-08 14:08:14 +00:00
elif [ " $level " = = "ERROR" ] ; then
2015-11-12 00:37:43 +00:00
_Logger " $prefix \e[91m $value \e[0m " " $prefix $value "
2015-09-08 14:08:14 +00:00
ERROR_ALERT = 1
2015-09-10 19:42:11 +00:00
return
2015-09-08 14:08:14 +00:00
elif [ " $level " = = "WARN" ] ; then
2015-11-12 00:37:43 +00:00
_Logger " $prefix \e[93m $value \e[0m " " $prefix $value "
WARN_ALERT = 1
2015-09-10 19:42:11 +00:00
return
2015-09-08 14:08:14 +00:00
elif [ " $level " = = "NOTICE" ] ; then
2015-09-10 19:42:11 +00:00
_Logger " $prefix $value "
return
2015-09-08 14:08:14 +00:00
elif [ " $level " = = "DEBUG" ] ; then
2015-09-09 16:59:23 +00:00
if [ " $_DEBUG " = = "yes" ] ; then
2015-09-10 19:42:11 +00:00
_Logger " $prefix $value "
return
2015-09-08 14:08:14 +00:00
fi
else
2015-09-10 19:42:11 +00:00
_Logger "\e[41mLogger function called without proper loglevel.\e[0m"
_Logger " $prefix $value "
2013-07-21 19:40:55 +00:00
fi
}
2015-11-27 13:12:44 +00:00
#__ENDFUNC
2013-07-21 19:40:55 +00:00
2015-09-18 07:41:18 +00:00
# Portable child (and grandchild) kill function tester under Linux, BSD and MacOS X
function KillChilds {
local pid = " ${ 1 } "
local self = " ${ 2 :- false } "
if children = " $( pgrep -P " $pid " ) " ; then
for child in $children ; do
KillChilds " $child " true
done
fi
2015-11-12 00:37:43 +00:00
# Try to kill nicely, if not, wait 30 seconds to let Trap actions happen before killing
2015-09-18 07:41:18 +00:00
if [ " $self " = = true ] ; then
2015-11-12 00:37:43 +00:00
kill -s SIGTERM " $pid " || ( sleep 30 && kill -9 " $pid " & )
2015-09-18 07:41:18 +00:00
fi
}
2015-09-08 12:11:08 +00:00
function TrapError {
2015-09-08 17:17:26 +00:00
local job = " $0 "
local line = " $1 "
local code = " ${ 2 :- 1 } "
2015-09-09 16:59:23 +00:00
if [ $_SILENT -eq 0 ] ; then
2015-09-08 17:17:26 +00:00
echo -e " /!\ ERROR in ${ job } : Near line ${ line } , exit code ${ code } "
2015-09-08 12:04:48 +00:00
fi
2013-06-18 11:34:14 +00:00
}
2015-09-08 12:11:08 +00:00
function Spinner {
2015-09-09 16:59:23 +00:00
if [ $_SILENT -eq 1 ] ; then
2015-09-09 12:50:21 +00:00
return 0
2015-09-08 12:04:48 +00:00
fi
case $toggle
in
1)
2015-09-09 12:50:21 +00:00
echo -n " \ "
2015-09-08 12:04:48 +00:00
echo -ne "\r"
toggle = "2"
; ;
2)
2015-09-09 12:50:21 +00:00
echo -n " | "
2015-09-08 12:04:48 +00:00
echo -ne "\r"
toggle = "3"
; ;
3)
2015-09-09 12:50:21 +00:00
echo -n " / "
2015-09-08 12:04:48 +00:00
echo -ne "\r"
toggle = "4"
; ;
*)
2015-09-09 12:50:21 +00:00
echo -n " - "
2015-09-08 12:04:48 +00:00
echo -ne "\r"
toggle = "1"
; ;
esac
2013-06-18 11:34:14 +00:00
}
2015-11-12 00:37:43 +00:00
function SedStripQuotes {
echo $( echo $1 | sed "s/^\([\"']\)\(.*\)\1\$/\2/g" )
}
function StripSingleQuotes {
local string = " ${ 1 } "
string = " ${ string /# \' / } " # Remove singlequote if it begins string
string = " ${ string /% \' / } " # Remove singlequote if it ends string
echo " $string "
}
function StripDoubleQuotes {
local string = " ${ 1 } "
string = " ${ string /# \" / } "
string = " ${ string /% \" / } "
echo " $string "
}
function StripQuotes {
local string = " ${ 1 } "
echo " $( StripSingleQuotes $( StripDoubleQuotes $string ) ) "
}
2015-09-08 12:11:08 +00:00
function EscapeSpaces {
2015-09-24 18:37:40 +00:00
local string = " ${ 1 } " # String on which spaces will be escaped
echo " ${ string // / \ } "
}
2015-11-12 00:37:43 +00:00
function IsNumeric {
eval " local value=\" ${ 1 } \" " # Needed so variable variables can be processed
local re = " ^-?[0-9]+([.][0-9]+)? $"
if [ [ $value = ~ $re ] ] ; then
echo 1
else
echo 0
fi
2013-07-19 16:15:25 +00:00
}
2015-09-08 12:11:08 +00:00
function CleanUp {
2015-09-12 20:09:05 +00:00
2015-09-09 16:59:23 +00:00
if [ " $_DEBUG " != "yes" ] ; then
2015-11-12 00:37:43 +00:00
rm -f " $RUN_DIR / $PROGRAM . " *" . $SCRIPT_PID "
2013-07-17 09:34:05 +00:00
fi
2013-06-18 11:34:14 +00:00
}
2015-09-08 12:11:08 +00:00
function SendAlert {
2015-09-12 20:09:05 +00:00
2015-11-12 00:37:43 +00:00
if [ " $_DEBUG " = = "yes" ] ; then
Logger "Debug mode, no warning email will be sent." "NOTICE"
return 0
fi
# <OSYNC SPECIFIC>
if [ " $_QUICK_SYNC " = = "2" ] ; then
2015-09-08 14:08:14 +00:00
Logger "Current task is a quicksync task. Will not send any alert." "NOTICE"
2013-11-03 19:29:17 +00:00
return 0
fi
2015-11-12 00:37:43 +00:00
# </OSYNC SPECIFIC>
2014-11-28 11:10:00 +00:00
eval " cat \" $LOG_FILE \" $COMPRESSION_PROGRAM > $ALERT_LOG_FILE "
2015-11-19 22:07:02 +00:00
MAIL_ALERT_MSG = " $MAIL_ALERT_MSG " $'\n\n' $( tail -n 50 " $LOG_FILE " )
2015-11-12 00:37:43 +00:00
if [ $ERROR_ALERT -eq 1 ] ; then
subject = " Error alert for $INSTANCE_ID "
elif [ $WARN_ALERT -eq 1 ] ; then
subject = " Warning alert for $INSTANCE_ID "
else
subject = " Alert for $INSTANCE_ID "
fi
# Need better fallback if mail sending does not succeed
if type mutt > /dev/null 2>& 1 ; then
echo " $MAIL_ALERT_MSG " | $( type -p mutt) -x -s " $subject " $DESTINATION_MAILS -a " $ALERT_LOG_FILE "
2015-09-08 12:04:48 +00:00
if [ $? != 0 ] ; then
2015-09-08 14:08:14 +00:00
Logger " WARNING: Cannot send alert email via $( type -p mutt) !!! " "WARN"
2015-09-08 12:04:48 +00:00
else
2015-09-08 14:08:14 +00:00
Logger "Sent alert mail using mutt." "NOTICE"
2015-11-12 00:37:43 +00:00
return 0
2015-09-08 12:04:48 +00:00
fi
2015-11-12 00:37:43 +00:00
fi
if type mail > /dev/null 2>& 1 ; then
echo " $MAIL_ALERT_MSG " | $( type -p mail) -a " $ALERT_LOG_FILE " -s " $subject " $DESTINATION_MAILS
2015-09-08 12:04:48 +00:00
if [ $? != 0 ] ; then
2015-09-08 14:08:14 +00:00
Logger " WARNING: Cannot send alert email via $( type -p mail) with attachments !!! " "WARN"
2015-11-12 00:37:43 +00:00
echo " $MAIL_ALERT_MSG " | $( type -p mail) -s " $subject " $DESTINATION_MAILS
2015-09-08 12:04:48 +00:00
if [ $? != 0 ] ; then
2015-09-08 14:08:14 +00:00
Logger " WARNING: Cannot send alert email via $( type -p mail) without attachments !!! " "WARN"
2015-09-08 12:04:48 +00:00
else
2015-09-08 14:08:14 +00:00
Logger "Sent alert mail using mail command without attachment." "NOTICE"
2015-11-12 00:37:43 +00:00
return 0
2015-09-08 12:04:48 +00:00
fi
else
2015-09-08 14:08:14 +00:00
Logger "Sent alert mail using mail command." "NOTICE"
2015-11-12 00:37:43 +00:00
return 0
2015-09-08 12:04:48 +00:00
fi
2015-11-12 00:37:43 +00:00
fi
if type sendmail > /dev/null 2>& 1 ; then
echo -e " $subject \r\n $MAIL_ALERT_MSG " | $( type -p sendmail) $DESTINATION_MAILS
if [ $? != 0 ] ; then
Logger " WARNING: Cannot send alert email via $( type -p sendmail) !!! " "WARN"
else
Logger "Sent alert mail using sendmail command without attachment." "NOTICE"
return 0
fi
fi
if type sendemail > /dev/null 2>& 1 ; then
2015-09-08 12:04:48 +00:00
if [ " $SMTP_USER " != "" ] && [ " $SMTP_PASSWORD " != "" ] ; then
2015-09-23 14:10:11 +00:00
SMTP_OPTIONS = " -xu $SMTP_USER -xp $SMTP_PASSWORD "
2014-05-27 12:18:48 +00:00
else
2015-09-23 14:10:11 +00:00
SMTP_OPTIONS = ""
2014-05-27 12:18:48 +00:00
fi
2015-11-12 00:37:43 +00:00
$( type -p sendemail) -f $SENDER_MAIL -t $DESTINATION_MAILS -u " $subject " -m " $MAIL_ALERT_MSG " -s $SMTP_SERVER $SMTP_OPTIONS > /dev/null 2>& 1
2015-09-08 12:04:48 +00:00
if [ $? != 0 ] ; then
2015-09-08 14:08:14 +00:00
Logger " WARNING: Cannot send alert email via $( type -p sendemail) !!! " "WARN"
2013-10-10 18:17:40 +00:00
else
2015-09-08 14:08:14 +00:00
Logger "Sent alert mail using sendemail command without attachment." "NOTICE"
2015-11-12 00:37:43 +00:00
return 0
2013-10-10 18:17:40 +00:00
fi
2015-09-08 12:04:48 +00:00
fi
2014-03-23 16:52:45 +00:00
2015-11-12 00:37:43 +00:00
# If function has not returned 0 yet, assume it's critical that no alert can be sent
Logger "/!\ CRITICAL: Cannot send alert" "ERROR" # Is not marked critical because execution must continue
# Delete tmp log file
2015-09-08 12:04:48 +00:00
if [ -f " $ALERT_LOG_FILE " ] ; then
2014-09-22 19:21:37 +00:00
rm " $ALERT_LOG_FILE "
2014-03-23 16:52:45 +00:00
fi
2013-06-18 11:34:14 +00:00
}
2015-09-08 12:11:08 +00:00
function LoadConfigFile {
2015-09-12 20:09:05 +00:00
2015-09-08 17:17:26 +00:00
local config_file = " ${ 1 } "
2015-09-12 17:02:12 +00:00
2015-09-08 17:17:26 +00:00
if [ ! -f " $config_file " ] ; then
2015-11-12 00:37:43 +00:00
Logger " Cannot load configuration file [ $config_file ]. Cannot start. " "CRITICAL"
2013-11-03 19:29:17 +00:00
exit 1
2015-09-08 12:04:48 +00:00
elif [ [ " $1 " != *".conf" ] ] ; then
2015-11-12 00:37:43 +00:00
Logger " Wrong configuration file supplied [ $config_file ]. Cannot start. " "CRITICAL"
2015-09-08 12:04:48 +00:00
exit 1
else
2015-11-12 00:37:43 +00:00
grep '^[^ ]*=[^;&]*' " $config_file " > " $RUN_DIR / $PROGRAM . $FUNCNAME . $SCRIPT_PID " # WITHOUT COMMENTS
2015-09-23 14:10:11 +00:00
# Shellcheck source=./sync.conf
2015-11-12 00:37:43 +00:00
source " $RUN_DIR / $PROGRAM . $FUNCNAME . $SCRIPT_PID "
2015-09-08 12:04:48 +00:00
fi
2013-06-18 11:34:14 +00:00
}
2015-09-08 12:11:08 +00:00
function GetLocalOS {
2015-09-12 20:09:05 +00:00
2015-09-12 17:02:12 +00:00
local local_os_var = $( uname -spio 2>& 1)
2015-09-08 12:04:48 +00:00
if [ $? != 0 ] ; then
2015-09-12 17:02:12 +00:00
local local_os_var = $( uname -v 2>& 1)
2015-09-08 12:04:48 +00:00
if [ $? != 0 ] ; then
2015-09-12 17:02:12 +00:00
local local_os_var = ( $uname )
2013-11-14 20:20:13 +00:00
fi
2013-11-13 16:11:54 +00:00
fi
2014-01-19 19:31:14 +00:00
2015-09-12 17:02:12 +00:00
case $local_os_var in
2015-09-08 12:04:48 +00:00
*"Linux" *)
LOCAL_OS = "Linux"
; ;
*"BSD" *)
LOCAL_OS = "BSD"
; ;
*"MINGW32" *)
LOCAL_OS = "msys"
; ;
*"Darwin" *)
LOCAL_OS = "MacOSX"
; ;
*)
2015-09-12 17:02:12 +00:00
Logger " Running on >> $local_os_var << not supported. Please report to the author. " "ERROR"
2015-09-08 12:04:48 +00:00
exit 1
; ;
esac
2015-09-12 17:02:12 +00:00
Logger " Local OS: [ $local_os_var ]. " "DEBUG"
2014-05-26 22:50:46 +00:00
}
2014-01-19 19:31:14 +00:00
2015-09-08 12:11:08 +00:00
function GetRemoteOS {
2015-09-12 17:33:53 +00:00
2015-11-12 00:37:43 +00:00
if [ " $REMOTE_OPERATION " = = "yes" ] ; then
2015-09-08 12:04:48 +00:00
CheckConnectivity3rdPartyHosts
CheckConnectivityRemoteHost
2015-11-12 00:37:43 +00:00
local cmd = $SSH_CMD ' "uname -spio" > "' $RUN_DIR /$PROGRAM .$FUNCNAME .$SCRIPT_PID '" 2>&1'
2015-09-19 16:40:26 +00:00
Logger " cmd: $cmd " "DEBUG"
2015-09-23 14:10:11 +00:00
eval " $cmd " &
2015-09-14 07:23:24 +00:00
WaitForTaskCompletion $! 120 240 $FUNCNAME "-1"
2015-09-08 12:04:48 +00:00
retval = $?
if [ $retval != 0 ] ; then
2015-11-12 00:37:43 +00:00
local cmd = $SSH_CMD ' "uname -v" > "' $RUN_DIR /$PROGRAM .$FUNCNAME .$SCRIPT_PID '" 2>&1'
2015-09-19 16:40:26 +00:00
Logger " cmd: $cmd " "DEBUG"
2015-09-23 14:10:11 +00:00
eval " $cmd " &
2015-09-14 07:23:24 +00:00
WaitForTaskCompletion $! 120 240 $FUNCNAME "-2"
2015-09-08 12:04:48 +00:00
retval = $?
if [ $retval != 0 ] ; then
2015-11-12 00:37:43 +00:00
local cmd = $SSH_CMD ' "uname" > "' $RUN_DIR /$PROGRAM .$FUNCNAME .$SCRIPT_PID '" 2>&1'
2015-09-19 16:40:26 +00:00
Logger " cmd: $cmd " "DEBUG"
2015-09-23 14:10:11 +00:00
eval " $cmd " &
2015-09-14 07:23:24 +00:00
WaitForTaskCompletion $! 120 240 $FUNCNAME "-3"
2015-09-08 12:04:48 +00:00
retval = $?
if [ $retval != 0 ] ; then
2015-09-08 14:08:14 +00:00
Logger "Cannot Get remote OS type." "ERROR"
2015-09-08 12:04:48 +00:00
fi
fi
fi
2014-05-25 17:09:30 +00:00
2015-11-12 00:37:43 +00:00
local remote_os_var = $( cat $RUN_DIR /$PROGRAM .$FUNCNAME .$SCRIPT_PID )
2014-05-25 17:09:30 +00:00
2015-09-12 17:02:12 +00:00
case $remote_os_var in
2014-01-19 19:31:14 +00:00
*"Linux" *)
2013-11-14 12:33:22 +00:00
REMOTE_OS = "Linux"
; ;
2014-05-26 22:50:46 +00:00
*"BSD" *)
REMOTE_OS = "BSD"
2013-11-14 12:33:22 +00:00
; ;
2014-01-19 19:31:14 +00:00
*"MINGW32" *)
2013-11-14 12:33:22 +00:00
REMOTE_OS = "msys"
; ;
2014-01-19 19:31:14 +00:00
*"Darwin" *)
2013-11-14 12:33:22 +00:00
REMOTE_OS = "MacOSX"
; ;
2014-09-22 19:21:37 +00:00
*"ssh" *| *"SSH" *)
2015-09-08 14:08:14 +00:00
Logger "Cannot connect to remote system." "CRITICAL"
2014-03-23 20:57:57 +00:00
exit 1
; ;
2013-11-14 12:33:22 +00:00
*)
2015-09-08 14:08:14 +00:00
Logger "Running on remote OS failed. Please report to the author if the OS is not supported." "CRITICAL"
2015-09-12 17:02:12 +00:00
Logger " Remote OS said:\n $remote_os_var " "CRITICAL"
2013-11-14 12:33:22 +00:00
exit 1
esac
2013-11-02 20:57:15 +00:00
2015-09-12 17:02:12 +00:00
Logger " Remote OS: [ $remote_os_var ]. " "DEBUG"
2014-01-19 19:31:14 +00:00
fi
2013-10-11 19:35:20 +00:00
}
2015-09-08 12:11:08 +00:00
function WaitForTaskCompletion {
2015-09-08 17:17:26 +00:00
local pid = " ${ 1 } " # pid to wait for
local soft_max_time = " ${ 2 } " # If program with pid $pid takes longer than $soft_max_time seconds, will log a warning, unless $soft_max_time equals 0.
local hard_max_time = " ${ 3 } " # If program with pid $pid takes longer than $hard_max_time seconds, will stop execution, unless $hard_max_time equals 0.
2015-09-12 20:09:05 +00:00
local caller_name = " ${ 4 } " # Who called this function
2015-09-08 17:17:26 +00:00
2015-11-12 00:37:43 +00:00
local soft_alert = 0 # Does a soft alert need to be triggered, if yes, send an alert once
2015-09-08 17:17:26 +00:00
local log_ttime = 0 # local time instance for comparaison
local seconds_begin = $SECONDS # Seconds since the beginning of the script
local exec_time = 0 # Seconds since the beginning of this function
2015-09-09 07:38:05 +00:00
while eval " $PROCESS_TEST_CMD " > /dev/null
2015-09-08 12:04:48 +00:00
do
Spinner
2015-09-08 17:17:26 +00:00
exec_time = $(( $SECONDS - $seconds_begin ))
if [ $(( ( $exec_time + 1 ) % $KEEP_LOGGING )) -eq 0 ] ; then
if [ $log_ttime -ne $exec_time ] ; then
log_ttime = $exec_time
2015-09-08 14:08:14 +00:00
Logger "Current task still running." "NOTICE"
2015-09-08 12:04:48 +00:00
fi
fi
2015-09-08 17:17:26 +00:00
if [ $exec_time -gt $soft_max_time ] ; then
if [ $soft_alert -eq 0 ] && [ $soft_max_time -ne 0 ] ; then
2015-09-08 14:08:14 +00:00
Logger "Max soft execution time exceeded for task." "WARN"
2015-09-08 12:04:48 +00:00
soft_alert = 1
2015-11-12 00:37:43 +00:00
SendAlert
2015-04-20 12:11:09 +00:00
fi
2015-09-08 17:17:26 +00:00
if [ $exec_time -gt $hard_max_time ] && [ $hard_max_time -ne 0 ] ; then
2015-09-08 14:08:14 +00:00
Logger "Max hard execution time exceeded for task. Stopping task execution." "ERROR"
2015-09-08 17:17:26 +00:00
kill -s SIGTERM $pid
2015-09-08 12:04:48 +00:00
if [ $? = = 0 ] ; then
2015-09-08 14:08:14 +00:00
Logger "Task stopped succesfully" "NOTICE"
2013-07-18 11:39:52 +00:00
else
2015-09-08 14:08:14 +00:00
Logger "Sending SIGTERM to proces failed. Trying the hard way." "ERROR"
2015-11-12 00:37:43 +00:00
sleep 5 && kill -9 $pid
2015-09-08 12:04:48 +00:00
if [ $? != 0 ] ; then
2015-09-08 14:08:14 +00:00
Logger "Could not stop task." "ERROR"
2013-07-18 20:41:31 +00:00
fi
2013-07-18 11:39:52 +00:00
fi
2015-09-08 12:04:48 +00:00
return 1
fi
2013-07-20 11:43:11 +00:00
fi
2015-09-08 12:04:48 +00:00
sleep $SLEEP_TIME
done
2015-09-08 17:17:26 +00:00
wait $pid
2015-09-12 20:09:05 +00:00
local retval = $?
return $retval
2013-06-18 11:34:14 +00:00
}
2015-09-08 12:11:08 +00:00
function WaitForCompletion {
2015-09-08 17:17:26 +00:00
local pid = " ${ 1 } " # pid to wait for
local soft_max_time = " ${ 2 } " # If program with pid $pid takes longer than $soft_max_time seconds, will log a warning, unless $soft_max_time equals 0.
local hard_max_time = " ${ 3 } " # If program with pid $pid takes longer than $hard_max_time seconds, will stop execution, unless $hard_max_time equals 0.
2015-09-12 20:09:05 +00:00
local caller_name = " ${ 4 } " # Who called this function
2015-09-08 17:17:26 +00:00
2015-11-12 00:37:43 +00:00
local soft_alert = 0 # Does a soft alert need to be triggered, if yes, send an alert once
2015-09-08 17:17:26 +00:00
local log_ttime = 0 # local time instance for comparaison
local seconds_begin = $SECONDS # Seconds since the beginning of the script
local exec_time = 0 # Seconds since the beginning of this function
2015-09-09 07:38:05 +00:00
while eval " $PROCESS_TEST_CMD " > /dev/null
2015-09-08 12:04:48 +00:00
do
Spinner
if [ $(( ( $SECONDS + 1 ) % $KEEP_LOGGING )) -eq 0 ] ; then
2015-09-08 17:17:26 +00:00
if [ $log_time -ne $SECONDS ] ; then
log_time = $SECONDS
2015-09-08 14:08:14 +00:00
Logger "Current task still running." "NOTICE"
2015-09-08 12:04:48 +00:00
fi
fi
2015-09-08 17:17:26 +00:00
if [ $SECONDS -gt $soft_max_time ] ; then
if [ $soft_alert -eq 0 ] && [ $soft_max_time != 0 ] ; then
2015-09-08 14:08:14 +00:00
Logger "Max soft execution time exceeded for script." "WARN"
2015-09-08 12:04:48 +00:00
soft_alert = 1
2015-11-12 00:37:43 +00:00
SendAlert
2015-04-20 12:11:09 +00:00
fi
2015-09-08 17:17:26 +00:00
if [ $SECONDS -gt $hard_max_time ] && [ $hard_max_time != 0 ] ; then
2015-09-08 14:08:14 +00:00
Logger "Max hard execution time exceeded for script. Stopping current task execution." "ERROR"
2015-09-08 17:17:26 +00:00
kill -s SIGTERM $pid
2015-09-08 12:04:48 +00:00
if [ $? = = 0 ] ; then
2015-09-08 14:08:14 +00:00
Logger "Task stopped succesfully" "NOTICE"
2015-09-08 12:04:48 +00:00
else
2015-09-08 14:08:14 +00:00
Logger "Sending SIGTERM to proces failed. Trying the hard way." "ERROR"
2015-09-08 17:17:26 +00:00
kill -9 $pid
2015-09-08 12:04:48 +00:00
if [ $? != 0 ] ; then
2015-09-08 14:08:14 +00:00
Logger "Could not stop task." "ERROR"
2015-09-08 12:04:48 +00:00
fi
fi
return 1
fi
fi
sleep $SLEEP_TIME
2013-07-18 11:39:52 +00:00
done
2015-09-08 17:17:26 +00:00
wait $pid
2015-09-12 20:09:05 +00:00
retval = $?
return $retval
2013-07-18 11:39:52 +00:00
}
2015-09-08 12:11:08 +00:00
function RunLocalCommand {
2015-09-08 17:17:26 +00:00
local command = " ${ 1 } " # Command to run
local hard_max_time = " ${ 2 } " # Max time to wait for command to compleet
2015-09-09 16:59:23 +00:00
if [ $_DRYRUN -ne 0 ] ; then
2015-09-08 17:17:26 +00:00
Logger " Dryrun: Local command [ $command ] not run. " "NOTICE"
2015-11-19 22:07:02 +00:00
return 0
2015-09-08 12:04:48 +00:00
fi
2015-11-19 22:07:02 +00:00
2015-09-08 17:17:26 +00:00
Logger " Running command [ $command ] on local host. " "NOTICE"
2015-11-12 00:37:43 +00:00
eval " $command " > " $RUN_DIR / $PROGRAM . $FUNCNAME . $SCRIPT_PID " 2>& 1 &
2015-09-14 07:23:24 +00:00
WaitForTaskCompletion $! 0 $hard_max_time $FUNCNAME
2015-09-08 12:04:48 +00:00
retval = $?
if [ $retval -eq 0 ] ; then
2015-09-08 14:08:14 +00:00
Logger "Command succeded." "NOTICE"
2015-09-08 12:04:48 +00:00
else
2015-09-08 14:08:14 +00:00
Logger "Command failed." "ERROR"
2015-09-08 12:04:48 +00:00
fi
2015-09-09 16:59:23 +00:00
if [ $_VERBOSE -eq 1 ] || [ $retval -ne 0 ] ; then
2015-11-12 00:37:43 +00:00
Logger " Command output:\n $( cat $RUN_DIR /$PROGRAM .$FUNCNAME .$SCRIPT_PID ) " "NOTICE"
2013-07-20 11:43:11 +00:00
fi
2014-05-25 17:09:30 +00:00
2015-09-08 12:04:48 +00:00
if [ " $STOP_ON_CMD_ERROR " = = "yes" ] && [ $retval -ne 0 ] ; then
2015-09-08 14:08:14 +00:00
Logger "Stopping on command execution error." "CRITICAL"
2015-09-08 12:04:48 +00:00
exit 1
fi
2013-06-18 11:34:14 +00:00
}
## Runs remote command $1 and waits for completition in $2 seconds
2015-09-08 12:11:08 +00:00
function RunRemoteCommand {
2015-09-08 17:17:26 +00:00
local command = " ${ 1 } " # Command to run
local hard_max_time = " ${ 2 } " # Max time to wait for command to compleet
2015-09-08 12:04:48 +00:00
CheckConnectivity3rdPartyHosts
CheckConnectivityRemoteHost
2015-09-09 16:59:23 +00:00
if [ $_DRYRUN -ne 0 ] ; then
2015-09-08 17:17:26 +00:00
Logger " Dryrun: Local command [ $command ] not run. " "NOTICE"
2015-11-19 22:07:02 +00:00
return 0
2015-09-08 12:04:48 +00:00
fi
2015-11-19 22:07:02 +00:00
2015-09-08 17:17:26 +00:00
Logger " Running command [ $command ] on remote host. " "NOTICE"
2015-11-12 00:37:43 +00:00
cmd = $SSH_CMD ' "$command" > "' $RUN_DIR /$PROGRAM .$FUNCNAME .$SCRIPT_PID '" 2>&1'
2015-09-21 10:41:31 +00:00
Logger " cmd: $cmd " "DEBUG"
2015-09-23 14:10:11 +00:00
eval " $cmd " &
2015-09-14 07:23:24 +00:00
WaitForTaskCompletion $! 0 $hard_max_time $FUNCNAME
2015-09-08 12:04:48 +00:00
retval = $?
if [ $retval -eq 0 ] ; then
2015-09-08 14:08:14 +00:00
Logger "Command succeded." "NOTICE"
2015-09-08 12:04:48 +00:00
else
2015-09-08 14:08:14 +00:00
Logger "Command failed." "ERROR"
2015-09-08 12:04:48 +00:00
fi
2015-11-12 00:37:43 +00:00
if [ -f " $RUN_DIR / $PROGRAM . $FUNCNAME . $SCRIPT_PID " ] && ( [ $_VERBOSE -eq 1 ] || [ $retval -ne 0 ] )
2015-09-08 12:04:48 +00:00
then
2015-11-12 00:37:43 +00:00
Logger " Command output:\n $( cat $RUN_DIR /$PROGRAM .$FUNCNAME .$SCRIPT_PID ) " "NOTICE"
2015-09-08 12:04:48 +00:00
fi
if [ " $STOP_ON_CMD_ERROR " = = "yes" ] && [ $retval -ne 0 ] ; then
2015-09-08 14:08:14 +00:00
Logger "Stopping on command execution error." "CRITICAL"
2015-09-08 12:04:48 +00:00
exit 1
fi
2013-06-18 11:34:14 +00:00
}
2015-09-08 12:11:08 +00:00
function RunBeforeHook {
2015-09-12 20:09:05 +00:00
2015-09-08 12:04:48 +00:00
if [ " $LOCAL_RUN_BEFORE_CMD " != "" ] ; then
RunLocalCommand " $LOCAL_RUN_BEFORE_CMD " $MAX_EXEC_TIME_PER_CMD_BEFORE
fi
if [ " $REMOTE_RUN_BEFORE_CMD " != "" ] ; then
RunRemoteCommand " $REMOTE_RUN_BEFORE_CMD " $MAX_EXEC_TIME_PER_CMD_BEFORE
fi
2013-06-18 11:34:14 +00:00
}
2015-09-08 12:11:08 +00:00
function RunAfterHook {
2015-09-12 20:09:05 +00:00
2015-09-08 12:04:48 +00:00
if [ " $LOCAL_RUN_AFTER_CMD " != "" ] ; then
RunLocalCommand " $LOCAL_RUN_AFTER_CMD " $MAX_EXEC_TIME_PER_CMD_AFTER
fi
if [ " $REMOTE_RUN_AFTER_CMD " != "" ] ; then
RunRemoteCommand " $REMOTE_RUN_AFTER_CMD " $MAX_EXEC_TIME_PER_CMD_AFTER
fi
2013-06-18 11:34:14 +00:00
}
2015-09-08 12:11:08 +00:00
function CheckConnectivityRemoteHost {
2015-09-12 17:33:53 +00:00
2015-11-12 00:37:43 +00:00
if [ " $_PARANOIA_DEBUG " != "yes" ] ; then # Do not loose time in paranoia debug
2013-07-15 22:10:23 +00:00
2015-11-12 00:37:43 +00:00
if [ " $REMOTE_HOST_PING " != "no" ] && [ " $REMOTE_OPERATION " != "no" ] ; then
eval " $PING_CMD $REMOTE_HOST > /dev/null 2>&1 " &
WaitForTaskCompletion $! 180 180 $FUNCNAME
2015-09-08 12:04:48 +00:00
if [ $? != 0 ] ; then
2015-11-12 00:37:43 +00:00
Logger " Cannot ping $REMOTE_HOST " "CRITICAL"
return 1
2015-09-08 12:04:48 +00:00
fi
fi
fi
2013-07-15 22:10:23 +00:00
}
2015-11-12 00:37:43 +00:00
function CheckConnectivity3rdPartyHosts {
2015-09-12 17:33:53 +00:00
2015-11-12 00:37:43 +00:00
if [ " $_PARANOIA_DEBUG " != "yes" ] ; then # Do not loose time in paranoia debug
if [ " $REMOTE_3RD_PARTY_HOSTS " != "" ] ; then
remote_3rd_party_success = 0
OLD_IFS = $IFS
IFS = $' \t\n'
for i in $REMOTE_3RD_PARTY_HOSTS
do
eval " $PING_CMD $i > /dev/null 2>&1 " &
WaitForTaskCompletion $! 360 360 $FUNCNAME
if [ $? != 0 ] ; then
Logger " Cannot ping 3rd party host $i " "WARN"
else
remote_3rd_party_success = 1
fi
2015-09-09 12:50:21 +00:00
done
2015-11-12 00:37:43 +00:00
IFS = $OLD_IFS
if [ $remote_3rd_party_success -ne 1 ] ; then
Logger "No remote 3rd party host responded to ping. No internet ?" "CRITICAL"
return 1
2015-09-09 12:50:21 +00:00
fi
fi
fi
}
2015-11-12 00:37:43 +00:00
#__BEGIN_WITH_PARANOIA_DEBUG
2015-09-12 20:09:05 +00:00
#__END_WITH_PARANOIA_DEBUG
2015-09-09 12:50:21 +00:00
2015-11-12 00:37:43 +00:00
function PreInit {
2015-05-18 08:53:11 +00:00
2015-11-12 00:37:43 +00:00
## SSH compression
if [ " $SSH_COMPRESSION " != "no" ] ; then
SSH_COMP = -C
else
SSH_COMP =
fi
## Support for older config files without RSYNC_EXECUTABLE option
if [ " $RSYNC_EXECUTABLE " = = "" ] ; then
RSYNC_EXECUTABLE = rsync
fi
## Sudo execution option
if [ " $SUDO_EXEC " = = "yes" ] ; then
if [ " $RSYNC_REMOTE_PATH " != "" ] ; then
RSYNC_PATH = " sudo $RSYNC_REMOTE_PATH / $RSYNC_EXECUTABLE "
else
RSYNC_PATH = " sudo $RSYNC_EXECUTABLE "
fi
COMMAND_SUDO = "sudo"
else
if [ " $RSYNC_REMOTE_PATH " != "" ] ; then
RSYNC_PATH = " $RSYNC_REMOTE_PATH / $RSYNC_EXECUTABLE "
else
RSYNC_PATH = " $RSYNC_EXECUTABLE "
fi
COMMAND_SUDO = ""
fi
## Set rsync default arguments
RSYNC_ARGS = "-rlptgoD"
if [ " $PRESERVE_ACL " = = "yes" ] ; then
RSYNC_ARGS = $RSYNC_ARGS " -A"
fi
if [ " $PRESERVE_XATTR " = = "yes" ] ; then
RSYNC_ARGS = $RSYNC_ARGS " -X"
fi
if [ " $RSYNC_COMPRESS " = = "yes" ] ; then
RSYNC_ARGS = $RSYNC_ARGS " -z"
fi
if [ " $COPY_SYMLINKS " = = "yes" ] ; then
RSYNC_ARGS = $RSYNC_ARGS " -L"
fi
if [ " $KEEP_DIRLINKS " = = "yes" ] ; then
RSYNC_ARGS = $RSYNC_ARGS " -K"
fi
if [ " $PRESERVE_HARDLINKS " = = "yes" ] ; then
RSYNC_ARGS = $RSYNC_ARGS " -H"
fi
if [ " $CHECKSUM " = = "yes" ] ; then
RSYNC_ARGS = $RSYNC_ARGS " --checksum"
fi
if [ $_DRYRUN -eq 1 ] ; then
RSYNC_ARGS = $RSYNC_ARGS " -n"
DRY_WARNING = "/!\ DRY RUN"
fi
if [ " $BANDWIDTH " != "" ] && [ " $BANDWIDTH " != "0" ] ; then
RSYNC_ARGS = $RSYNC_ARGS " --bwlimit= $BANDWIDTH "
fi
## Set compression executable and extension
COMPRESSION_LEVEL = 3
if type xz > /dev/null 2>& 1
then
COMPRESSION_PROGRAM = " | xz - $COMPRESSION_LEVEL "
COMPRESSION_EXTENSION = .xz
elif type lzma > /dev/null 2>& 1
then
COMPRESSION_PROGRAM = " | lzma - $COMPRESSION_LEVEL "
COMPRESSION_EXTENSION = .lzma
elif type pigz > /dev/null 2>& 1
then
COMPRESSION_PROGRAM = " | pigz - $COMPRESSION_LEVEL "
COMPRESSION_EXTENSION = .gz
COMPRESSION_OPTIONS = --rsyncable
elif type gzip > /dev/null 2>& 1
then
COMPRESSION_PROGRAM = " | gzip - $COMPRESSION_LEVEL "
COMPRESSION_EXTENSION = .gz
COMPRESSION_OPTIONS = --rsyncable
else
COMPRESSION_PROGRAM =
COMPRESSION_EXTENSION =
fi
ALERT_LOG_FILE = " $ALERT_LOG_FILE $COMPRESSION_EXTENSION "
}
function PostInit {
# Define remote commands
SSH_CMD = " $( type -p ssh) $SSH_COMP -i $SSH_RSA_PRIVATE_KEY $REMOTE_USER @ $REMOTE_HOST -p $REMOTE_PORT "
SCP_CMD = " $( type -p scp) $SSH_COMP -i $SSH_RSA_PRIVATE_KEY -P $REMOTE_PORT "
RSYNC_SSH_CMD = " $( type -p ssh) $SSH_COMP -i $SSH_RSA_PRIVATE_KEY -p $REMOTE_PORT "
2015-05-18 08:53:11 +00:00
}
2015-11-12 00:37:43 +00:00
function InitLocalOSSettings {
2015-05-18 08:53:11 +00:00
2015-11-12 00:37:43 +00:00
## If running under Msys, some commands do not run the same way
## Using mingw version of find instead of windows one
## Getting running processes is quite different
## Ping command is not the same
if [ " $LOCAL_OS " = = "msys" ] ; then
FIND_CMD = $( dirname $BASH ) /find
#TODO: The following command needs to be checked on msys. Does the $1 variable substitution work ?
# PROCESS_TEST_CMD assumes there is a variable $pid
PROCESS_TEST_CMD = 'ps -a | awk "{\$1=\$1}\$1" | awk "{print \$1}" | grep $pid'
PING_CMD = "ping -n 2"
else
FIND_CMD = find
# PROCESS_TEST_CMD assumes there is a variable $pid
PROCESS_TEST_CMD = 'ps -p$pid'
PING_CMD = "ping -c 2 -i .2"
fi
## Stat command has different syntax on Linux and FreeBSD/MacOSX
if [ " $LOCAL_OS " = = "MacOSX" ] || [ " $LOCAL_OS " = = "BSD" ] ; then
STAT_CMD = "stat -f \"%Sm\""
else
STAT_CMD = "stat --format %y"
fi
2015-05-18 08:53:11 +00:00
}
2015-11-12 00:37:43 +00:00
function InitRemoteOSSettings {
2015-05-18 08:53:11 +00:00
2015-11-12 00:37:43 +00:00
## MacOSX does not use the -E parameter like Linux or BSD does (-E is mapped to extended attrs instead of preserve executability)
if [ " $LOCAL_OS " != "MacOSX" ] && [ " $REMOTE_OS " != "MacOSX" ] ; then
RSYNC_ARGS = $RSYNC_ARGS " -E"
fi
if [ " $REMOTE_OS " = = "msys" ] ; then
REMOTE_FIND_CMD = $( dirname $BASH ) /find
else
REMOTE_FIND_CMD = find
fi
2015-05-18 08:53:11 +00:00
}
2015-11-12 00:37:43 +00:00
## END Generic functions
2015-05-18 08:53:11 +00:00
2015-11-12 00:37:43 +00:00
## Working directory. This is the name of the osync subdirectory contained in every replica.
OSYNC_DIR = ".osync_workdir"
2015-05-18 08:53:11 +00:00
2015-11-12 00:37:43 +00:00
function TrapStop {
if [ $soft_stop -eq 0 ] ; then
Logger " /!\ WARNING: Manual exit of osync is really not recommended. Sync will be in inconsistent state." "WARN"
Logger " /!\ WARNING: If you are sure, please hit CTRL+C another time to quit." "WARN"
soft_stop = 1
return 1
2015-09-10 15:48:57 +00:00
fi
2015-05-18 08:53:11 +00:00
2015-11-12 00:37:43 +00:00
if [ $soft_stop -eq 1 ] ; then
Logger " /!\ WARNING: CTRL+C hit twice. Exiting osync. Please wait while replicas get unlocked..." "WARN"
soft_stop = 2
exit 1
fi
2015-05-18 08:53:11 +00:00
}
2015-11-12 00:37:43 +00:00
function TrapQuit {
if [ $ERROR_ALERT -ne 0 ] ; then
UnlockReplicas
CleanUp
Logger " $PROGRAM finished with errors. " "ERROR"
exitcode = 1
elif [ $WARN_ALERT -ne 0 ] ; then
UnlockReplicas
CleanUp
Logger " $PROGRAM finished with warnings. " "WARN"
else
UnlockReplicas
CleanUp
Logger " $PROGRAM finished. " "NOTICE"
exitcode = 0
fi
2015-07-31 13:21:34 +00:00
2015-11-12 00:37:43 +00:00
#TODO: Check new KillChilds function for service mode
2015-07-31 13:21:34 +00:00
2015-11-12 00:37:43 +00:00
# if ps -p $OSYNC_SUB_PID > /dev/null 2>&1
# then
# kill -s SIGTERM $OSYNC_SUB_PID
# if [ $? == 0 ]; then
# Logger "Stopped sub process [$OSYNC_SUB_PID]." "DEBUG"
# else
# Logger "Could not terminate sub process [$OSYNC_SUB_PID]. Trying the hard way." "DEBUG"
# kill -9 $OSYNC_SUB_PID
# if [ $? != 0 ]; then
# Logger "Could not kill sub process [$OSYNC_SUB_PID]." "ERROR"
# fi
# fi
# fi
2015-07-31 13:21:34 +00:00
2015-11-12 00:37:43 +00:00
KillChilds $$ > /dev/null 2>& 1
2015-07-31 13:21:34 +00:00
2015-11-12 00:37:43 +00:00
exit $exitcode
2015-07-31 13:21:34 +00:00
}
2015-11-12 00:37:43 +00:00
function CheckEnvironment {
2015-07-31 13:21:34 +00:00
2015-11-12 00:37:43 +00:00
if [ " $REMOTE_OPERATION " = = "yes" ] ; then
if ! type ssh > /dev/null 2>& 1 ; then
Logger "ssh not present. Cannot start sync." "CRITICAL"
exit 1
fi
fi
2015-07-31 13:21:34 +00:00
2015-11-12 00:37:43 +00:00
if ! type rsync > /dev/null 2>& 1 ; then
Logger "rsync not present. Sync cannot start." "CRITICAL"
exit 1
fi
2015-07-31 13:21:34 +00:00
}
2015-09-12 17:02:12 +00:00
###### Osync specific functions (non shared)
2015-05-18 08:53:11 +00:00
2015-09-10 15:48:57 +00:00
function _CreateStateDirsLocal {
local replica_state_dir = " ${ 1 } "
if ! [ -d " $replica_state_dir " ] ; then
2015-11-12 00:37:43 +00:00
$COMMAND_SUDO mkdir -p " $replica_state_dir " > " $RUN_DIR / $PROGRAM . $FUNCNAME . $SCRIPT_PID " 2>& 1
2015-09-08 12:04:48 +00:00
if [ $? != 0 ] ; then
2015-09-10 15:48:57 +00:00
Logger " Cannot create state dir [ $replica_state_dir ]. " "CRITICAL"
2015-11-12 00:37:43 +00:00
Logger " Command output:\n $( cat $RUN_DIR /$PROGRAM .$FUNCNAME .$SCRIPT_PID ) " "ERROR"
2015-09-10 15:48:57 +00:00
exit 1
fi
fi
}
function _CreateStateDirsRemote {
local replica_state_dir = " ${ 1 } "
CheckConnectivity3rdPartyHosts
CheckConnectivityRemoteHost
2015-11-12 00:37:43 +00:00
cmd = $SSH_CMD ' "if ! [ -d \"' $replica_state_dir '\" ]; then ' $COMMAND_SUDO ' mkdir -p \"' $replica_state_dir '\"; fi" > "' $RUN_DIR /$PROGRAM .$FUNCNAME .$SCRIPT_PID '" 2>&1'
2015-09-21 10:41:31 +00:00
Logger " cmd: $cmd " "DEBUG"
2015-09-23 14:10:11 +00:00
eval " $cmd " &
2015-11-12 00:37:43 +00:00
WaitForTaskCompletion $! 720 1800 $FUNCNAME
2015-09-10 15:48:57 +00:00
if [ $? != 0 ] ; then
Logger " Cannot create remote state dir [ $replica_state_dir ]. " "CRITICAL"
2015-11-12 00:37:43 +00:00
Logger " Command output:\n $( cat $RUN_DIR /$PROGRAM .$FUNCNAME .$SCRIPT_PID ) " "ERROR"
2015-09-10 15:48:57 +00:00
exit 1
fi
}
function CreateStateDirs {
2015-09-12 17:33:53 +00:00
2015-09-10 15:48:57 +00:00
_CreateStateDirsLocal " $INITIATOR_STATE_DIR "
2015-11-12 00:37:43 +00:00
if [ " $REMOTE_OPERATION " != "yes" ] ; then
2015-09-10 15:48:57 +00:00
_CreateStateDirsLocal " $TARGET_STATE_DIR "
else
_CreateStateDirsRemote " $TARGET_STATE_DIR "
fi
}
function _CheckReplicaPathsLocal {
local replica_path = " ${ 1 } "
2015-09-23 14:10:11 +00:00
2015-09-10 15:48:57 +00:00
if [ ! -d " $replica_path " ] ; then
if [ " $CREATE_DIRS " = = "yes" ] ; then
2015-11-12 00:37:43 +00:00
$COMMAND_SUDO mkdir -p " $replica_path " > " $RUN_DIR / $PROGRAM . $FUNCNAME . $SCRIPT_PID " 2>& 1
2015-09-10 15:48:57 +00:00
if [ $? != 0 ] ; then
Logger " Cannot create local replica path [ $replica_path ]. " "CRITICAL"
2015-11-12 00:37:43 +00:00
Logger " Command output:\n $( cat $RUN_DIR /$PROGRAM .$FUNCNAME .$SCRIPT_PID ) "
2015-09-10 15:48:57 +00:00
exit 1
else
Logger " Created local replica path [ $replica_path ]. " "NOTICE"
fi
else
Logger " Local replica path [ $replica_path ] does not exist. " "CRITICAL"
exit 1
fi
fi
if [ ! -w " $replica_path " ] ; then
Logger " Local replica path [ $replica_path ] is not writable. " "CRITICAL"
exit 1
fi
}
function _CheckReplicaPathsRemote {
local replica_path = " ${ 1 } "
CheckConnectivity3rdPartyHosts
CheckConnectivityRemoteHost
2015-11-12 00:37:43 +00:00
cmd = $SSH_CMD ' "if ! [ -d \"' $replica_path '\" ]; then if [ \"' $CREATE_DIRS '\" == \"yes\" ]; then ' $COMMAND_SUDO ' mkdir -p \"' $replica_path '\"; fi; fi" > "' $RUN_DIR /$PROGRAM .$FUNCNAME .$SCRIPT_PID '" 2>&1'
2015-09-23 13:02:28 +00:00
Logger " cmd: $cmd " "DEBUG"
2015-09-23 14:10:11 +00:00
eval " $cmd " &
2015-11-12 00:37:43 +00:00
WaitForTaskCompletion $! 720 1800 $FUNCNAME
2015-09-12 17:02:12 +00:00
if [ $? != 0 ] ; then
Logger " Cannot create remote replica path [ $replica_path ]. " "CRITICAL"
2015-11-12 00:37:43 +00:00
Logger " Command output:\n $( cat $RUN_DIR /$PROGRAM .$FUNCNAME .$SCRIPT_PID ) " "ERROR"
2015-09-12 17:02:12 +00:00
exit 1
fi
2015-09-10 15:48:57 +00:00
2015-09-23 14:10:11 +00:00
cmd = $SSH_CMD ' "if [ ! -w \"' $replica_path '\" ];then exit 1; fi" 2>&1'
2015-09-23 13:02:28 +00:00
Logger " cmd: $cmd " "DEBUG"
2015-09-23 14:10:11 +00:00
eval " $cmd " &
2015-11-12 00:37:43 +00:00
WaitForTaskCompletion $! 720 1800 $FUNCNAME
2015-09-12 17:02:12 +00:00
if [ $? != 0 ] ; then
Logger " Remote replica path [ $replica_path ] is not writable. " "CRITICAL"
exit 1
fi
2015-09-10 15:48:57 +00:00
}
function CheckReplicaPaths {
2015-09-12 17:33:53 +00:00
2015-09-10 15:48:57 +00:00
#INITIATOR_SYNC_DIR_CANN=$(realpath "$INITIATOR_SYNC_DIR") #TODO: investigate realpath & readlink issues on MSYS and busybox here
#TARGET_SYNC_DIR_CANN=$(realpath "$TARGET_SYNC_DIR")
2015-03-29 15:30:09 +00:00
2015-11-12 00:37:43 +00:00
#if [ "$REMOTE_OPERATION" != "yes" ]; then
2015-09-10 15:48:57 +00:00
# if [ "$INITIATOR_SYNC_DIR_CANN" == "$TARGET_SYNC_DIR_CANN" ]; then
2015-09-23 14:51:30 +00:00
# Logger "Master directory [$INITIATOR_SYNC_DIR] cannot be the same as target directory." "CRITICAL"
2015-09-08 17:17:26 +00:00
# exit 1
# fi
#fi
2015-03-29 15:30:09 +00:00
2015-09-12 20:22:38 +00:00
_CheckReplicaPathsLocal " $INITIATOR_SYNC_DIR "
2015-11-12 00:37:43 +00:00
if [ " $REMOTE_OPERATION " != "yes" ] ; then
2015-09-12 18:34:16 +00:00
_CheckReplicaPathsLocal " $TARGET_SYNC_DIR "
2015-09-10 15:48:57 +00:00
else
2015-09-12 18:34:16 +00:00
_CheckReplicaPathsRemote " $TARGET_SYNC_DIR "
2015-09-10 15:48:57 +00:00
fi
}
2015-09-10 19:42:11 +00:00
function _CheckDiskSpaceLocal {
local replica_path = " ${ 1 } "
2013-07-22 19:14:57 +00:00
2015-09-10 19:42:11 +00:00
Logger " Checking minimum disk space in [ $replica_path ]. " "NOTICE"
local initiator_space = $( df -P " $replica_path " | tail -1 | awk '{print $4}' )
if [ $initiator_space -lt $MINIMUM_SPACE ] ; then
Logger " There is not enough free space on initiator [ $initiator_space KB]. " "WARN"
fi
}
function _CheckDiskSpaceRemote {
local replica_path = " ${ 1 } "
Logger " Checking minimum disk space on target [ $replica_path ]. " "NOTICE"
2015-09-23 14:10:11 +00:00
2015-09-10 19:42:11 +00:00
CheckConnectivity3rdPartyHosts
CheckConnectivityRemoteHost
2015-11-12 00:37:43 +00:00
cmd = $SSH_CMD ' "' $COMMAND_SUDO ' df -P \"' $replica_path '\"" > "' $RUN_DIR /$PROGRAM .$FUNCNAME .$SCRIPT_PID '" 2>&1'
2015-09-23 13:02:28 +00:00
Logger " cmd: $cmd " "DEBUG"
2015-09-23 14:10:11 +00:00
eval " $cmd " &
2015-11-12 00:37:43 +00:00
WaitForTaskCompletion $! 720 1800 $FUNCNAME
2015-09-10 19:42:11 +00:00
if [ $? != 0 ] ; then
Logger " Cannot get free space on target [ $replica_path ]. " "ERROR"
2015-11-12 00:37:43 +00:00
Logger " Command output:\n $( cat $RUN_DIR /$PROGRAM .$FUNCNAME .$SCRIPT_PID ) " "NOTICE"
2015-09-12 17:02:12 +00:00
else
2015-11-12 00:37:43 +00:00
local target_space = $( cat $RUN_DIR /$PROGRAM .$FUNCNAME .$SCRIPT_PID | tail -1 | awk '{print $4}' )
2015-09-10 19:42:11 +00:00
if [ $target_space -lt $MINIMUM_SPACE ] ; then
2015-09-12 17:02:12 +00:00
Logger " There is not enough free space on target [ $replica_path ]. " "WARN"
2015-09-10 19:42:11 +00:00
fi
2015-09-08 12:04:48 +00:00
fi
2015-09-10 19:42:11 +00:00
}
function CheckDiskSpace {
2015-09-12 17:33:53 +00:00
2015-09-12 17:02:12 +00:00
_CheckDiskSpaceLocal " $INITIATOR_SYNC_DIR "
2015-11-12 00:37:43 +00:00
if [ " $REMOTE_OPERATION " != "yes" ] ; then
2015-09-12 17:02:12 +00:00
_CheckDiskSpaceLocal " $TARGET_SYNC_DIR "
else
_CheckDiskSpaceRemote " $TARGET_SYNC_DIR "
fi
2015-09-10 19:42:11 +00:00
}
2015-11-27 13:12:44 +00:00
function RsyncPatternsAdd {
local pattern = " ${ 1 } "
2015-09-12 17:33:53 +00:00
2015-09-23 14:51:30 +00:00
# Disable globbing so wildcards from exclusions do not get expanded
2015-02-12 09:34:42 +00:00
set -f
2015-11-27 13:12:44 +00:00
rest = " $pattern "
2015-09-08 12:04:48 +00:00
while [ -n " $rest " ]
do
2015-03-20 19:40:57 +00:00
# Take the string until first occurence until $PATH_SEPARATOR_CHAR
2015-09-08 12:04:48 +00:00
str = ${ rest %%;* }
2015-03-20 19:40:57 +00:00
# Handle the last case
2015-09-08 12:04:48 +00:00
if [ " $rest " = " ${ rest / $PATH_SEPARATOR_CHAR / } " ] ; then
2015-03-20 19:40:57 +00:00
rest =
else
# Cut everything before the first occurence of $PATH_SEPARATOR_CHAR
rest = ${ rest #* $PATH_SEPARATOR_CHAR }
fi
2015-11-27 13:12:44 +00:00
if [ " $RSYNC_PATTERNS " = = "" ] ; then
RSYNC_PATTERNS = " --exclude=\" $str \" "
2015-09-08 12:04:48 +00:00
else
2015-11-27 13:12:44 +00:00
RSYNC_PATTERNS = " $RSYNC_PATTERNS --exclude=\" $str \" "
2015-09-08 12:04:48 +00:00
fi
done
2015-02-12 09:34:42 +00:00
set +f
2013-07-19 16:15:25 +00:00
}
2015-11-27 13:12:44 +00:00
function RsyncPatternsFromAdd {
local pattern_from = " ${ 1 } "
2015-09-12 17:33:53 +00:00
2015-11-27 13:12:44 +00:00
if [ ! " $pattern_from " = = "" ] ; then
2015-09-08 12:04:48 +00:00
## Check if the exclude list has a full path, and if not, add the config file path if there is one
2015-11-27 13:12:44 +00:00
if [ " $( basename $pattern_from ) " = = " $pattern_from " ] ; then
pattern_from = $( dirname $ConfigFile ) /$pattern_ffrom
2015-09-08 12:04:48 +00:00
fi
2015-11-27 13:12:44 +00:00
if [ -e " $pattern_from " ] ; then
RSYNC_PATTERNS = " $RSYNC_PATTERNS --exclude-from=\" $pattern_from \" "
2015-09-08 12:04:48 +00:00
fi
fi
2014-05-08 10:36:36 +00:00
}
2015-11-27 13:12:44 +00:00
function RsyncPatterns {
if [ " $RSYNC_PATTERN_ORDER " = = "exclude" ] ; then
RsyncPatternsAdd " $RSYNC_EXCLUDE_PATTERN "
RsyncPatternsFromAdd " $RSYNC_EXCLUDE_FROM "
RsyncPatternsAdd " $RSYNC_INCLUDE_PATTERN "
RsyncPatternsFromAdd " $RSYNC_INCLUDE_FROM "
elif [ " $RSYNC_PATTERN_ORDER " = = "include" ] ; then
RsyncPatternsAdd " $RSYNC_INCLUDE_PATTERN "
RsyncPatternsFromAdd " $RSYNC_EXCLUDE_FROM "
RsyncPatternsAdd " $RSYNC_EXCLUDE_PATTERN "
RsyncPatternsFromAdd " $RSYNC_EXCLUDE_FROM "
else
Logger "Bogus RSYNC_PATTERN_ORDER in config file" "WARN"
fi
}
2015-09-10 19:42:11 +00:00
function _WriteLockFilesLocal {
local lockfile = " ${ 1 } "
2015-11-12 00:37:43 +00:00
$COMMAND_SUDO echo " $SCRIPT_PID @ $INSTANCE_ID " > " $lockfile " #TODO: Determine best format for lockfile for v2
2015-09-10 19:42:11 +00:00
if [ $? != 0 ] ; then
Logger " Could not create lock file [ $lockfile ]. " "CRITICAL"
exit 1
else
2015-09-11 17:39:57 +00:00
Logger " Locked replica on [ $lockfile ]. " "DEBUG"
2015-09-10 19:42:11 +00:00
fi
}
function _WriteLockFilesRemote {
local lockfile = " ${ 1 } "
CheckConnectivity3rdPartyHosts
2015-09-12 18:49:24 +00:00
CheckConnectivityRemoteHost
2015-09-10 19:42:11 +00:00
2015-11-12 00:37:43 +00:00
cmd = $SSH_CMD ' "echo ' $SCRIPT_PID @$INSTANCE_ID ' | ' $COMMAND_SUDO ' tee \"' $lockfile '\"" > /dev/null 2>&1'
2015-09-23 13:02:28 +00:00
Logger " cmd: $cmd " "DEBUG"
2015-09-23 14:10:11 +00:00
eval " $cmd " &
2015-11-12 00:37:43 +00:00
WaitForTaskCompletion $! 720 1800 $FUNCNAME
2015-09-10 19:42:11 +00:00
if [ $? != 0 ] ; then
Logger "Could not set lock on remote target replica." "CRITICAL"
exit 1
else
2015-09-11 17:39:57 +00:00
Logger "Locked remote target replica." "DEBUG"
2015-09-10 19:42:11 +00:00
fi
}
2015-09-08 12:11:08 +00:00
function WriteLockFiles {
2015-09-12 17:33:53 +00:00
2015-09-10 19:42:11 +00:00
_WriteLockFilesLocal " $INITIATOR_LOCKFILE "
2015-11-12 00:37:43 +00:00
if [ " $REMOTE_OPERATION " != "yes" ] ; then
2015-09-10 19:42:11 +00:00
_WriteLockFilesLocal " $TARGET_LOCKFILE "
else
_WriteLockFilesRemote " $TARGET_LOCKFILE "
fi
2015-09-23 14:10:11 +00:00
}
2015-09-10 19:42:11 +00:00
function _CheckLocksLocal {
local lockfile = " ${ 1 } "
2015-09-11 13:34:23 +00:00
if [ -f " $lockfile " ] ; then
local lockfile_content = $( cat $lockfile )
2015-09-12 17:02:12 +00:00
Logger " Master lock pid present: $lockfile_content " "DEBUG"
2015-09-11 13:34:23 +00:00
local lock_pid = ${ lockfile_content %@* }
2015-11-12 00:37:43 +00:00
local lock_instance_id = ${ lockfile_content #*@ }
2015-09-12 17:02:12 +00:00
ps -p$lock_pid > /dev/null 2>& 1
if [ $? != 0 ] ; then
Logger " There is a dead osync lock in [ $lockfile ]. Instance [ $lock_pid ] no longer running. Resuming. " "NOTICE"
else
Logger " There is already a local instance of osync running [ $lock_pid ]. Cannot start. " "CRITICAL"
exit 1
fi
fi
2015-09-10 19:42:11 +00:00
}
2015-09-11 17:39:57 +00:00
function _CheckLocksRemote { #TODO: Rewrite this a bit more beautiful
2015-09-10 19:42:11 +00:00
local lockfile = " ${ 1 } "
CheckConnectivity3rdPartyHosts
2015-09-12 18:49:24 +00:00
CheckConnectivityRemoteHost
2015-09-10 19:42:11 +00:00
2015-11-12 00:37:43 +00:00
cmd = $SSH_CMD ' "if [ -f \"' $lockfile '\" ]; then cat \"' $lockfile '\"; fi" > "' $RUN_DIR /$PROGRAM .$FUNCNAME .$SCRIPT_PID '"'
2015-09-23 13:02:28 +00:00
Logger " cmd: $cmd " "DEBUG"
2015-09-23 14:10:11 +00:00
eval " $cmd " &
2015-11-12 00:37:43 +00:00
WaitForTaskCompletion $! 720 1800 $FUNCNAME
2015-09-11 13:34:23 +00:00
if [ $? != 0 ] ; then
2015-11-12 00:37:43 +00:00
if [ -f " $RUN_DIR / $PROGRAM . $FUNCNAME . $SCRIPT_PID " ] ; then
local lockfile_content = $( cat $RUN_DIR /$PROGRAM .$FUNCNAME .$SCRIPT_PID )
2015-09-12 17:02:12 +00:00
else
2015-09-13 08:40:54 +00:00
Logger "Cannot get remote lockfile." "CRITICAL"
exit 1
2015-09-11 13:34:23 +00:00
fi
fi
local lock_pid = ${ lockfile_content %@* }
2015-11-12 00:37:43 +00:00
local lock_instance_id = ${ lockfile_content #*@ }
2015-09-11 13:34:23 +00:00
2015-11-12 00:37:43 +00:00
if [ " $lock_pid " != "" ] && [ " $lock_instance_id " != "" ] ; then
Logger " Remote lock is: $lock_pid @ $lock_instance_id " "DEBUG"
2015-09-12 17:02:12 +00:00
ps -p$lock_pid > /dev/null 2>& 1
if [ $? != 0 ] ; then
2015-11-12 00:37:43 +00:00
if [ " $lock_instance_id " = = " $INSTANCE_ID " ] ; then
Logger " There is a dead osync lock on target replica that corresponds to this initiator sync id [ $lock_instance_id ]. Instance [ $lock_pid ] no longer running. Resuming. " "NOTICE"
2015-09-12 17:02:12 +00:00
else
if [ " $FORCE_STRANGER_LOCK_RESUME " = = "yes" ] ; then
2015-11-12 00:37:43 +00:00
Logger " WARNING: There is a dead osync lock on target replica that does not correspond to this initiator sync-id [ $lock_instance_id ]. Forcing resume. " "WARN"
2015-09-12 17:02:12 +00:00
else
2015-11-12 00:37:43 +00:00
Logger " There is a dead osync lock on target replica that does not correspond to this initiator sync-id [ $lock_instance_id ]. Will not resume. " "CRITICAL"
2015-09-12 17:02:12 +00:00
exit 1
fi
fi
else
2015-11-12 00:37:43 +00:00
Logger " There is already a local instance of osync that locks target replica [ $lock_pid @ $lock_instance_id ]. Cannot start. " "CRITICAL"
2015-09-12 17:02:12 +00:00
exit 1
fi
fi
2015-09-10 19:42:11 +00:00
}
function CheckLocks {
2015-09-12 17:33:53 +00:00
2015-09-10 19:42:11 +00:00
if [ $_NOLOCKS -eq 1 ] ; then
return 0
fi
2015-09-23 14:51:30 +00:00
# Do not bother checking for locks when FORCE_UNLOCK is set
2015-09-10 19:42:11 +00:00
if [ $FORCE_UNLOCK -eq 1 ] ; then
WriteLockFiles
if [ $? != 0 ] ; then
exit 1
fi
fi
_CheckLocksLocal " $INITIATOR_LOCKFILE "
2015-11-12 00:37:43 +00:00
if [ " $REMOTE_OPERATION " != "yes" ] ; then
2015-09-10 19:42:11 +00:00
_CheckLocksLocal " $TARGET_LOCKFILE "
else
_CheckLocksRemote " $TARGET_LOCKFILE "
fi
2015-09-11 13:34:23 +00:00
WriteLockFiles
2015-09-10 19:42:11 +00:00
}
2015-09-11 13:34:23 +00:00
function _UnlockReplicasLocal {
local lockfile = " ${ 1 } "
if [ -f " $lockfile " ] ; then
2015-09-12 17:02:12 +00:00
$COMMAND_SUDO rm " $lockfile "
if [ $? != 0 ] ; then
Logger "Could not unlock local replica." "ERROR"
else
Logger "Removed local replica lock." "DEBUG"
fi
fi
2015-09-11 13:34:23 +00:00
}
function _UnlockReplicasRemote {
local lockfile = " ${ 1 } "
CheckConnectivity3rdPartyHosts
CheckConnectivityRemoteHost
2015-11-12 00:37:43 +00:00
cmd = $SSH_CMD ' "if [ -f \"' $lockfile '\" ]; then ' $COMMAND_SUDO ' rm -f \"' $lockfile '\"; fi" > "' $RUN_DIR /$PROGRAM .$FUNCNAME .$SCRIPT_PID '" 2>&1'
2015-09-23 13:02:28 +00:00
Logger " cmd: $cmd " "DEBUG"
2015-09-23 14:10:11 +00:00
eval " $cmd " &
2015-11-12 00:37:43 +00:00
WaitForTaskCompletion $! 720 1800 $FUNCNAME
2015-09-12 17:02:12 +00:00
if [ $? != 0 ] ; then
Logger "Could not unlock remote replica." "ERROR"
2015-11-12 00:37:43 +00:00
Logger " Command Output:\n $( cat $RUN_DIR /$PROGRAM .$FUNCNAME .$SCRIPT_PID ) " "NOTICE"
2015-09-12 17:02:12 +00:00
else
Logger "Removed remote replica lock." "DEBUG"
fi
2015-09-11 13:34:23 +00:00
}
function UnlockReplicas {
2015-09-12 17:33:53 +00:00
2015-09-11 13:34:23 +00:00
if [ $_NOLOCKS -eq 1 ] ; then
return 0
fi
_UnlockReplicasLocal " $INITIATOR_LOCKFILE "
2015-11-12 00:37:43 +00:00
if [ " $REMOTE_OPERATION " != "yes" ] ; then
2015-09-11 13:34:23 +00:00
_UnlockReplicasLocal " $TARGET_LOCKFILE "
else
_UnlockReplicasRemote " $TARGET_LOCKFILE "
fi
}
2013-07-18 20:41:31 +00:00
###### Sync core functions
2013-07-16 11:55:15 +00:00
2014-01-19 19:31:14 +00:00
## Rsync does not like spaces in directory names, considering it as two different directories. Handling this schema by escaping space.
2015-09-23 14:10:11 +00:00
## It seems this only happens when trying to execute an rsync command through weval $rsync_cmd on a remote host.
2015-09-23 14:51:30 +00:00
## So I am using unescaped $INITIATOR_SYNC_DIR for local rsync calls and escaped $ESC_INITIATOR_SYNC_DIR for remote rsync calls like user@host:$ESC_INITIATOR_SYNC_DIR
2015-09-10 15:48:57 +00:00
## The same applies for target sync dir..............................................T.H.I.S..I.S..A..P.R.O.G.R.A.M.M.I.N.G..N.I.G.H.T.M.A.R.E
2014-01-19 19:31:14 +00:00
2015-09-08 12:11:08 +00:00
function tree_list {
2015-09-08 17:17:26 +00:00
local replica_path = " ${ 1 } " # path to the replica for which a tree needs to be constructed
2015-09-10 15:48:57 +00:00
local replica_type = " ${ 2 } " # replica type: initiator, target
2015-09-08 17:17:26 +00:00
local tree_filename = " ${ 3 } " # filename to output tree (will be prefixed with $replica_type)
2015-09-23 14:51:30 +00:00
local escaped_replica_path = $( EscapeSpaces " $replica_path " ) #TODO: See if escpaed still needed when using singlequotes instead of doublequotes for command eval
2015-09-08 17:17:26 +00:00
Logger " Creating $replica_type replica file list [ $replica_path ]. " "NOTICE"
2015-11-12 00:37:43 +00:00
if [ " $REMOTE_OPERATION " = = "yes" ] && [ " $replica_type " = = "target" ] ; then
2015-09-08 12:04:48 +00:00
CheckConnectivity3rdPartyHosts
CheckConnectivityRemoteHost
2015-11-27 13:12:44 +00:00
rsync_cmd = " $( type -p $RSYNC_EXECUTABLE ) --rsync-path=\" $RSYNC_PATH \" $RSYNC_ARGS -8 --exclude \" $OSYNC_DIR \" $RSYNC_PATTERNS -e \" $RSYNC_SSH_CMD \" --list-only $REMOTE_USER @ $REMOTE_HOST :\" $escaped_replica_path /\" | grep \"^-\|^d\" | awk '{\$1=\$2=\$3=\$4=\"\" ;print}' | awk '{\$1=\$1 ;print}' | (grep -v \"^\. $\" || :) | sort > \" $RUN_DIR / $PROGRAM . $replica_type . $SCRIPT_PID \" & "
2013-11-04 21:11:43 +00:00
else
2015-11-27 13:12:44 +00:00
rsync_cmd = " $( type -p $RSYNC_EXECUTABLE ) --rsync-path=\" $RSYNC_PATH \" $RSYNC_ARGS -8 --exclude \" $OSYNC_DIR \" $RSYNC_PATTERNS --list-only \" $replica_path /\" | grep \"^-\|^d\" | awk '{\$1=\$2=\$3=\$4=\"\" ;print}' | awk '{\$1=\$1 ;print}' | (grep -v \"^\. $\" || :) | sort > \" $RUN_DIR / $PROGRAM . $replica_type . $SCRIPT_PID \" & "
2013-11-04 21:11:43 +00:00
fi
2015-09-08 14:08:14 +00:00
Logger " RSYNC_CMD: $rsync_cmd " "DEBUG"
2014-01-19 19:31:14 +00:00
## Redirect commands stderr here to get rsync stderr output in logfile
2015-09-23 14:10:11 +00:00
eval " $rsync_cmd " 2>> " $LOG_FILE "
2015-09-14 07:23:24 +00:00
WaitForCompletion $! $SOFT_MAX_EXEC_TIME $HARD_MAX_EXEC_TIME $FUNCNAME
2013-11-04 21:11:43 +00:00
retval = $?
2014-01-19 19:31:14 +00:00
## Retval 24 = some files vanished while creating list
2015-11-12 00:37:43 +00:00
if ( [ $retval = = 0 ] || [ $retval = = 24 ] ) && [ -f " $RUN_DIR / $PROGRAM . $replica_type . $SCRIPT_PID " ] ; then
mv -f " $RUN_DIR / $PROGRAM . $replica_type . $SCRIPT_PID " " $INITIATOR_STATE_DIR / $replica_type $tree_filename "
2014-05-26 22:50:46 +00:00
return $?
2013-11-04 21:11:43 +00:00
else
2015-09-08 14:08:14 +00:00
Logger "Cannot create replica file list." "CRITICAL"
2014-05-26 22:50:46 +00:00
exit $retval
2013-07-16 21:06:26 +00:00
fi
2013-07-18 20:41:31 +00:00
}
2013-07-15 22:10:23 +00:00
2015-09-10 15:48:57 +00:00
# delete_list(replica, tree-file-after, tree-file-current, deleted-list-file, deleted-failed-list-file): Creates a list of files vanished from last run on replica $1 (initiator/target)
2015-09-08 12:11:08 +00:00
function delete_list {
2015-09-10 15:48:57 +00:00
local replica_type = " ${ 1 } " # replica type: initiator, target
2015-09-09 11:31:42 +00:00
local tree_file_after = " ${ 2 } " # tree-file-after, will be prefixed with replica type
local tree_file_current = " ${ 3 } " # tree-file-current, will be prefixed with replica type
local deleted_list_file = " ${ 4 } " # file containing deleted file list, will be prefixed with replica type
2015-09-23 14:51:30 +00:00
local deleted_failed_list_file = " ${ 5 } " # file containing files that could not be deleted on last run, will be prefixed with replica type
2015-09-09 12:50:21 +00:00
2015-09-09 16:59:23 +00:00
# TODO: Check why external filenames are used (see _DRYRUN option because of NOSUFFIX)
2015-09-08 17:17:26 +00:00
Logger " Creating $replica_type replica deleted file list. " "NOTICE"
2015-09-10 15:48:57 +00:00
if [ -f " $INITIATOR_STATE_DIR / $replica_type $TREE_AFTER_FILENAME_NO_SUFFIX " ] ; then
2014-05-26 22:50:46 +00:00
## Same functionnality, comm is much faster than grep but is not available on every platform
2015-11-12 00:37:43 +00:00
if type comm > /dev/null 2>& 1 ; then
2015-09-10 15:48:57 +00:00
cmd = " comm -23 \" $INITIATOR_STATE_DIR / $replica_type $TREE_AFTER_FILENAME_NO_SUFFIX \" \" $INITIATOR_STATE_DIR / $replica_type $tree_file_current \" > \" $INITIATOR_STATE_DIR / $replica_type $deleted_list_file \" "
2014-01-17 13:05:20 +00:00
else
2014-05-26 22:50:46 +00:00
## The || : forces the command to have a good result
2015-09-10 15:48:57 +00:00
cmd = " (grep -F -x -v -f \" $INITIATOR_STATE_DIR / $replica_type $tree_file_current \" \" $INITIATOR_STATE_DIR / $replica_type $TREE_AFTER_FILENAME_NO_SUFFIX \" || :) > \" $INITIATOR_STATE_DIR / $replica_type $deleted_list_file \" "
2014-01-17 13:05:20 +00:00
fi
2014-01-19 19:31:14 +00:00
2015-09-08 14:08:14 +00:00
Logger " CMD: $cmd " "DEBUG"
2015-09-23 14:10:11 +00:00
eval " $cmd " 2>> " $LOG_FILE "
2014-07-08 00:00:23 +00:00
retval = $?
# Add delete failed file list to current delete list and then empty it
2015-09-10 15:48:57 +00:00
if [ -f " $INITIATOR_STATE_DIR / $replica_type $deleted_failed_list_file " ] ; then
cat " $INITIATOR_STATE_DIR / $replica_type $deleted_failed_list_file " >> " $INITIATOR_STATE_DIR / $replica_type $deleted_list_file "
rm -f " $INITIATOR_STATE_DIR / $replica_type $deleted_failed_list_file "
2014-07-08 00:00:23 +00:00
fi
return $retval
2015-09-08 12:04:48 +00:00
else
2015-09-10 15:48:57 +00:00
touch " $INITIATOR_STATE_DIR / $replica_type $deleted_list_file "
2014-07-08 00:00:23 +00:00
return $retval
2015-09-08 12:04:48 +00:00
fi
2013-07-18 20:41:31 +00:00
}
2013-07-15 22:10:23 +00:00
2014-05-26 22:50:46 +00:00
# sync_update(source replica, destination replica, delete_list_filename)
2015-09-08 12:11:08 +00:00
function sync_update {
2015-09-10 15:48:57 +00:00
local source_replica = " ${ 1 } " # Contains replica type of source: initiator, target
local destination_replica = " ${ 2 } " # Contains replica type of destination: initiator, target
2015-09-09 09:23:47 +00:00
local delete_list_filename = " ${ 3 } " # Contains deleted list filename, will be prefixed with replica type
Logger " Updating $destination_replica replica. " "NOTICE"
2015-09-10 15:48:57 +00:00
if [ " $source_replica " = = "initiator" ] ; then
SOURCE_DIR = " $INITIATOR_SYNC_DIR "
ESC_SOURCE_DIR = $( EscapeSpaces " $INITIATOR_SYNC_DIR " )
DEST_DIR = " $TARGET_SYNC_DIR "
ESC_DEST_DIR = $( EscapeSpaces " $TARGET_SYNC_DIR " )
BACKUP_DIR = " $TARGET_BACKUP "
2015-09-08 12:04:48 +00:00
else
2015-09-10 15:48:57 +00:00
SOURCE_DIR = " $TARGET_SYNC_DIR "
ESC_SOURCE_DIR = $( EscapeSpaces " $TARGET_SYNC_DIR " )
DEST_DIR = " $INITIATOR_SYNC_DIR "
ESC_DEST_DIR = $( EscapeSpaces " $INITIATOR_SYNC_DIR " )
BACKUP_DIR = " $INITIATOR_BACKUP "
2015-09-08 12:04:48 +00:00
fi
2014-05-25 17:09:30 +00:00
2015-11-12 00:37:43 +00:00
if [ " $REMOTE_OPERATION " = = "yes" ] ; then
2015-09-08 12:04:48 +00:00
CheckConnectivity3rdPartyHosts
CheckConnectivityRemoteHost
2015-09-10 15:48:57 +00:00
if [ " $source_replica " = = "initiator" ] ; then
2015-11-27 13:12:44 +00:00
rsync_cmd = " $( type -p $RSYNC_EXECUTABLE ) --rsync-path=\" $RSYNC_PATH \" $RSYNC_ARGS $SYNC_OPTS -e \" $RSYNC_SSH_CMD \" $BACKUP_DIR --exclude \" $OSYNC_DIR \" $RSYNC_PATTERNS --exclude-from=\" $INITIATOR_STATE_DIR / $source_replica $delete_list_filename \" --exclude-from=\" $INITIATOR_STATE_DIR / $destination_replica $delete_list_filename \" \" $SOURCE_DIR /\" $REMOTE_USER @ $REMOTE_HOST :\" $ESC_DEST_DIR /\" > $RUN_DIR / $PROGRAM .update. $destination_replica . $SCRIPT_PID 2>&1 & "
2014-01-17 13:05:20 +00:00
else
2015-11-27 13:12:44 +00:00
rsync_cmd = " $( type -p $RSYNC_EXECUTABLE ) --rsync-path=\" $RSYNC_PATH \" $RSYNC_ARGS $SYNC_OPTS -e \" $RSYNC_SSH_CMD \" $BACKUP_DIR --exclude \" $OSYNC_DIR \" $RSYNC_PATTERNS --exclude-from=\" $INITIATOR_STATE_DIR / $destination_replica $delete_list_filename \" --exclude-from=\" $INITIATOR_STATE_DIR / $source_replica $delete_list_filename \" $REMOTE_USER @ $REMOTE_HOST :\" $ESC_SOURCE_DIR /\" \" $DEST_DIR /\" > $RUN_DIR / $PROGRAM .update. $destination_replica . $SCRIPT_PID 2>&1 & "
2014-01-17 13:05:20 +00:00
fi
2013-07-21 19:40:55 +00:00
else
2015-11-27 13:12:44 +00:00
rsync_cmd = " $( type -p $RSYNC_EXECUTABLE ) --rsync-path=\" $RSYNC_PATH \" $RSYNC_ARGS $SYNC_OPTS $BACKUP_DIR --exclude \" $OSYNC_DIR \" $RSYNC_PATTERNS --exclude-from=\" $INITIATOR_STATE_DIR / $source_replica $delete_list_filename \" --exclude-from=\" $INITIATOR_STATE_DIR / $destination_replica $delete_list_filename \" \" $SOURCE_DIR /\" \" $DEST_DIR /\" > $RUN_DIR / $PROGRAM .update. $destination_replica . $SCRIPT_PID 2>&1 & "
2013-07-23 18:57:38 +00:00
fi
2015-09-08 14:08:14 +00:00
Logger " RSYNC_CMD: $rsync_cmd " "DEBUG"
2013-07-24 08:38:42 +00:00
eval " $rsync_cmd "
2015-09-14 07:23:24 +00:00
WaitForCompletion $! $SOFT_MAX_EXEC_TIME $HARD_MAX_EXEC_TIME $FUNCNAME
2015-09-08 12:04:48 +00:00
retval = $?
2015-11-12 00:37:43 +00:00
if [ $_VERBOSE -eq 1 ] && [ -f " $RUN_DIR / $PROGRAM .update. $destination_replica . $SCRIPT_PID " ] ; then
Logger " List:\n $( cat $RUN_DIR /$PROGRAM .update.$destination_replica .$SCRIPT_PID ) " "NOTICE"
2015-09-08 12:04:48 +00:00
fi
if [ $retval != 0 ] && [ $retval != 24 ] ; then
2015-09-09 09:23:47 +00:00
Logger " Updating $destination_replica replica failed. Stopping execution. " "CRITICAL"
2015-11-12 00:37:43 +00:00
if [ $_VERBOSE -eq 0 ] && [ -f " $RUN_DIR / $PROGRAM .update. $destination_replica . $SCRIPT_PID " ] ; then
Logger " Rsync output:\n $( cat $RUN_DIR /$PROGRAM .update.$destination_replica .$SCRIPT_PID ) " "NOTICE"
2014-01-17 13:05:20 +00:00
fi
2014-05-26 22:50:46 +00:00
exit $retval
2014-01-19 19:31:14 +00:00
else
2015-09-09 09:23:47 +00:00
Logger " Updating $destination_replica replica succeded. " "NOTICE"
2014-05-26 22:50:46 +00:00
return 0
2015-09-08 12:04:48 +00:00
fi
2013-07-18 20:41:31 +00:00
}
2014-07-08 00:00:23 +00:00
# delete_local(replica dir, delete file list, delete dir, delete failed file)
2015-09-08 12:11:08 +00:00
function _delete_local {
2015-09-09 11:31:42 +00:00
local replica_dir = " ${ 1 } " # Full path to replica
local deleted_list_file = " ${ 2 } " # file containing deleted file list, will be prefixed with replica type
local deletion_dir = " ${ 3 } " # deletion dir in format .[workdir]/deleted
2015-09-23 14:51:30 +00:00
local deleted_failed_list_file = " ${ 4 } " # file containing files that could not be deleted on last run, will be prefixed with replica type
2015-09-09 11:31:42 +00:00
2015-09-23 14:51:30 +00:00
## On every run, check wheter the next item is already deleted because it is included in a directory already deleted
2014-05-25 15:51:05 +00:00
previous_file = ""
OLD_IFS = $IFS
IFS = $'\r\n'
2015-09-10 15:48:57 +00:00
for files in $( cat " $INITIATOR_STATE_DIR / $deleted_list_file " )
2015-09-08 12:04:48 +00:00
do
if [ [ " $files " != " $previous_file / " * ] ] && [ " $files " != "" ] ; then
if [ " $SOFT_DELETE " != "no" ] ; then
2015-09-09 11:31:42 +00:00
if [ ! -d " $replica_dir $deletion_dir " ] ; then
mkdir -p " $replica_dir $deletion_dir "
2015-09-08 12:04:48 +00:00
if [ $? != 0 ] ; then
2015-09-08 14:08:14 +00:00
Logger "Cannot create replica deletion directory." "ERROR"
2014-05-25 15:51:05 +00:00
fi
2015-09-08 12:04:48 +00:00
fi
2014-05-25 15:51:05 +00:00
2015-09-09 16:59:23 +00:00
if [ $_VERBOSE -eq 1 ] ; then
2015-09-09 11:31:42 +00:00
Logger " Soft deleting $replica_dir $files " "NOTICE"
2014-05-25 15:51:05 +00:00
fi
2014-05-25 17:09:30 +00:00
2015-09-09 16:59:23 +00:00
if [ $_DRYRUN -ne 1 ] ; then
2015-09-09 11:31:42 +00:00
if [ -e " $replica_dir $deletion_dir / $files " ] ; then
2015-09-23 14:10:11 +00:00
rm -rf " ${ replica_dir : ? } $deletion_dir / $files "
2015-06-24 19:43:00 +00:00
fi
2015-06-26 14:31:11 +00:00
# In order to keep full path on soft deletion, create parent directories before move
parentdir = " $( dirname " $files " ) "
2015-09-08 12:04:48 +00:00
if [ " $parentdir " != "." ] ; then
2015-09-09 11:31:42 +00:00
mkdir --parents " $replica_dir $deletion_dir / $parentdir "
mv -f " $replica_dir $files " " $replica_dir $deletion_dir / $parentdir "
2015-06-26 14:31:11 +00:00
else
2015-09-09 11:31:42 +00:00
mv -f " $replica_dir $files " " $replica_dir $deletion_dir "
2015-06-26 14:31:11 +00:00
fi
2015-09-08 12:04:48 +00:00
if [ $? != 0 ] ; then
2015-09-09 11:31:42 +00:00
Logger " Cannot move $replica_dir $files to deletion directory. " "ERROR"
2015-09-10 15:48:57 +00:00
echo " $files " >> " $INITIATOR_STATE_DIR / $deleted_failed_list_file "
2014-05-25 15:51:05 +00:00
fi
fi
2015-09-08 12:04:48 +00:00
else
2015-09-09 16:59:23 +00:00
if [ $_VERBOSE -eq 1 ] ; then
2015-09-09 11:31:42 +00:00
Logger " Deleting $replica_dir $files " "NOTICE"
2014-05-25 15:51:05 +00:00
fi
2015-09-09 16:59:23 +00:00
if [ $_DRYRUN -ne 1 ] ; then
2015-09-09 11:31:42 +00:00
rm -rf " $replica_dir $files "
2015-09-08 12:04:48 +00:00
if [ $? != 0 ] ; then
2015-09-09 11:31:42 +00:00
Logger " Cannot delete $replica_dir $files " "ERROR"
2015-09-10 15:48:57 +00:00
echo " $files " >> " $INITIATOR_STATE_DIR / $deleted_failed_list_file "
2014-05-25 15:51:05 +00:00
fi
2015-09-08 12:04:48 +00:00
fi
2014-05-25 15:51:05 +00:00
fi
previous_file = " $files "
fi
2015-09-08 12:04:48 +00:00
done
2014-05-25 15:51:05 +00:00
IFS = $OLD_IFS
}
2015-09-08 12:11:08 +00:00
function _delete_remote {
2015-09-09 11:31:42 +00:00
local replica_dir = " ${ 1 } " # Full path to replica
local deleted_list_file = " ${ 2 } " # file containing deleted file list, will be prefixed with replica type
local deletion_dir = " ${ 3 } " # deletion dir in format .[workdir]/deleted
2015-09-23 14:51:30 +00:00
local deleted_failed_list_file = " ${ 4 } " # file containing files that could not be deleted on last run, will be prefixed with replica type
2015-09-09 11:31:42 +00:00
2014-05-25 15:51:05 +00:00
## This is a special coded function. Need to redelcare local functions on remote host, passing all needed variables as escaped arguments to ssh command.
## Anything beetween << ENDSSH and ENDSSH will be executed remotely
# Additionnaly, we need to copy the deletetion list to the remote state folder
2015-09-10 15:48:57 +00:00
ESC_DEST_DIR = " $( EscapeSpaces " $TARGET_STATE_DIR " ) "
2015-11-12 00:37:43 +00:00
rsync_cmd = " $( type -p $RSYNC_EXECUTABLE ) --rsync-path=\" $RSYNC_PATH \" $SYNC_OPTS -e \" $RSYNC_SSH_CMD \" \" $INITIATOR_STATE_DIR / $2 \" $REMOTE_USER @ $REMOTE_HOST :\" $ESC_DEST_DIR /\" > $RUN_DIR / $PROGRAM . $FUNCNAME .precopy. $SCRIPT_PID 2>&1 "
2015-09-08 14:08:14 +00:00
Logger " RSYNC_CMD: $rsync_cmd " "DEBUG"
2015-09-23 14:10:11 +00:00
eval " $rsync_cmd " 2>> " $LOG_FILE "
2015-09-08 12:04:48 +00:00
if [ $? != 0 ] ; then
2015-11-16 09:07:41 +00:00
Logger "Cannot copy the deletion list to remote replica." "ERROR"
2015-11-12 00:37:43 +00:00
if [ -f " $RUN_DIR / $PROGRAM . $FUNCNAME .precopy. $SCRIPT_PID " ] ; then
2015-11-16 09:07:41 +00:00
Logger " $( cat $RUN_DIR /$PROGRAM .$FUNCNAME .precopy.$SCRIPT_PID ) " "ERROR"
2014-05-25 15:51:05 +00:00
fi
exit 1
2014-01-19 19:31:14 +00:00
fi
2014-05-25 15:51:05 +00:00
2015-11-12 00:37:43 +00:00
$SSH_CMD ERROR_ALERT = 0 sync_on_changes = $sync_on_changes _SILENT = $_SILENT _DEBUG = $_DEBUG _DRYRUN = $_DRYRUN _VERBOSE = $_VERBOSE COMMAND_SUDO = $COMMAND_SUDO FILE_LIST = " $( EscapeSpaces " $TARGET_STATE_DIR / $deleted_list_file " ) " REPLICA_DIR = " $( EscapeSpaces " $replica_dir " ) " DELETE_DIR = " $( EscapeSpaces " $deletion_dir " ) " FAILED_DELETE_LIST = " $( EscapeSpaces " $TARGET_STATE_DIR / $deleted_failed_list_file " ) " 'bash -s' << 'ENDSSH' > " $RUN_DIR / $PROGRAM .remote_deletion. $SCRIPT_PID " 2>& 1 &
2014-05-25 15:51:05 +00:00
## The following lines are executed remotely
2015-09-08 14:08:14 +00:00
function _logger {
local value = " ${ 1 } " # What to log
echo -e " $value " >> " $LOG_FILE "
2015-09-08 12:04:48 +00:00
2015-09-09 16:59:23 +00:00
if [ $_SILENT -eq 0 ] ; then
2015-09-08 14:08:14 +00:00
echo -e " $value "
2015-09-08 12:04:48 +00:00
fi
2014-05-25 15:51:05 +00:00
}
2015-09-08 14:08:14 +00:00
function Logger {
local value = " ${ 1 } " # What to log
local level = " ${ 2 } " # Log level: DEBUG, NOTICE, WARN, ERROR, CRITIAL
2014-05-25 15:51:05 +00:00
2015-09-08 14:08:14 +00:00
# Special case in daemon mode we should timestamp instead of counting seconds
if [ $sync_on_changes -eq 1 ] ; then
prefix = " $( date) - "
else
2015-09-08 17:17:26 +00:00
prefix = " RTIME: $SECONDS - "
2015-09-08 14:08:14 +00:00
fi
if [ " $level " = = "CRITICAL" ] ; then
_logger " $prefix \e[41m $value \e[0m "
ERROR_ALERT = 1
elif [ " $level " = = "ERROR" ] ; then
_logger " $prefix \e[91m $value \e[0m "
ERROR_ALERT = 1
elif [ " $level " = = "WARN" ] ; then
_logger " $prefix \e[93m $value \e[0m "
elif [ " $level " = = "NOTICE" ] ; then
_logger " $prefix $value "
2015-09-08 17:17:26 +00:00
elif [ " $level " = = "DEBUG" ] ; then
2015-09-09 16:59:23 +00:00
if [ " $_DEBUG " = = "yes" ] ; then
2015-09-08 17:17:26 +00:00
_logger " $prefix $value "
fi
2015-09-08 14:08:14 +00:00
else
_logger "\e[41mLogger function called without proper loglevel.\e[0m"
_logger " $prefix $value "
fi
}
2015-09-23 14:10:11 +00:00
2014-07-08 00:00:23 +00:00
## Empty earlier failed delete list
> " $FAILED_DELETE_LIST "
2015-09-23 14:51:30 +00:00
## On every run, check wheter the next item is already deleted because it is included in a directory already deleted
2015-09-08 12:04:48 +00:00
previous_file = ""
2014-09-22 19:21:37 +00:00
OLD_IFS = $IFS
IFS = $'\r\n'
2015-09-08 12:04:48 +00:00
for files in $( cat " $FILE_LIST " )
do
if [ [ " $files " != " $previous_file / " * ] ] && [ " $files " != "" ] ; then
if [ ! -d " $REPLICA_DIR $DELETE_DIR " ] ; then
$COMMAND_SUDO mkdir -p " $REPLICA_DIR $DELETE_DIR "
if [ $? != 0 ] ; then
2015-09-08 14:08:14 +00:00
Logger "Cannot create replica deletion directory." "ERROR"
2015-09-08 12:04:48 +00:00
fi
fi
if [ " $SOFT_DELETE " != "no" ] ; then
2015-09-09 16:59:23 +00:00
if [ $_VERBOSE -eq 1 ] ; then
2015-09-08 14:08:14 +00:00
Logger " Soft deleting $REPLICA_DIR $files " "NOTICE"
2015-09-08 12:04:48 +00:00
fi
2015-09-09 16:59:23 +00:00
if [ $_DRYRUN -ne 1 ] ; then
2015-09-08 12:04:48 +00:00
if [ -e " $REPLICA_DIR $DELETE_DIR / $files " ] ; then
2015-06-24 19:50:46 +00:00
$COMMAND_SUDO rm -rf " $REPLICA_DIR $DELETE_DIR / $files "
2015-06-24 19:43:00 +00:00
fi
2015-06-26 14:31:11 +00:00
# In order to keep full path on soft deletion, create parent directories before move
parentdir = " $( dirname " $files " ) "
2015-09-08 12:04:48 +00:00
if [ " $parentdir " != "." ] ; then
2015-06-26 14:31:11 +00:00
$COMMAND_SUDO mkdir --parents " $REPLICA_DIR $DELETE_DIR / $parentdir "
$COMMAND_SUDO mv -f " $REPLICA_DIR $files " " $REPLICA_DIR $DELETE_DIR / $parentdir "
else
2015-09-23 14:51:30 +00:00
$COMMAND_SUDO mv -f " $REPLICA_DIR $files " " $REPLICA_DIR $DELETE_DIR " 1
2015-06-26 14:31:11 +00:00
fi
2015-09-08 12:04:48 +00:00
if [ $? != 0 ] ; then
2015-09-08 14:08:14 +00:00
Logger " Cannot move $REPLICA_DIR $files to deletion directory. " "ERROR"
2014-07-08 00:00:23 +00:00
echo " $files " >> " $FAILED_DELETE_LIST "
2014-05-25 15:51:05 +00:00
fi
2015-09-08 12:04:48 +00:00
fi
else
2015-09-09 16:59:23 +00:00
if [ $_VERBOSE -eq 1 ] ; then
2015-09-08 14:08:14 +00:00
Logger " Deleting $REPLICA_DIR $files " "NOTICE"
2015-09-08 12:04:48 +00:00
fi
2015-09-09 16:59:23 +00:00
if [ $_DRYRUN -ne 1 ] ; then
2015-09-08 12:04:48 +00:00
$COMMAND_SUDO rm -rf " $REPLICA_DIR $files "
if [ $? != 0 ] ; then
2015-09-08 14:08:14 +00:00
Logger " Cannot delete $REPLICA_DIR $files " "ERROR"
2015-09-10 15:48:57 +00:00
echo " $files " >> " $TARGET_STATE_DIR / $FAILED_DELETE_LIST "
2014-05-25 15:51:05 +00:00
fi
2015-09-08 12:04:48 +00:00
fi
fi
previous_file = " $files "
fi
done
2014-09-22 19:21:37 +00:00
IFS = $OLD_IFS
2014-05-25 15:51:05 +00:00
ENDSSH
2014-07-08 00:00:23 +00:00
2014-05-25 17:09:30 +00:00
## Need to add a trivial sleep time to give ssh time to log to local file
sleep 5
2014-07-08 00:00:23 +00:00
## Copy back the deleted failed file list
2015-09-10 15:48:57 +00:00
ESC_SOURCE_FILE = " $( EscapeSpaces " $TARGET_STATE_DIR / $deleted_failed_list_file " ) "
2015-09-19 16:40:26 +00:00
#TODO: Need to check if file exists prior to copy (or add a filemask and copy all state files)
2015-11-12 00:37:43 +00:00
rsync_cmd = " $( type -p $RSYNC_EXECUTABLE ) --rsync-path=\" $RSYNC_PATH \" $SYNC_OPTS -e \" $RSYNC_SSH_CMD \" $REMOTE_USER @ $REMOTE_HOST :\" $ESC_SOURCE_FILE \" \" $INITIATOR_STATE_DIR \" > \" $RUN_DIR / $PROGRAM .remote_failed_deletion_list_copy. $SCRIPT_PID \" "
2015-09-08 14:08:14 +00:00
Logger " RSYNC_CMD: $rsync_cmd " "DEBUG"
2015-09-23 14:10:11 +00:00
eval " $rsync_cmd " 2>> " $LOG_FILE "
2015-09-08 12:04:48 +00:00
if [ $? != 0 ] ; then
2015-09-10 15:48:57 +00:00
Logger "Cannot copy back the failed deletion list to initiator replica." "CRITICAL"
2015-11-12 00:37:43 +00:00
if [ -f " $RUN_DIR / $PROGRAM .remote_failed_deletion_list_copy. $SCRIPT_PID " ] ; then
Logger " Comand output: $( cat $RUN_DIR /$PROGRAM .remote_failed_deletion_list_copy.$SCRIPT_PID ) " "NOTICE"
2015-09-08 12:04:48 +00:00
fi
exit 1
fi
2014-07-08 00:00:23 +00:00
2014-05-25 15:51:05 +00:00
exit $?
}
2014-07-08 00:00:23 +00:00
# delete_propagation(replica name, deleted_list_filename, deleted_failed_file_list)
2015-09-08 12:11:08 +00:00
function deletion_propagation {
2015-09-10 15:48:57 +00:00
local replica_type = " ${ 1 } " # Contains replica type: initiator, target
2015-09-09 11:31:42 +00:00
local deleted_list_file = " ${ 2 } " # file containing deleted file list, will be prefixed with replica type
2015-09-23 14:51:30 +00:00
local deleted_failed_list_file = " ${ 3 } " # file containing files that could not be deleted on last run, will be prefixed with replica type
2015-09-09 11:31:42 +00:00
Logger " Propagating deletions to $replica_type replica. " "NOTICE"
2014-05-25 17:09:30 +00:00
2015-09-10 15:48:57 +00:00
if [ " $replica_type " = = "initiator" ] ; then
REPLICA_DIR = " $INITIATOR_SYNC_DIR "
DELETE_DIR = " $INITIATOR_DELETE_DIR "
2014-05-25 15:51:05 +00:00
2015-09-10 15:48:57 +00:00
_delete_local " $REPLICA_DIR " " target $deleted_list_file " " $DELETE_DIR " " target $deleted_failed_list_file " &
2015-09-14 07:23:24 +00:00
WaitForCompletion $! $SOFT_MAX_EXEC_TIME $HARD_MAX_EXEC_TIME $FUNCNAME
2014-05-25 15:51:05 +00:00
retval = $?
2015-09-08 12:04:48 +00:00
if [ $retval != 0 ] ; then
2015-09-09 11:31:42 +00:00
Logger " Deletion on replica $replica_type failed. " "CRITICAL"
2015-09-08 12:04:48 +00:00
exit 1
fi
2013-07-18 20:41:31 +00:00
else
2015-09-10 15:48:57 +00:00
REPLICA_DIR = " $TARGET_SYNC_DIR "
DELETE_DIR = " $TARGET_DELETE_DIR "
2013-07-19 23:00:58 +00:00
2015-11-12 00:37:43 +00:00
if [ " $REMOTE_OPERATION " = = "yes" ] ; then
2015-09-10 15:48:57 +00:00
_delete_remote " $REPLICA_DIR " " initiator $deleted_list_file " " $DELETE_DIR " " initiator $deleted_failed_list_file " &
2014-05-25 15:51:05 +00:00
else
2015-09-10 15:48:57 +00:00
_delete_local " $REPLICA_DIR " " initiator $deleted_list_file " " $DELETE_DIR " " initiator $deleted_failed_list_file " &
2014-05-25 15:51:05 +00:00
fi
2015-09-14 07:23:24 +00:00
WaitForCompletion $! $SOFT_MAX_EXEC_TIME $HARD_MAX_EXEC_TIME $FUNCNAME
2014-05-25 15:51:05 +00:00
retval = $?
2015-09-08 12:04:48 +00:00
if [ $retval = = 0 ] ; then
2015-11-12 00:37:43 +00:00
if [ -f " $RUN_DIR / $PROGRAM ._delete_remote. $SCRIPT_PID " ] && [ $_VERBOSE -eq 1 ] ; then
Logger " Remote:\n $( cat $RUN_DIR /$PROGRAM ._delete_remote.$SCRIPT_PID ) " "DEBUG"
2014-05-25 17:09:30 +00:00
fi
2014-05-26 22:50:46 +00:00
return $retval
2014-05-25 15:51:05 +00:00
else
2015-09-08 14:08:14 +00:00
Logger "Deletion on remote system failed." "CRITICAL"
2015-11-12 00:37:43 +00:00
if [ -f " $RUN_DIR / $PROGRAM_remote_deletion_ $SCRIPT_PID " ] ; then
Logger " Remote:\n $( cat $RUN_DIR /$PROGRAM ._delete_remote.$SCRIPT_PID ) " "CRITICAL"
2014-05-25 15:51:05 +00:00
fi
2014-05-26 22:50:46 +00:00
exit 1
2015-09-08 12:04:48 +00:00
fi
2013-07-24 08:38:42 +00:00
fi
2013-07-18 20:41:31 +00:00
}
2014-05-26 22:50:46 +00:00
###### Sync function in 5 steps of each 2 runs (functions above)
######
2015-09-10 15:48:57 +00:00
###### Step 1: Create current tree list for initiator and target replicas (Steps 1M and 1S)
###### Step 2: Create deleted file list for initiator and target replicas (Steps 2M and 2S)
###### Step 3: Update initiator and target replicas (Steps 3M and 3S, order depending on conflict prevalence)
###### Step 4: Deleted file propagation to initiator and target replicas (Steps 4M and 4S)
###### Step 5: Create after run tree list for initiator and target replicas (Steps 5M and 5S)
2014-05-26 22:50:46 +00:00
2015-09-08 12:11:08 +00:00
function Sync {
2015-09-12 17:33:53 +00:00
2015-09-08 14:08:14 +00:00
Logger "Starting synchronization task." "NOTICE"
2015-09-08 12:04:48 +00:00
CheckConnectivity3rdPartyHosts
CheckConnectivityRemoteHost
2013-07-18 20:41:31 +00:00
2015-09-10 15:48:57 +00:00
if [ -f " $INITIATOR_LAST_ACTION " ] && [ " $RESUME_SYNC " != "no" ] ; then
resume_sync = $( cat " $INITIATOR_LAST_ACTION " )
if [ -f " $INITIATOR_RESUME_COUNT " ] ; then
resume_count = $( cat " $INITIATOR_RESUME_COUNT " )
2013-07-19 10:49:40 +00:00
else
resume_count = 0
fi
2015-09-08 12:04:48 +00:00
if [ $resume_count -lt $RESUME_TRY ] ; then
if [ " $resume_sync " != "sync.success" ] ; then
2015-09-10 15:48:57 +00:00
Logger " WARNING: Trying to resume aborted osync execution on $( $STAT_CMD " $INITIATOR_LAST_ACTION " ) at task [ $resume_sync ]. [ $resume_count ] previous tries. " "WARN"
echo $(( $resume_count + 1 )) > " $INITIATOR_RESUME_COUNT "
2013-07-19 10:49:40 +00:00
else
resume_sync = none
fi
2013-07-18 20:41:31 +00:00
else
2015-09-15 06:57:32 +00:00
Logger " Will not resume aborted osync execution. Too many resume tries [ $resume_count ]. " "WARN"
2015-09-10 15:48:57 +00:00
echo "noresume" > " $INITIATOR_LAST_ACTION "
echo "0" > " $INITIATOR_RESUME_COUNT "
2013-07-18 20:41:31 +00:00
resume_sync = none
fi
else
resume_sync = none
fi
2013-07-30 22:18:39 +00:00
################################################################################################################################################# Actual sync begins here
2014-05-08 10:36:36 +00:00
## This replaces the case statement because ;& operator is not supported in bash 3.2... Code is more messy than case :(
2015-09-10 15:48:57 +00:00
if [ " $resume_sync " = = "none" ] || [ " $resume_sync " = = "noresume" ] || [ " $resume_sync " = = "initiator-replica-tree.fail" ] ; then
#initiator_tree_current
tree_list " $INITIATOR_SYNC_DIR " initiator " $TREE_CURRENT_FILENAME "
2015-09-08 12:04:48 +00:00
if [ $? = = 0 ] ; then
2015-09-10 15:48:57 +00:00
echo " ${ SYNC_ACTION [0] } .success " > " $INITIATOR_LAST_ACTION "
2014-05-26 22:50:46 +00:00
else
2015-09-10 15:48:57 +00:00
echo " ${ SYNC_ACTION [0] } .fail " > " $INITIATOR_LAST_ACTION "
2014-05-26 22:50:46 +00:00
fi
2013-07-30 22:18:39 +00:00
resume_sync = "resumed"
fi
2015-09-08 12:04:48 +00:00
if [ " $resume_sync " = = "resumed" ] || [ " $resume_sync " = = " ${ SYNC_ACTION [0] } .success " ] || [ " $resume_sync " = = " ${ SYNC_ACTION [1] } .fail " ] ; then
2015-09-10 15:48:57 +00:00
#target_tree_current
tree_list " $TARGET_SYNC_DIR " target " $TREE_CURRENT_FILENAME "
2015-09-08 12:04:48 +00:00
if [ $? = = 0 ] ; then
2015-09-10 15:48:57 +00:00
echo " ${ SYNC_ACTION [1] } .success " > " $INITIATOR_LAST_ACTION "
2014-05-26 22:50:46 +00:00
else
2015-09-10 15:48:57 +00:00
echo " ${ SYNC_ACTION [1] } .fail " > " $INITIATOR_LAST_ACTION "
2014-05-26 22:50:46 +00:00
fi
2013-07-30 22:18:39 +00:00
resume_sync = "resumed"
fi
2015-09-08 12:04:48 +00:00
if [ " $resume_sync " = = "resumed" ] || [ " $resume_sync " = = " ${ SYNC_ACTION [1] } .success " ] || [ " $resume_sync " = = " ${ SYNC_ACTION [2] } .fail " ] ; then
2015-09-10 15:48:57 +00:00
delete_list initiator " $TREE_AFTER_FILENAME " " $TREE_CURRENT_FILENAME " " $DELETED_LIST_FILENAME " " $FAILED_DELETE_LIST_FILENAME "
2015-09-08 12:04:48 +00:00
if [ $? = = 0 ] ; then
2015-09-10 15:48:57 +00:00
echo " ${ SYNC_ACTION [2] } .success " > " $INITIATOR_LAST_ACTION "
2014-05-26 22:50:46 +00:00
else
2015-09-10 15:48:57 +00:00
echo " ${ SYNc_ACTION [2] } .fail " > " $INITIATOR_LAST_ACTION "
2014-05-26 22:50:46 +00:00
fi
2013-07-30 22:18:39 +00:00
resume_sync = "resumed"
fi
2015-09-08 12:04:48 +00:00
if [ " $resume_sync " = = "resumed" ] || [ " $resume_sync " = = " ${ SYNC_ACTION [2] } .success " ] || [ " $resume_sync " = = " ${ SYNC_ACTION [3] } .fail " ] ; then
2015-09-10 15:48:57 +00:00
delete_list target " $TREE_AFTER_FILENAME " " $TREE_CURRENT_FILENAME " " $DELETED_LIST_FILENAME " " $FAILED_DELETE_LIST_FILENAME "
2015-09-08 12:04:48 +00:00
if [ $? = = 0 ] ; then
2015-09-10 15:48:57 +00:00
echo " ${ SYNC_ACTION [3] } .success " > " $INITIATOR_LAST_ACTION "
2014-05-26 22:50:46 +00:00
else
2015-09-10 15:48:57 +00:00
echo " ${ SYNC_ACTION [3] } .fail " > " $INITIATOR_LAST_ACTION "
2014-05-26 22:50:46 +00:00
fi
2013-07-30 22:18:39 +00:00
resume_sync = "resumed"
2015-09-08 12:04:48 +00:00
fi
if [ " $resume_sync " = = "resumed" ] || [ " $resume_sync " = = " ${ SYNC_ACTION [3] } .success " ] || [ " $resume_sync " = = " ${ SYNC_ACTION [4] } .fail " ] || [ " $resume_sync " = = " ${ SYNC_ACTION [5] } .fail " ] || [ " $resume_sync " = = " ${ SYNC_ACTION [4] } .success " ] || [ " $resume_sync " = = " ${ SYNC_ACTION [5] } .success " ] ; then
2015-09-10 15:48:57 +00:00
if [ " $CONFLICT_PREVALANCE " != "initiator" ] ; then
2015-09-08 12:04:48 +00:00
if [ " $resume_sync " = = "resumed" ] || [ " $resume_sync " = = " ${ SYNC_ACTION [3] } .success " ] || [ " $resume_sync " = = " ${ SYNC_ACTION [4] } .fail " ] ; then
2015-09-10 15:48:57 +00:00
sync_update target initiator " $DELETED_LIST_FILENAME "
2015-09-08 12:04:48 +00:00
if [ $? = = 0 ] ; then
2015-09-10 15:48:57 +00:00
echo " ${ SYNC_ACTION [4] } .success " > " $INITIATOR_LAST_ACTION "
2014-05-26 22:50:46 +00:00
else
2015-09-10 15:48:57 +00:00
echo " ${ SYNC_ACTION [4] } .fail " > " $INITIATOR_LAST_ACTION "
2014-05-26 22:50:46 +00:00
fi
2013-07-30 22:18:39 +00:00
resume_sync = "resumed"
fi
2015-09-08 12:04:48 +00:00
if [ " $resume_sync " = = "resumed" ] || [ " $resume_sync " = = " ${ SYNC_ACTION [4] } .success " ] || [ " $resume_sync " = = " ${ SYNC_ACTION [5] } .fail " ] ; then
2015-09-10 15:48:57 +00:00
sync_update initiator target " $DELETED_LIST_FILENAME "
2015-09-08 12:04:48 +00:00
if [ $? = = 0 ] ; then
2015-09-10 15:48:57 +00:00
echo " ${ SYNC_ACTION [5] } .success " > " $INITIATOR_LAST_ACTION "
2014-05-26 22:50:46 +00:00
else
2015-09-10 15:48:57 +00:00
echo " ${ SYNC_ACTION [5] } .fail " > " $INITIATOR_LAST_ACTION "
2014-05-26 22:50:46 +00:00
fi
2013-07-30 22:18:39 +00:00
resume_sync = "resumed"
fi
else
2015-09-08 12:04:48 +00:00
if [ " $resume_sync " = = "resumed" ] || [ " $resume_sync " = = " ${ SYNC_ACTION [3] } .success " ] || [ " $resume_sync " = = " ${ SYNC_ACTION [5] } .fail " ] ; then
2015-09-10 15:48:57 +00:00
sync_update initiator target " $DELETED_LIST_FILENAME "
2015-09-08 12:04:48 +00:00
if [ $? = = 0 ] ; then
2015-09-10 15:48:57 +00:00
echo " ${ SYNC_ACTION [5] } .success " > " $INITIATOR_LAST_ACTION "
2014-05-26 22:50:46 +00:00
else
2015-09-10 15:48:57 +00:00
echo " ${ SYNC_ACTION [5] } .fail " > " $INITIATOR_LAST_ACTION "
2014-05-26 22:50:46 +00:00
fi
2015-09-08 12:04:48 +00:00
resume_sync = "resumed"
fi
if [ " $resume_sync " = = "resumed" ] || [ " $resume_sync " = = " ${ SYNC_ACTION [5] } .success " ] || [ " $resume_sync " = = " ${ SYNC_ACTION [4] } .fail " ] ; then
2015-09-10 15:48:57 +00:00
sync_update target initiator " $DELETED_LIST_FILENAME "
2015-09-08 12:04:48 +00:00
if [ $? = = 0 ] ; then
2015-09-10 15:48:57 +00:00
echo " ${ SYNC_ACTION [4] } .success " > " $INITIATOR_LAST_ACTION "
2014-05-26 22:50:46 +00:00
else
2015-09-10 15:48:57 +00:00
echo " ${ SYNC_ACTION [4] } .fail " > " $INITIATOR_LAST_ACTION "
2014-05-26 22:50:46 +00:00
fi
2015-09-08 12:04:48 +00:00
resume_sync = "resumed"
fi
2013-07-30 22:18:39 +00:00
fi
fi
2015-09-08 12:04:48 +00:00
if [ " $resume_sync " = = "resumed" ] || [ " $resume_sync " = = " ${ SYNC_ACTION [5] } .success " ] || [ " $resume_sync " = = " ${ SYNC_ACTION [4] } .success " ] || [ " $resume_sync " = = " ${ SYNC_ACTION [6] } .fail " ] ; then
2015-09-10 15:48:57 +00:00
deletion_propagation target " $DELETED_LIST_FILENAME " " $FAILED_DELETE_LIST_FILENAME "
2015-09-08 12:04:48 +00:00
if [ $? = = 0 ] ; then
2015-09-10 15:48:57 +00:00
echo " ${ SYNC_ACTION [6] } .success " > " $INITIATOR_LAST_ACTION "
2014-05-26 22:50:46 +00:00
else
2015-09-10 15:48:57 +00:00
echo " ${ SYNC_ACTION [6] } .fail " > " $INITIATOR_LAST_ACTION "
2014-05-26 22:50:46 +00:00
fi
2013-07-30 22:18:39 +00:00
resume_sync = "resumed"
fi
2015-09-08 12:04:48 +00:00
if [ " $resume_sync " = = "resumed" ] || [ " $resume_sync " = = " ${ SYNC_ACTION [6] } .success " ] || [ " $resume_sync " = = " ${ SYNC_ACTION [7] } .fail " ] ; then
2015-09-10 15:48:57 +00:00
deletion_propagation initiator " $DELETED_LIST_FILENAME " " $FAILED_DELETE_LIST_FILENAME "
2015-09-08 12:04:48 +00:00
if [ $? = = 0 ] ; then
2015-09-10 15:48:57 +00:00
echo " ${ SYNC_ACTION [7] } .success " > " $INITIATOR_LAST_ACTION "
2014-05-26 22:50:46 +00:00
else
2015-09-10 15:48:57 +00:00
echo " ${ SYNC_ACTION [7] } .fail " > " $INITIATOR_LAST_ACTION "
2014-05-26 22:50:46 +00:00
fi
2013-07-30 22:18:39 +00:00
resume_sync = "resumed"
fi
2015-09-08 12:04:48 +00:00
if [ " $resume_sync " = = "resumed" ] || [ " $resume_sync " = = " ${ SYNC_ACTION [7] } .success " ] || [ " $resume_sync " = = " ${ SYNC_ACTION [8] } .fail " ] ; then
2015-09-10 15:48:57 +00:00
#initiator_tree_after
tree_list " $INITIATOR_SYNC_DIR " initiator " $TREE_AFTER_FILENAME "
2015-09-08 12:04:48 +00:00
if [ $? = = 0 ] ; then
2015-09-10 15:48:57 +00:00
echo " ${ SYNC_ACTION [8] } .success " > " $INITIATOR_LAST_ACTION "
2014-05-26 22:50:46 +00:00
else
2015-09-10 15:48:57 +00:00
echo " ${ SYNC_ACTION [8] } .fail " > " $INITIATOR_LAST_ACTION "
2014-05-26 22:50:46 +00:00
fi
2013-07-30 22:18:39 +00:00
resume_sync = "resumed"
fi
2015-09-08 12:04:48 +00:00
if [ " $resume_sync " = = "resumed" ] || [ " $resume_sync " = = " ${ SYNC_ACTION [8] } .success " ] || [ " $resume_sync " = = " ${ SYNC_ACTION [9] } .fail " ] ; then
2015-09-10 15:48:57 +00:00
#target_tree_after
tree_list " $TARGET_SYNC_DIR " target " $TREE_AFTER_FILENAME "
2015-09-08 12:04:48 +00:00
if [ $? = = 0 ] ; then
2015-09-10 15:48:57 +00:00
echo " ${ SYNC_ACTION [9] } .success " > " $INITIATOR_LAST_ACTION "
2014-05-26 22:50:46 +00:00
else
2015-09-10 15:48:57 +00:00
echo " ${ SYNC_ACTION [9] } .fail " > " $INITIATOR_LAST_ACTION "
2014-05-26 22:50:46 +00:00
fi
2013-07-30 22:18:39 +00:00
resume_sync = "resumed"
fi
2015-09-08 14:08:14 +00:00
Logger "Finished synchronization task." "NOTICE"
2015-09-10 15:48:57 +00:00
echo " ${ SYNC_ACTION [10] } " > " $INITIATOR_LAST_ACTION "
2014-01-19 19:31:14 +00:00
2015-09-10 15:48:57 +00:00
echo "0" > " $INITIATOR_RESUME_COUNT "
2013-07-18 20:41:31 +00:00
}
2015-09-11 17:39:57 +00:00
function _SoftDeleteLocal {
2015-09-12 10:57:27 +00:00
local replica_type = " ${ 1 } " # replica type (initiator, target)
local replica_deletion_path = " ${ 2 } " # Contains the full path to softdelete / backup directory without ending slash
local change_time = " ${ 3 } "
2015-09-08 17:17:26 +00:00
2015-09-12 10:57:27 +00:00
if [ -d " $replica_deletion_path " ] ; then
2015-09-09 16:59:23 +00:00
if [ $_DRYRUN -eq 1 ] ; then
2015-09-23 20:27:08 +00:00
Logger " Listing files older than $change_time days on $replica_type replica. Does not remove anything. " "NOTICE"
2015-03-30 23:46:07 +00:00
else
2015-09-23 20:27:08 +00:00
Logger " Removing files older than $change_time days on $replica_type replica. " "NOTICE"
2013-07-16 11:55:15 +00:00
fi
2015-09-09 16:59:23 +00:00
if [ $_VERBOSE -eq 1 ] ; then
2015-03-30 23:46:07 +00:00
# Cannot launch log function from xargs, ugly hack
2015-11-12 00:37:43 +00:00
$FIND_CMD " $replica_deletion_path / " -type f -ctime +$change_time -print0 | xargs -0 -I { } echo "Will delete file {}" > " $RUN_DIR / $PROGRAM . $FUNCNAME . $SCRIPT_PID "
Logger " Command output:\n $( cat $RUN_DIR /$PROGRAM .$FUNCNAME .$SCRIPT_PID ) " "NOTICE"
$FIND_CMD " $replica_deletion_path / " -type d -empty -ctime +$change_time -print0 | xargs -0 -I { } echo "Will delete directory {}" > " $RUN_DIR / $PROGRAM . $FUNCNAME . $SCRIPT_PID "
Logger " Command output:\n $( cat $RUN_DIR /$PROGRAM .$FUNCNAME .$SCRIPT_PID ) " "NOTICE"
2013-07-16 11:55:15 +00:00
fi
2015-09-09 16:59:23 +00:00
if [ $_DRYRUN -ne 1 ] ; then
2015-11-12 00:37:43 +00:00
$FIND_CMD " $replica_deletion_path / " -type f -ctime +$change_time -print0 | xargs -0 -I { } rm -f "{}" && $FIND_CMD " $replica_deletion_path / " -type d -empty -ctime +$change_time -print0 | xargs -0 -I { } rm -rf "{}" > " $RUN_DIR / $PROGRAM . $FUNCNAME . $SCRIPT_PID " 2>& 1 &
2013-07-21 19:40:55 +00:00
else
2015-03-30 23:46:07 +00:00
Dummy &
2013-07-16 11:55:15 +00:00
fi
2015-09-13 08:40:54 +00:00
WaitForCompletion $! $SOFT_MAX_EXEC_TIME $HARD_MAX_EXEC_TIME $FUNCNAME
2015-09-08 12:04:48 +00:00
retval = $?
if [ $retval -ne 0 ] ; then
2015-09-23 20:27:08 +00:00
Logger " Error while executing cleanup on $replica_type replica. " "ERROR"
2015-11-12 00:37:43 +00:00
Logger " Command output:\n $( cat $RUN_DIR /$PROGRAM .$FUNCNAME .$SCRIPT_PID ) " "NOTICE"
2015-03-30 23:46:07 +00:00
else
2015-09-23 20:27:08 +00:00
Logger " Cleanup complete on $replica_type replica. " "NOTICE"
2013-07-16 11:55:15 +00:00
fi
2015-09-12 10:57:27 +00:00
elif [ -d " $replica_deletion_path " ] && ! [ -w " $replica_deletion_path " ] ; then
2015-09-23 20:27:08 +00:00
Logger " Warning: $replica_type replica dir [ $replica_deletion_path ] is not writable. Cannot clean old files. " "ERROR"
2013-07-16 11:55:15 +00:00
fi
2015-09-12 10:57:27 +00:00
}
2013-07-16 11:55:15 +00:00
2015-09-12 10:57:27 +00:00
function _SoftDeleteRemote {
local replica_type = " ${ 1 } "
local replica_deletion_path = " ${ 2 } " # Contains the full path to softdelete / backup directory without ending slash
2015-09-28 12:10:53 +00:00
local change_time = " ${ 3 } "
2015-09-12 10:57:27 +00:00
CheckConnectivity3rdPartyHosts
2015-09-12 17:02:12 +00:00
CheckConnectivityRemoteHost
2015-09-12 10:57:27 +00:00
if [ $_DRYRUN -eq 1 ] ; then
2015-09-23 14:51:30 +00:00
Logger " Listing files older than $change_time days on target replica. Does not remove anything. " "NOTICE"
2015-03-30 23:46:07 +00:00
else
2015-09-12 10:57:27 +00:00
Logger " Removing files older than $change_time days on target replica. " "NOTICE"
2013-07-16 11:55:15 +00:00
fi
2015-09-23 14:10:11 +00:00
2015-09-12 10:57:27 +00:00
if [ $_VERBOSE -eq 1 ] ; then
# Cannot launch log function from xargs, ugly hack
2015-11-12 00:37:43 +00:00
cmd = $SSH_CMD ' "if [ -w \"' $replica_deletion_path '\" ]; then ' $COMMAND_SUDO ' ' $REMOTE_FIND_CMD ' \"' $replica_deletion_path '/\" -type f -ctime +' $change_time ' -print0 | xargs -0 -I {} echo Will delete file {} && ' $REMOTE_FIND_CMD ' \"' $replica_deletion_path '/\" -type d -empty -ctime ' $change_time ' -print0 | xargs -0 -I {} echo Will delete directory {}; else echo \"Directory not writable\"; return 1; fi" > "' $RUN_DIR /$PROGRAM .$FUNCNAME .$SCRIPT_PID '" 2>&1'
2015-09-23 14:10:11 +00:00
Logger " cmd: $cmd " "DEBUG"
eval " $cmd " &
2015-11-12 00:37:43 +00:00
Logger " Command output:\n $( cat $RUN_DIR /$PROGRAM .$FUNCNAME .$SCRIPT_PID ) " "NOTICE"
2015-09-12 10:57:27 +00:00
fi
if [ $_DRYRUN -ne 1 ] ; then
2015-11-12 00:37:43 +00:00
cmd = $SSH_CMD ' "if [ -w \"' $replica_deletion_path '\" ]; then ' $COMMAND_SUDO ' ' $REMOTE_FIND_CMD ' \"' $replica_deletion_path '/\" -type f -ctime +' $change_time ' -print0 | xargs -0 -I {} rm -f \"{}\" && ' $REMOTE_FIND_CMD ' \"' $replica_deletion_path '/\" -type d -empty -ctime ' $change_time ' -print0 | xargs -0 -I {} rm -rf \"{}\"; else echo \"Directory not writable\"; return 1; fi" > "' $RUN_DIR /$PROGRAM .$FUNCNAME .$SCRIPT_PID '" 2>&1'
2015-09-23 14:10:11 +00:00
Logger " cmd: $cmd " "DEBUG"
eval " $cmd " &
2015-09-12 10:57:27 +00:00
else
Dummy &
fi
2015-09-13 08:40:54 +00:00
WaitForCompletion $! $SOFT_MAX_EXEC_TIME $HARD_MAX_EXEC_TIME $FUNCNAME
2015-09-12 10:57:27 +00:00
retval = $?
if [ $retval -ne 0 ] ; then
Logger "Error while executing cleanup on remote target replica." "ERROR"
2015-11-12 00:37:43 +00:00
Logger " Command output:\n $( cat $RUN_DIR /$PROGRAM .$FUNCNAME .$SCRIPT_PID ) " "NOTICE"
2015-09-12 10:57:27 +00:00
else
Logger "Cleanup complete on target replica." "NOTICE"
fi
2013-07-15 22:10:23 +00:00
}
2015-09-11 17:39:57 +00:00
function SoftDelete {
2015-09-12 17:33:53 +00:00
2015-09-11 17:39:57 +00:00
if [ " $CONFLICT_BACKUP " != "no" ] && [ $CONFLICT_BACKUP_DAYS -ne 0 ] ; then
Logger "Running conflict backup cleanup." "NOTICE"
2015-09-12 10:57:27 +00:00
_SoftDeleteLocal "intiator" " $INITIATOR_SYNC_DIR $INITIATOR_BACKUP_DIR " $CONFLICT_BACKUP_DAYS
2015-11-12 00:37:43 +00:00
if [ " $REMOTE_OPERATION " != "yes" ] ; then
2015-09-12 10:57:27 +00:00
_SoftDeleteLocal "target" " $TARGET_SYNC_DIR $TARGET_BACKUP_DIR " $CONFLICT_BACKUP_DAYS
else
_SoftDeleteRemote "target" " $TARGET_SYNC_DIR $TARGET_BACKUP_DIR " $CONFLICT_BACKUP_DAYS
fi
2015-09-11 17:39:57 +00:00
fi
if [ " $SOFT_DELETE " != "no" ] && [ $SOFT_DELETE_DAYS -ne 0 ] ; then
Logger "Running soft deletion cleanup." "NOTICE"
2015-09-12 10:57:27 +00:00
_SoftDeleteLocal "initiator" " $INITIATOR_SYNC_DIR $INITIATOR_DELETE_DIR " $SOFT_DELETE_DAYS
2015-11-12 00:37:43 +00:00
if [ " $REMOTE_OPERATION " != "yes" ] ; then
2015-09-12 10:57:27 +00:00
_SoftDeleteLocal "target" " $TARGET_SYNC_DIR $TARGET_DELETE_DIR " $SOFT_DELETE_DAYS
else
_SoftDeleteRemote "target" " $TARGET_SYNC_DIR $TARGET_DELETE_DIR " $SOFT_DELETE_DAYS
fi
2015-09-23 14:51:30 +00:00
fi
2015-09-11 17:39:57 +00:00
}
2015-09-08 12:11:08 +00:00
function Init {
2015-09-12 17:33:53 +00:00
2015-09-08 12:04:48 +00:00
# Set error exit code if a piped command fails
set -o pipefail
set -o errtrace
2013-07-15 22:10:23 +00:00
2013-11-18 21:44:20 +00:00
# Do not use exit and quit traps if osync runs in monitor mode
2015-09-08 12:04:48 +00:00
if [ $sync_on_changes -eq 0 ] ; then
trap TrapStop SIGINT SIGKILL SIGHUP SIGTERM SIGQUIT
2014-01-19 19:31:14 +00:00
trap TrapQuit SIGKILL EXIT
else
trap TrapQuit SIGTERM EXIT SIGKILL SIGHUP SIGQUIT
2013-11-18 21:44:20 +00:00
fi
2015-09-10 15:48:57 +00:00
## Test if target dir is a ssh uri, and if yes, break it down it its values
if [ " ${ TARGET_SYNC_DIR : 0 : 6 } " = = "ssh://" ] ; then
2015-11-12 00:37:43 +00:00
REMOTE_OPERATION = "yes"
2015-09-08 12:04:48 +00:00
# remove leadng 'ssh://'
2015-09-10 15:48:57 +00:00
uri = ${ TARGET_SYNC_DIR #ssh : //* }
2015-09-08 12:04:48 +00:00
if [ [ " $uri " = = *"@" * ] ] ; then
# remove everything after '@'
REMOTE_USER = ${ uri %@* }
2015-06-26 15:54:49 +00:00
else
REMOTE_USER = $LOCAL_USER
2015-09-08 12:04:48 +00:00
fi
2015-04-06 21:50:08 +00:00
2015-09-08 12:04:48 +00:00
if [ " $SSH_RSA_PRIVATE_KEY " = = "" ] ; then
2013-11-18 20:16:31 +00:00
SSH_RSA_PRIVATE_KEY = ~/.ssh/id_rsa
fi
2015-06-26 15:23:05 +00:00
2015-09-08 12:04:48 +00:00
# remove everything before '@'
_hosturiandpath = ${ uri #*@ }
2015-06-26 15:23:05 +00:00
# remove everything after first '/'
2015-09-08 12:04:48 +00:00
_hosturi = ${ _hosturiandpath %%/* }
if [ [ " $_hosturi " = = *":" * ] ] ; then
2015-06-26 15:54:49 +00:00
REMOTE_PORT = ${ _hosturi ##* : }
else
2013-11-18 20:16:31 +00:00
REMOTE_PORT = 22
fi
2015-06-26 15:54:49 +00:00
REMOTE_HOST = ${ _hosturi %% : * }
2015-06-26 15:23:05 +00:00
# remove everything before first '/'
2015-09-10 15:48:57 +00:00
TARGET_SYNC_DIR = ${ _hosturiandpath #*/ }
2015-09-08 12:04:48 +00:00
fi
2013-11-14 20:20:13 +00:00
2014-01-19 19:31:14 +00:00
## Make sure there is only one trailing slash on path
2015-09-10 15:48:57 +00:00
INITIATOR_SYNC_DIR = " ${ INITIATOR_SYNC_DIR %/ } / "
TARGET_SYNC_DIR = " ${ TARGET_SYNC_DIR %/ } / "
2013-07-24 08:38:42 +00:00
2015-09-10 15:48:57 +00:00
INITIATOR_STATE_DIR = " $INITIATOR_SYNC_DIR $OSYNC_DIR /state "
TARGET_STATE_DIR = " $TARGET_SYNC_DIR $OSYNC_DIR /state "
2013-11-04 21:11:43 +00:00
STATE_DIR = " $OSYNC_DIR /state "
2015-09-10 19:42:11 +00:00
INITIATOR_LOCKFILE = " $INITIATOR_STATE_DIR /lock "
TARGET_LOCKFILE = " $TARGET_STATE_DIR /lock "
2014-01-19 19:31:14 +00:00
2013-07-15 22:10:23 +00:00
## Working directories to keep backups of updated / deleted files
2015-09-10 15:48:57 +00:00
INITIATOR_BACKUP_DIR = " $OSYNC_DIR /backups "
INITIATOR_DELETE_DIR = " $OSYNC_DIR /deleted "
TARGET_BACKUP_DIR = " $OSYNC_DIR /backups "
TARGET_DELETE_DIR = " $OSYNC_DIR /deleted "
2014-05-25 17:09:30 +00:00
2014-11-24 18:26:17 +00:00
## Partial downloads dirs
2014-11-24 23:38:03 +00:00
PARTIAL_DIR = $OSYNC_DIR "_partial"
2014-11-24 18:26:17 +00:00
2014-05-25 15:51:05 +00:00
## Set sync only function arguments for rsync
SYNC_OPTS = "-u"
2014-05-25 17:09:30 +00:00
2015-09-09 16:59:23 +00:00
if [ $_VERBOSE -eq 1 ] ; then
2014-05-25 15:51:05 +00:00
SYNC_OPTS = $SYNC_OPTS "i"
fi
2015-09-08 12:04:48 +00:00
if [ $stats -eq 1 ] ; then
2014-05-25 15:51:05 +00:00
SYNC_OPTS = $SYNC_OPTS " --stats"
fi
2015-09-08 12:04:48 +00:00
if [ " $PARTIAL " = = "yes" ] ; then
2014-11-24 18:26:17 +00:00
SYNC_OPTS = $SYNC_OPTS " --partial --partial-dir=\" $PARTIAL_DIR \" "
2015-11-27 13:12:44 +00:00
RSYNC_PATTERNS = " $RSYNC_PATTERNS --exclude=\" $PARTIAL_DIR \" "
2014-11-24 18:26:17 +00:00
fi
2013-07-16 21:33:30 +00:00
## Conflict options
2015-09-08 12:04:48 +00:00
if [ " $CONFLICT_BACKUP " != "no" ] ; then
2015-09-10 15:48:57 +00:00
INITIATOR_BACKUP = " --backup --backup-dir=\" $INITIATOR_BACKUP_DIR \" "
TARGET_BACKUP = " --backup --backup-dir=\" $TARGET_BACKUP_DIR \" "
2015-09-08 12:04:48 +00:00
if [ " $CONFLICT_BACKUP_MULTIPLE " = = "yes" ] ; then
2015-09-10 15:48:57 +00:00
INITIATOR_BACKUP = " $INITIATOR_BACKUP --suffix . $( date +%Y.%m.%d-%H.%M.%S) "
TARGET_BACKUP = " $TARGET_BACKUP --suffix . $( date +%Y.%m.%d-%H.%M.%S) "
2015-09-08 12:04:48 +00:00
fi
2013-07-16 21:33:30 +00:00
else
2015-09-10 15:48:57 +00:00
INITIATOR_BACKUP =
TARGET_BACKUP =
2013-07-16 21:33:30 +00:00
fi
2015-11-27 13:12:44 +00:00
## Add Rsync include / exclude patterns
RsyncPatterns
2014-05-26 22:50:46 +00:00
## Filenames for state files
2015-09-09 16:59:23 +00:00
if [ $_DRYRUN -eq 1 ] ; then
2014-05-26 22:50:46 +00:00
dry_suffix = "-dry"
fi
2015-11-12 00:37:43 +00:00
TREE_CURRENT_FILENAME = " -tree-current- $INSTANCE_ID $dry_suffix "
TREE_AFTER_FILENAME = " -tree-after- $INSTANCE_ID $dry_suffix "
TREE_AFTER_FILENAME_NO_SUFFIX = " -tree-after- $INSTANCE_ID "
DELETED_LIST_FILENAME = " -deleted-list- $INSTANCE_ID $dry_suffix "
FAILED_DELETE_LIST_FILENAME = " -failed-delete- $INSTANCE_ID $dry_suffix "
INITIATOR_LAST_ACTION = " $INITIATOR_STATE_DIR /last-action- $INSTANCE_ID $dry_suffix "
INITIATOR_RESUME_COUNT = " $INITIATOR_STATE_DIR /resume-count- $INSTANCE_ID $dry_suffix "
2014-05-26 22:50:46 +00:00
## Sync function actions (0-9)
SYNC_ACTION = (
2015-09-10 15:48:57 +00:00
'initiator-replica-tree'
'target-replica-tree'
'initiator-deleted-list'
'target-deleted-list'
'update-initiator-replica'
'update-target-replica'
'delete-propagation-target'
'delete-propagation-initiator'
'initiator-replica-tree-after'
'target-replica-tree-after'
2014-05-26 22:50:46 +00:00
'sync.success'
)
2013-06-18 11:34:14 +00:00
}
2015-09-08 12:11:08 +00:00
function Main {
2015-09-12 17:33:53 +00:00
2015-09-10 15:48:57 +00:00
CreateStateDirs
2015-09-11 17:39:57 +00:00
CheckLocks
2013-07-15 22:10:23 +00:00
Sync
}
2015-09-08 12:11:08 +00:00
function Usage {
2015-11-12 00:37:43 +00:00
if [ " $IS_STABLE " != "yes" ] ; then
echo -e "\e[93mThis is an unstable dev build. Please use with caution.\e[0m"
fi
2015-09-12 20:09:05 +00:00
2014-01-19 19:31:14 +00:00
echo " $PROGRAM $PROGRAM_VERSION $PROGRAM_BUILD "
echo $AUTHOR
echo $CONTACT
2013-07-15 22:10:23 +00:00
echo ""
2015-11-12 00:37:43 +00:00
echo "You may use osync with a full blown configuration file, or use its default options for quick command line sync."
2015-03-28 19:06:17 +00:00
echo "Usage: osync.sh /path/to/config/file [OPTIONS]"
2015-09-10 15:48:57 +00:00
echo "or osync.sh --initiator=/path/to/initiator/replica --target=/path/to/target/replica [OPTIONS] [QUICKSYNC OPTIONS]"
echo "or osync.sh --initiator=/path/to/initiator/replica --target=ssh://[backupuser]@remotehost.com[:portnumber]//path/to/target/replica [OPTIONS] [QUICKSYNC OPTIONS]"
2013-07-15 22:10:23 +00:00
echo ""
2014-01-19 19:31:14 +00:00
echo "[OPTIONS]"
2013-11-18 22:36:52 +00:00
echo "--dry Will run osync without actually doing anything; just testing"
echo "--silent Will run osync without any output to stdout, used for cron jobs"
echo "--verbose Increases output"
2014-05-27 12:18:48 +00:00
echo "--stats Adds rsync transfer statistics to verbose output"
2014-11-24 23:38:03 +00:00
echo "--partial Allows rsync to keep partial downloads that can be resumed later (experimental)"
2013-11-18 22:36:52 +00:00
echo "--no-maxtime Disables any soft and hard execution time checks"
2015-09-10 15:48:57 +00:00
echo "--force-unlock Will override any existing active or dead locks on initiator and target replica"
echo "--on-changes Will launch a sync task after a short wait period if there is some file activity on initiator replica. You should try daemon mode instead"
2013-11-03 19:29:17 +00:00
echo ""
2013-11-18 22:36:52 +00:00
echo "[QUICKSYNC OPTIONS]"
2015-11-12 00:37:43 +00:00
echo "--initiator=\"\" Master replica path. Will contain state and backup directory (is mandatory)"
echo "--target=\"\" Local or remote target replica path. Can be a ssh uri like ssh://user@host.com:22//path/to/target/replica (is mandatory)"
echo "--rsakey=\"\" Alternative path to rsa private key for ssh connection to target replica"
echo "--instance-id=\"\" Optional sync task name to identify this synchronization task when using multiple targets"
2015-03-28 19:06:17 +00:00
echo ""
2015-09-15 06:57:32 +00:00
echo "Additionaly, you may set most osync options at runtime. eg:"
2015-09-10 15:48:57 +00:00
echo "SOFT_DELETE_DAYS=365 osync.sh --initiator=/path --target=/other/path"
2015-04-01 09:02:03 +00:00
echo ""
2013-07-15 22:10:23 +00:00
exit 128
}
2015-09-08 12:11:08 +00:00
function SyncOnChanges {
2015-09-12 17:33:53 +00:00
2015-11-12 00:37:43 +00:00
if ! type inotifywait > /dev/null 2>& 1 ; then
2015-09-08 14:08:14 +00:00
Logger "No inotifywait command found. Cannot monitor changes." "CRITICAL"
2015-09-08 12:04:48 +00:00
exit 1
2013-11-18 21:44:20 +00:00
fi
2015-11-12 00:37:43 +00:00
Logger "#### Running osync in file monitor mode." "NOTICE"
2013-11-18 21:50:07 +00:00
2013-11-18 21:44:20 +00:00
while true
do
2015-09-08 12:04:48 +00:00
if [ " $ConfigFile " != "" ] ; then
2015-09-23 14:10:11 +00:00
cmd = 'bash ' $osync_cmd ' "' $ConfigFile '" ' $opts
2013-11-25 12:20:53 +00:00
else
2015-09-23 14:10:11 +00:00
cmd = 'bash ' $osync_cmd ' ' $opts
2013-11-25 12:20:53 +00:00
fi
2015-09-23 14:10:11 +00:00
Logger " daemon cmd: $cmd " "DEBUG"
eval " $cmd "
2014-05-27 18:08:07 +00:00
retval = $?
2015-09-08 12:04:48 +00:00
if [ $retval != 0 ] ; then
2015-09-08 14:08:14 +00:00
Logger "osync child exited with error." "CRITICAL"
2014-05-27 17:58:59 +00:00
exit $retval
2014-01-19 19:31:14 +00:00
fi
2015-09-08 14:08:14 +00:00
Logger "#### Monitoring now." "NOTICE"
2015-11-27 13:12:44 +00:00
inotifywait --exclude $OSYNC_DIR $RSYNC_PATTERNS -qq -r -e create -e modify -e delete -e move -e attrib --timeout " $MAX_WAIT " " $INITIATOR_SYNC_DIR " &
2015-09-14 07:23:24 +00:00
OSYNC_SUB_PID = $!
wait $OSYNC_SUB_PID
2015-03-28 20:37:51 +00:00
retval = $?
2015-09-08 12:04:48 +00:00
if [ $retval = = 0 ] ; then
2015-09-08 14:08:14 +00:00
Logger " #### Changes detected, waiting $MIN_WAIT seconds before running next sync. " "NOTICE"
2015-03-28 20:37:51 +00:00
sleep $MIN_WAIT
2015-09-08 12:04:48 +00:00
elif [ $retval = = 2 ] ; then
2015-09-08 14:08:14 +00:00
Logger " #### $MAX_WAIT timeout reached, running sync. " "NOTICE"
2015-03-28 20:37:51 +00:00
else
2015-09-08 14:08:14 +00:00
Logger " #### inotify error detected, waiting $MIN_WAIT seconds before running next sync. " "ERROR"
2015-03-28 20:37:51 +00:00
sleep $MIN_WAIT
fi
2013-11-18 21:44:20 +00:00
done
}
2014-05-25 15:51:05 +00:00
stats = 0
2014-11-24 18:26:17 +00:00
PARTIAL = 0
2015-09-10 19:42:11 +00:00
FORCE_UNLOCK = 0
2013-08-04 07:47:47 +00:00
no_maxtime = 0
2013-07-15 22:10:23 +00:00
# Alert flags
2013-11-18 22:50:39 +00:00
opts = ""
2013-07-15 22:10:23 +00:00
soft_alert_total = 0
2015-09-23 14:10:11 +00:00
ERROR_ALERT = 0
2013-07-16 21:06:26 +00:00
soft_stop = 0
2015-09-28 12:10:53 +00:00
_QUICK_SYNC = 0
2013-11-18 21:44:20 +00:00
sync_on_changes = 0
2015-09-10 07:13:02 +00:00
_NOLOCKS = 0
2013-11-18 21:44:20 +00:00
osync_cmd = $0
2013-07-15 22:10:23 +00:00
if [ $# -eq 0 ]
then
Usage
fi
2015-03-29 15:57:06 +00:00
first = 1
2013-07-15 22:10:23 +00:00
for i in " $@ "
do
case $i in
--dry)
2015-09-09 16:59:23 +00:00
_DRYRUN = 1
2013-11-18 22:50:39 +00:00
opts = $opts " --dry"
2013-07-15 22:10:23 +00:00
; ;
2015-09-09 16:59:23 +00:00
--_SILENT)
_SILENT = 1
opts = $opts " --_SILENT"
2013-07-15 22:10:23 +00:00
; ;
2013-07-20 11:43:11 +00:00
--verbose)
2015-09-09 16:59:23 +00:00
_VERBOSE = 1
opts = $opts " --_VERBOSE"
2013-07-20 11:43:11 +00:00
; ;
2014-05-25 15:51:05 +00:00
--stats)
stats = 1
opts = $opts " --stats"
; ;
2014-11-24 18:26:17 +00:00
--partial)
PARTIAL = "yes"
opts = $opts " --partial"
; ;
2013-07-21 19:40:55 +00:00
--force-unlock)
2015-09-10 19:42:11 +00:00
FORCE_UNLOCK = 1
2013-11-18 22:50:39 +00:00
opts = $opts " --force-unlock"
2013-07-21 19:40:55 +00:00
; ;
2013-08-04 07:47:47 +00:00
--no-maxtime)
no_maxtime = 1
2013-11-18 22:50:39 +00:00
opts = $opts " --no-maxtime"
2013-08-04 07:47:47 +00:00
; ;
2013-07-20 11:43:11 +00:00
--help| -h| --version| -v)
2013-07-15 22:10:23 +00:00
Usage
; ;
2015-09-10 15:48:57 +00:00
--initiator= *)
2015-09-28 12:10:53 +00:00
_QUICK_SYNC = $(( $_QUICK_SYNC + 1 ))
2013-11-03 19:29:17 +00:00
no_maxtime = 1
2015-09-10 15:48:57 +00:00
INITIATOR_SYNC_DIR = ${ i ##*= }
opts = $opts " --initiator=\" $INITIATOR_SYNC_DIR \" "
2013-11-03 19:29:17 +00:00
; ;
2015-09-10 15:48:57 +00:00
--target= *)
2015-09-28 12:10:53 +00:00
_QUICK_SYNC = $(( $_QUICK_SYNC + 1 ))
2015-09-10 15:48:57 +00:00
TARGET_SYNC_DIR = ${ i ##*= }
opts = $opts " --target=\" $TARGET_SYNC_DIR \" "
2013-11-03 19:29:17 +00:00
no_maxtime = 1
; ;
2013-11-18 20:16:31 +00:00
--rsakey= *)
SSH_RSA_PRIVATE_KEY = ${ i ##*= }
2013-11-25 12:20:53 +00:00
opts = $opts " --rsakey=\" $SSH_RSA_PRIVATE_KEY \" "
2013-11-18 20:16:31 +00:00
; ;
2015-11-12 00:37:43 +00:00
--instance-id= *)
INSTANCE_ID = ${ i ##*= }
opts = $opts " --instance-id=\" $INSTANCE_ID \" "
2014-05-08 10:36:36 +00:00
; ;
2013-11-18 21:44:20 +00:00
--on-changes)
sync_on_changes = 1
2015-09-10 07:13:02 +00:00
_NOLOCKS = 1
2013-11-18 21:44:20 +00:00
; ;
2013-11-25 12:20:53 +00:00
--no-locks)
2015-09-10 07:13:02 +00:00
_NOLOCKS = 1
2013-11-25 12:20:53 +00:00
; ;
2015-03-29 15:57:06 +00:00
*)
2015-09-08 12:04:48 +00:00
if [ $first = = "0" ] ; then
2015-09-08 14:08:14 +00:00
Logger " Unknown option ' $i ' " "CRITICAL"
2015-03-29 15:57:06 +00:00
Usage
fi
; ;
2013-07-15 22:10:23 +00:00
esac
2015-03-29 15:57:06 +00:00
first = 0
2013-07-15 22:10:23 +00:00
done
2013-11-25 12:20:53 +00:00
# Remove leading space if there is one
opts = " ${ opts # * } "
2014-05-08 10:36:36 +00:00
## Here we set default options for quicksync tasks when no configuration file is provided.
2015-09-28 12:10:53 +00:00
if [ $_QUICK_SYNC -eq 2 ] ; then
2015-11-12 00:37:43 +00:00
if [ " $INSTANCE_ID " = = "" ] ; then
INSTANCE_ID = "quicksync_task"
2014-05-08 10:36:36 +00:00
fi
2015-03-28 19:06:17 +00:00
# Let the possibility to initialize those values directly via command line like SOFT_DELETE_DAYS=60 ./osync.sh
2015-09-08 12:04:48 +00:00
if [ " $MINIMUM_SPACE " = = "" ] ; then
2015-03-28 19:06:17 +00:00
MINIMUM_SPACE = 1024
fi
2015-09-08 12:04:48 +00:00
if [ " $CONFLICT_BACKUP_DAYS " = = "" ] ; then
2015-03-28 19:06:17 +00:00
CONFLICT_BACKUP_DAYS = 30
fi
2015-09-08 12:04:48 +00:00
if [ " $SOFT_DELETE_DAYS " = = "" ] ; then
2015-03-28 19:06:17 +00:00
SOFT_DELETE_DAYS = 30
fi
2015-09-08 12:04:48 +00:00
if [ " $RESUME_TRY " = = "" ] ; then
2015-03-28 19:06:17 +00:00
RESUME_TRY = 1
fi
2015-09-08 12:04:48 +00:00
if [ " $SOFT_MAX_EXEC_TIME " = = "" ] ; then
2015-03-28 19:06:17 +00:00
SOFT_MAX_EXEC_TIME = 0
fi
2015-09-08 12:04:48 +00:00
if [ " $HARD_MAX_EXEC_TIME " = = "" ] ; then
2015-03-28 19:06:17 +00:00
HARD_MAX_EXEC_TIME = 0
fi
2014-01-19 19:31:14 +00:00
MIN_WAIT = 30
2015-11-12 00:37:43 +00:00
REMOTE_OPERATION = no
2013-11-03 19:29:17 +00:00
else
2015-09-09 12:50:21 +00:00
ConfigFile = " ${ 1 } "
2013-11-18 21:44:20 +00:00
LoadConfigFile " $ConfigFile "
2013-11-03 19:29:17 +00:00
fi
2014-11-29 14:07:09 +00:00
2015-09-08 12:04:48 +00:00
if [ " $LOGFILE " = = "" ] ; then
if [ -w /var/log ] ; then
2015-11-12 00:37:43 +00:00
LOG_FILE = /var/log/$PROGRAM_ $INSTANCE_ID .log
2014-11-29 14:07:09 +00:00
else
2015-11-12 00:37:43 +00:00
LOG_FILE = ./$PROGRAM_ $INSTANCE_ID .log
2014-11-29 14:07:09 +00:00
fi
2015-09-08 12:04:48 +00:00
else
LOG_FILE = " $LOGFILE "
fi
2015-09-19 16:40:26 +00:00
2015-11-12 00:37:43 +00:00
if [ " $IS_STABLE " != "yes" ] ; then
Logger "This is an unstable dev build. Please use with caution." "WARN"
fi
2014-11-29 14:07:09 +00:00
GetLocalOS
InitLocalOSSettings
2015-11-12 00:37:43 +00:00
PreInit
2013-11-03 19:29:17 +00:00
Init
2015-11-12 00:37:43 +00:00
PostInit
2014-05-26 22:50:46 +00:00
GetRemoteOS
InitRemoteOSSettings
2015-09-19 16:40:26 +00:00
2015-09-08 12:04:48 +00:00
if [ $sync_on_changes -eq 1 ] ; then
2014-03-23 20:57:57 +00:00
SyncOnChanges
2014-03-09 16:54:45 +00:00
else
DATE = $( date)
2015-09-08 14:08:14 +00:00
Logger "-------------------------------------------------------------" "NOTICE"
Logger " $DRY_WARNING $DATE - $PROGRAM $PROGRAM_VERSION script begin. " "NOTICE"
Logger "-------------------------------------------------------------" "NOTICE"
2015-11-12 00:37:43 +00:00
Logger " Sync task [ $INSTANCE_ID ] launched as $LOCAL_USER @ $LOCAL_HOST (PID $SCRIPT_PID ) " "NOTICE"
2015-09-08 12:04:48 +00:00
if [ $no_maxtime -eq 1 ] ; then
2014-03-09 16:54:45 +00:00
SOFT_MAX_EXEC_TIME = 0
HARD_MAX_EXEC_TIME = 0
fi
2015-09-10 15:48:57 +00:00
CheckReplicaPaths
2015-09-10 19:42:11 +00:00
CheckDiskSpace
RunBeforeHook
Main
2015-09-08 12:04:48 +00:00
if [ $? = = 0 ] ; then
2015-09-10 19:42:11 +00:00
SoftDelete
2013-06-18 11:34:14 +00:00
fi
2015-09-10 19:42:11 +00:00
RunAfterHook
2013-06-18 11:34:14 +00:00
fi