X-Git-Url: https://git.distorted.org.uk/~mdw/rsync-backup/blobdiff_plain/f6b4ffdc7265b79b945e2350efbd9d2a94df4450..8e40e6cfc8aa260bea12a5e89ce14a2ff9a78a17:/rsync-backup.in diff --git a/rsync-backup.in b/rsync-backup.in index 5c9a54c..7519b12 100644 --- a/rsync-backup.in +++ b/rsync-backup.in @@ -35,6 +35,7 @@ fshashdir=@fshashdir@ conf=@sysconfdir@/rsync-backup.conf verbose=: +dryrun=nil ###-------------------------------------------------------------------------- ### Utility functions. @@ -57,26 +58,51 @@ do_rsync () { } log () { - now=$(date +"%Y-%m-%d %H:%M:%S %z") - echo >&9 "$now $*" + case $dryrun in + t) + echo >&2 " *** $*" + ;; + nil) + now=$(date +"%Y-%m-%d %H:%M:%S %z") + echo >&9 "$now $*" + ;; + esac +} + +maybe () { + ## Run CMD, if this isn't a dry run. + + case $dryrun in + t) echo >&2 " +++ $*" ;; + nil) "$@" ;; + esac } run () { tag=$1 cmd=$2; shift 2 ## Run CMD, logging its output in a pleasing manner. - log "BEGIN $tag" - rc=$( - { { { ( set +e - "$cmd" "$@" 3>&- 4>&- 5>&- 9>&- - echo $? >&5; ) | - while IFS= read line; do echo "| $line"; done >&4; } 2>&1 | - while IFS= read line; do echo "* $line"; done >&4; } 4>&1 | - cat >&9; } 5>&1 &2 " *** RUN $tag" + echo >&2 " +++ $cmd $*" + rc=0 + ;; + nil) + log "BEGIN $tag" + rc=$( + { { { ( set +e + "$cmd" "$@" 3>&- 4>&- 5>&- 9>&- + echo $? >&5; ) | + while IFS= read line; do echo "| $line"; done >&4; } 2>&1 | + while IFS= read line; do echo "* $line"; done >&4; } 4>&1 | + cat >&9; } 5>&1 &2 " --- keep $date" + ;; + EXPIRE,t) + echo >&2 " --- delete $date" + ;; + RETAIN,nil) echo "keep $date" ;; - EXPIRE) + EXPIRE,nil) echo "delete $date" $verbose -n " expire $date..." rm -rf $date $date.* @@ -521,83 +553,134 @@ do_backup () { ## Back up FS on the current host. set -e + attempt=0 ## Report the start of this attempt. log "START BACKUP of $host:$fs" - ## Create and mount the remote snapshot. - snapmnt=$(snap_$snap $snapargs $fs $fsarg) || return $? - $verbose " create snapshot" + ## Maybe we need to retry the backup. + while :; do - ## Build the list of hardlink sources. - linkdests="" - for i in $host $like; do - d=$STOREDIR/$i/$fs/last/ - if [ -d $d ]; then linkdests="$linkdests --link-dest=$d"; fi - done + ## Create and mount the remote snapshot. + case $dryrun in + t) + maybe snap_$snap $fs $fsarg + snapmnt="" + ;; + nil) + snapmnt=$(snap_$snap $snapargs $fs $fsarg) || return $? + ;; + esac + $verbose " create snapshot" - ## Copy files from the remote snapshot. - mkdir -p new/ - $verbose -n " running rsync..." - set +e - run "RSYNC of $host:$fs (snapshot on $snapmnt)" do_rsync \ - $linkdests \ - $rsyncargs \ - $snapmnt/ new/ - rc_rsync=$? - set -e - $verbose " done" + ## Build the list of hardlink sources. + linkdests="" + for i in $host $like; do + d=$STOREDIR/$i/$fs/last/ + if [ -d $d ]; then linkdests="$linkdests --link-dest=$d"; fi + done - ## Collect a map of the snapshot for verification purposes. - set +e - $verbose -n " remote fshash..." - run "@$host: fshash $fs" remote_fshash - rc_fshash=$? - set -e - $verbose " done" + ## Copy files from the remote snapshot. + maybe mkdir -p new/ + case $dryrun in + t) $verbose " running rsync" ;; + nil) $verbose -n " running rsync..." ;; + esac + set +e + run "RSYNC of $host:$fs (snapshot on $snapmnt)" do_rsync \ + $linkdests \ + $rsyncargs \ + $snapmnt/ new/ + rc_rsync=$? + set -e + case $dryrun in nil) $verbose " done" ;; esac - ## Remove the snapshot. - unsnap_$snap $snapargs $fs $fsarg - $verbose " remove snapshot" + ## Collect a map of the snapshot for verification purposes. + set +e + case $dryrun in + t) $verbose " remote fshash" ;; + nil) $verbose -n " remote fshash..." ;; + esac + run "@$host: fshash $fs" remote_fshash + rc_fshash=$? + set -e + case $dryrun in nil) $verbose " done" ;; esac - ## If we failed to copy, then give up. - case $rc_rsync:$rc_fshash in - 0:0) ;; - 0:*) return $rc_fshash ;; - *) return $rc_rsync ;; - esac + ## Remove the snapshot. + maybe unsnap_$snap $snapargs $fs $fsarg + $verbose " remove snapshot" + + ## If we failed to copy, then give up. + case $rc_rsync:$rc_fshash in + 0:0) ;; + 0:*) return $rc_fshash ;; + *) return $rc_rsync ;; + esac - ## Get a matching map of the files received. - mkdir -m750 -p $STOREDIR/tmp - localmap=$STOREDIR/tmp/fshash.$host.$fs.$date - $verbose -n " local fshash..." - run "local fshash $host:$fs" local_fshash || return $? - $verbose " done" - - ## Compare the two maps. - run "compare fshash maps for $host:$fs" \ - diff -u new.fshash $localmap || return $? - rm -f $localmap + ## Get a matching map of the files received. + maybe mkdir -m750 -p $STOREDIR/tmp/ + localmap=$STOREDIR/tmp/fshash.$host.$fs.$date + case $dryrun in + t) $verbose " local fshash" ;; + nil) $verbose -n " local fshash..." ;; + esac + run "local fshash $host:$fs" local_fshash || return $? + case $dryrun in nil) $verbose " done" ;; esac + + ## Compare the two maps. + set +e + run "compare fshash maps for $host:$fs" diff -u new.fshash $localmap + rc_diff=$? + set -e + case $rc_diff in + 0) + break + ;; + 1) + if [ $attempt -ge $retry ]; then return $rc; fi + $verbose " fshash mismatch; retrying" + attempt=$(( $attempt + 1 )) + ;; + *) + return $rc_diff + ;; + esac + done + + ## Glorious success. + maybe rm -f $localmap $verbose " fshash match" ## Commit this backup. - backup_precommit_hook $host $fs $date - mv new $date - mv new.fshash $date.fshash - backup_commit_hook $host $fs $date - mkdir hack - ln -s $date hack/last - mv hack/last . - rmdir hack + case $dryrun in + nil) + backup_precommit_hook $host $fs $date + mv new $date + mv new.fshash $date.fshash + backup_commit_hook $host $fs $date + mkdir hack + ln -s $date hack/last + mv hack/last . + rmdir hack + ;; + esac $verbose " commit" ## Expire old backups. - case "${expire_policy+t}" in - t) run "expiry for $host:$fs" expire_backups ;; + case "${expire_policy+t},${default_policy+t}" in + ,t) expire_policy=$default_policy ;; + esac + case "${expire_policy+t},$dryrun" in + t,nil) run "expiry for $host:$fs" expire_backups ;; + t,t) expire_backups ;; esac + clear_policy=t ## Report success. - log "SUCCESSFUL BACKUP of $host:$fs" + case $dryrun in + t) log "END BACKUP of $host:$fs" ;; + nil) log "SUCCESSFUL BACKUP of $host:$fs" ;; + esac } backup () { @@ -606,6 +689,15 @@ backup () { ## Back up the filesystems on the currently selected host using the ## currently selected snapshot type. + ## Make sure that there's a store volume. We must do this here rather than + ## in the main body of the script, since the configuration file needs a + ## chance to override STOREDIR. + if ! [ -r $STOREDIR/.rsync-backup-store ]; then + echo >&2 "$quis: no backup volume mounted" + exit 15 + fi + + ## Back up each requested file system in turn. for fs in "$@"; do ## Parse the argument. @@ -617,19 +709,23 @@ backup () { ## Move to the store directory and set up somewhere to put this backup. cd $STOREDIR - if [ ! -d $host ]; then - mkdir -m755 $host - chown root:root $host - fi - if [ ! -d $host/$fs ]; then - mkdir -m750 $host/$fs - chown root:backup $host/$fs - fi + case $dryrun in + nil) + if [ ! -d $host ]; then + mkdir -m755 $host + chown root:root $host + fi + if [ ! -d $host/$fs ]; then + mkdir -m750 $host/$fs + chown root:backup $host/$fs + fi + ;; + esac cd $host/$fs ## Find out if we've already copied this filesystem today. date=$(date +%Y-%m-%d) - if [ -d $date ]; then + if [ $dryrun = nil ] && [ -d $date ]; then $verbose " already dumped" continue fi @@ -638,16 +734,23 @@ backup () { ## deleted old logs from today, so just checking for an unused sequence ## number is insufficient. Instead, check all of the logfiles for today, ## and use a sequence number that's larger than any of them. - seq=1 - for i in "$logdir/$host/$fs.$date#"*; do - tail=${i##*#} - case "$tail" in [!1-9]* | *[!0-9]*) continue ;; esac - if [ -f "$i" -a $tail -ge $seq ]; then seq=$(( tail + 1 )); fi - done - log="$logdir/$host/$fs.$date#$seq" + case $dryrun in + t) + log=/dev/null + ;; + nil) + seq=1 + for i in "$logdir/$host/$fs.$date#"*; do + tail=${i##*#} + case "$tail" in [!1-9]* | *[!0-9]*) continue ;; esac + if [ -f "$i" -a $tail -ge $seq ]; then seq=$(( tail + 1 )); fi + done + log="$logdir/$host/$fs.$date#$seq" + ;; + esac ## Do the backup of this filesystem. - mkdir -p $logdir/$host + case $dryrun in nil) mkdir -p $logdir/$host ;; esac if ! do_backup $date $fs $fsarg 9>$log 1>&9; then echo >&2 echo >&2 "$quis: backup of $host:$fs FAILED!" @@ -662,7 +765,7 @@ backup () { done ## If there are too many, go through and delete some early ones. - if [ $nlog -gt $MAXLOG ]; then + if [ $dryrun = nil ] && [ $nlog -gt $MAXLOG ]; then n=$(( nlog - MAXLOG )) for i in "$logdir/$host/$fs".*; do if [ ! -f "$i" ]; then continue; fi @@ -677,12 +780,23 @@ backup () { ###-------------------------------------------------------------------------- ### Configuration functions. -host () { host=$1; like=; $verbose "host $host"; } -snaptype () { snap=$1; shift; snapargs="$*"; } +host () { + host=$1 + like= + case "${expire_policy+t},${default_policy+t}" in + t,) default_policy=$expire_policy ;; + esac + unset expire_policy + $verbose "host $host" +} + +snaptype () { snap=$1; shift; snapargs="$*"; retry=0; } rsyncargs () { rsyncargs="$*"; } like () { like="$*"; } +retry () { retry="$*"; } retain () { + case $clear_policy in t) unset expire_policy; clear_policy=nil ;; esac expire_policy="${expire_policy+$expire_policy }$*" } @@ -710,12 +824,13 @@ EOF whine () { echo >&8 "$@"; } -while getopts "hVvc:" opt; do +while getopts "hVvc:n" opt; do case "$opt" in h) usage; exit 0 ;; V) version; config; exit 0 ;; v) verbose=whine ;; c) conf=$OPTARG ;; + n) dryrun=t ;; *) exit 1 ;; esac done