various fixes and mail improvements
[distro-setup] / btrbk-run
1 #!/bin/bash
2 # Copyright (C) 2016 Ian Kelling
3
4 # Licensed under the Apache License, Version 2.0 (the "License");
5 # you may not use this file except in compliance with the License.
6 # You may obtain a copy of the License at
7
8 # http://www.apache.org/licenses/LICENSE-2.0
9
10 # Unless required by applicable law or agreed to in writing, software
11 # distributed under the License is distributed on an "AS IS" BASIS,
12 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 # See the License for the specific language governing permissions and
14 # limitations under the License.
15
16
17 # todo: if we cancel in the middle of a btrfs send, then run again immediately, the received subvolume doesn't get a Received UUID: field, and we won't mount it. Need to figure out a solution that will fix this.
18
19 err-bash-trace() {
20 local -i argc_index=0 frame i start=${1:-0} max_indent=8 indent
21 local source
22 local extdebug=false
23 if [[ $(shopt -p extdebug) == *-s* ]]; then
24 extdebug=true
25 fi
26 for ((frame=0; frame < ${#FUNCNAME[@]}-1; frame++)); do
27 argc=${BASH_ARGC[frame]}
28 argc_index+=$argc
29 ((frame < start)) && continue
30 if (( ${#BASH_SOURCE[@]} > 1 )); then
31 source="${BASH_SOURCE[frame+1]}:${BASH_LINENO[frame]}:"
32 fi
33 indent=$((frame-start + 1))
34 indent=$((indent < max_indent ? indent : max_indent))
35 printf "%${indent}s↳%sin \`%s" '' "$source" "${FUNCNAME[frame]}"
36 if $extdebug; then
37 for ((i=argc_index-1; i >= argc_index-argc; i--)); do
38 printf " %s" "${BASH_ARGV[i]}"
39 done
40 fi
41 echo \'
42 done
43 return 0
44 }
45 err-catch() {
46 set -E; shopt -s extdebug
47 _err-trap() {
48 err=$?
49 exec >&2
50 set +x
51 echo "${BASH_SOURCE[1]}:${BASH_LINENO[0]}: \`$BASH_COMMAND' returned $err"
52 err-bash-trace 2
53 set -e # err trap does not work within an error trap
54 "${_errcatch_cleanup[@]:-:}" # note :-: is to be compatible with set -u
55 echo "$0: exiting with code $err"
56 exit $err
57 }
58 trap _err-trap ERR
59 set -o pipefail
60 }
61 err-catch
62
63
64 [[ $EUID == 0 ]] || exec sudo -E "$BASH_SOURCE" "$@"
65
66
67 usage() {
68 cat <<'EOF'
69 btrbk-run [OPTIONS]
70 usually -t TARGET_HOST or -s SOURCE_HOST
71
72 Note, at source location, intentionally not executable, run and read
73 install-my-scripts.
74
75 EOF
76 echo "top of script file:"
77 sed -n '1,/^[# ]*end command line/{p;b};q' "$0"
78 exit $1
79 }
80
81 rsync-dirs() {
82 local host=$1
83 local path=$2
84 m rsync $dry_run_arg -ahi --relative --delete "$path" "root@$host:/"
85 }
86
87
88 m() { if $verbose; then printf "$pre %s\n" "$*"; fi; "$@"; }
89 die() { printf "$pre %s\n" "$*" >&2; exit 1; }
90
91 # latest $MAIL_HOST
92 if [[ -e /b/bash_unpublished/source-state ]]; then
93 source /b/bash_unpublished/source-state
94 fi
95
96 # note q is owned by root:1000
97
98 mountpoints=()
99
100 rsync_mountpoint=/q
101
102 # default options
103 conf_only=false
104 dry_run=false # mostly for testing
105 rate_limit=no
106 verbose=true; verbose_arg=-v
107 progress_arg="--progress"
108 pull_reexec=false
109
110 default_args_file=/etc/btrbk-run.conf
111 if [[ -s $default_args_file ]]; then
112 set -- $(< $default_args_file) "$@"
113 # i havent used this feature yet, so warn about it
114 echo "$0: warning: default btrbk-run options set in $default_args_file (sleeping 5 seconds):"
115 cat $default_args_file
116 sleep 5
117 fi
118
119 pre="${0##*/}:"
120 cron=false
121 orig_args=("$@")
122 temp=$(getopt -l cron,pull-reexec,help cl:m:npqs:t:vh "$@") || usage 1
123 eval set -- "$temp"
124 while true; do
125 case $1 in
126 --cron)
127 cron=true
128 pre=
129 shift
130 ;;
131 # only creates the config file, does not run btrbk
132 -c) conf_only=true; shift ;;
133 # bytes per second, suffix k m g
134 -l) rate_limit=$2; shift 2 ;;
135 # Comma separated mountpoints to backup. This has defaults set below.
136 -m) IFS=, mountpoints=($2); unset IFS; shift 2 ;;
137 -n) dry_run=true; dry_run_arg=-n; shift ;;
138 -p) progress_arg="--progress"; shift ;;
139 --pull-reexec) pull_reexec=true; shift ;;
140 -q) verbose=false; verbose_arg=; progress_arg=; shift ;;
141 # source host to receive a backup from
142 -s) source=$2; shift 2 ;;
143 # target hosts to send to. empty is valid for just doing local
144 # snapshot. we have default hosts we will populate.
145 -t) IFS=, targets=($2); unset IFS; shift 2 ;;
146 -v) verbose=true; verbose_arg=-v; shift ;;
147 -h|--help) usage ;;
148 --) shift; break ;;
149 *) die "Internal error!" ;;
150 esac
151 done
152
153 # usefull commands are resume and archive
154 cmd_arg=${1:-run}
155
156 if [[ -v targets && $source ]]; then
157 die "error: -t and -s are mutually exclusive"
158 fi
159
160 if $verbose; then
161 printf "$pre options: conf_only=%s\ndry_run=%s\nrate_limit=%s\nverbose=%s\ncmd_arg=%s" "$conf_only" "$dry_run" "$rate_limit" "$verbose" "$cmd_arg"
162 fi
163 ### end options parsing
164
165 # TODO: i wonder if there should be an option to send to the default
166 # targets, plus any given on the command line.
167
168 # set default targets
169 if [[ ! -v targets && ! $source ]]; then
170 if [[ $HOSTNAME != "$MAIL_HOST" ]] && $cron ; then
171 echo "MAIL_HOST=$MAIL_HOST, nothing to do"
172 exit 0
173 fi
174 case $HOSTNAME in
175 kw|x2)
176 if ping -q -c1 -w1 iank.vpn.office.fsf.org &>/dev/null; then
177 home=iank.vpn.office.fsf.org
178 else
179 home=b8.nz
180 fi
181 ;;&
182 kw)
183 targets=($home x2)
184 ;;
185 x2)
186 targets=($home kw)
187 ;;
188 tp)
189 targets=(frodo kd)
190 # might not be connected to the vpn
191 if timeout -s 9 10 ssh kw :; then
192 targets+=(kw)
193 fi
194 ;;
195 kd)
196 targets=(frodo tp)
197 # might not be connected to the vpn
198 if timeout -s 9 10 ssh kw :; then
199 targets+=(kw)
200 fi
201 ;;
202 *)
203 die "error: no default targets for this host, use -t"
204 ;;
205 esac
206 fi
207
208 if [[ -v targets ]]; then
209 echo "targets: ${targets[*]}"
210 fi
211
212 if [[ $source ]]; then
213 echo "source: $source"
214 fi
215
216
217 if [[ $mountpoints ]]; then
218 for mp in ${mountpoints[@]}; do # default mountpoints to sync
219 if [[ -e /nocow/btrfs-stale/$mp ]]; then
220 die "error: $mp is stale, mount-latest-subvol first"
221 fi
222 done
223 else
224 # set default mountpoints
225 case $HOSTNAME in
226 # no remote backups atm. note, if we do enable this, configuration below will need some changes.
227 # frodo)
228 # prospective_mps=(/i)
229 # ;;
230 *)
231 prospective_mps=(/a /q)
232 if [[ $HOSTNAME == "$MAIL_HOST" ]]; then
233 prospective_mps+=(/o)
234 fi
235 ;;
236 esac
237 for mp in ${prospective_mps[@]}; do # default mountpoints to sync
238 if [[ -e /nocow/btrfs-stale/$mp ]]; then
239 echo "$pre warning: $mp stale, not adding to default mountpoints"
240 continue
241 fi
242 if awk '{print $2}' /etc/fstab | grep -xF $mp &>/dev/null; then
243 mountpoints+=($mp)
244 fi
245 done
246 fi
247
248 echo "mountpoints: ${mountpoints[*]}"
249
250
251
252 # pull_reexec stops us from getting into an infinite loop if there is some
253 # kind of weird problem
254 pulla=false
255 for m in "${mountpoints[@]}"; do
256 if [[ $m == /a ]]; then
257 pulla=true
258 break
259 fi
260 done
261 if ! $pull_reexec && [[ $source ]] && $pulla ; then
262 tmpf=$(mktemp)
263 scp $source:/a/bin/distro-setup/btrbk-run $tmpf
264 if ! diff -q $tmpf $BASH_SOURCE; then
265 echo "$pre found newer version on host $source. reexecing"
266 install -T $tmpf /usr/local/bin/btrbk-run
267 m /usr/local/bin/btrbk-run --pull-reexec "${orig_args[@]}"
268 exit
269 fi
270 fi
271
272
273 ##### end command line parsing ########
274
275
276
277 if ! which btrbk &>/dev/null; then
278 die "error: no btrbk binary found"
279 fi
280 # if our mountpoints are from stale snapshots,
281 # it doesn't make sense to do a backup.
282 check-subvol-stale ${mountpoints[@]} || die "found stale mountpoints in ${mountpoints[*]}"
283
284 # for an initial run, btrbk requires the dir to exist.
285 mkdir -p /mnt/root/btrbk
286 local_zone=$(date +%z)
287
288 if [[ $source ]]; then
289 if ! zone=$(ssh root@$source date +%z); then
290 die failed to ssh to root@$source
291 fi
292 if [[ $zone != $local_zone ]]; then
293 die "error: dont confuse yourself with multiple time zones. $h has different timezone than localhost"
294 fi
295
296 else
297
298 sshable=()
299 sshfail=()
300 min_idle_ms=$((1000 * 60 * 15))
301 for h in ${targets[@]}; do
302 if zone=$(ssh root@$h "mkdir -p /mnt/root/btrbk && date +%z"); then
303 if $cron && DISPLAY=:0 xprintidle; then
304 # This is a separate ssh because xprintidle can fail and thats ok.
305 # Ignore this host. i sometimes use a non-main machine for testing or web browsing, knowing that
306 # everything will be wiped by the next backup, but I dont want it to happen as Im using
307 # it from cronjob.
308 continue
309 fi
310 sshable+=($h)
311 if [[ $zone != $local_zone ]]; then
312 die "error: dont confuse yourself with multiple time zones. $h has different timezone than localhost"
313 fi
314 else
315 sshfail+=($h)
316 fi
317 done
318 if [[ ! $sshable ]] || { ! $cron && [[ $sshfail ]]; }; then
319 die "failed to ssh to hosts: ${sshfail[*]}"
320 else
321 if [[ $sshfail ]]; then
322 ret=1
323 echo "$pre error: failed to ssh to ${sshfail[*]} but continuing with other hosts"
324 fi
325 targets=(${sshable[@]})
326 fi
327 fi
328
329
330 cat >/etc/btrbk.conf <<EOF
331 ssh_identity /root/.ssh/home
332 # Just a guess that local7 is a good facility to pick.
333 # It's a bit odd that the transaction log has to be logged to
334 # a file or syslog, while other output is sent to std out.
335 # The man does not mention a way for them to be together, but
336 # I dunno if setting a log level like warn might also output
337 # transaction info.
338 transaction_syslog local7
339
340 # note, i had this because man said 20% speedup, but ran into
341 # this issue, https://github.com/digint/btrbk/issues/275
342 #stream_buffer 512m
343
344 # so we only run one at a time
345 lockfile /var/lock/btrbk.lock
346
347 # default format of short does not accomidate hourly preservation setting
348 timestamp_format long-iso
349
350 # only make a snapshot if things have changed
351 snapshot_create onchange
352 # I could make this different from target_preserve,
353 # if one disk had less space.
354 # for now, keeping them equal.
355 snapshot_preserve 36h 14d 8w 24m
356 snapshot_preserve_min 4h
357 snapshot_dir btrbk
358
359 # so, total backups = ~89
360 target_preserve 36h 14d 8w 24m
361 target_preserve_min 4h
362
363 # if something fails and it's not obvious, try doing
364 # btrbk -l debug -v dryrun
365
366 rate_limit $rate_limit
367 EOF
368
369
370
371
372
373 vol=/mnt/root
374 for m in ${mountpoints[@]}; do
375 sub=${m##*/}
376 if [[ $source ]]; then
377 cat >>/etc/btrbk.conf <<EOF
378 volume ssh://$source$vol
379 subvolume $sub
380 target send-receive $vol/btrbk
381 EOF
382 else
383 cat >>/etc/btrbk.conf <<EOF
384 volume $vol
385 subvolume $sub
386 EOF
387 for tg in ${targets[@]}; do
388 cat >>/etc/btrbk.conf <<EOF
389 target send-receive ssh://$tg$vol/btrbk
390 EOF
391 done
392 fi
393 done
394
395
396 # todo: umount first to ensure we don't have any errors
397 # todo: do some kill fuser stuff to make umount more reliable
398
399
400 if $conf_only; then
401 exit
402 fi
403
404
405
406 if $dry_run; then
407 m btrbk -v -n $cmd_arg
408 exit 0
409 elif [[ $cmd_arg == archive ]]; then
410 if [[ $source ]]; then
411 m btrbk $verbose_arg $progress_arg $cmd_arg ssh://$source$vol $vol
412 else
413 for tg in ${targets[@]}; do
414 m btrbk $verbose_arg $progress_arg $cmd_arg $vol ssh://$tg$vol
415 done
416 fi
417 exit 0
418 fi
419 # -q and just using the syslog option seemed nice,
420 # but it doesn't show when a send has a parent and when it doesn't.
421 m btrbk $verbose_arg $progress_arg $cmd_arg
422
423 # if we have it, sync to systems which don't
424 if mountpoint $rsync_mountpoint >/dev/null; then
425 for tg in ${targets[@]}; do
426 case $tg in
427 li|lk)
428 for x in /p/c/machine_specific/*.hosts; do
429 if grep -qxF $tg $x; then
430 dir=${x%.hosts}
431 rsync-dirs $tg $dir
432 fi
433 done
434 ;;
435 esac
436 done
437 fi
438
439 if [[ $source ]]; then
440 m mount-latest-subvol $verbose_arg
441 else
442 m /a/exe/mount-latest-remote ${targets[@]}
443 fi
444
445 exit $ret
446
447 # todo: move variable data we don't care about backing up
448 # to /nocow and symlink it.
449
450
451 # background on btrbk timezones. with short/long, timestamps use local time.
452 # for long, if your local time moves backwards, by moving timezones or
453 # for an hour when daylight savings changes it, you will temporarily get
454 # a more aggressive retention policy for the overlapping period, and
455 # vice versa for the opposite timezone move. The alternative is using
456 # long-iso, which puts timezone info into the timestamp, which means
457 # that instead of shifting time, you shift the start of day/week/month
458 # which is used for retention to your new local time, which means for
459 # example, if you moved forward by 8 hours, the daily/weekly/monthly
460 # retention will be 8 hours more aggressive since midnight is at a new
461 # time, unless you fake the timzeone using the TZ env variable.
462 # However, in the short term, there will be no inconsistencies.
463 # I don't see any problem with shifting when the day starts for
464 # retention, so I'm using long-iso.
465
466 # note to create a long-iso timestamp: date +%Y%m%dT%H%M%S%z