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