-
Notifications
You must be signed in to change notification settings - Fork 28
/
zfs-backup.sh
executable file
·334 lines (308 loc) · 11 KB
/
zfs-backup.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
#!/usr/bin/env ksh
# Needs a POSIX-compatible sh, like ash (Debian & FreeBSD /bin/sh), ksh, or
# bash. On Solaris 10 you need to use /usr/xpg4/bin/sh (the POSIX shell) or
# /bin/ksh -- its /bin/sh is an ancient Bourne shell, which does not work.
# backup script to replicate a ZFS filesystem and its children to another
# server via zfs snapshots and zfs send/receive
#
# SMF manifests welcome!
#
# v0.4 (unreleased) - misc. fixes; portability & doc improvements
# v0.3 - cmdline options and cfg file support
# v0.2 - multiple datasets
# v0.1 - initial working version
# Copyright (c) 2009-15 Andrew Daugherity <[email protected]>
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
# 1. Redistributions of source code must retain the above copyright
# notice, this list of conditions and the following disclaimer.
# 2. Redistributions in binary form must reproduce the above copyright
# notice, this list of conditions and the following disclaimer in the
# documentation and/or other materials provided with the distribution.
#
# THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
# ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
# OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
# SUCH DAMAGE.
# Basic installation: After following the prerequisites, run manually to verify
# operation, and then add a line like the following to zfssnap's crontab:
# 30 * * * * /path/to/zfs-backup.sh
#
# Consult the README file for details.
# If this backup is not run for a long enough period that the newest
# remote snapshot has been removed locally, manually run an incremental
# zfs send/recv to bring it up to date, a la
# zfs send -I zfs-auto-snap_daily-(latest on remote) -R \
# $POOL/$FS@zfs-auto-snap_daily-(latest local) | \
# ssh $REMUSER@REMHOST zfs recv -dvF $REMPOOL
# It's probably best to do a dry-run first (zfs recv -ndvF).
# PROCEDURE:
# * find newest local hourly snapshot
# * find newest remote hourly snapshot (via ssh)
# * check that both $newest_local and $latest_remote snaps exist locally
# * zfs send incremental (-I) from $newest_remote to $latest_local to dsthost
# * if anything fails, set svc to maint. and exit
# all of the following variables (except CFG) may be set in the config file
DEBUG="" # set to non-null to enable debug (dry-run)
VERBOSE="" # "-v" for verbose, null string for quiet
LOCK="/var/tmp/zfsbackup.lock"
PID="/var/tmp/zfsbackup.pid"
CFG="/var/lib/zfssnap/zfs-backup.cfg"
ZFS="/usr/sbin/zfs"
# Replace with sudo(8) if pfexec(1) is not available on your OS
PFEXEC=`which pfexec`
# local settings -- datasets to back up are now found by property
TAG="zfs-auto-snap_daily"
PROP="edu.tamu:backuptarget"
# remote settings (on destination host)
REMUSER="zfsbak"
# special case: when $REMHOST=localhost, ssh is bypassed
REMHOST="backupserver.my.domain"
REMPOOL="backuppool"
REMZFS="$ZFS"
usage() {
echo "Usage: $(basename $0) [ -nv ] [-r N ] [ [-f] cfg_file ]"
echo " -n\t\tdebug (dry-run) mode"
echo " -v\t\tverbose mode"
echo " -f\t\tspecify a configuration file"
echo " -r N\t\tuse the Nth most recent snapshot instead of the newest"
echo "If the configuration file is last option specified, the -f flag is optional."
exit 1
}
# simple ordinal function, does not validate input
ord() {
case $1 in
1|*[0,2-9]1) echo "$1st";;
2|*[0,2-9]2) echo "$1nd";;
3|*[0,2-9]3) echo "$1rd";;
*1[123]|*[0,4-9]) echo "$1th";;
*) echo $1;;
esac
}
# Option parsing
set -- $(getopt h?nvf:r: $*)
if [ $? -ne 0 ]; then
usage
fi
for opt; do
case $opt in
-h|-\?) usage;;
-n) dbg_flag=Y; shift;;
-v) verb_flag=Y; shift;;
-f) CFG=$2; shift 2;;
-r) recent_flag=$2; shift 2;;
--) shift; break;;
esac
done
if [ $# -gt 1 ]; then
usage
elif [ $# -eq 1 ]; then
CFG=$1
fi
# If file is in current directory, add ./ to make sure the correct file is sourced
if [ $(basename $CFG) = "$CFG" ]; then
CFG="./$CFG"
fi
# Read any settings from a config file, if present
if [ -r $CFG ]; then
# Pass its name as a parameter so it can use $(dirname $1) to source other
# config files in the same directory.
. $CFG $CFG
fi
# Set options now, so cmdline opts override the cfg file
[ "$dbg_flag" ] && DEBUG=1
[ "$verb_flag" ] && VERBOSE="-v"
[ "$recent_flag" ] && RECENT=$recent_flag
# set default value so integer tests work
if [ -z "$RECENT" ]; then RECENT=0; fi
# local (non-ssh) backup handling: REMHOST=localhost
if [ "$REMHOST" = "localhost" ]; then
REMZFS_CMD="$ZFS"
else
REMZFS_CMD="ssh $REMUSER@$REMHOST $REMZFS"
fi
# Usage: do_backup pool/fs/to/backup receive_option
# receive_option should be -d for full path and -e for base name
# See the descriptions in the 'zfs receive' section of zfs(1M) for more details.
do_backup() {
DATASET=$1
FS=${DATASET#*/} # strip local pool name
FS_BASE=${DATASET##*/} # only the last part
RECV_OPT=$2
case $RECV_OPT in
-e) TARGET="$REMPOOL/$FS_BASE"
;;
-d) TARGET="$REMPOOL/$FS"
;;
rootfs) if [ "$DATASET" = "$(basename $DATASET)" ]; then
TARGET="$REMPOOL"
RECV_OPT="-d"
else
BAD=1
fi
;;
*) BAD=1
esac
if [ $# -ne 2 -o "$BAD" ]; then
echo "Oops! do_backup called improperly:" 1>&2
echo " $*" 1>&2
return 2
fi
if [ $RECENT -gt 1 ]; then
newest_local="$($ZFS list -t snapshot -H -S creation -o name -d 1 $DATASET | grep $TAG | awk NR==$RECENT)"
if [ -z "$newest_local" ]; then
echo "Error: could not find $(ord $RECENT) most recent snapshot matching tag" >&2
echo "'$TAG' for ${DATASET}!" >&2
return 1
fi
msg="using local snapshot ($(ord $RECENT) most recent):"
else
newest_local="$($ZFS list -t snapshot -H -S creation -o name -d 1 $DATASET | grep $TAG | head -1)"
if [ -z "$newest_local" ]; then
echo "Error: no snapshots matching tag '$TAG' for ${DATASET}!" >&2
return 1
fi
msg="newest local snapshot:"
fi
snap2=${newest_local#*@}
[ "$DEBUG" -o "$VERBOSE" ] && echo "$msg $snap2"
if [ "$REMHOST" = "localhost" ]; then
newest_remote="$($ZFS list -t snapshot -H -S creation -o name -d 1 $TARGET | grep $TAG | head -1)"
err_msg="Error fetching snapshot listing for local target pool $REMPOOL."
else
# ssh needs public key auth configured beforehand
# Not using $REMZFS_CMD because we need 'ssh -n' here, but must not use
# 'ssh -n' for the actual zfs recv.
newest_remote="$(ssh -n $REMUSER@$REMHOST $REMZFS list -t snapshot -H -S creation -o name -d 1 $TARGET | grep $TAG | head -1)"
err_msg="Error fetching remote snapshot listing via ssh to $REMUSER@$REMHOST."
fi
if [ -z $newest_remote ]; then
echo "$err_msg" >&2
[ $DEBUG ] || touch $LOCK
return 1
fi
snap1=${newest_remote#*@}
[ "$DEBUG" -o "$VERBOSE" ] && echo "newest remote snapshot: $snap1"
if ! $ZFS list -t snapshot -H $DATASET@$snap1 > /dev/null 2>&1; then
exec 1>&2
echo "Newest remote snapshot '$snap1' does not exist locally!"
echo "Perhaps it has been already rotated out."
echo ""
echo "Manually run zfs send/recv to bring $TARGET on $REMHOST"
echo "to a snapshot that exists on this host (newest local snapshot with the"
echo "tag $TAG is $snap2)."
[ $DEBUG ] || touch $LOCK
return 1
fi
if ! $ZFS list -t snapshot -H $DATASET@$snap2 > /dev/null 2>&1; then
exec 1>&2
echo "Something has gone horribly wrong -- local snapshot $snap2"
echo "has suddenly disappeared!"
[ $DEBUG ] || touch $LOCK
return 1
fi
if [ "$snap1" = "$snap2" ]; then
[ $VERBOSE ] && echo "Remote snapshot is the same as local; not running."
return 0
fi
# sanity checking of snapshot times -- avoid going too far back with -r
snap1time=$($ZFS get -Hp -o value creation $DATASET@$snap1)
snap2time=$($ZFS get -Hp -o value creation $DATASET@$snap2)
if [ $snap2time -lt $snap1time ]; then
echo "Error: target snapshot $snap2 is older than $snap1!"
echo "Did you go too far back with '-r'?"
return 1
fi
if [ $DEBUG ]; then
echo "would run: $PFEXEC $ZFS send -R -I $snap1 $DATASET@$snap2 |"
echo " $REMZFS_CMD recv $VERBOSE $RECV_OPT -F $REMPOOL"
else
if ! $PFEXEC $ZFS send -R -I $snap1 $DATASET@$snap2 | \
$REMZFS_CMD recv $VERBOSE $RECV_OPT -F $REMPOOL; then
echo 1>&2 "Error sending snapshot."
touch $LOCK
return 1
fi
fi
}
# begin main script
if [ -e $LOCK ]; then
# this would be nicer as SMF maintenance state
if [ -s $LOCK ]; then
# in normal mode, only send one email about the failure, not every run
if [ "$VERBOSE" ]; then
echo "Service is in maintenance state; please correct and then"
echo "rm $LOCK before running again."
fi
else
# write something to the file so it will be caught by the above
# test and cron output (and thus, emails sent) won't happen again
echo "Maintenance mode, email has been sent once." > $LOCK
echo "Service is in maintenance state; please correct and then"
echo "rm $LOCK before running again."
fi
exit 2
fi
if [ -e "$PID" ]; then
[ "$VERBOSE" ] && echo "Backup job already running!"
exit 0
fi
echo $$ > $PID
FAIL=0
# get the datasets that have our backup property set
COUNT=$($ZFS get -s local -H -o name,value $PROP | wc -l)
if [ $COUNT -lt 1 ]; then
echo "No datasets configured for backup! Please set the '$PROP' property"
echo "appropriately on the datasets you wish to back up."
rm $PID
exit 2
fi
$ZFS get -s local -H -o name,value $PROP |
while read dataset value
do
case $value in
# property values:
# Given the hierarchy pool/a/b,
# * fullpath: replicate to backuppool/a/b
# * basename: replicate to backuppool/b
fullpath) [ $VERBOSE ] && printf "\n$dataset:\n"
do_backup $dataset -d
;;
basename) [ $VERBOSE ] && printf "\n$dataset:\n"
do_backup $dataset -e
;;
rootfs) [ $VERBOSE ] && printf "\n$dataset:\n"
if [ "$dataset" = "$(basename $dataset)" ]; then
do_backup $dataset rootfs
else
echo "Warning: $dataset has 'rootfs' backuptarget property but is a non-root filesystem -- skipping." >&2
fi
;;
*) echo "Warning: $dataset has invalid backuptarget property '$value' -- skipping." >&2
;;
esac
STATUS=$?
if [ $STATUS -gt 0 ]; then
FAIL=$((FAIL | STATUS))
fi
done
if [ $FAIL -gt 0 ]; then
if [ $((FAIL & 1)) -gt 0 ]; then
echo "There were errors backing up some datasets." >&2
fi
if [ $((FAIL & 2)) -gt 0 ]; then
echo "Some datasets had misconfigured $PROP properties." >&2
fi
fi
rm $PID
exit $FAIL