2014-05-26 22:50:46 +00:00
#!/usr/bin/env bash
2013-06-18 11:34:14 +00:00
2014-01-19 19:31:14 +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-07-31 13:21:34 +00:00
PROGRAM_VERSION = 1.1-dev
2015-09-09 07:38:05 +00:00
PROGRAM_BUILD = 2015090901
2014-05-26 22:50:46 +00:00
2014-05-27 10:47:50 +00:00
## type doesn't work on platforms other than linux (bash). If if doesn't work, always assume output is not a zero exitcode
2015-09-08 12:04:48 +00:00
if ! type -p " $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
## allow debugging from command line with preceding ocsync with DEBUG=yes
2015-09-08 12:04:48 +00:00
if [ ! " $DEBUG " = = "yes" ] ; then
2014-05-08 10:36:36 +00:00
DEBUG = no
2015-03-30 17:51:31 +00:00
SLEEP_TIME = .1
2014-07-08 00:00:23 +00:00
else
2015-03-20 19:40:57 +00:00
SLEEP_TIME = 3
2014-05-08 10:36:36 +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
2013-10-10 18:17:40 +00:00
LOG_FILE = /var/log/osync.log
else
LOG_FILE = ./osync.log
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
2013-07-16 11:55:15 +00:00
## Working directory. Will keep current file states, backups and soft deleted files.
2013-07-15 22:10:23 +00:00
OSYNC_DIR = ".osync_workdir"
## Log a state message every $KEEP_LOGGING seconds. Should not be equal to soft or hard execution time so your log won't be unnecessary big.
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
2014-09-22 19:21:37 +00:00
ALERT_LOG_FILE = $RUN_DIR /osync_lastlog
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-09-08 14:08:14 +00:00
function _logger {
local value = " ${ 1 } " # What to log
echo -e " $value " >> " $LOG_FILE "
if [ $silent -eq 0 ] ; then
echo -e " $value "
fi
}
function Logger {
local value = " ${ 1 } " # What to log
local level = " ${ 2 } " # Log level: DEBUG, NOTICE, WARN, ERROR, CRITIAL
# Special case in daemon mode we should timestamp instead of counting seconds
2015-09-08 12:04:48 +00:00
if [ $sync_on_changes -eq 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-09-08 14:08:14 +00:00
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 "
elif [ " $level " = = "DEBUG" ] ; then
if [ " $DEBUG " = = "yes" ] ; then
_logger " $prefix $value "
fi
else
_logger "\e[41mLogger function called without proper loglevel.\e[0m"
_logger " $prefix $value "
2013-07-21 19:40:55 +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-08 12:04:48 +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 TrapStop {
2015-09-08 12:04:48 +00:00
if [ $soft_stop -eq 0 ] ; then
2015-09-08 14:08:14 +00:00
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"
2013-07-16 21:06:26 +00:00
soft_stop = 1
2013-07-17 09:34:05 +00:00
return 1
2013-07-16 21:06:26 +00:00
fi
2015-09-08 12:04:48 +00:00
if [ $soft_stop -eq 1 ] ; then
2015-09-08 14:08:14 +00:00
Logger " /!\ WARNING: CTRL+C hit twice. Quitting osync. Please wait..." "WARN"
2013-07-22 19:14:57 +00:00
soft_stop = 2
exit 1
2015-09-08 12:04:48 +00:00
fi
2013-07-16 21:06:26 +00:00
}
2015-09-08 12:11:08 +00:00
function TrapQuit {
2015-09-08 12:04:48 +00:00
if [ $error_alert -ne 0 ] ; then
if [ " $DEBUG " != "yes" ] ; then
2015-03-20 19:40:57 +00:00
SendAlert
else
2015-09-08 14:08:14 +00:00
Logger "Debug mode, no alert mail will be sent." "NOTICE"
2015-03-20 19:40:57 +00:00
fi
2013-07-19 23:00:58 +00:00
UnlockDirectories
2013-07-22 19:14:57 +00:00
CleanUp
2015-09-08 14:08:14 +00:00
Logger "Osync finished with errors." "WARN"
2014-01-19 19:31:14 +00:00
exitcode = 1
2013-07-17 09:34:05 +00:00
else
2013-07-19 23:00:58 +00:00
UnlockDirectories
2013-07-22 19:14:57 +00:00
CleanUp
2015-09-08 14:08:14 +00:00
Logger "Osync finished." "NOTICE"
2014-01-19 19:31:14 +00:00
exitcode = 0
2013-07-17 09:34:05 +00:00
fi
2014-01-19 19:31:14 +00:00
if ps -p $child_pid > /dev/null 2>& 1
then
kill -9 $child_pid
fi
if ps -p $sub_pid > /dev/null 2>& 1
then
kill -9 $sub_pid
fi
exit $exitcode
2013-07-17 09:34:05 +00:00
}
2013-07-16 21:06:26 +00:00
2015-09-08 12:11:08 +00:00
function Spinner {
2015-09-08 12:04:48 +00:00
if [ $silent -eq 1 ] ; then
return 1
fi
case $toggle
in
1)
echo -n $1 " \ "
echo -ne "\r"
toggle = "2"
; ;
2)
echo -n $1 " | "
echo -ne "\r"
toggle = "3"
; ;
3)
echo -n $1 " / "
echo -ne "\r"
toggle = "4"
; ;
*)
echo -n $1 " - "
echo -ne "\r"
toggle = "1"
; ;
esac
2013-06-18 11:34:14 +00:00
}
2015-09-08 12:11:08 +00:00
function EscapeSpaces {
2015-09-08 17:17:26 +00:00
local string = " ${ 1 } " # String on which space will be escaped
echo $( echo " $string " | sed 's/ /\\ /g' )
2013-07-19 16:15:25 +00:00
}
2015-09-08 12:11:08 +00:00
function CleanUp {
2015-09-08 12:04:48 +00:00
if [ " $DEBUG " != "yes" ] ; then
rm -f $RUN_DIR /osync_*_$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-08 12:04:48 +00:00
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
2014-11-28 11:10:00 +00:00
eval " cat \" $LOG_FILE \" $COMPRESSION_PROGRAM > $ALERT_LOG_FILE "
2015-09-08 12:04:48 +00:00
MAIL_ALERT_MSG = $MAIL_ALERT_MSG $'\n\n' $( tail -n 25 " $LOG_FILE " )
2014-07-08 00:14:03 +00:00
if type -p mutt > /dev/null 2>& 1
2015-09-08 12:04:48 +00:00
then
echo $MAIL_ALERT_MSG | $( type -p mutt) -x -s " Sync alert for $SYNC_ID " $DESTINATION_MAILS -a " $ALERT_LOG_FILE "
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-09-08 12:04:48 +00:00
fi
elif type -p mail > /dev/null 2>& 1
then
echo $MAIL_ALERT_MSG | $( type -p mail) -a " $ALERT_LOG_FILE " -s " Sync alert for $SYNC_ID " $DESTINATION_MAILS
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-09-08 12:04:48 +00:00
echo $MAIL_ALERT_MSG | $( type -p mail) -s " Sync alert for $SYNC_ID " $DESTINATION_MAILS
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-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-09-08 12:04:48 +00:00
fi
2013-10-10 18:17:40 +00:00
elif type -p sendemail > /dev/null 2>& 1
then
2015-09-08 12:04:48 +00:00
if [ " $SMTP_USER " != "" ] && [ " $SMTP_PASSWORD " != "" ] ; then
2014-05-27 12:18:48 +00:00
$SMTP_OPTIONS = " -xu $SMTP_USER -xp $SMTP_PASSWORD "
else
$SMTP_OPTIONS = ""
fi
$( type -p sendemail) -f $SENDER_MAIL -t $DESTINATION_MAILS -u " Backup alert for $BACKUP_ID " -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"
2013-10-10 18:17:40 +00:00
fi
2015-09-08 12:04:48 +00:00
else
2015-09-08 14:08:14 +00:00
Logger "WARNING: Cannot send alert email (no mutt / mail present) !!!" "WARN"
2015-09-08 12:04:48 +00:00
return 1
fi
2014-03-23 16:52:45 +00:00
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-08 17:17:26 +00:00
local config_file = " ${ 1 } "
if [ ! -f " $config_file " ] ; then
Logger " Cannot load configuration file [ $config_file ]. Sync 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-09-08 17:17:26 +00:00
Logger " Wrong configuration file supplied [ $config_file ]. Sync cannot start. " "CRITICAL"
2015-09-08 12:04:48 +00:00
exit 1
else
2015-09-08 17:17:26 +00:00
egrep '^#|^[^ ]*=[^;&]*' " $config_file " > " $RUN_DIR /osync_config_ $SCRIPT_PID "
2015-09-08 12:04:48 +00:00
source " $RUN_DIR /osync_config_ $SCRIPT_PID "
fi
2013-07-15 22:10:23 +00:00
}
2013-06-18 11:34:14 +00:00
2015-09-08 12:11:08 +00:00
function CheckEnvironment {
2015-09-08 12:04:48 +00:00
if [ " $REMOTE_SYNC " = = "yes" ] ; then
if ! type -p ssh > /dev/null 2>& 1
then
2015-09-08 14:08:14 +00:00
Logger "ssh not present. Cannot start sync." "CRITICAL"
2015-09-08 12:04:48 +00:00
return 1
fi
fi
if ! type -p rsync > /dev/null 2>& 1
then
2015-09-08 14:08:14 +00:00
Logger "rsync not present. Sync cannot start." "CRITICAL"
2015-09-08 12:04:48 +00:00
return 1
fi
2013-06-18 11:34:14 +00:00
}
2015-09-08 12:11:08 +00:00
function GetLocalOS {
2013-11-13 16:16:51 +00:00
LOCAL_OS_VAR = $( uname -spio 2>& 1)
2015-09-08 12:04:48 +00:00
if [ $? != 0 ] ; then
2013-11-13 16:16:51 +00:00
LOCAL_OS_VAR = $( uname -v 2>& 1)
2015-09-08 12:04:48 +00:00
if [ $? != 0 ] ; then
2013-11-14 20:20:13 +00:00
LOCAL_OS_VAR = ( $uname )
fi
2013-11-13 16:11:54 +00:00
fi
2014-01-19 19:31:14 +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-08 14:08:14 +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-08 14:08:14 +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-08 12:04:48 +00:00
if [ " $REMOTE_SYNC " = = "yes" ] ; then
CheckConnectivity3rdPartyHosts
CheckConnectivityRemoteHost
2015-01-16 02:03:10 +00:00
eval " $SSH_CMD \"uname -spio\" > $RUN_DIR /osync_remote_os_ $SCRIPT_PID 2>&1 " &
2013-11-03 19:29:17 +00:00
child_pid = $!
2015-09-08 12:04:48 +00:00
WaitForTaskCompletion $child_pid 120 240
retval = $?
if [ $retval != 0 ] ; then
eval " $SSH_CMD \"uname -v\" > $RUN_DIR /osync_remote_os_ $SCRIPT_PID 2>&1 " &
2013-11-14 12:33:22 +00:00
child_pid = $!
2015-09-08 12:04:48 +00:00
WaitForTaskCompletion $child_pid 120 240
retval = $?
if [ $retval != 0 ] ; then
eval " $SSH_CMD \"uname\" > $RUN_DIR /osync_remote_os_ $SCRIPT_PID 2>&1 " &
2013-11-14 12:33:22 +00:00
child_pid = $!
2015-09-08 12:04:48 +00:00
WaitForTaskCompletion $child_pid 120 240
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
2014-01-19 19:31:14 +00:00
REMOTE_OS_VAR = $( cat $RUN_DIR /osync_remote_os_$SCRIPT_PID )
2014-05-25 17:09:30 +00:00
2013-11-14 12:33:22 +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"
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-08 14:08:14 +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.
if [ " $soft_max_time " = = "" ] ; then
Logger " Missing argument soft_max_time in ${ 0 } " "CRITICAL"
exit 1
fi
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.
if [ " $hard_max_time " = = "" ] ; then
Logger " Missing argument hard_max_time in ${ 0 } " "CRITICAL"
exit 1
fi
local soft_alert = 0 # Does a soft alert need to be triggered
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-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-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"
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
2013-07-21 19:40:55 +00:00
return $?
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.
if [ " $soft_max_time " = = "" ] ; then
Logger " Missing argument soft_max_time in ${ 0 } " "CRITICAL"
exit 1
fi
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.
if [ " $hard_max_time " = = "" ] ; then
Logger " Missing argument hard_max_time in ${ 0 } " "CRITICAL"
exit 1
fi
local soft_alert = 0 # Does a soft alert need to be triggered
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-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
2013-07-21 19:40:55 +00:00
return $?
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
if [ " $hard_max_time " = = "" ] ; then
Logger " Missing argument hard_max_time in ${ 0 } " "CRITICAL"
exit 1
fi
2015-09-08 12:04:48 +00:00
if [ $dryrun -ne 0 ] ; then
2015-09-08 17:17:26 +00:00
Logger " Dryrun: Local command [ $command ] not run. " "NOTICE"
2015-09-08 12:04:48 +00:00
return 1
fi
2015-09-08 17:17:26 +00:00
Logger " Running command [ $command ] on local host. " "NOTICE"
eval " $command " > $RUN_DIR /osync_run_local_$SCRIPT_PID 2>& 1 &
2015-09-08 12:04:48 +00:00
child_pid = $!
2015-09-08 17:17:26 +00:00
WaitForTaskCompletion $child_pid 0 $hard_max_time
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
if [ $verbose -eq 1 ] || [ $retval -ne 0 ] ; then
2015-09-08 14:08:14 +00:00
Logger " Command output:\n $( cat $RUN_DIR /osync_run_local_$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
if [ " $hard_max_time " = = "" ] ; then
Logger " Missing argument hard_max_time in ${ 0 } " "CRITICAL"
exit 1
fi
2015-09-08 12:04:48 +00:00
CheckConnectivity3rdPartyHosts
CheckConnectivityRemoteHost
if [ $dryrun -ne 0 ] ; then
2015-09-08 17:17:26 +00:00
Logger " Dryrun: Local command [ $command ] not run. " "NOTICE"
2015-09-08 12:04:48 +00:00
return 1
fi
2015-09-08 17:17:26 +00:00
Logger " Running command [ $command ] on remote host. " "NOTICE"
eval " $SSH_CMD \" $command \" > $RUN_DIR /osync_run_remote_ $SCRIPT_PID 2>&1 & "
2015-09-08 12:04:48 +00:00
child_pid = $!
2015-09-08 17:17:26 +00:00
WaitForTaskCompletion $child_pid 0 $hard_max_time
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
if [ -f $RUN_DIR /osync_run_remote_$SCRIPT_PID ] && ( [ $verbose -eq 1 ] || [ $retval -ne 0 ] )
then
2015-09-08 14:08:14 +00:00
Logger " Command output:\n $( cat $RUN_DIR /osync_run_remote_$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-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-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-08 12:04:48 +00:00
if [ " $REMOTE_HOST_PING " != "no" ] && [ " $REMOTE_SYNC " != "no" ] ; then
2014-11-24 09:12:48 +00:00
eval " $PING_CMD $REMOTE_HOST > /dev/null 2>&1 "
2015-09-08 12:04:48 +00:00
if [ $? != 0 ] ; then
2015-09-08 14:08:14 +00:00
Logger " Cannot ping $REMOTE_HOST " "CRITICAL"
2015-09-08 12:04:48 +00:00
exit 1
2013-08-24 17:51:39 +00:00
fi
fi
2013-07-15 22:10:23 +00:00
}
2015-09-08 12:11:08 +00:00
function CheckConnectivity3rdPartyHosts {
2015-09-08 12:04:48 +00:00
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
2014-11-24 09:12:48 +00:00
eval " $PING_CMD $i > /dev/null 2>&1 "
2015-09-08 12:04:48 +00:00
if [ $? != 0 ] ; then
2015-09-08 14:08:14 +00:00
Logger " Cannot ping 3rd party host $i " "WARN"
2015-09-08 12:04:48 +00:00
else
remote_3rd_party_success = 1
fi
done
IFS = $OLD_IFS
if [ $remote_3rd_party_success -ne 1 ] ; then
2015-09-08 14:08:14 +00:00
Logger "No remote 3rd party host responded to ping. No internet ?" "CRITICAL"
2015-09-08 12:04:48 +00:00
exit 1
fi
fi
2013-07-15 22:10:23 +00:00
}
2015-05-18 08:53:11 +00:00
############################################################################################
### realpath.sh implementation from https://github.com/mkropat/sh-realpath
realpath( ) {
canonicalize_path " $( resolve_symlinks " $1 " ) "
}
resolve_symlinks( ) {
_resolve_symlinks " $1 "
}
_resolve_symlinks( ) {
_assert_no_path_cycles " $@ " || return
local dir_context path
path = $( readlink -- " $1 " )
if [ $? -eq 0 ] ; then
2015-09-08 17:17:26 +00:00
dir_context = $( dirname -- " $1 " )
_resolve_symlinks " $( _prepend_dir_context_if_necessary " $dir_context " " $path " ) " " $@ "
2015-05-18 08:53:11 +00:00
else
2015-09-08 17:17:26 +00:00
printf '%s\n' " $1 "
2015-05-18 08:53:11 +00:00
fi
}
_prepend_dir_context_if_necessary( ) {
if [ " $1 " = . ] ; then
2015-09-08 17:17:26 +00:00
printf '%s\n' " $2 "
2015-05-18 08:53:11 +00:00
else
2015-09-08 17:17:26 +00:00
_prepend_path_if_relative " $1 " " $2 "
2015-05-18 08:53:11 +00:00
fi
}
_prepend_path_if_relative( ) {
case " $2 " in
2015-09-08 17:17:26 +00:00
/* ) printf '%s\n' " $2 " ; ;
* ) printf '%s\n' " $1 / $2 " ; ;
2015-05-18 08:53:11 +00:00
esac
}
_assert_no_path_cycles( ) {
local target path
target = $1
shift
for path in " $@ " ; do
2015-09-08 17:17:26 +00:00
if [ " $path " = " $target " ] ; then
return 1
fi
2015-05-18 08:53:11 +00:00
done
}
canonicalize_path( ) {
if [ -d " $1 " ] ; then
2015-09-08 17:17:26 +00:00
_canonicalize_dir_path " $1 "
2015-05-18 08:53:11 +00:00
else
2015-09-08 17:17:26 +00:00
_canonicalize_file_path " $1 "
2015-05-18 08:53:11 +00:00
fi
}
_canonicalize_dir_path( ) {
( cd " $1 " 2>/dev/null && pwd -P)
}
_canonicalize_file_path( ) {
local dir file
dir = $( dirname -- " $1 " )
file = $( basename -- " $1 " )
( cd " $dir " 2>/dev/null && printf '%s/%s\n' " $( pwd -P) " " $file " )
}
2015-07-31 13:21:34 +00:00
# Optionally, you may also want to include:
### readlink emulation ###
readlink( ) {
2015-09-08 17:17:26 +00:00
if _has_command readlink; then
_system_readlink " $@ "
2015-07-31 13:21:34 +00:00
else
2015-09-08 17:17:26 +00:00
_emulated_readlink " $@ "
2015-07-31 13:21:34 +00:00
fi
}
_has_command( ) {
hash -- " $1 " 2>/dev/null
}
_system_readlink( ) {
command readlink " $@ "
}
_emulated_readlink( ) {
if [ " $1 " = -- ] ; then
2015-09-08 17:17:26 +00:00
shift
2015-07-31 13:21:34 +00:00
fi
_gnu_stat_readlink " $@ " || _bsd_stat_readlink " $@ "
}
_gnu_stat_readlink( ) {
local output
output = $( stat -c %N -- " $1 " 2>/dev/null) &&
printf '%s\n' " $output " |
2015-09-08 17:17:26 +00:00
sed " s/^‘ [^’ ]*’ -> ‘ \(.*\)’ /\1/
s/^'[^' ] *' -> ' \( .*\) ' /\1 /"
2015-07-31 13:21:34 +00:00
# FIXME: handle newlines
}
_bsd_stat_readlink( ) {
stat -f %Y -- " $1 " 2>/dev/null
}
2015-09-08 17:17:26 +00:00
#### Osync specific functions (non shared)
2015-05-18 08:53:11 +00:00
2015-09-08 12:11:08 +00:00
function CreateOsyncDirs {
2015-09-08 12:04:48 +00:00
if ! [ -d " $MASTER_STATE_DIR " ] ; then
2013-10-11 20:27:33 +00:00
mkdir -p " $MASTER_STATE_DIR "
2015-09-08 12:04:48 +00:00
if [ $? != 0 ] ; then
2015-09-08 14:08:14 +00:00
Logger " Cannot create master replica state dir [ $MASTER_STATE_DIR ]. " "CRITICAL"
2013-07-21 19:40:55 +00:00
exit 1
fi
2013-06-18 11:34:14 +00:00
fi
2013-07-20 11:43:11 +00:00
2015-09-08 12:04:48 +00:00
if [ " $REMOTE_SYNC " = = "yes" ] ; then
2013-08-24 17:51:39 +00:00
CheckConnectivity3rdPartyHosts
2015-09-08 12:04:48 +00:00
CheckConnectivityRemoteHost
2015-07-17 07:47:55 +00:00
eval " $SSH_CMD \"if ! [ -d \\\" $SLAVE_STATE_DIR \\\" ]; then $COMMAND_SUDO mkdir -p \\\" $SLAVE_STATE_DIR \\\"; fi 2>&1\" " &
2013-07-24 19:03:58 +00:00
child_pid = $!
WaitForTaskCompletion $child_pid 0 1800
2013-07-20 11:43:11 +00:00
else
2015-09-08 12:04:48 +00:00
if ! [ -d " $SLAVE_STATE_DIR " ] ; then
2015-07-17 07:47:55 +00:00
mkdir -p " $SLAVE_STATE_DIR " > $RUN_DIR /osync_createosyncdirs_$SCRIPT_PID 2>& 1
fi
2013-07-21 19:40:55 +00:00
fi
2015-09-08 12:04:48 +00:00
if [ $? != 0 ] ; then
2015-09-08 14:08:14 +00:00
Logger " Cannot create slave replica state dir [ $SLAVE_STATE_DIR ]. " "CRITICAL"
Logger " Command output:\n $( cat $RUN_DIR /osync_createosyncdirs_$SCRIPT_PID ) " "NOTICE"
2013-07-21 19:40:55 +00:00
exit 1
2013-07-20 11:43:11 +00:00
fi
2013-06-18 11:34:14 +00:00
}
2015-09-08 12:11:08 +00:00
function CheckMasterSlaveDirs {
2015-09-08 17:17:26 +00:00
#MASTER_SYNC_DIR_CANN=$(realpath "$MASTER_SYNC_DIR") #TODO: investigate realpath & readlink issues on MSYS and busybox here
#SLAVE_SYNC_DIR_CANN=$(realpath "$SLAVE_SYNC_DIR")
2015-03-29 15:30:09 +00:00
2015-09-08 17:17:26 +00:00
#if [ "$REMOTE_SYNC" != "yes" ]; then
# if [ "$MASTER_SYNC_DIR_CANN" == "$SLAVE_SYNC_DIR_CANN" ]; then
# Logger "Master directory [$MASTER_SYNC_DIR] can't be the same as slave directory." "CRITICAL"
# exit 1
# fi
#fi
2015-03-29 15:30:09 +00:00
2015-09-08 12:04:48 +00:00
if ! [ -d " $MASTER_SYNC_DIR " ] ; then
if [ " $CREATE_DIRS " = = "yes" ] ; then
2015-07-17 07:47:55 +00:00
mkdir -p " $MASTER_SYNC_DIR " > $RUN_DIR /osync_checkmasterslavedirs_$SCRIPT_PID 2>& 1
2015-09-08 12:04:48 +00:00
if [ $? != 0 ] ; then
2015-09-08 14:08:14 +00:00
Logger " Cannot create master directory [ $MASTER_SYNC_DIR ]. " "CRITICAL"
Logger " Command output:\n $( cat $RUN_DIR /osync_checkmasterslavedirs_$SCRIPT_PID ) " "NOTICE"
2013-07-21 19:40:55 +00:00
exit 1
fi
else
2015-09-08 14:08:14 +00:00
Logger " Master directory [ $MASTER_SYNC_DIR ] does not exist. " "CRITICAL"
2013-07-21 19:40:55 +00:00
exit 1
fi
2013-06-18 11:34:14 +00:00
fi
2015-09-08 12:04:48 +00:00
if [ " $REMOTE_SYNC " = = "yes" ] ; then
2013-08-24 17:51:39 +00:00
CheckConnectivity3rdPartyHosts
2015-09-08 12:04:48 +00:00
CheckConnectivityRemoteHost
if [ " $CREATE_DIRS " = = "yes" ] ; then
2015-07-17 07:47:55 +00:00
eval " $SSH_CMD \"if ! [ -d \\\" $SLAVE_SYNC_DIR \\\" ]; then $COMMAND_SUDO mkdir -p \\\" $SLAVE_SYNC_DIR \\\"; fi 2>&1 " \" > $RUN_DIR /osync_checkmasterslavedirs_$SCRIPT_PID &
2013-07-24 19:03:58 +00:00
child_pid = $!
WaitForTaskCompletion $child_pid 0 1800
2015-09-08 12:04:48 +00:00
if [ $? != 0 ] ; then
2015-09-08 14:08:14 +00:00
Logger " Cannot create slave directory [ $SLAVE_SYNC_DIR ]. " "CRITICAL"
Logger " Command output:\n $( cat $RUN_DIR /osync_checkmasterslavedirs_$SCRIPT_PID ) " "NOTICE"
2013-07-21 19:40:55 +00:00
exit 1
fi
else
2013-07-24 19:03:58 +00:00
eval " $SSH_CMD \"if ! [ -d \\\" $SLAVE_SYNC_DIR \\\" ]; then exit 1; fi " \" &
child_pid = $!
WaitForTaskCompletion $child_pid 0 1800
res = $?
2015-09-08 12:04:48 +00:00
if [ $res != 0 ] ; then
2015-09-08 14:08:14 +00:00
Logger " Slave directory [ $SLAVE_SYNC_DIR ] does not exist. " "CRITICAL"
2013-07-21 19:40:55 +00:00
exit 1
fi
2013-07-20 11:43:11 +00:00
fi
else
2015-09-08 12:04:48 +00:00
if [ ! -d " $SLAVE_SYNC_DIR " ] ; then
if [ " $CREATE_DIRS " = = "yes" ] ; then
2013-10-11 20:27:33 +00:00
mkdir -p " $SLAVE_SYNC_DIR "
2015-09-08 12:04:48 +00:00
if [ $? != 0 ] ; then
2015-09-08 14:08:14 +00:00
Logger " Cannot create slave directory [ $SLAVE_SYNC_DIR ]. " "CRITICAL"
2013-07-21 19:40:55 +00:00
exit 1
else
2015-09-08 14:08:14 +00:00
Logger " Created slave directory [ $SLAVE_SYNC_DIR ]. " "NOTICE"
2013-07-21 19:40:55 +00:00
fi
else
2015-09-08 14:08:14 +00:00
Logger " Slave directory [ $SLAVE_SYNC_DIR ] does not exist. " "CRITICAL"
2013-07-21 19:40:55 +00:00
exit 1
fi
2013-07-20 11:43:11 +00:00
fi
2013-06-18 11:34:14 +00:00
fi
}
2015-09-08 12:11:08 +00:00
function CheckMinimumSpace {
2015-09-08 14:08:14 +00:00
Logger "Checking minimum disk space on master and slave." "NOTICE"
2013-07-22 19:14:57 +00:00
MASTER_SPACE = $( df -P " $MASTER_SYNC_DIR " | tail -1 | awk '{print $4}' )
2015-09-08 12:04:48 +00:00
if [ $MASTER_SPACE -lt $MINIMUM_SPACE ] ; then
2015-09-08 14:08:14 +00:00
Logger " There is not enough free space on master [ $MASTER_SPACE KB]. " "ERROR"
2015-09-08 12:04:48 +00:00
fi
2014-05-25 17:09:30 +00:00
2015-09-08 12:04:48 +00:00
if [ " $REMOTE_SYNC " = = "yes" ] ; then
CheckConnectivity3rdPartyHosts
CheckConnectivityRemoteHost
2013-10-10 18:17:40 +00:00
eval " $SSH_CMD \" $COMMAND_SUDO df -P \\\" $SLAVE_SYNC_DIR \\\"\" " > $RUN_DIR /osync_slave_space_$SCRIPT_PID &
2013-07-24 19:03:58 +00:00
child_pid = $!
WaitForTaskCompletion $child_pid 0 1800
2013-10-10 18:17:40 +00:00
SLAVE_SPACE = $( cat $RUN_DIR /osync_slave_space_$SCRIPT_PID | tail -1 | awk '{print $4}' )
2013-07-22 19:14:57 +00:00
else
SLAVE_SPACE = $( df -P " $SLAVE_SYNC_DIR " | tail -1 | awk '{print $4}' )
fi
2014-05-25 17:09:30 +00:00
2015-09-08 12:04:48 +00:00
if [ $SLAVE_SPACE -lt $MINIMUM_SPACE ] ; then
2015-09-08 14:08:14 +00:00
Logger " There is not enough free space on slave [ $SLAVE_SPACE KB]. " "ERROR"
2013-07-22 19:14:57 +00:00
fi
}
2015-09-08 12:11:08 +00:00
function RsyncExcludePattern {
2015-02-18 14:03:45 +00:00
# Disable globbing so wildcards from exclusions don't get expanded
2015-02-12 09:34:42 +00:00
set -f
2015-03-20 19:40:57 +00:00
rest = " $RSYNC_EXCLUDE_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-09-08 12:04:48 +00:00
if [ " $RSYNC_EXCLUDE " = = "" ] ; then
RSYNC_EXCLUDE = " --exclude=\" $str \" "
else
RSYNC_EXCLUDE = " $RSYNC_EXCLUDE --exclude=\" $str \" "
fi
done
2015-02-12 09:34:42 +00:00
set +f
2013-07-19 16:15:25 +00:00
}
2015-09-08 12:11:08 +00:00
function RsyncExcludeFrom {
2015-09-08 12:04:48 +00:00
if [ ! " $RSYNC_EXCLUDE_FROM " = = "" ] ; then
## Check if the exclude list has a full path, and if not, add the config file path if there is one
if [ " $( basename $RSYNC_EXCLUDE_FROM ) " = = " $RSYNC_EXCLUDE_FROM " ] ; then
RSYNC_EXCLUDE_FROM = $( dirname $ConfigFile ) /$RSYNC_EXCLUDE_FROM
fi
if [ -e " $RSYNC_EXCLUDE_FROM " ] ; then
RSYNC_EXCLUDE = " $RSYNC_EXCLUDE --exclude-from=\" $RSYNC_EXCLUDE_FROM \" "
fi
fi
2014-05-08 10:36:36 +00:00
}
2015-09-08 12:11:08 +00:00
function WriteLockFiles {
2015-09-08 12:04:48 +00:00
echo $SCRIPT_PID > " $MASTER_LOCK "
if [ $? != 0 ] ; then
2015-09-08 14:08:14 +00:00
Logger "Could not set lock on master replica." "CRITICAL"
2015-09-08 12:04:48 +00:00
exit 1
2013-07-21 19:40:55 +00:00
else
2015-09-08 14:08:14 +00:00
Logger "Locked master replica." "NOTICE"
2015-09-08 12:04:48 +00:00
fi
if [ " $REMOTE_SYNC " = = "yes" ] ; then
CheckConnectivity3rdPartyHosts
CheckConnectivityRemoteHost
eval " $SSH_CMD \"echo $SCRIPT_PID @ $SYNC_ID | $COMMAND_SUDO tee \\\" $SLAVE_LOCK \\\" > /dev/null \" " &
child_pid = $!
2013-07-24 19:03:58 +00:00
WaitForTaskCompletion $child_pid 0 1800
2015-09-08 12:04:48 +00:00
if [ $? != 0 ] ; then
2015-09-08 14:08:14 +00:00
Logger "Could not set lock on remote slave replica." "CRITICAL"
2015-09-08 12:04:48 +00:00
exit 1
else
2015-09-08 14:08:14 +00:00
Logger "Locked remote slave replica." "NOTICE"
2015-09-08 12:04:48 +00:00
fi
else
echo " $SCRIPT_PID @ $SYNC_ID " > " $SLAVE_LOCK "
if [ $? != 0 ] ; then
2015-09-08 14:08:14 +00:00
Logger "Couuld not set lock on local slave replica." "CRITICAL"
2015-09-08 12:04:48 +00:00
exit 1
else
2015-09-08 14:08:14 +00:00
Logger "Locked local slave replica." "NOTICE"
2015-09-08 12:04:48 +00:00
fi
fi
2013-07-21 19:40:55 +00:00
}
2015-09-08 12:11:08 +00:00
function LockDirectories {
2015-09-08 12:04:48 +00:00
if [ $nolocks -eq 1 ] ; then
2013-11-25 12:20:53 +00:00
return 0
fi
2015-09-08 12:04:48 +00:00
if [ $force_unlock -eq 1 ] ; then
2013-07-21 19:40:55 +00:00
WriteLockFiles
2015-09-08 12:04:48 +00:00
if [ $? != 0 ] ; then
2013-07-19 23:00:58 +00:00
exit 1
fi
2013-07-21 19:40:55 +00:00
fi
2015-09-08 14:08:14 +00:00
Logger "Checking for replica locks." "NOTICE"
2013-07-21 19:40:55 +00:00
2015-09-08 12:04:48 +00:00
if [ -f " $MASTER_LOCK " ] ; then
2014-01-19 19:31:14 +00:00
master_lock_pid = $( cat $MASTER_LOCK )
2015-09-08 14:08:14 +00:00
Logger " Master lock pid present: $master_lock_pid " "DEBUG"
2013-08-04 13:27:31 +00:00
ps -p$master_lock_pid > /dev/null 2>& 1
2015-09-08 12:04:48 +00:00
if [ $? != 0 ] ; then
2015-09-08 14:08:14 +00:00
Logger " There is a dead osync lock on master. Instance $master_lock_pid no longer running. Resuming. " "NOTICE"
2013-07-19 23:00:58 +00:00
else
2015-09-08 14:08:14 +00:00
Logger " There is already a local instance of osync that locks master replica. Cannot start. If your are sure this is an error, plaese kill instance $master_lock_pid of osync. " "CRITICAL"
2013-07-21 19:40:55 +00:00
exit 1
2013-07-19 23:00:58 +00:00
fi
2013-07-21 19:40:55 +00:00
fi
2014-05-25 17:09:30 +00:00
2015-09-08 12:04:48 +00:00
if [ " $REMOTE_SYNC " = = "yes" ] ; then
CheckConnectivity3rdPartyHosts
CheckConnectivityRemoteHost
2014-01-19 19:31:14 +00:00
eval " $SSH_CMD \"if [ -f \\\" $SLAVE_LOCK \\\" ]; then cat \\\" $SLAVE_LOCK \\\"; fi\" > $RUN_DIR /osync_remote_slave_lock_ $SCRIPT_PID " &
2013-07-24 19:03:58 +00:00
child_pid = $!
WaitForTaskCompletion $child_pid 0 1800
2015-09-08 12:04:48 +00:00
if [ -f $RUN_DIR /osync_remote_slave_lock_$SCRIPT_PID ] ; then
2013-10-10 18:17:40 +00:00
slave_lock_pid = $( cat $RUN_DIR /osync_remote_slave_lock_$SCRIPT_PID | cut -d'@' -f1)
slave_lock_id = $( cat $RUN_DIR /osync_remote_slave_lock_$SCRIPT_PID | cut -d'@' -f2)
2013-07-23 18:57:38 +00:00
fi
2013-07-19 23:00:58 +00:00
else
2015-09-08 12:04:48 +00:00
if [ -f " $SLAVE_LOCK " ] ; then
2014-01-19 19:31:14 +00:00
slave_lock_pid = $( cat " $SLAVE_LOCK " | cut -d'@' -f1)
slave_lock_id = $( cat " $SLAVE_LOCK " | cut -d'@' -f2)
2013-07-21 19:40:55 +00:00
fi
fi
2015-09-08 12:04:48 +00:00
if [ " $slave_lock_pid " != "" ] && [ " $slave_lock_id " != "" ] ; then
2015-09-08 14:08:14 +00:00
Logger " Slave lock pid: $slave_lock_pid " "DEBUG"
2013-07-21 19:40:55 +00:00
ps -p$slave_lock_pid > /dev/null
2015-09-08 12:04:48 +00:00
if [ $? != 0 ] ; then
if [ " $slave_lock_id " = = " $SYNC_ID " ] ; then
2015-09-08 14:08:14 +00:00
Logger " There is a dead osync lock on slave replica that corresponds to this master sync-id. Instance $slave_lock_pid no longer running. Resuming. " "NOTICE"
2015-09-08 12:04:48 +00:00
else
if [ " $FORCE_STRANGER_LOCK_RESUME " = = "yes" ] ; then
2015-09-08 14:08:14 +00:00
Logger "WARNING: There is a dead osync lock on slave replica that does not correspond to this master sync-id. Forcing resume." "WARN"
2013-07-21 19:40:55 +00:00
else
2015-09-08 14:08:14 +00:00
Logger "There is a dead osync lock on slave replica that does not correspond to this master sync-id. Will not resume." "CRITICAL"
2015-09-08 12:04:48 +00:00
exit 1
2013-07-21 19:40:55 +00:00
fi
2015-09-08 12:04:48 +00:00
fi
2013-07-19 23:00:58 +00:00
else
2015-09-08 14:08:14 +00:00
Logger " There is already a local instance of osync that locks slave replica. Cannot start. If you are sure this is an error, please kill instance $slave_lock_pid of osync. " "CRITICAL"
2013-07-19 23:00:58 +00:00
exit 1
fi
fi
2013-07-21 19:40:55 +00:00
WriteLockFiles
2013-07-15 22:10:23 +00:00
}
2015-09-08 12:11:08 +00:00
function UnlockDirectories {
2015-09-08 12:04:48 +00:00
if [ $nolocks -eq 1 ] ; then
2013-11-25 12:20:53 +00:00
return 0
fi
2015-09-08 12:04:48 +00:00
if [ " $REMOTE_SYNC " = = "yes" ] ; then
2013-08-24 17:51:39 +00:00
CheckConnectivity3rdPartyHosts
2015-09-08 12:04:48 +00:00
CheckConnectivityRemoteHost
2015-07-17 07:47:55 +00:00
eval " $SSH_CMD \"if [ -f \\\" $SLAVE_LOCK \\\" ]; then $COMMAND_SUDO rm \\\" $SLAVE_LOCK \\\"; fi 2>&1\" " > $RUN_DIR /osync_UnlockDirectories_$SCRIPT_PID &
2013-07-24 19:03:58 +00:00
child_pid = $!
WaitForTaskCompletion $child_pid 0 1800
2013-07-21 19:40:55 +00:00
else
2015-09-08 12:04:48 +00:00
if [ -f " $SLAVE_LOCK " ] ; then
2015-07-17 07:47:55 +00:00
rm " $SLAVE_LOCK " > $RUN_DIR /osync_UnlockDirectories_$SCRIPT_PID 2>& 1
fi
2013-07-21 19:40:55 +00:00
fi
2015-09-08 12:04:48 +00:00
if [ $? != 0 ] ; then
2015-09-08 14:08:14 +00:00
Logger "Could not unlock slave replica." "ERROR"
Logger " Command Output:\n $( cat $RUN_DIR /osync_UnlockDirectories_$SCRIPT_PID ) " "NOTICE"
2013-07-21 19:40:55 +00:00
else
2015-09-08 14:08:14 +00:00
Logger "Removed slave replica lock." "NOTICE"
2013-07-21 19:40:55 +00:00
fi
2015-09-08 12:04:48 +00:00
if [ -f " $MASTER_LOCK " ] ; then
2014-01-19 19:31:14 +00:00
rm " $MASTER_LOCK "
2015-09-08 12:04:48 +00:00
if [ $? != 0 ] ; then
2015-09-08 14:08:14 +00:00
Logger "Could not unlock master replica." "ERROR"
2013-07-19 23:00:58 +00:00
else
2015-09-08 14:08:14 +00:00
Logger "Removed master replica lock." "NOTICE"
2013-07-19 23:00:58 +00:00
fi
fi
2013-07-15 22:10:23 +00:00
}
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.
## It seems this only happens when trying to execute an rsync command through eval $rsync_cmd on a remote host.
## So i'm using unescaped $MASTER_SYNC_DIR for local rsync calls and escaped $ESC_MASTER_SYNC_DIR for remote rsync calls like user@host:$ESC_MASTER_SYNC_DIR
## The same applies for slave 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
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
local replica_type = " ${ 2 } " # replica type: master, slave
local tree_filename = " ${ 3 } " # filename to output tree (will be prefixed with $replica_type)
local escaped_replica_path = $( EscapeSpaces " $replica_path " ) #TODO: See if escpaed still needed when using ' instead of " for command eval
Logger " Creating $replica_type replica file list [ $replica_path ]. " "NOTICE"
if [ " $REMOTE_SYNC " = = "yes" ] && [ " $replica_type " = = "slave" ] ; then
2015-09-08 12:04:48 +00:00
CheckConnectivity3rdPartyHosts
CheckConnectivityRemoteHost
2015-09-08 17:17:26 +00:00
rsync_cmd = " $( type -p $RSYNC_EXECUTABLE ) --rsync-path=\" $RSYNC_PATH \" $RSYNC_ARGS -8 --exclude \" $OSYNC_DIR \" $RSYNC_EXCLUDE -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 /osync_ $replica_type_ $SCRIPT_PID \" & "
2013-11-04 21:11:43 +00:00
else
2015-09-08 17:17:26 +00:00
rsync_cmd = " $( type -p $RSYNC_EXECUTABLE ) --rsync-path=\" $RSYNC_PATH \" $RSYNC_ARGS -8 --exclude \" $OSYNC_DIR \" $RSYNC_EXCLUDE --list-only \" $replica_path /\" | grep \"^-\|^d\" | awk '{\$1=\$2=\$3=\$4=\"\" ;print}' | awk '{\$1=\$1 ;print}' | (grep -v \"^\. $\" || :) | sort > \" $RUN_DIR /osync_ $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
eval $rsync_cmd 2>> " $LOG_FILE "
2013-11-04 21:11:43 +00:00
child_pid = $!
WaitForCompletion $child_pid $SOFT_MAX_EXEC_TIME $HARD_MAX_EXEC_TIME
retval = $?
2014-01-19 19:31:14 +00:00
## Retval 24 = some files vanished while creating list
2015-09-08 12:04:48 +00:00
if ( [ $retval = = 0 ] || [ $retval = = 24 ] ) && [ -f $RUN_DIR /osync_$2 _$SCRIPT_PID ] ; then
2015-09-08 17:17:26 +00:00
mv $RUN_DIR /osync_$replica_type_ $SCRIPT_PID " $MASTER_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
2014-07-08 00:00:23 +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 (master/slave)
2015-09-08 12:11:08 +00:00
function delete_list {
2015-09-08 17:17:26 +00:00
local replica_type = " ${ 1 } " # replica type: master, slave
local tree_file_after_filename = " ${ 2 } " # tree-file-after, will be prefixed with replica type
local tree_file_current_filename = " ${ 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
local deleted_failed_list_file = " ${ 5 } " # file containing files that couldn't be deleted on last run, will be prefixed with replica type
# TODO: WIP here
Logger " Creating $replica_type replica deleted file list. " "NOTICE"
2015-09-08 12:04:48 +00:00
if [ -f " $MASTER_STATE_DIR / $1 $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
if type -p comm > /dev/null 2>& 1
2014-01-17 13:05:20 +00:00
then
2014-05-27 10:47:50 +00:00
cmd = " comm -23 \" $MASTER_STATE_DIR / $1 $TREE_AFTER_FILENAME_NO_SUFFIX \" \" $MASTER_STATE_DIR / $1 $3 \" > \" $MASTER_STATE_DIR / $1 $4 \" "
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
2014-05-27 10:47:50 +00:00
cmd = " (grep -F -x -v -f \" $MASTER_STATE_DIR / $1 $3 \" \" $MASTER_STATE_DIR / $1 $TREE_AFTER_FILENAME_NO_SUFFIX \" || :) > \" $MASTER_STATE_DIR / $1 $4 \" "
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"
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-08 12:04:48 +00:00
if [ -f " $MASTER_STATE_DIR / $1 $5 " ] ; then
2014-07-08 00:00:23 +00:00
cat " $MASTER_STATE_DIR / $1 $5 " >> " $MASTER_STATE_DIR / $1 $4 "
rm -f " $MASTER_STATE_DIR / $1 $5 "
fi
return $retval
2015-09-08 12:04:48 +00:00
else
2014-05-26 22:50:46 +00:00
touch " $MASTER_STATE_DIR / $1 $4 "
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-08 14:08:14 +00:00
Logger " Updating $2 replica. " "NOTICE"
2015-09-08 12:04:48 +00:00
if [ " $1 " = = "master" ] ; then
SOURCE_DIR = " $MASTER_SYNC_DIR "
2014-01-19 19:31:14 +00:00
ESC_SOURCE_DIR = $( EscapeSpaces " $MASTER_SYNC_DIR " )
2015-09-08 12:04:48 +00:00
DEST_DIR = " $SLAVE_SYNC_DIR "
ESC_DEST_DIR = $( EscapeSpaces " $SLAVE_SYNC_DIR " )
BACKUP_DIR = " $SLAVE_BACKUP "
else
SOURCE_DIR = " $SLAVE_SYNC_DIR "
2014-01-19 19:31:14 +00:00
ESC_SOURCE_DIR = $( EscapeSpaces " $SLAVE_SYNC_DIR " )
2015-09-08 12:04:48 +00:00
DEST_DIR = " $MASTER_SYNC_DIR "
2014-01-19 19:31:14 +00:00
ESC_DEST_DIR = $( EscapeSpaces " $MASTER_SYNC_DIR " )
2015-09-08 12:04:48 +00:00
BACKUP_DIR = " $MASTER_BACKUP "
fi
2014-05-25 17:09:30 +00:00
2015-09-08 12:04:48 +00:00
if [ " $REMOTE_SYNC " = = "yes" ] ; then
CheckConnectivity3rdPartyHosts
CheckConnectivityRemoteHost
if [ " $1 " = = "master" ] ; then
rsync_cmd = " $( type -p $RSYNC_EXECUTABLE ) --rsync-path=\" $RSYNC_PATH \" $RSYNC_ARGS $SYNC_OPTS -e \" $RSYNC_SSH_CMD \" $BACKUP_DIR --exclude \" $OSYNC_DIR \" $RSYNC_EXCLUDE --exclude-from=\" $MASTER_STATE_DIR / $1 $3 \" --exclude-from=\" $MASTER_STATE_DIR / $2 $3 \" \" $SOURCE_DIR /\" $REMOTE_USER @ $REMOTE_HOST :\" $ESC_DEST_DIR /\" > $RUN_DIR /osync_update_ $2 _replica_ $SCRIPT_PID 2>&1 & "
2014-01-17 13:05:20 +00:00
else
2015-09-08 12:04:48 +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_EXCLUDE --exclude-from=\" $MASTER_STATE_DIR / $2 $3 \" --exclude-from=\" $MASTER_STATE_DIR / $1 $3 \" $REMOTE_USER @ $REMOTE_HOST :\" $ESC_SOURCE_DIR /\" \" $DEST_DIR /\" > $RUN_DIR /osync_update_ $2 _replica_ $SCRIPT_PID 2>&1 & "
2014-01-17 13:05:20 +00:00
fi
2013-07-21 19:40:55 +00:00
else
2015-09-08 12:04:48 +00:00
rsync_cmd = " $( type -p $RSYNC_EXECUTABLE ) --rsync-path=\" $RSYNC_PATH \" $RSYNC_ARGS $SYNC_OPTS $BACKUP_DIR --exclude \" $OSYNC_DIR \" $RSYNC_EXCLUDE --exclude-from=\" $MASTER_STATE_DIR / $1 $3 \" --exclude-from=\" $MASTER_STATE_DIR / $2 $3 \" \" $SOURCE_DIR /\" \" $DEST_DIR /\" > $RUN_DIR /osync_update_ $2 _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-08 12:04:48 +00:00
child_pid = $!
WaitForCompletion $child_pid $SOFT_MAX_EXEC_TIME $HARD_MAX_EXEC_TIME
retval = $?
if [ $verbose -eq 1 ] && [ -f $RUN_DIR /osync_update_$2 _replica_$SCRIPT_PID ] ; then
2015-09-08 14:08:14 +00:00
Logger " List:\n $( cat $RUN_DIR /osync_update_$2 _replica_$SCRIPT_PID ) " "NOTICE"
2015-09-08 12:04:48 +00:00
fi
if [ $retval != 0 ] && [ $retval != 24 ] ; then
2015-09-08 14:08:14 +00:00
Logger " Updating $2 replica failed. Stopping execution. " "CRITICAL"
2015-09-08 12:04:48 +00:00
if [ $verbose -eq 0 ] && [ -f $RUN_DIR /osync_update_$2 _replica_$SCRIPT_PID ] ; then
2015-09-08 14:08:14 +00:00
Logger " Rsync output:\n $( cat $RUN_DIR /osync_update_$2 _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-08 14:08:14 +00:00
Logger " Updating $2 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 {
2014-05-25 15:51:05 +00:00
## On every run, check wheter the next item is already deleted because it's included in a directory already deleted
previous_file = ""
OLD_IFS = $IFS
IFS = $'\r\n'
2015-09-08 12:04:48 +00:00
for files in $( cat " $MASTER_STATE_DIR / $2 " )
do
if [ [ " $files " != " $previous_file / " * ] ] && [ " $files " != "" ] ; then
if [ " $SOFT_DELETE " != "no" ] ; then
if [ ! -d " $REPLICA_DIR $3 " ] ; then
mkdir -p " $REPLICA_DIR $3 "
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-08 12:04:48 +00:00
if [ $verbose -eq 1 ] ; then
2015-09-08 14:08:14 +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-08 12:04:48 +00:00
if [ $dryrun -ne 1 ] ; then
if [ -e " $REPLICA_DIR $3 / $files " ] ; then
2015-06-24 19:50:46 +00:00
rm -rf " $REPLICA_DIR $3 / $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
mkdir --parents " $REPLICA_DIR $3 / $parentdir "
mv -f " $REPLICA_DIR $files " " $REPLICA_DIR $3 / $parentdir "
else
mv -f " $REPLICA_DIR $files " " $REPLICA_DIR $3 "
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 " >> " $MASTER_STATE_DIR / $4 "
2014-05-25 15:51:05 +00:00
fi
fi
2015-09-08 12:04:48 +00:00
else
if [ $verbose -eq 1 ] ; then
2015-09-08 14:08:14 +00:00
Logger " Deleting $REPLICA_DIR $files " "NOTICE"
2014-05-25 15:51:05 +00:00
fi
2015-09-08 12:04:48 +00:00
if [ $dryrun -ne 1 ] ; then
rm -rf " $REPLICA_DIR $files "
if [ $? != 0 ] ; then
2015-09-08 14:08:14 +00:00
Logger " Cannot delete $REPLICA_DIR $files " "ERROR"
2014-07-08 00:00:23 +00:00
echo " $files " >> " $MASTER_STATE_DIR / $4 "
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
}
2014-07-08 00:00:23 +00:00
# delete_remote(replica dir, delete file list, delete dir, delete fail file list)
2015-09-08 12:11:08 +00:00
function _delete_remote {
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
2014-05-25 17:09:30 +00:00
ESC_DEST_DIR = " $( EscapeSpaces " $SLAVE_STATE_DIR " ) "
2015-09-08 12:04:48 +00:00
rsync_cmd = " $( type -p $RSYNC_EXECUTABLE ) --rsync-path=\" $RSYNC_PATH \" $SYNC_OPTS -e \" $RSYNC_SSH_CMD \" \" $MASTER_STATE_DIR / $2 \" $REMOTE_USER @ $REMOTE_HOST :\" $ESC_DEST_DIR /\" > $RUN_DIR /osync_remote_deletion_list_copy_ $SCRIPT_PID 2>&1 "
2015-09-08 14:08:14 +00:00
Logger " RSYNC_CMD: $rsync_cmd " "DEBUG"
2014-05-25 17:09:30 +00:00
eval $rsync_cmd 2>> " $LOG_FILE "
2015-09-08 12:04:48 +00:00
if [ $? != 0 ] ; then
2015-09-08 14:08:14 +00:00
Logger "Cannot copy the deletion list to remote replica." "CRITICAL"
2015-09-08 12:04:48 +00:00
if [ -f $RUN_DIR /osync_remote_deletion_list_copy_$SCRIPT_PID ] ; then
2015-09-08 14:08:14 +00:00
Logger " $( cat $RUN_DIR /osync_remote_deletion_list_copy_$SCRIPT_PID ) " "CRITICAL" #TODO: remote deletion is critical. local deletion isn't. What to do ?
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
2014-07-08 00:00:23 +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 " $SLAVE_STATE_DIR / $2 " ) " REPLICA_DIR = " $( EscapeSpaces " $REPLICA_DIR " ) " DELETE_DIR = " $( EscapeSpaces " $DELETE_DIR " ) " FAILED_DELETE_LIST = " $( EscapeSpaces " $SLAVE_STATE_DIR / $4 " ) " 'bash -s' << 'ENDSSH' > $RUN_DIR /osync_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
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
if [ " $DEBUG " = = "yes" ] ; then
_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
}
2014-07-08 00:00:23 +00:00
## Empty earlier failed delete list
> " $FAILED_DELETE_LIST "
2015-09-08 12:04:48 +00:00
## On every run, check wheter the next item is already deleted because it's included in a directory already deleted
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
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
if [ $dryrun -ne 1 ] ; then
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
$COMMAND_SUDO mv -f " $REPLICA_DIR $files " " $REPLICA_DIR $DELETE_DIR "
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
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
if [ $dryrun -ne 1 ] ; then
$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"
2014-07-08 00:00:23 +00:00
echo " $files " >> " $SLAVE_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-08 12:04:48 +00:00
ESC_SOURCE_FILE = " $( EscapeSpaces " $SLAVE_STATE_DIR / $4 " ) "
rsync_cmd = " $( type -p $RSYNC_EXECUTABLE ) --rsync-path=\" $RSYNC_PATH \" $SYNC_OPTS -e \" $RSYNC_SSH_CMD \" $REMOTE_USER @ $REMOTE_HOST :\" $ESC_SOURCE_FILE \" \" $MASTER_STATE_DIR \" > $RUN_DIR /osync_remote_failed_deletion_list_copy_ $SCRIPT_PID "
2015-09-08 14:08:14 +00:00
Logger " RSYNC_CMD: $rsync_cmd " "DEBUG"
2015-09-08 12:04:48 +00:00
eval $rsync_cmd 2>> " $LOG_FILE "
if [ $? != 0 ] ; then
2015-09-08 14:08:14 +00:00
Logger "Cannot copy back the failed deletion list to master replica." "CRITICAL"
2015-09-08 12:04:48 +00:00
if [ -f $RUN_DIR /osync_remote_failed_deletion_list_copy_$SCRIPT_PID ] ; then
2015-09-08 14:08:14 +00:00
Logger " $( cat $RUN_DIR /osync_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)
2014-05-25 15:51:05 +00:00
# replica name = "master" / "slave"
2015-09-08 12:11:08 +00:00
function deletion_propagation {
2015-09-08 14:08:14 +00:00
Logger " Propagating deletions to $1 replica. " "NOTICE"
2014-05-25 17:09:30 +00:00
2015-09-08 12:04:48 +00:00
if [ " $1 " = = "master" ] ; then
2014-05-25 15:51:05 +00:00
REPLICA_DIR = " $MASTER_SYNC_DIR "
DELETE_DIR = " $MASTER_DELETE_DIR "
2014-07-08 00:00:23 +00:00
_delete_local " $REPLICA_DIR " " slave $2 " " $DELETE_DIR " " slave $3 " &
2014-05-25 15:51:05 +00:00
child_pid = $!
WaitForCompletion $child_pid $SOFT_MAX_EXEC_TIME $HARD_MAX_EXEC_TIME
retval = $?
2015-09-08 12:04:48 +00:00
if [ $retval != 0 ] ; then
2015-09-08 14:08:14 +00:00
Logger " Deletion on replica $1 failed. " "CRITICAL"
2015-09-08 12:04:48 +00:00
exit 1
fi
2013-07-18 20:41:31 +00:00
else
2014-05-25 15:51:05 +00:00
REPLICA_DIR = " $SLAVE_SYNC_DIR "
DELETE_DIR = " $SLAVE_DELETE_DIR "
2013-07-19 23:00:58 +00:00
2015-09-08 12:04:48 +00:00
if [ " $REMOTE_SYNC " = = "yes" ] ; then
2014-07-08 00:00:23 +00:00
_delete_remote " $REPLICA_DIR " " master $2 " " $DELETE_DIR " " master $3 " &
2014-05-25 15:51:05 +00:00
else
2014-07-08 00:00:23 +00:00
_delete_local " $REPLICA_DIR " " master $2 " " $DELETE_DIR " " master $3 " &
2014-05-25 15:51:05 +00:00
fi
child_pid = $!
WaitForCompletion $child_pid $SOFT_MAX_EXEC_TIME $HARD_MAX_EXEC_TIME
retval = $?
2015-09-08 12:04:48 +00:00
if [ $retval = = 0 ] ; then
if [ -f $RUN_DIR /osync_remote_deletion_$SCRIPT_PID ] && [ $verbose -eq 1 ] ; then
2015-09-08 14:08:14 +00:00
Logger " Remote:\n $( cat $RUN_DIR /osync_remote_deletion_$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-09-08 12:04:48 +00:00
if [ -f $RUN_DIR /osync_remote_deletion_$SCRIPT_PID ] ; then
2015-09-08 14:08:14 +00:00
Logger " Remote:\n $( cat $RUN_DIR /osync_remote_deletion_$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)
######
###### Step 1: Create current tree list for master and slave replicas (Steps 1M and 1S)
###### Step 2: Create deleted file list for master and slave replicas (Steps 2M and 2S)
###### Step 3: Update master and slave replicas (Steps 3M and 3S, order depending on conflict prevalence)
###### Step 4: Deleted file propagation to master and slave replicas (Steps 4M and 4S)
###### Step 5: Create after run tree list for master and slave replicas (Steps 5M and 5S)
2015-09-08 12:11:08 +00:00
function Sync {
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-08 12:04:48 +00:00
if [ -f " $MASTER_LAST_ACTION " ] && [ " $RESUME_SYNC " != "no" ] ; then
2014-05-08 20:08:15 +00:00
resume_sync = $( cat " $MASTER_LAST_ACTION " )
2015-09-08 12:04:48 +00:00
if [ -f " $MASTER_RESUME_COUNT " ] ; then
2014-05-08 20:08:15 +00:00
resume_count = $( cat " $MASTER_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-08 14:08:14 +00:00
Logger " WARNING: Trying to resume aborted osync execution on $( $STAT_CMD " $MASTER_LAST_ACTION " ) at task [ $resume_sync ]. [ $resume_count ] previous tries. " "WARN"
2014-05-26 22:50:46 +00:00
echo $(( $resume_count + 1 )) > " $MASTER_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-08 14:08:14 +00:00
Logger " Will not resume aborted osync execution. Too much resume tries [ $resume_count ]. " "WARN"
2014-05-26 22:50:46 +00:00
echo "noresume" > " $MASTER_LAST_ACTION "
echo "0" > " $MASTER_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-08 12:04:48 +00:00
if [ " $resume_sync " = = "none" ] || [ " $resume_sync " = = "noresume" ] || [ " $resume_sync " = = "master-replica-tree.fail" ] ; then
2013-11-04 21:11:43 +00:00
#master_tree_current
2014-05-26 22:50:46 +00:00
tree_list " $MASTER_SYNC_DIR " master " $TREE_CURRENT_FILENAME "
2015-09-08 12:04:48 +00:00
if [ $? = = 0 ] ; then
2014-05-26 22:50:46 +00:00
echo " ${ SYNC_ACTION [0] } .success " > " $MASTER_LAST_ACTION "
else
echo " ${ SYNC_ACTION [0] } .fail " > " $MASTER_LAST_ACTION "
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
2013-11-04 21:11:43 +00:00
#slave_tree_current
2014-05-26 22:50:46 +00:00
tree_list " $SLAVE_SYNC_DIR " slave " $TREE_CURRENT_FILENAME "
2015-09-08 12:04:48 +00:00
if [ $? = = 0 ] ; then
2014-05-26 22:50:46 +00:00
echo " ${ SYNC_ACTION [1] } .success " > " $MASTER_LAST_ACTION "
else
echo " ${ SYNC_ACTION [1] } .fail " > " $MASTER_LAST_ACTION "
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
2014-07-08 00:00:23 +00:00
delete_list master " $TREE_AFTER_FILENAME " " $TREE_CURRENT_FILENAME " " $DELETED_LIST_FILENAME " " $FAILED_DELETE_LIST_FILENAME "
2015-09-08 12:04:48 +00:00
if [ $? = = 0 ] ; then
2014-05-26 22:50:46 +00:00
echo " ${ SYNC_ACTION [2] } .success " > " $MASTER_LAST_ACTION "
else
echo " ${ SYNc_ACTION [2] } .fail " > " $MASTER_LAST_ACTION "
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
2014-07-08 00:00:23 +00:00
delete_list slave " $TREE_AFTER_FILENAME " " $TREE_CURRENT_FILENAME " " $DELETED_LIST_FILENAME " " $FAILED_DELETE_LIST_FILENAME "
2015-09-08 12:04:48 +00:00
if [ $? = = 0 ] ; then
2014-05-26 22:50:46 +00:00
echo " ${ SYNC_ACTION [3] } .success " > " $MASTER_LAST_ACTION "
else
echo " ${ SYNC_ACTION [3] } .fail " > " $MASTER_LAST_ACTION "
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
if [ " $CONFLICT_PREVALANCE " != "master" ] ; then
if [ " $resume_sync " = = "resumed" ] || [ " $resume_sync " = = " ${ SYNC_ACTION [3] } .success " ] || [ " $resume_sync " = = " ${ SYNC_ACTION [4] } .fail " ] ; then
2014-05-26 22:50:46 +00:00
sync_update slave master " $DELETED_LIST_FILENAME "
2015-09-08 12:04:48 +00:00
if [ $? = = 0 ] ; then
2014-05-26 22:50:46 +00:00
echo " ${ SYNC_ACTION [4] } .success " > " $MASTER_LAST_ACTION "
else
echo " ${ SYNC_ACTION [4] } .fail " > " $MASTER_LAST_ACTION "
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
2014-05-26 22:50:46 +00:00
sync_update master slave " $DELETED_LIST_FILENAME "
2015-09-08 12:04:48 +00:00
if [ $? = = 0 ] ; then
2014-05-26 22:50:46 +00:00
echo " ${ SYNC_ACTION [5] } .success " > " $MASTER_LAST_ACTION "
else
echo " ${ SYNC_ACTION [5] } .fail " > " $MASTER_LAST_ACTION "
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
sync_update master slave " $DELETED_LIST_FILENAME "
if [ $? = = 0 ] ; then
2014-05-26 22:50:46 +00:00
echo " ${ SYNC_ACTION [5] } .success " > " $MASTER_LAST_ACTION "
else
echo " ${ SYNC_ACTION [5] } .fail " > " $MASTER_LAST_ACTION "
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
sync_update slave master " $DELETED_LIST_FILENAME "
if [ $? = = 0 ] ; then
2014-05-26 22:50:46 +00:00
echo " ${ SYNC_ACTION [4] } .success " > " $MASTER_LAST_ACTION "
else
echo " ${ SYNC_ACTION [4] } .fail " > " $MASTER_LAST_ACTION "
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
2014-07-08 00:00:23 +00:00
deletion_propagation slave " $DELETED_LIST_FILENAME " " $FAILED_DELETE_LIST_FILENAME "
2015-09-08 12:04:48 +00:00
if [ $? = = 0 ] ; then
2014-05-26 22:50:46 +00:00
echo " ${ SYNC_ACTION [6] } .success " > " $MASTER_LAST_ACTION "
else
echo " ${ SYNC_ACTION [6] } .fail " > " $MASTER_LAST_ACTION "
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
2014-07-08 00:00:23 +00:00
deletion_propagation master " $DELETED_LIST_FILENAME " " $FAILED_DELETE_LIST_FILENAME "
2015-09-08 12:04:48 +00:00
if [ $? = = 0 ] ; then
2014-05-26 22:50:46 +00:00
echo " ${ SYNC_ACTION [7] } .success " > " $MASTER_LAST_ACTION "
else
echo " ${ SYNC_ACTION [7] } .fail " > " $MASTER_LAST_ACTION "
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
2013-11-04 21:11:43 +00:00
#master_tree_after
2014-05-26 22:50:46 +00:00
tree_list " $MASTER_SYNC_DIR " master " $TREE_AFTER_FILENAME "
2015-09-08 12:04:48 +00:00
if [ $? = = 0 ] ; then
2014-05-26 22:50:46 +00:00
echo " ${ SYNC_ACTION [8] } .success " > " $MASTER_LAST_ACTION "
else
echo " ${ SYNC_ACTION [8] } .fail " > " $MASTER_LAST_ACTION "
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
2013-11-04 21:11:43 +00:00
#slave_tree_after
2014-05-26 22:50:46 +00:00
tree_list " $SLAVE_SYNC_DIR " slave " $TREE_AFTER_FILENAME "
2015-09-08 12:04:48 +00:00
if [ $? = = 0 ] ; then
2014-05-26 22:50:46 +00:00
echo " ${ SYNC_ACTION [9] } .success " > " $MASTER_LAST_ACTION "
else
echo " ${ SYNC_ACTION [9] } .fail " > " $MASTER_LAST_ACTION "
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"
2014-05-26 22:50:46 +00:00
echo " ${ SYNC_ACTION [10] } " > " $MASTER_LAST_ACTION "
2014-01-19 19:31:14 +00:00
2014-05-26 22:50:46 +00:00
echo "0" > " $MASTER_RESUME_COUNT "
2013-07-18 20:41:31 +00:00
}
2015-09-08 12:11:08 +00:00
function SoftDelete {
2015-09-08 12:04:48 +00:00
if [ " $CONFLICT_BACKUP " != "no" ] && [ $CONFLICT_BACKUP_DAYS -ne 0 ] ; then
2015-09-08 14:08:14 +00:00
Logger "Running conflict backup cleanup." "NOTICE"
2015-04-01 08:34:40 +00:00
_SoftDelete $CONFLICT_BACKUP_DAYS " $MASTER_SYNC_DIR $MASTER_BACKUP_DIR " " $SLAVE_SYNC_DIR $SLAVE_BACKUP_DIR "
2015-03-30 23:46:07 +00:00
fi
2015-03-28 19:06:17 +00:00
2015-09-08 12:04:48 +00:00
if [ " $SOFT_DELETE " != "no" ] && [ $SOFT_DELETE_DAYS -ne 0 ] ; then
2015-09-08 14:08:14 +00:00
Logger "Running soft deletion cleanup." "NOTICE"
2015-04-01 08:34:40 +00:00
_SoftDelete $SOFT_DELETE_DAYS " $MASTER_SYNC_DIR $MASTER_DELETE_DIR " " $SLAVE_SYNC_DIR $SLAVE_DELETE_DIR "
2015-03-30 23:46:07 +00:00
fi
}
2015-03-28 19:06:17 +00:00
2015-03-30 23:46:07 +00:00
# Takes 3 arguments
# $1 = ctime (CONFLICT_BACKUP_DAYS or SOFT_DELETE_DAYS), $2 = MASTER_(BACKUP/DELETED)_DIR, $3 = SLAVE_(BACKUP/DELETED)_DIR
2015-09-08 12:11:08 +00:00
function _SoftDelete {
2015-09-08 17:17:26 +00:00
local change_time = " ${ 1 } " # Contains the number of days a file needs to be old to be processed here (conflict or soft deletion)
local master_directory = " ${ 2 } " # Master backup / deleted directory to search in
local slave_directory = " ${ 3 } " # Slave backup / deleted directory to search in
if [ -d " $master_directory " ] ; then
2015-09-08 12:04:48 +00:00
if [ $dryrun -eq 1 ] ; then
2015-09-08 17:17:26 +00:00
Logger " Listing files older than $change_time days on master replica. Won't remove anything. " "NOTICE"
2015-03-30 23:46:07 +00:00
else
2015-09-08 17:17:26 +00:00
Logger " Removing files older than $change_time days on master replica. " "NOTICE"
2013-07-16 11:55:15 +00:00
fi
2015-09-08 12:04:48 +00:00
if [ $verbose -eq 1 ] ; then
2015-03-30 23:46:07 +00:00
# Cannot launch log function from xargs, ugly hack
2015-09-08 17:17:26 +00:00
$FIND_CMD " $master_directory / " -type f -ctime +$change_time -print0 | xargs -0 -I { } echo "Will delete file {}" > $RUN_DIR /osync_soft_delete_master_$SCRIPT_PID
2015-09-08 14:08:14 +00:00
Logger " Command output:\n $( cat $RUN_DIR /osync_soft_delete_master_$SCRIPT_PID ) " "NOTICE"
2015-09-08 17:17:26 +00:00
$FIND_CMD " $master_directory / " -type d -empty -ctime +$change_time -print0 | xargs -0 -I { } echo "Will delete directory {}" > $RUN_DIR /osync_soft_delete_master_$SCRIPT_PID
2015-09-08 14:08:14 +00:00
Logger " Command output:\n $( cat $RUN_DIR /osync_soft_delete_master_$SCRIPT_PID ) " "NOTICE"
2013-07-16 11:55:15 +00:00
fi
2015-09-08 12:04:48 +00:00
if [ $dryrun -ne 1 ] ; then
2015-09-08 17:17:26 +00:00
$FIND_CMD " $master_directory / " -type f -ctime +$change_time -print0 | xargs -0 -I { } rm -f "{}" && $FIND_CMD " $master_directory / " -type d -empty -ctime +$change_time -print0 | xargs -0 -I { } rm -rf "{}" > $RUN_DIR /osync_soft_delete_master_$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-03-30 23:46:07 +00:00
child_pid = $!
2015-09-08 12:04:48 +00:00
WaitForCompletion $child_pid $SOFT_MAX_EXEC_TIME $HARD_MAX_EXEC_TIME
retval = $?
if [ $retval -ne 0 ] ; then
2015-09-08 14:08:14 +00:00
Logger "Error while executing cleanup on master replica." "ERROR"
Logger " Command output:\n $( cat $RUN_DIR /osync_soft_delete_master_$SCRIPT_PID ) " "NOTICE"
2015-03-30 23:46:07 +00:00
else
2015-09-08 14:08:14 +00:00
Logger "Cleanup complete on master replica." "NOTICE"
2013-07-16 11:55:15 +00:00
fi
2015-09-08 17:17:26 +00:00
elif [ -d " $master_directory " ] && ! [ -w " $master_directory " ] ; then
Logger " Warning: Master replica dir [ $master_directory ] isn't writable. Cannot clean old files. " "ERROR"
2013-07-16 11:55:15 +00:00
fi
2015-09-08 12:04:48 +00:00
if [ " $REMOTE_SYNC " = = "yes" ] ; then
CheckConnectivity3rdPartyHosts
CheckConnectivityRemoteHost
if [ $dryrun -eq 1 ] ; then
2015-09-08 17:17:26 +00:00
Logger " Listing files older than $change_time days on slave replica. Won't remove anything. " "NOTICE"
2015-03-30 23:46:07 +00:00
else
2015-09-08 17:17:26 +00:00
Logger " Removing files older than $change_time days on slave replica. " "NOTICE"
2013-07-16 11:55:15 +00:00
fi
2015-09-08 12:04:48 +00:00
if [ $verbose -eq 1 ] ; then
2015-03-30 23:46:07 +00:00
# Cannot launch log function from xargs, ugly hack
2015-09-08 17:17:26 +00:00
eval " $SSH_CMD \"if [ -w \\\" $slave_directory \\\" ]; then $COMMAND_SUDO $REMOTE_FIND_CMD \\\" $slave_directory /\\\" -type f -ctime + $change_time -print0 | xargs -0 -I {} echo Will delete file {} && $REMOTE_FIND_CMD \\\" $slave_directory /\\\" -type d -empty -ctime $change_time -print0 | xargs -0 -I {} echo Will delete directory {}; fi\" " > $RUN_DIR /osync_soft_delete_slave_$SCRIPT_PID
2015-09-08 14:08:14 +00:00
Logger " Command output:\n $( cat $RUN_DIR /osync_soft_delete_slave_$SCRIPT_PID ) " "NOTICE"
2015-03-30 23:46:07 +00:00
fi
2015-09-08 12:04:48 +00:00
if [ $dryrun -ne 1 ] ; then
2015-09-08 17:17:26 +00:00
eval " $SSH_CMD \"if [ -w \\\" $slave_directory \\\" ]; then $COMMAND_SUDO $REMOTE_FIND_CMD \\\" $slave_directory /\\\" -type f -ctime + $change_time -print0 | xargs -0 -I {} rm -f \\\"{}\\\" && $REMOTE_FIND_CMD \\\" $slave_directory /\\\" -type d -empty -ctime $change_time -print0 | xargs -0 -I {} rm -rf \\\"{}\\\"; fi 2>&1\" " > $RUN_DIR /osync_soft_delete_slave_$SCRIPT_PID &
2015-03-30 23:46:07 +00:00
else
Dummy &
fi
child_pid = $!
2015-09-08 12:04:48 +00:00
WaitForCompletion $child_pid $SOFT_MAX_EXEC_TIME $HARD_MAX_EXEC_TIME
retval = $?
if [ $retval -ne 0 ] ; then
2015-09-08 14:08:14 +00:00
Logger "Error while executing cleanup on slave replica." "ERROR"
Logger " Command output:\n $( cat $RUN_DIR /osync_soft_delete_slave_$SCRIPT_PID ) " "NOTICE"
2015-09-08 12:04:48 +00:00
else
2015-09-08 14:08:14 +00:00
Logger "Cleanup complete on slave replica." "NOTICE"
2015-09-08 12:04:48 +00:00
fi
2015-03-30 23:46:07 +00:00
else
2015-09-08 17:17:26 +00:00
if [ -w " $slave_directory " ] ; then
2015-09-08 12:04:48 +00:00
if [ $dryrun -eq 1 ] ; then
2015-09-08 17:17:26 +00:00
Logger " Listing files older than $change_time days on slave replica. Won't remove anything. " "NOTICE"
2013-07-21 19:40:55 +00:00
else
2015-09-08 17:17:26 +00:00
Logger " Removing files older than $change_time days on slave replica. " "NOTICE"
2015-03-30 23:46:07 +00:00
fi
2015-09-08 12:04:48 +00:00
if [ $verbose -eq 1 ] ; then
2015-03-30 23:46:07 +00:00
# Cannot launch log function from xargs, ugly hack
2015-09-08 17:17:26 +00:00
$FIND_CMD " $slave_directory / " -type f -ctime +$change_time -print0 | xargs -0 -I { } echo "Will delete file {}" > $RUN_DIR /osync_soft_delete_slave_$SCRIPT_PID
2015-09-08 14:08:14 +00:00
Logger " Command output:\n $( cat $RUN_DIR /osync_soft_delete_slave_$SCRIPT_PID ) " "NOTICE"
2015-09-08 17:17:26 +00:00
$FIND_CMD " $slave_directory / " -type d -empty -ctime +$change_time -print0 | xargs -0 -I { } echo "Will delete directory {}" > $RUN_DIR /osync_soft_delete_slave_$SCRIPT_PID
2015-09-08 14:08:14 +00:00
Logger " Command output:\n $( cat $RUN_DIR /osync_soft_delete_slave_$SCRIPT_PID ) " "NOTICE"
2015-03-30 23:46:07 +00:00
Dummy &
fi
2015-09-08 12:04:48 +00:00
if [ $dryrun -ne 1 ] ; then
2015-09-08 17:17:26 +00:00
$FIND_CMD " $slave_directory / " -type f -ctime +$change_time -print0 | xargs -0 -I { } rm -f "{}" && $FIND_CMD " $slave_directory / " -type d -empty -ctime +$change_time -print0 | xargs -0 -I { } rm -rf "{}" > $RUN_DIR /osync_soft_delete_slave_$SCRIPT_PID &
2015-03-30 23:46:07 +00:00
fi
child_pid = $!
2015-09-08 12:04:48 +00:00
WaitForCompletion $child_pid $SOFT_MAX_EXEC_TIME $HARD_MAX_EXEC_TIME
retval = $?
if [ $retval -ne 0 ] ; then
2015-09-08 14:08:14 +00:00
Logger "Error while executing cleanup on slave replica." "ERROR"
Logger " Command output:\n $( cat $RUN_DIR /osync_soft_delete_slave_$SCRIPT_PID ) " "NOTICE"
2015-03-30 23:46:07 +00:00
else
2015-09-08 14:08:14 +00:00
Logger "Cleanup complete on slave replica." "NOTICE"
2015-03-30 23:46:07 +00:00
fi
2015-09-08 17:17:26 +00:00
elif [ -d " $slave_directory " ] && ! [ -w " $slave_directory " ] ; then
Logger " Warning: Slave replica dir [ $slave_directory ] isn't writable. Cannot clean old files. " "ERROR"
2013-07-16 11:55:15 +00:00
fi
fi
2015-03-30 23:46:07 +00:00
2013-07-15 22:10:23 +00:00
}
2015-09-08 12:11:08 +00:00
function Init {
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-08 12:04:48 +00:00
if [ " $DEBUG " = = "yes" ] ; then
trap 'TrapError ${LINENO} $?' ERR
fi
2013-07-15 22:10:23 +00:00
2015-09-08 12:04:48 +00:00
MAIL_ALERT_MSG = " Warning: Execution of osync instance $OSYNC_ID (pid $SCRIPT_PID ) as $LOCAL_USER @ $LOCAL_HOST produced errors on $( date) . "
2013-07-15 22:10:23 +00:00
2013-11-14 20:20:13 +00:00
## Test if slave dir is a ssh uri, and if yes, break it down it its values
2015-09-08 12:04:48 +00:00
if [ " ${ SLAVE_SYNC_DIR : 0 : 6 } " = = "ssh://" ] ; then
REMOTE_SYNC = "yes"
# remove leadng 'ssh://'
uri = ${ SLAVE_SYNC_DIR #ssh : //* }
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 '/'
SLAVE_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
MASTER_SYNC_DIR = " ${ MASTER_SYNC_DIR %/ } / "
SLAVE_SYNC_DIR = " ${ SLAVE_SYNC_DIR %/ } / "
2013-07-24 08:38:42 +00:00
2014-01-19 19:31:14 +00:00
MASTER_STATE_DIR = " $MASTER_SYNC_DIR $OSYNC_DIR /state "
SLAVE_STATE_DIR = " $SLAVE_SYNC_DIR $OSYNC_DIR /state "
2013-11-04 21:11:43 +00:00
STATE_DIR = " $OSYNC_DIR /state "
2014-01-19 19:31:14 +00:00
MASTER_LOCK = " $MASTER_STATE_DIR /lock "
SLAVE_LOCK = " $SLAVE_STATE_DIR /lock "
2013-07-15 22:10:23 +00:00
## Working directories to keep backups of updated / deleted files
2013-07-24 08:38:42 +00:00
MASTER_BACKUP_DIR = " $OSYNC_DIR /backups "
MASTER_DELETE_DIR = " $OSYNC_DIR /deleted "
SLAVE_BACKUP_DIR = " $OSYNC_DIR /backups "
SLAVE_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
2013-07-17 09:34:05 +00:00
## SSH compression
2015-09-08 12:04:48 +00:00
if [ " $SSH_COMPRESSION " != "no" ] ; then
2013-07-17 09:34:05 +00:00
SSH_COMP = -C
else
SSH_COMP =
fi
2013-07-20 11:43:11 +00:00
## Define which runner (local bash or distant ssh) to use for standard commands and rsync commands
2015-09-08 12:04:48 +00:00
if [ " $REMOTE_SYNC " = = "yes" ] ; then
2013-10-10 18:17:40 +00:00
SSH_CMD = " $( type -p ssh) $SSH_COMP -i $SSH_RSA_PRIVATE_KEY $REMOTE_USER @ $REMOTE_HOST -p $REMOTE_PORT "
2014-05-25 15:51:05 +00:00
SCP_CMD = " $( type -p scp) $SSH_COMP -i $SSH_RSA_PRIVATE_KEY -P $REMOTE_PORT "
2013-10-10 18:17:40 +00:00
RSYNC_SSH_CMD = " $( type -p ssh) $SSH_COMP -i $SSH_RSA_PRIVATE_KEY -p $REMOTE_PORT "
2013-07-16 11:55:15 +00:00
fi
2013-07-16 21:06:26 +00:00
2013-10-10 18:28:40 +00:00
## Support for older config files without RSYNC_EXECUTABLE option
2015-09-08 12:04:48 +00:00
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
2013-07-22 09:34:58 +00:00
2014-05-21 16:33:16 +00:00
## Set rsync default arguments
RSYNC_ARGS = "-rlptgoD"
2015-09-08 12:04:48 +00:00
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
2014-05-27 09:35:45 +00:00
RSYNC_ARGS = $RSYNC_ARGS " -L"
fi
2015-09-08 12:04:48 +00:00
if [ " $KEEP_DIRLINKS " = = "yes" ] ; then
2014-05-27 17:58:59 +00:00
RSYNC_ARGS = $RSYNC_ARGS " -K"
fi
2015-09-08 12:04:48 +00:00
if [ " $PRESERVE_HARDLINKS " = = "yes" ] ; then
2014-05-27 09:35:45 +00:00
RSYNC_ARGS = $RSYNC_ARGS " -H"
2014-05-08 10:36:36 +00:00
fi
2015-09-08 12:04:48 +00:00
if [ " $CHECKSUM " = = "yes" ] ; then
2015-04-13 19:33:43 +00:00
RSYNC_ARGS = $RSYNC_ARGS " --checksum"
fi
2015-09-08 12:04:48 +00:00
if [ $dryrun -eq 1 ] ; then
2014-05-27 09:35:45 +00:00
RSYNC_ARGS = $RSYNC_ARGS " -n"
2013-07-16 21:06:26 +00:00
DRY_WARNING = "/!\ DRY RUN"
2013-07-22 09:34:58 +00:00
fi
2013-07-16 21:33:30 +00:00
2015-09-08 12:04:48 +00:00
if [ " $BANDWIDTH " != "" ] && [ " $BANDWIDTH " != "0" ] ; then
2013-08-04 13:20:26 +00:00
RSYNC_ARGS = $RSYNC_ARGS " --bwlimit= $BANDWIDTH "
fi
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-08 12:04:48 +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 \" "
2014-11-26 10:25:58 +00:00
RSYNC_EXCLUDE = " $RSYNC_EXCLUDE --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
2013-07-23 18:57:38 +00:00
MASTER_BACKUP = " --backup --backup-dir=\" $MASTER_BACKUP_DIR \" "
SLAVE_BACKUP = " --backup --backup-dir=\" $SLAVE_BACKUP_DIR \" "
2015-09-08 12:04:48 +00:00
if [ " $CONFLICT_BACKUP_MULTIPLE " = = "yes" ] ; then
MASTER_BACKUP = " $MASTER_BACKUP --suffix . $( date +%Y.%m.%d-%H.%M.%S) "
SLAVE_BACKUP = " $SLAVE_BACKUP --suffix . $( date +%Y.%m.%d-%H.%M.%S) "
fi
2013-07-16 21:33:30 +00:00
else
2013-07-19 10:49:40 +00:00
MASTER_BACKUP =
SLAVE_BACKUP =
2013-07-16 21:33:30 +00:00
fi
2013-07-19 16:15:25 +00:00
## Add Rsync exclude patterns
RsyncExcludePattern
2014-05-08 10:36:36 +00:00
## Add Rsync exclude from file
RsyncExcludeFrom
2014-05-26 22:50:46 +00:00
## Filenames for state files
2015-09-08 12:04:48 +00:00
if [ $dryrun -eq 1 ] ; then
2014-05-26 22:50:46 +00:00
dry_suffix = "-dry"
fi
TREE_CURRENT_FILENAME = " -tree-current- $SYNC_ID $dry_suffix "
TREE_AFTER_FILENAME = " -tree-after- $SYNC_ID $dry_suffix "
2014-05-27 10:47:50 +00:00
TREE_AFTER_FILENAME_NO_SUFFIX = " -tree-after- $SYNC_ID "
2014-07-08 00:00:23 +00:00
DELETED_LIST_FILENAME = " -deleted-list- $SYNC_ID $dry_suffix "
FAILED_DELETE_LIST_FILENAME = " -failed-delete- $SYNC_ID $dry_suffix "
2014-05-26 22:50:46 +00:00
MASTER_LAST_ACTION = " $MASTER_STATE_DIR /last-action- $SYNC_ID $dry_suffix "
MASTER_RESUME_COUNT = " $MASTER_STATE_DIR /resume-count- $SYNC_ID $dry_suffix "
## Sync function actions (0-9)
SYNC_ACTION = (
'master-replica-tree'
'slave-replica-tree'
'master-deleted-list'
'slave-deleted-list'
'update-master-replica'
'update-slave-replica'
'delete-propagation-slave'
'delete-propagation-master'
'master-replica-tree-after'
'slave-replica-tree-after'
'sync.success'
)
2014-09-22 19:21:37 +00:00
2015-09-08 12:04:48 +00:00
## Set compression executable and extension
2015-02-18 14:03:45 +00:00
COMPRESSION_LEVEL = 3
2015-09-08 12:04:48 +00:00
if type -p xz > /dev/null 2>& 1
then
COMPRESSION_PROGRAM = " | xz - $COMPRESSION_LEVEL "
COMPRESSION_EXTENSION = .xz
elif type -p lzma > /dev/null 2>& 1
then
COMPRESSION_PROGRAM = " | lzma - $COMPRESSION_LEVEL "
COMPRESSION_EXTENSION = .lzma
elif type -p pigz > /dev/null 2>& 1
then
COMPRESSION_PROGRAM = " | pigz - $COMPRESSION_LEVEL "
COMPRESSION_EXTENSION = .gz
COMPRESSION_OPTIONS = --rsyncable
elif type -p gzip > /dev/null 2>& 1
then
COMPRESSION_PROGRAM = " | gzip - $COMPRESSION_LEVEL "
COMPRESSION_EXTENSION = .gz
COMPRESSION_OPTIONS = --rsyncable
else
2014-09-22 19:21:37 +00:00
COMPRESSION_PROGRAM =
2015-09-08 12:04:48 +00:00
COMPRESSION_EXTENSION =
fi
2014-09-22 19:21:37 +00:00
ALERT_LOG_FILE = " $ALERT_LOG_FILE $COMPRESSION_EXTENSION "
2014-05-26 22:50:46 +00:00
}
2015-09-08 12:11:08 +00:00
function InitLocalOSSettings {
2014-11-24 09:12:48 +00:00
## If running under Msys, some commands don't run the same way
## Using mingw version of find instead of windows one
## Getting running processes is quite different
## Ping command isn't the same
2015-09-08 12:04:48 +00:00
if [ " $LOCAL_OS " = = "msys" ] ; then
2014-05-26 22:50:46 +00:00
FIND_CMD = $( dirname $BASH ) /find
2015-09-09 07:38:05 +00:00
#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'
2014-11-24 09:12:48 +00:00
PING_CMD = "ping -n 2"
2014-05-26 22:50:46 +00:00
else
FIND_CMD = find
2015-09-09 07:38:05 +00:00
# PROCESS_TEST_CMD assumes there is a variable $pid
PROCESS_TEST_CMD = 'ps -p$pid'
2014-11-24 09:12:48 +00:00
PING_CMD = "ping -c 2 -i .2"
2014-05-26 22:50:46 +00:00
fi
## Stat command has different syntax on Linux and FreeBSD/MacOSX
2015-09-08 12:04:48 +00:00
if [ " $LOCAL_OS " = = "MacOSX" ] || [ " $LOCAL_OS " = = "BSD" ] ; then
2014-05-26 22:50:46 +00:00
STAT_CMD = "stat -f \"%Sm\""
else
STAT_CMD = "stat --format %y"
fi
}
2015-09-08 12:11:08 +00:00
function InitRemoteOSSettings {
2014-05-26 22:50:46 +00:00
## MacOSX does not use the -E parameter like Linux or BSD does (-E is mapped to extended attrs instead of preserve executability)
2015-09-08 12:04:48 +00:00
if [ " $LOCAL_OS " != "MacOSX" ] && [ " $REMOTE_OS " != "MacOSX" ] ; then
2014-05-27 09:35:45 +00:00
RSYNC_ARGS = $RSYNC_ARGS " -E"
2014-05-26 22:50:46 +00:00
fi
2015-09-08 12:04:48 +00:00
if [ " $REMOTE_OS " = = "msys" ] ; then
2014-05-26 22:50:46 +00:00
REMOTE_FIND_CMD = $( dirname $BASH ) /find
else
REMOTE_FIND_CMD = find
fi
2013-06-18 11:34:14 +00:00
}
2015-09-08 12:11:08 +00:00
function Main {
2013-07-20 11:43:11 +00:00
CreateOsyncDirs
2013-07-19 23:00:58 +00:00
LockDirectories
2013-07-15 22:10:23 +00:00
Sync
}
2015-09-08 12:11:08 +00:00
function Usage {
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 ""
2013-11-14 20:20:13 +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]"
echo "or osync.sh --master=/path/to/master/replica --slave=/path/to/slave/replica [OPTIONS] [QUICKSYNC OPTIONS]"
2015-04-01 09:02:03 +00:00
echo "or osync.sh --master=/path/to/master/replica --slave=ssh://[backupuser]@remotehost.com[:portnumber]//path/to/slave/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"
echo "--force-unlock Will override any existing active or dead locks on master and slave replica"
2014-05-27 12:18:48 +00:00
echo "--on-changes Will launch a sync task after a short wait period if there is some file activity on master 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]"
2014-05-27 12:18:48 +00:00
echo "--master=\"\" Master replica path. Will contain state and backup directory (is mandatory)"
echo "--slave=\"\" Local or remote slave replica path. Can be a ssh uri like ssh://user@host.com:22//path/to/slave/replica (is mandatory)"
2013-11-18 22:36:52 +00:00
echo "--rsakey=\"\" Alternative path to rsa private key for ssh connection to slave replica"
2014-05-27 12:18:48 +00:00
echo "--sync-id=\"\" Optional sync task name to identify this synchronization task when using multiple slaves"
2015-03-28 19:06:17 +00:00
echo ""
echo "Additionnaly, you may set most osync options at runtime. eg:"
echo "SOFT_DELETE_DAYS=365 osync.sh --master=/path --slave=/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 {
2013-11-18 21:44:20 +00:00
if ! type -p 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-09-08 14:08:14 +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-03-28 21:44:41 +00:00
cmd = " bash $osync_cmd \" $ConfigFile \" $opts "
2013-11-25 12:20:53 +00:00
else
2015-03-28 21:44:41 +00:00
cmd = " bash $osync_cmd $opts "
2013-11-25 12:20:53 +00:00
fi
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-03-28 20:37:51 +00:00
inotifywait --exclude $OSYNC_DIR $RSYNC_EXCLUDE -qq -r -e create -e modify -e delete -e move -e attrib --timeout " $MAX_WAIT " " $MASTER_SYNC_DIR " &
2014-01-19 19:31:14 +00:00
sub_pid = $!
wait $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
}
2013-07-15 22:10:23 +00:00
# Comand line argument flags
dryrun = 0
silent = 0
2014-11-28 11:10:00 +00:00
if [ " $DEBUG " = = "yes" ]
then
2015-09-08 12:04:48 +00:00
verbose = 1
2014-11-28 11:10:00 +00:00
else
2015-09-08 12:04:48 +00:00
verbose = 0
2014-11-28 11:10:00 +00:00
fi
2014-05-25 15:51:05 +00:00
stats = 0
2014-11-24 18:26:17 +00:00
PARTIAL = 0
2013-07-21 19:40:55 +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
error_alert = 0
2013-07-16 21:06:26 +00:00
soft_stop = 0
2013-11-03 19:29:17 +00:00
quick_sync = 0
2013-11-18 21:44:20 +00:00
sync_on_changes = 0
2013-11-25 12:20:53 +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)
dryrun = 1
2013-11-18 22:50:39 +00:00
opts = $opts " --dry"
2013-07-15 22:10:23 +00:00
; ;
--silent)
silent = 1
2013-11-18 22:50:39 +00:00
opts = $opts " --silent"
2013-07-15 22:10:23 +00:00
; ;
2013-07-20 11:43:11 +00:00
--verbose)
verbose = 1
2013-11-18 22:50:39 +00:00
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)
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
; ;
2013-11-03 19:29:17 +00:00
--master= *)
quick_sync = $(( $quick_sync + 1 ))
no_maxtime = 1
MASTER_SYNC_DIR = ${ i ##*= }
2013-11-25 12:20:53 +00:00
opts = $opts " --master=\" $MASTER_SYNC_DIR \" "
2013-11-03 19:29:17 +00:00
; ;
--slave= *)
quick_sync = $(( $quick_sync + 1 ))
SLAVE_SYNC_DIR = ${ i ##*= }
2013-11-25 12:20:53 +00:00
opts = $opts " --slave=\" $SLAVE_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
; ;
2014-05-08 10:36:36 +00:00
--sync-id= *)
SYNC_ID = ${ i ##*= }
opts = $opts " --sync-id=\" $SYNC_ID \" "
; ;
2013-11-18 21:44:20 +00:00
--on-changes)
sync_on_changes = 1
2015-03-28 21:44:41 +00:00
nolocks = 1
2013-11-18 21:44:20 +00:00
; ;
2013-11-25 12:20:53 +00:00
--no-locks)
nolocks = 1
; ;
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 # * } "
2013-07-15 22:10:23 +00:00
CheckEnvironment
if [ $? = = 0 ]
then
2014-05-08 10:36:36 +00:00
## Here we set default options for quicksync tasks when no configuration file is provided.
2015-09-08 12:04:48 +00:00
if [ $quick_sync -eq 2 ] ; then
if [ " $SYNC_ID " = = "" ] ; then
2014-05-08 10:36:36 +00:00
SYNC_ID = "quicksync task"
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-03-28 19:06:17 +00:00
REMOTE_SYNC = no
2013-11-03 19:29:17 +00:00
else
2013-11-18 21:44:20 +00:00
ConfigFile = " $1 "
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
2014-11-29 14:07:09 +00:00
LOG_FILE = /var/log/osync_$SYNC_ID .log
else
LOG_FILE = ./osync_$SYNC_ID .log
fi
2015-09-08 12:04:48 +00:00
else
LOG_FILE = " $LOGFILE "
fi
2014-11-29 14:07:09 +00:00
GetLocalOS
InitLocalOSSettings
2013-11-03 19:29:17 +00:00
Init
2014-05-26 22:50:46 +00:00
GetRemoteOS
InitRemoteOSSettings
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"
Logger " Sync task [ $SYNC_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
CheckMasterSlaveDirs
CheckMinimumSpace
2015-09-08 12:04:48 +00:00
if [ $? = = 0 ] ; then
2014-03-09 16:54:45 +00:00
RunBeforeHook
Main
2015-09-08 12:04:48 +00:00
if [ $? = = 0 ] ; then
2014-03-09 16:54:45 +00:00
SoftDelete
fi
RunAfterHook
2013-06-18 11:34:14 +00:00
fi
fi
2013-07-15 22:10:23 +00:00
else
2015-09-08 14:08:14 +00:00
Logger "Environment not suitable to run osync." "CRITICAL"
2013-10-10 18:17:40 +00:00
exit 1
2013-07-15 22:10:23 +00:00
fi