]> git.sesse.net Git - backup.sh/blob - backup.sh
Remove the built-in forking support; take that from cron instead.
[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 #syntax of remotestat:
74 #hostname:/directory/
75 remotestatf=$confdir/remotestat
76 [ -f $remotestatf ] && remotestat=`cat $remotestatf`
77 ###
78
79 PATH=/local/bin:$PATH:/store/bin
80 export PATH
81
82 echo `date`": Backup run starting" >&2
83
84 umask 027
85
86
87 #selve backupen
88 # krever at noen variabler er satt
89 # krever at vi er i rett katalog
90 backup()
91 {
92
93  echo -n `date` >&2
94  printf " $computer: $computer:$filesystem $backuplevel backup\n" >&2
95
96  if [ "$backuplevel" = "daglig" ] || [ "$backuplevel" = "incremental" ]
97  then
98   lastd=`cat ../.date`
99   lastcmd="--newer='$lastd'"
100  else
101   lastcmd=""
102  fi
103
104  # expand the exclude-path for use with tar
105  exf=`ssh root@$computer "ls ~/.backup/exclude"`
106
107  # We try to run tar on the remote computer
108  #    z gzip it
109  #    c create archive
110  #    C change to directory first
111  #    . where to start taring (see C)
112  #    $lastcmd only files newer than this
113  #    --one-file-system don't traverse file systems
114  #    --exclude-from file to get exclusion pattern from
115  #    Pipe the stuff over ssh to ourselves, run pee to cat the contents to a
116  #    file and build a file list, respectivly.  
117  TARFILE=$DATE.tmp
118  TARCMD="ssh root@$computer \"nice -n 19 ionice -c3 tar --one-file-system -zcf - -C $filesystem . $lastcmd \
119         --exclude-from=$exf\" | pee \"cat > $TARFILE\" \"tar tzvf -\""
120  echo `date`" $computer: Running $TARCMD" >&2
121  eval $TARCMD > $DATE.idx
122
123  if [ -s $TARFILE ]; then
124   # File is >0 in size, we assume it worked.
125
126   # Move tar file in place
127   mv $TARFILE $DATE.tgz
128
129   # Update timestamp
130   echo $DATEs > ../.date && touch -t $DATE ../.date
131
132   # Make a sorted filelist as well
133   sort -k6 < $DATE.idx > $DATE.sdx
134
135   # Fix permissions
136   chmod 600 *tgz                      #only for us
137   chmod 644 *sdx *idx 2>/dev/null     #everyone can read
138
139   # Let the remote computer know that we ran a successful backup (for nagios)
140   ssh root@$computer touch $filesystem/.lastbackup
141
142  else
143   # Something wrong happened.
144   rm $TARFILE
145   echo `date`" $computer: $TARFILE empty. $backuplevel backup of $computer:$filesystem failed and deleted"
146
147   # We don't want to return 0
148   die
149  fi
150
151 }
152
153  # Check that the target filesystem is mounted (actually check that it's not
154  # the root filesystem)
155  rootfilesystem=`df -P /`
156  targetfilesystem=`df -P "$storagedir/$computer"`
157  if [ "$rootfilesystem" == "$targetfilesystem" ]; then
158         echo `date`" $computer: Target filesystem ($storagedir/$computer) was mounted on /. Aborting"
159         die
160  fi
161
162  echo `date`" $computer: Backing up $computer" >&2
163
164  # Try to SSH to the computer without entering a password.
165  if ! `ssh -n -o NumberOfPasswordPrompts=0 root@$computer /bin/true`; then
166   echo `date`" $computer: Could not use passwordless SSH."
167
168   # We don't want to return 0
169   die
170  fi
171  
172  filesystems=""
173
174  # Check dump bit in fstab
175  filesystems=`ssh -n root@$computer "cat /etc/fstab" \
176   | grep -v nfs \
177   | grep -v "^#" \
178   | grep -v "^$" \
179   | awk '{ if ( $(NF-1) != "0" ) print $2}' `
180
181  # Clean up our dir at this client
182  if ! ssh root@$computer "rm -r ~/.backup ; mkdir -m 700 ~/.backup"; then
183   echo `date`" $computer: Could not create backup staging area at $computer:~/.backup - skipping backup of $computer"
184   die
185  fi
186
187  # Try to copy $exclude to $computer
188  if ! scp $exclude root@$computer:~/.backup/exclude > /dev/null; then
189   echo `date`" $computer: Could not copy exclude.txt to $computer - skipping backup of $computer"
190   die
191  fi
192
193  # Try to copy preeexec and postexec if they exist
194  if [ -f $confdir/preexec.$computer ]; then
195    if ! scp $confdir/preexec.$computer  root@$computer:~/.backup/preexec >&2; then
196      echo `date`" $computer: Could not copy preexec.$computer to $computer:~/.backup/preexec - skipping backup of $computer"
197      die
198    fi
199  fi
200  if [ -f $confdir/postexec.$computer ]; then
201    if ! scp $confdir/postexec.$computer root@$computer:~/.backup/postexec >&2; then
202      echo `date`" $computer: Could not copy postexec.$computer to $computer:~/.backup/postexec - skipping backup of $computer"
203      die
204    fi
205  fi
206
207  # Try to run preexec if it exist
208  if ! ssh root@$computer "[ ! -f ~/.backup/preexec ] || /bin/bash -x ~/.backup/preexec" >&2; then
209         echo `date`" $computer: Could not run $computer:~/.backup/preexec - skipping backup of $computer"
210         die
211  fi
212
213
214  for filesystem in $filesystems
215  do
216   # Remove / and $ (for Windows) for path names
217   sfilesystem=`echo $filesystem | tr '\/\$' '__'`
218
219   # Prepare storage area
220   mkdir -m 755 -p $storagedir/$computer/$sfilesystem/full 2>/dev/null
221   mkdir -m 755 -p $storagedir/$computer/$sfilesystem/daglig 2>/dev/null
222   echo $filesystem > ${storagedir}/${computer}/.${sfilesystem}.name 
223   chmod 644 ${storagedir}/${computer}/.${sfilesystem}.name
224
225   # Default backuplevel
226   backuplevel=daglig
227
228   if [ ! -f $storagedir/$computer/$sfilesystem/.date ]
229   then
230    # Take the first full backup of this filesystem on this computer
231    backuplevel=full
232    echo $DATEs > $storagedir/$computer/$sfilesystem/.date
233   fi
234
235   # Check if we want a full backup - Debug statement that causes noise in cron mail:
236   # printf " $computer $filesystem: $confdir/fastfullbackupdag.$computer.$sfilesystem\n"
237   if [ -f $confdir/fastfullbackupdag.$computer.$sfilesystem ]; then
238     fullbackup_min_for_this_machine=$dagermellomfulleforfast
239     if [ "$DAY_OF_MONTH" = "`cat $confdir/fastfullbackupdag.$computer.$sfilesystem`" ]; then
240       backuplevel=full
241     fi
242   elif [ -f $confdir/fastfullbackupdag.$computer ]; then
243     fullbackup_min_for_this_machine=$dagermellomfulleforfast
244     if [ "$DAY_OF_MONTH" = "`cat $confdir/fastfullbackupdag.$computer`" ]; then
245       backuplevel=full
246     fi
247   else
248     fullbackup_min_for_this_machine=$dagermellomfulle 
249   fi
250
251   if [ -z "`find $storagedir/$computer/$sfilesystem/full/ -name \*tgz -mtime -$fullbackup_min_for_this_machine`" ]; then
252    backuplevel=full
253   fi
254
255   # We want to be here
256   cd $storagedir/$computer/$sfilesystem/$backuplevel || die
257
258   # Perform the actual backup
259   backup
260
261   # Check if this box has a custom number of full backups
262   if [ -f $confdir/maksfulle.$computer ] ; then
263     mf=$((`cat $confdir/maksfulle.$computer`+1))
264   else
265     mf=$(($maksantallfulle+1))
266   fi
267
268   # Delete old full backups
269   for full in `ls -1t $storagedir/$computer/$sfilesystem/full/*tgz | tail -n +$mf`
270   do
271    prefix=`echo $full | sed "s/\.[^.]*$//"`
272    echo `date`": $computer:$filesystem Deleting full backup $prefix" >&2
273    rm $prefix*
274   done
275
276   # Delete incremental backups older than the oldest full backup
277   oldf=`ls -t1 $storagedir/$computer/$sfilesystem/full/*tgz | tail -1`
278   find \
279      $storagedir/$computer/$sfilesystem/daglig \
280      -type f \
281      \! -newer $oldf \
282      -printf "`date`: $computer: Deleting old incremental backup: %p\n" \
283      -exec rm {} \; >&2
284  done
285
286  # Try to run postexec if it exist
287  if ! ssh root@$computer "[ ! -f ~/.backup/postexec ] || /bin/bash -x ~/.backup/postexec" >&2; then
288         echo `date`" $computer: Could not run $computer:~/.backup/postexec"
289         die
290  fi
291
292 # Remove lockfile
293 rm $LOCKFILE