]> git.sesse.net Git - backup.sh/blob - backup.sh
985bb1c1865781e8686a4585a5617fe52dc03e17
[backup.sh] / backup.sh
1 #!/bin/sh
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).
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 computers are backed up in parallel (but the filesystems on each
22 # computer in serial). This is implemented highly simplistic, with forking
23 # subshells. The script has no concept about threads, and stuff might go wrong,
24 # which usually requires manual cleanups.
25 #
26 # The script is halfway Norwegian and halfway English. Newer modifications are
27 # in English, we should probably stick to that.
28
29 # Known issues:
30 #
31 # o $R has no proper meaning because of the forking subshell stuff. We need a
32 #   more robust way of returning non-zero on errors, which we probably don't
33 #   right now.
34 #
35
36 # Configuration
37 LOCKFILE=/home/backup/backuprun.lockfile
38 confdir=/home/backup/conf/              # Configuration files
39 storagedir=/backup                      # Where we keep backups
40 maksantallfulle=3                       # Number of full backups
41 dagermellomfulle=30                     # Days between full backups
42 dagermellomfulleforfast=32              # Days between full backups for machines with fixed
43                                         # full-backup date (in case the fixed day gets missed)
44 DAY_OF_MONTH=`date "+%d" | sed s/^0//`  # from 1 to 31
45 DATE=`date "+%Y%m%d%H%M"`               #format: touch
46 DATEs=`date "+%Y-%m-%d %H:%M"`          #format: tar
47
48 # Exclude-pattern
49 exclude=$confdir/exclude
50 [ ! -f $exclude ] && printf "tmp\ncore\n" > $exclude
51
52 # Initially, we consider everything to be just fine.
53 R=0
54
55 # Die more or less gracefully (at least notify user)
56 die() {
57         echo `date`": Something nasty happened, and since I fork a lot:"
58         echo `date`": I CANNOT CLEAN UP THE MESS MYSELF."
59         echo `date`": You need to get rid of lost process named stuff like $0, tar and ssh."
60         exit 255
61 }
62
63 # Trap C-c and kill
64 trap die SIGINT SIGTERM
65
66 # Don't start if we're already running
67 if [ -e $LOCKFILE ]; then
68         echo `date`": $LOCKFILE exists for pid `cat $LOCKFILE`, exiting."
69         echo `date`": $LOCKFILE exists for pid `cat $LOCKFILE`, exiting." >&2
70         exit 1
71 fi;
72 touch $LOCKFILE
73 echo $$ > $LOCKFILE
74
75 #syntax of remotestat:
76 #hostname:/directory/
77 remotestatf=$confdir/remotestat
78 [ -f $remotestatf ] && remotestat=`cat $remotestatf`
79 ###
80
81 PATH=/local/bin:$PATH:/store/bin
82 export PATH
83
84 echo `date`": Backup run starting" >&2
85
86 umask 027
87
88 # The computers we want to back up
89 unixcomputers=`cat $confdir/computers.unix \
90   | grep -v "^#" \
91   | grep -v "^$" `
92
93 # Backup only one computer, from command line?
94 if [ $1 ] ; then 
95   unixcomputers=$1
96 fi;
97
98
99 #selve backupen
100 # krever at noen variabler er satt
101 # krever at vi er i rett katalog
102 backup()
103 {
104
105  echo -n `date` >&2
106  printf " $computer: $computer:$filesystem $backuplevel backup\n" >&2
107
108  if [ "$backuplevel" = "daglig" ] || [ "$backuplevel" = "incremental" ]
109  then
110   lastd=`cat ../.date`
111   lastcmd="--newer='$lastd'"
112  else
113   lastcmd=""
114  fi
115
116  # expand the exclude-path for use with tar
117  exf=`ssh root@$computer "ls ~/.backup/exclude"`
118
119  # We try to run tar on the remote computer
120  #    z gzip it
121  #    c create archive
122  #    C change to directory first
123  #    . where to start taring (see C)
124  #    $lastcmd only files newer than this
125  #    --one-file-system don't traverse file systems
126  #    --exclude-from file to get exclusion pattern from
127  #    Pipe the stuff over ssh to ourselves, run pee to cat the contents to a
128  #    file and build a file list, respectivly.  
129  TARFILE=$DATE.tmp
130  TARCMD="ssh root@$computer \"nice -n 19 ionice -c3 tar --one-file-system -zcf - -C $filesystem . $lastcmd \
131         --exclude-from=$exf\" | pee \"cat > $TARFILE\" \"tar tzvf -\""
132  echo `date`" $computer: Running $TARCMD" >&2
133  eval $TARCMD > $DATE.idx
134
135  if [ -s $TARFILE ]; then
136   # File is >0 in size, we assume it worked.
137
138   # Move tar file in place
139   mv $TARFILE $DATE.tgz
140
141   # Update timestamp
142   echo $DATEs > ../.date && touch -t $DATE ../.date
143
144   # Make a sorted filelist as well
145   sort -k6 < $DATE.idx > $DATE.sdx
146
147   # Fix permissions
148   chmod 600 *tgz                      #only for us
149   chmod 644 *sdx *idx 2>/dev/null     #everyone can read
150
151  else
152   # Something wrong happened.
153   rm $TARFILE
154   echo `date`" $computer: $TARFILE empty. $backuplevel backup of $computer:$filesystem failed and deleted"
155
156   # We don't want to return 0
157   R=1
158  fi
159
160 }
161
162 for computer in $unixcomputers
163 do
164
165  # Check that the target filesystem is mounted (actually check that it's not
166  # the root filesystem)
167  rootfilesystem=`df -P /`
168  targetfilesystem=`df -P "$storagedir/$computer"`
169  if [ "$rootfilesystem" == "$targetfilesystem" ]; then
170         echo `date`" $computer: Target filesystem ($storagedir/$computer) was mounted on /. Aborting"
171         continue
172  fi
173
174  echo `date`" $computer: Backing up $computer" >&2
175
176  # Try to SSH to the computer without entering a password.
177  if ! `ssh -n -o NumberOfPasswordPrompts=0 root@$computer /bin/true`; then
178   echo `date`" $computer: Could not use passwordless SSH."
179
180   # We don't want to return 0
181   R=1
182   # Do next computer
183   continue;
184  fi
185  
186  filesystems=""
187
188  # Check dump bit in fstab
189  filesystems=`ssh -n root@$computer "cat /etc/fstab" \
190   | grep -v nfs \
191   | grep -v "^#" \
192   | grep -v "^$" \
193   | awk '{ if ( $(NF-1) != "0" ) print $2}' `
194
195  # Clean up our dir at this client
196  if ! ssh root@$computer "rm -r ~/.backup ; mkdir -m 700 ~/.backup"; then
197   echo `date`" $computer: Could not create backup staging area at $computer:~/.backup - skipping backup of $computer"
198   R=1
199   continue;
200  fi
201
202  # Try to copy $exclude to $computer
203  if ! scp $exclude root@$computer:~/.backup/exclude > /dev/null; then
204   echo `date`" $computer: Could not copy exclude.txt to $computer - skipping backup of $computer"
205   R=1
206   continue;
207  fi
208
209  # Try to copy preeexec and postexec if they exist
210  if [ -f $confdir/preexec.$computer ]; then
211    if ! scp $confdir/preexec.$computer  root@$computer:~/.backup/preexec >&2; then
212      echo `date`" $computer: Could not copy preexec.$computer to $computer:~/.backup/preexec - skipping backup of $computer"
213      R=1
214      continue
215    fi
216  fi
217  if [ -f $confdir/postexec.$computer ]; then
218    if ! scp $confdir/postexec.$computer root@$computer:~/.backup/postexec >&2; then
219      echo `date`" $computer: Could not copy postexec.$computer to $computer:~/.backup/postexec - skipping backup of $computer"
220      R=1
221      continue
222    fi
223  fi
224
225  # Try to run preexec if it exist
226  if ! ssh root@$computer "[ ! -f ~/.backup/preexec ] || /bin/bash -x ~/.backup/preexec" >&2; then
227         echo `date`" $computer: Could not run $computer:~/.backup/preexec - skipping backup of $computer"
228         R=1
229         continue
230  fi
231
232
233  for filesystem in $filesystems
234  do
235   # Remove / and $ (for Windows) for path names
236   sfilesystem=`echo $filesystem | tr '\/\$' '__'`
237
238   # Prepare storage area
239   mkdir -m 755 -p $storagedir/$computer/$sfilesystem/{full,daglig} 2>/dev/null
240   echo $filesystem > ${storagedir}/${computer}/.${sfilesystem}.name 
241   chmod 644 ${storagedir}/${computer}/.${sfilesystem}.name
242
243   # Default backuplevel
244   backuplevel=daglig
245
246   if [ ! -f $storagedir/$computer/$sfilesystem/.date ]
247   then
248    # Take the first full backup of this filesystem on this computer
249    backuplevel=full
250    echo $DATEs > $storagedir/$computer/$sfilesystem/.date
251   fi
252
253   # Check if we want a full backup - Debug statement that causes noise in cron mail:
254   # printf " $computer $filesystem: $confdir/fastfullbackupdag.$computer.$sfilesystem\n"
255   if [ -f $confdir/fastfullbackupdag.$computer.$sfilesystem ]; then
256     fullbackup_min_for_this_machine=$dagermellomfulleforfast
257     if [ "$DAY_OF_MONTH" = "`cat $confdir/fastfullbackupdag.$computer.$sfilesystem`" ]; then
258       backuplevel=full
259     fi
260   elif [ -f $confdir/fastfullbackupdag.$computer ]; then
261     fullbackup_min_for_this_machine=$dagermellomfulleforfast
262     if [ "$DAY_OF_MONTH" = "`cat $confdir/fastfullbackupdag.$computer`" ]; then
263       backuplevel=full
264     fi
265   else
266     fullbackup_min_for_this_machine=$dagermellomfulle 
267   fi
268
269   if [ -z "`find $storagedir/$computer/$sfilesystem/full/ -name \*tgz -mtime -$fullbackup_min_for_this_machine`" ]; then
270    backuplevel=full
271   fi
272
273   # We want to be here
274   cd $storagedir/$computer/$sfilesystem/$backuplevel || die
275
276   # Perform the actual backup
277   backup
278
279   # Check if this box has a custom number of full backups
280   if [ -f $confdir/maksfulle.$computer ] ; then
281     mf=$((`cat $confdir/maksfulle.$computer`+1))
282   else
283     mf=$(($maksantallfulle+1))
284   fi
285
286   # Delete old full backups
287   for full in `ls -1t $storagedir/$computer/$sfilesystem/full/*tgz | tail -n +$mf`
288   do
289    prefix=`echo $full | sed "s/\.[^.]*$//"`
290    echo `date`": $computer:$filesystem Deleting full backup $prefix" >&2
291    rm $prefix*
292   done
293
294   # Delete incremental backups older than the oldest full backup
295   oldf=`ls -t1 $storagedir/$computer/$sfilesystem/full/*tgz | tail -1`
296   find \
297      $storagedir/$computer/$sfilesystem/daglig \
298      -type f \
299      \! -newer $oldf \
300      -printf "`date`: $computer: Deleting old incremental backup: %p\n" \
301      -exec rm {} \; >&2
302  done
303
304  # Try to run postexec if it exist
305  if ! ssh root@$computer "[ ! -f ~/.backup/postexec ] || /bin/bash -x ~/.backup/postexec" >&2; then
306         echo `date`" $computer: Could not run $computer:~/.backup/postexec"
307         R=1
308  fi
309
310 ) &
311 done
312
313 wait
314
315 # Remove lockfile
316 rm $LOCKFILE
317
318 # Did anything go wrong?
319 # (IMPORTANT NOTE: The R-business does not work as expected, since this script
320 # forks itself).
321 if [ $R != 0 ]; then
322         echo `date`": Backup run ended with errors, check logs."
323         exit 1
324 else
325         echo `date`": Backup run ended" >&2
326 fi