]> git.sesse.net Git - backup.sh/blob - backup.sh
Remove obsolete remotestat stuff.
[backup.sh] / backup.sh
1 #!/bin/bash
2 # backup.sh
3
4 # Backup up Unix-like computers
5
6 # itk@samfundet.no
7 #
8 # This script was first checked into RCS in 2000, and has since backed up a few
9 # servers almost every day, whenever not broken.
10
11 # It's a bit peculiar, but quite effective. The following is worth keeping in
12 # mind when hacking:
13 #
14 # KISS. And by that I mean really simple. Only regular Unix commands, please
15 # (but GNU extensions are used and moreutils has to be installed).
16 #
17 # Because of the way we run this script from cron, informational logging goes
18 # to stderr and warnings and errors to stdout. This way, we get mail whenever
19 # stuff fails, and other output is redirected to the log file.
20
21 # The script is halfway Norwegian and halfway English. Newer modifications are
22 # in English, we should probably stick to that.
23
24 # Known issues:
25 #
26 # o $R has no proper meaning because of the forking subshell stuff. We need a
27 #   more robust way of returning non-zero on errors, which we probably don't
28 #   right now.
29 #
30
31 # The computer to backup.
32 computer=$1
33
34 # Configuration
35 LOCKFILE=/home/backup/backuprun.lockfile.$computer
36 confdir=/home/backup/conf/              # Configuration files
37 storagedir=/backup                      # Where we keep backups
38 maksantallfulle=3                       # Number of full backups
39 dagermellomfulle=30                     # Days between full backups
40 dagermellomfulleforfast=32              # Days between full backups for machines with fixed
41                                         # full-backup date (in case the fixed day gets missed)
42 DAY_OF_MONTH=`date "+%d" | sed s/^0//`  # from 1 to 31
43 DATE=`date "+%Y%m%d%H%M"`               #format: touch
44 DATEs=`date "+%Y-%m-%d %H:%M"`          #format: tar
45
46 # Exclude-pattern
47 exclude=$confdir/exclude
48 [ ! -f $exclude ] && printf "tmp\ncore\n" > $exclude
49
50 if [ -z "$computer" ]; then
51         echo "Usage: $0 COMPUTER"
52         exit 1
53 fi
54
55 # Die more or less gracefully (at least notify user)
56 die() {
57         echo `date`": Something nasty happened. Ending, and not deleting lockfile $LOCKFILE."
58         exit 1
59 }
60
61 # Trap C-c and kill
62 trap die SIGINT SIGTERM
63
64 # Don't start if we're already running
65 if [ -e $LOCKFILE ]; then
66         echo `date`": $LOCKFILE exists for pid `cat $LOCKFILE`, exiting."
67         echo `date`": $LOCKFILE exists for pid `cat $LOCKFILE`, exiting." >&2
68         exit 1
69 fi;
70 touch $LOCKFILE
71 echo $$ > $LOCKFILE
72
73 echo `date`": Backup run starting" >&2
74
75 umask 027
76
77
78 #selve backupen
79 # krever at noen variabler er satt
80 # krever at vi er i rett katalog
81 backup()
82 {
83
84  echo -n `date` >&2
85  printf " $computer: $computer:$filesystem $backuplevel backup\n" >&2
86
87  if [ "$backuplevel" = "daglig" ] || [ "$backuplevel" = "incremental" ]
88  then
89   lastd=`cat ../.date`
90   lastcmd="--newer='$lastd'"
91  else
92   lastcmd=""
93  fi
94
95  # expand the exclude-path for use with tar
96  exf=`ssh root@$computer "ls ~/.backup/exclude"`
97
98  # We try to run tar on the remote computer
99  #    z gzip it
100  #    c create archive
101  #    C change to directory first
102  #    . where to start taring (see C)
103  #    $lastcmd only files newer than this
104  #    --one-file-system don't traverse file systems
105  #    --exclude-from file to get exclusion pattern from
106  #    Pipe the stuff over ssh to ourselves, run pee to cat the contents to a
107  #    file and build a file list, respectivly.  
108  TARFILE=$DATE.tmp
109  TARCMD="ssh root@$computer \"nice -n 19 ionice -c3 tar --one-file-system -zcf - -C $filesystem . $lastcmd \
110         --exclude-from=$exf\" | pee \"cat > $TARFILE\" \"tar tzvf -\""
111  echo `date`" $computer: Running $TARCMD" >&2
112  eval $TARCMD > $DATE.idx
113
114  if [ -s $TARFILE ]; then
115   # File is >0 in size, we assume it worked.
116
117   # Move tar file in place
118   mv $TARFILE $DATE.tgz
119
120   # Update timestamp
121   echo $DATEs > ../.date && touch -t $DATE ../.date
122
123   # Make a sorted filelist as well
124   sort -k6 < $DATE.idx > $DATE.sdx
125
126   # Fix permissions
127   chmod 600 *tgz                      #only for us
128   chmod 644 *sdx *idx 2>/dev/null     #everyone can read
129
130   # Let the remote computer know that we ran a successful backup (for nagios)
131   ssh root@$computer touch $filesystem/.lastbackup
132
133  else
134   # Something wrong happened.
135   rm $TARFILE
136   echo `date`" $computer: $TARFILE empty. $backuplevel backup of $computer:$filesystem failed and deleted"
137
138   # We don't want to return 0
139   die
140  fi
141
142 }
143
144  # Check that the target filesystem is mounted (actually check that it's not
145  # the root filesystem)
146  rootfilesystem=`df -P /`
147  targetfilesystem=`df -P "$storagedir/$computer"`
148  if [ "$rootfilesystem" == "$targetfilesystem" ]; then
149         echo `date`" $computer: Target filesystem ($storagedir/$computer) was mounted on /. Aborting"
150         die
151  fi
152
153  echo `date`" $computer: Backing up $computer" >&2
154
155  # Try to SSH to the computer without entering a password.
156  if ! `ssh -n -o NumberOfPasswordPrompts=0 root@$computer /bin/true`; then
157   echo `date`" $computer: Could not use passwordless SSH."
158
159   # We don't want to return 0
160   die
161  fi
162  
163  filesystems=""
164
165  # Check dump bit in fstab
166  filesystems=`ssh -n root@$computer "cat /etc/fstab" \
167   | grep -v nfs \
168   | grep -v "^#" \
169   | grep -v "^$" \
170   | awk '{ if ( $(NF-1) != "0" ) print $2}' `
171
172  # Clean up our dir at this client
173  if ! ssh root@$computer "rm -r ~/.backup ; mkdir -m 700 ~/.backup"; then
174   echo `date`" $computer: Could not create backup staging area at $computer:~/.backup - skipping backup of $computer"
175   die
176  fi
177
178  # Try to copy $exclude to $computer
179  if ! scp $exclude root@$computer:~/.backup/exclude > /dev/null; then
180   echo `date`" $computer: Could not copy exclude.txt to $computer - skipping backup of $computer"
181   die
182  fi
183
184  # Try to copy preeexec and postexec if they exist
185  if [ -f $confdir/preexec.$computer ]; then
186    if ! scp $confdir/preexec.$computer  root@$computer:~/.backup/preexec >&2; then
187      echo `date`" $computer: Could not copy preexec.$computer to $computer:~/.backup/preexec - skipping backup of $computer"
188      die
189    fi
190  fi
191  if [ -f $confdir/postexec.$computer ]; then
192    if ! scp $confdir/postexec.$computer root@$computer:~/.backup/postexec >&2; then
193      echo `date`" $computer: Could not copy postexec.$computer to $computer:~/.backup/postexec - skipping backup of $computer"
194      die
195    fi
196  fi
197
198  # Try to run preexec if it exist
199  if ! ssh root@$computer "[ ! -f ~/.backup/preexec ] || /bin/bash -x ~/.backup/preexec" >&2; then
200         echo `date`" $computer: Could not run $computer:~/.backup/preexec - skipping backup of $computer"
201         die
202  fi
203
204
205  for filesystem in $filesystems
206  do
207   # Remove / and $ (for Windows) for path names
208   sfilesystem=`echo $filesystem | tr '\/\$' '__'`
209
210   # Prepare storage area
211   mkdir -m 755 -p $storagedir/$computer/$sfilesystem/full 2>/dev/null
212   mkdir -m 755 -p $storagedir/$computer/$sfilesystem/daglig 2>/dev/null
213   echo $filesystem > ${storagedir}/${computer}/.${sfilesystem}.name 
214   chmod 644 ${storagedir}/${computer}/.${sfilesystem}.name
215
216   # Default backuplevel
217   backuplevel=daglig
218
219   if [ ! -f $storagedir/$computer/$sfilesystem/.date ]
220   then
221    # Take the first full backup of this filesystem on this computer
222    backuplevel=full
223    echo $DATEs > $storagedir/$computer/$sfilesystem/.date
224   fi
225
226   # Check if we want a full backup - Debug statement that causes noise in cron mail:
227   # printf " $computer $filesystem: $confdir/fastfullbackupdag.$computer.$sfilesystem\n"
228   if [ -f $confdir/fastfullbackupdag.$computer.$sfilesystem ]; then
229     fullbackup_min_for_this_machine=$dagermellomfulleforfast
230     if [ "$DAY_OF_MONTH" = "`cat $confdir/fastfullbackupdag.$computer.$sfilesystem`" ]; then
231       backuplevel=full
232     fi
233   elif [ -f $confdir/fastfullbackupdag.$computer ]; then
234     fullbackup_min_for_this_machine=$dagermellomfulleforfast
235     if [ "$DAY_OF_MONTH" = "`cat $confdir/fastfullbackupdag.$computer`" ]; then
236       backuplevel=full
237     fi
238   else
239     fullbackup_min_for_this_machine=$dagermellomfulle 
240   fi
241
242   if [ -z "`find $storagedir/$computer/$sfilesystem/full/ -name \*tgz -mtime -$fullbackup_min_for_this_machine`" ]; then
243    backuplevel=full
244   fi
245
246   # We want to be here
247   cd $storagedir/$computer/$sfilesystem/$backuplevel || die
248
249   # Perform the actual backup
250   backup
251
252   # Check if this box has a custom number of full backups
253   if [ -f $confdir/maksfulle.$computer ] ; then
254     mf=$((`cat $confdir/maksfulle.$computer`+1))
255   else
256     mf=$(($maksantallfulle+1))
257   fi
258
259   # Delete old full backups
260   for full in `ls -1t $storagedir/$computer/$sfilesystem/full/*tgz | tail -n +$mf`
261   do
262    prefix=`echo $full | sed "s/\.[^.]*$//"`
263    echo `date`": $computer:$filesystem Deleting full backup $prefix" >&2
264    rm $prefix*
265   done
266
267   # Delete incremental backups older than the oldest full backup
268   oldf=`ls -t1 $storagedir/$computer/$sfilesystem/full/*tgz | tail -1`
269   find \
270      $storagedir/$computer/$sfilesystem/daglig \
271      -type f \
272      \! -newer $oldf \
273      -printf "`date`: $computer: Deleting old incremental backup: %p\n" \
274      -exec rm {} \; >&2
275  done
276
277  # Try to run postexec if it exist
278  if ! ssh root@$computer "[ ! -f ~/.backup/postexec ] || /bin/bash -x ~/.backup/postexec" >&2; then
279         echo `date`" $computer: Could not run $computer:~/.backup/postexec"
280         die
281  fi
282
283 # Remove lockfile
284 rm $LOCKFILE