X-Git-Url: https://git.stderr.nl/gitweb?a=blobdiff_plain;f=handlers%2Fmaildir;h=b678b838797bb4655c613f58850a8e0d87f3f4ab;hb=cfc47e5571e61f4323b9f64f9cbb64dfbc4bf1b4;hp=2ea94ff146e8b1ae316a650aaa46edb5d8212e8a;hpb=e8615f15d39fcd9fcaedb3145316d07ee90ca2e1;p=matthijs%2Fupstream%2Fbackupninja.git diff --git a/handlers/maildir b/handlers/maildir index 2ea94ff..b678b83 100644 --- a/handlers/maildir +++ b/handlers/maildir @@ -1,3 +1,5 @@ +# -*- mode: sh; sh-basic-offset: 8; indent-tabs-mode: nil; -*- + ############################################################### # # This handler slowly creates a backup of each user's maildir @@ -12,7 +14,17 @@ # weekly.2 # monthly.1 # if keepdaily is 3, keepweekly is 2, and keepmonthly is 1. -# +# +# The basic algorithm is to rsync each maildir individually, +# and to use hard links for retaining historical data. +# +# We rsync each maildir individually because it becomes very +# unweldy to start a single rsync of many hundreds of thousands +# of files. +# +# For the backup rotation to work, destuser must be able to run +# arbitrary bash commands on the desthost. +# ############################################################## getconf rotate yes @@ -30,21 +42,24 @@ getconf desthost getconf destport 22 getconf destuser +failedcount=0 + # strip trailing / destdir=${destdir%/} srcdir=${srcdir%/} # used for testing -getconf letter -getconf user +#getconf letter +#getconf testuser elijah +getconf backup yes +#letters=e +letters="a b c d e f g h i j k l m n o p q r s t u v w x y z" [ -d $srcdir ] || fatal "source directory $srcdir doesn't exist" [ ! $test ] || testflags="--dry-run -v" -rsyncflags="$testflags -e 'ssh -p $destport'" -flags_mail="$rsyncflags --archive --ignore-existing --delete --numeric-ids --size-only --bwlimit=$speedlimit" -flags_folders="$rsyncflags --archive --delete --numeric-ids" -excludes='--exclude ".Trash/*" --exclude ".Mistakes/*" --exclude ".Spam/*"' +rsyncflags="$testflags -e 'ssh -p $destport' -r -v --ignore-existing --delete --size-only --bwlimit=$speedlimit" +excludes="--exclude '.Trash/\*' --exclude '.Mistakes/\*' --exclude '.Spam/\*'" # see if we can login debug "ssh -o PasswordAuthentication=no $desthost -l $destuser 'echo -n 1'" @@ -58,55 +73,48 @@ fi ################################################################## ### FUNCTIONS -# remote run the args remotely -function rrun() { - debug ssh -o PasswordAuthentication=no $desthost -l $destuser $@ - if [ ! $test ]; then - debug ssh -o PasswordAuthentication=no $desthost -l $destuser $@ - fi -} - -function do_letters() { - for i in a b c d e f g h i j k l m n o p q r s t u v w x y z; do - do_maildirs "$srcdir/$i" - done -} - -function do_maildirs() { - local dir=$1 - [ -d $dir ] || fatal "directory $dir not found." - for userdir in `ls -1 $dir`; do - do_userdir $userdir - done -} - function do_user() { local user=$1 + local destdir=$2 local letter=${user:0:1} local dir="$srcdir/$letter/$user" [ -d $dir ] || fatal "maildir $dir not found". - while 1; do - load=`uptime | sed 's/^.*load average: \\([^,]*\\).*$/\\1/'` - if [ $load -lt $loadlimit ]; then - info "load $load, sleeping..." - sleep 600 - else - break - fi - done +# while true; do +# load=`uptime | sed 's/^.*load average: \\([^,]*\\).*$/\\1/'` +# over=`expr $load \> $loadlimit` +# if [ $over == 1 ]; then +# info "load $load, sleeping..." +# sleep 600 +# else +# break +# fi +# done - cmd="rsync $maildirrsyncflags $excludes '$dir' '$destuser@$desthost:$destdir/maildir/$letter'" - debug $cmd - # ret=`rsync $maildirrsyncflags $excludes '$dir' '$destuser@$desthost:$destdir/maildir/$letter' 2>&1` + cmd="$RSYNC $rsyncflags $excludes $dir $destuser@$desthost:$destdir/$letter" + ret=`rsync -e "ssh -p $destport" -r \ +--links --ignore-existing --delete --size-only --bwlimit=$speedlimit \ +--exclude '.Trash/*' --exclude '.Mistakes/*' --exclude '.Spam/*' \ +$dir $destuser@$desthost:$destdir/$letter \ +2>&1` + ret=$? + # ignore 0 (success) and 24 (file vanished before it could be copied) + if [ $ret != 0 -a $ret != 24 ]; then + warning "rsync $user failed" + warning " returned: $ret" + let "failedcount = failedcount + 1" + if [ $failedcount -gt 100 ]; then + fatal "100 rsync errors -- something is not working right. bailing out." + fi + fi } # remove any maildirs from backup which might have been deleted # and add new ones which have just been created. function do_remove() { - local tmp1=/tmp/maildirtmpfile$$ - local tmp2=/tmp/maildirtmpfile$$ + local tmp1=`maketemp maildir-tmp-file` + local tmp2=`maketemp maildir-tmp-file` for i in a b c d e f g h i j k l m n o p q r s t u v w x y z; do ls -1 "$srcdir/$i" | sort > $tmp1 @@ -122,82 +130,147 @@ function do_remove() { function do_rotate() { backuproot=$destdir - now=`date %s` + +( + debug Connecting to $desthost + ssh -T -o PasswordAuthentication=no $desthost -l $destuser < 0; i-- )); do if [ -d \$dir.\$i ]; then - if [ -f \$dir.\$i/rotated ]; then - rotated=\`tail -1 \$dir.\$i/rotated\` + if [ -f \$dir.\$i/created ]; then + created=\`tail -1 \$dir.\$i/created\` else - rotated=0 + created=0 fi - cutoff_time=\$(( now - (seconds*i) )) - if [ \$rotated -gt \$cutoff_time ]; then + cutoff_time=\$(( now - (seconds*(i-1)) )) + if [ ! \$created -gt \$cutoff_time ]; then next=\$(( i + 1 )) - echo "mv \$dir.\$i \$dir.\$next" - mv \$dir.\$i \$dir.\$next - date +%c%n%s > \$dir.\$next/rotated + if [ ! -d \$dir.\$next ]; then + echo "Debug: mv \$dir.\$i \$dir.\$next" + mv \$dir.\$i \$dir.\$next + date +%c%n%s > \$dir.\$next/rotated + else + echo "Info: skipping rotation of \$dir.\$i because \$dir.\$next already exists." + fi else - echo "Info: skipping rotation of \$dir.\$i because it was already rotated within the last " \$((cutoff_time/86400)) " days." - fi + echo "Info: skipping rotation of \$dir.\$i because it was created" \$(( (now-created)/86400)) "days ago ("\$(( (now-cutoff_time)/86400))" needed)." + fi fi done done max=\$((keepdaily+1)) - if [ ( \$keepweekly -a -d $backuproot/daily.\$max ) -a ! -d $backuproot/weekly.1 ]; then + if [ \( \$keepweekly -gt 0 -a -d $backuproot/daily.\$max \) -a ! -d $backuproot/weekly.1 ]; then echo mv $backuproot/daily.\$max $backuproot/weekly.1 mv $backuproot/daily.\$max $backuproot/weekly.1 date +%c%n%s > $backuproot/weekly.1/rotated fi max=\$((keepweekly+1)) - if [ ( \$keepmonthly -a -d $backuproot/weekly.\$max ) -a ! -d $backuproot/monthly.1 ]; then + if [ \( \$keepmonthly -gt 0 -a -d $backuproot/weekly.\$max \) -a ! -d $backuproot/monthly.1 ]; then echo mv $backuproot/weekly.\$max $backuproot/monthly.1 mv $backuproot/weekly.\$max $backuproot/monthly.1 date +%c%n%s > $backuproot/monthly.1/rotated fi for rottype in daily weekly monthly; do - max=\`echo keep\${rottype}\` - max=\$((max+1)) + max=\$((keep\${rottype}+1)) dir="$backuproot/\$rottype" - oldest=\`ls -d $\dir.* | sed 's/^.*\.//' | sort -n | tail -1\` - + oldest=\`find $backuproot -type d -maxdepth 1 -name \$rottype'.*' | sed 's/^.*\.//' | sort -n | tail -1\` + [ "\$oldest" == "" ] && oldest=0 # if we've rotated the last backup off the stack, remove it. for (( i=\$oldest; i >= \$max; i-- )); do if [ -d \$dir.\$i ]; then - echo "Info: removing \$dir.\$i" - rm -rf \$dir.\$i + if [ -d $backuproot/rotate.tmp ]; then + echo "Info: removing $backuproot/rotate.tmp" + rm -rf $backuproot/rotate.tmp + fi + echo "Info: moving \$dir.\$i to $backuproot/rotate.tmp" + mv \$dir.\$i $backuproot/rotate.tmp fi done done +####### END REMOTE SCRIPT ####### EOF +) | (while read a; do passthru $a; done) + } +function setup_remote_dirs() { + local backuptype=$1 + local dir="$destdir/$backuptype" + +( + ssh -T -o PasswordAuthentication=no $desthost -l $destuser < $destdir/$btype.1/created" fi