X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ian/git?p=chiark-utils.git;a=blobdiff_plain;f=backup%2Fsnaprsync;h=780c68ebe73ad2fb0f0585ff1a3adc4d9a57da25;hp=c9e77fd2961ceb2ecad8d3ad747d84fcdef27920;hb=43243a5c7e4fd609b1a10b700b6bab322930eb71;hpb=e1335e736b64e6123950276c44dc8d82fc96b655 diff --git a/backup/snaprsync b/backup/snaprsync index c9e77fd..780c68e 100755 --- a/backup/snaprsync +++ b/backup/snaprsync @@ -1,7 +1,7 @@ #!/bin/bash # # usage: snaprsync ... -# is ---= +# is --= # are assigned to unused mandatory values in order # mandatory: # rhost device mountpoint localarea @@ -12,20 +12,27 @@ retcdir=/etc/chiark-backup rvardir=/var/lib/chiark-backup bwlimit= + subdir=. + rsyncopts= + summer=summer set -e badusage () { echo >&2 "snaprsync: bad usage: $1"; exit 12; } -x () { echo "+ $@"; "$@"; } +nb_echo () { (echo "$@"); } # See Debian #382798 +x () { nb_echo "+ $@"; "$@"; } +xspawned () { eval "${1}pid=$!; nb_echo \"+[$!] ($1) &\";"; } +xwait () { eval "nb_echo \"+[\$${1}pid] ($1)...\"; wait \$${1}pid;"; } while true; do case "$1" in - --?*=?*) + --?*=*) name=${1#--}; name=${name%%=*} value=${1#--*=} case "$name" in rhost|device|mountpoint|localarea);; - localprevious|rsharedir|retcdir|rvardir|bwlimit);; + localprevious|snapkind|rsharedir|retcdir|rvardir|bwlimit);; + subdir|rsyncopts|summer);; *) badusage "unknown setting $name";; esac eval "$name=\$value" @@ -48,15 +55,17 @@ done datefmt='%Y-%m-%d %H:%M:%S Z' rsync="rsync ${bwlimit:+--bwlimit} $bwlimit" export RSYNC_RSH='ssh -o compression=no' +sshpfx='PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin; export PATH; ' -ssh $rhost "date -u '+$rhost $datefmt start'" -ssh $rhost id -ssh $rhost ls -d $rsharedir -ssh $rhost ls -d $rvardir +ssh $rhost "$sshpfx date -u '+$rhost $datefmt start'" +ssh $rhost "$sshpfx id" +ssh $rhost "$sshpfx ls -d $rsharedir" +ssh $rhost "$sshpfx ls -d $rvardir" test -d $localarea || x mkdir $localarea ournode=`uname -n` rsumsfile=for-$ournode.sums +summer="$summer -ACDbtqfx" td=/dev/enoent rc=12 @@ -66,9 +75,17 @@ td=`mktemp -td` mkfifo -m 600 $td/sentinel exec 4<>$td/sentinel -x ssh $rhost "$rsharedir/snap-drop" -x ssh $rhost "$retcdir/snap/$snapkind snap $rvardir $device $mountpoint" +x ssh $rhost "$sshpfx $rsharedir/snap-drop" +ssh $rhost " + $sshpfx + set -e + cd $rvardir + echo '$retcdir/snap/$snapkind drop $rvardir' >snap-drop.new + mv snap-drop.new snap-drop +" +x ssh $rhost "$sshpfx $retcdir/snap/$snapkind snap $rvardir $device $mountpoint" ssh $rhost <$td/sentinel 4<&- " + $sshpfx set -e date -u '+$rhost $datefmt main' exec 3<&0 0$rsumsfile cd snap-mount - summer -Ctqf . | sort -t' ' -k2 >&3 - test x"${PIPESTATUS[*]}" = 'x0 0' + $summer . >&3 date -u '+$rhost $datefmt sumsdone' cd .. " & -rsumpid=$! -x $rsync -aHSxz --numeric-ids --delete \ +xspawned rsum +x $rsync -aHSxz --numeric-ids --delete $rsyncopts \ ${localprevious:+--link-dest} $localprevious \ - $rhost:$rvardir/snap-mount/. $localarea/. -wait $rsumpid -x ssh $rhost "$rsharedir/snap-drop" + $rhost:$rvardir/snap-mount/$subdir $localarea/. +date -u "+ $datefmt rsyncdone" -if [ "x${localprevious}" != x ]; then +exec 3>$localarea,lsums +(cd $localarea && \ + $summer . >&3) & +xspawned lsum +exec 3>&- + +xwait rsum +exec 4<&- +date -u "+ $datefmt sumsdone" +x ssh $rhost "$sshpfx $rsharedir/snap-drop" + +if [ "x${localprevious}" != x ] && test -f "$localprevious,rsums"; then cp "$localprevious,rsums" "$localarea,rsums" fi x $rsync -p \ $rhost:$rvardir/$rsumsfile \ "$localarea,rsums" + +xwait $lsum +date -u "+ $datefmt checking" + +set +e +diff -u <(sed -e 's/^mountpoint/dir /' "$localarea,rsums") \ + "$localarea,lsums" >"$localarea,sumsdiff" +diffrc=$? +set -e +test $diffrc = 0 || test $diffrc = 1 + +date -u "+ $datefmt checked $diffrc" +rc=$diffrc