blob: 1fd099daf3bfddcafffe6eaa33e4532b90a7c425 (
plain)
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
|
{% raw %}#!/usr/bin/env bash
set -euo pipefail
# ===== CONFIG (filled by Ansible) =====
KEEP_LOCAL=30
KEEP_REMOTE=10
KEYFILE="/root/.ssh/backup"
HOST_DIR="backup"
DATASET="{% endraw %}{{ backup_zfs_dataset }}{% raw %}"
USER="{% endraw %}{{ backup_ssh_user }}{% raw %}"
HOST="{% endraw %}{{ backup_ssh_host }}{% raw %}"
EMAIL_TO=root
# =====================================
# ----- Helpers -----
die() { echo "Error: $*" >&2; exit 1; }
require_cmds() {
local cmds=("$@")
for c in "${cmds[@]}"; do command -v "$c" >/dev/null 2>&1 || die "Missing command: $c"; done
}
timestamp() {
# Replace '+' with '-' so timezone is filename-safe and lexicographically sortable within TZ.
date +%Y-%m-%d-%H-%M-%S%z | tr '+' '-'
}
latest_snapshot_for_dataset() {
# Latest snapshot on the TOP dataset only (newest first). Returns e.g. zroot@2025-09-30-...
zfs list -t snapshot -o name -S creation "$DATASET" 2>/dev/null \
| awk 'NR==2{print; exit}'
}
list_top_snapshots_newest_first() {
# Only list snapshots on the top dataset (not children), newest first.
zfs list -t snapshot -o name -S creation "$DATASET" 2>/dev/null \
| awk 'NR>1{print $1}'
}
list_remote_backups_sorted() {
# Note: sorting strictly orders only within the same timezone in the name, which is fine for our daily cadence.
# We store files under ${HOST_DIR}/<dataset>@<timestamp>.enc
echo "ls ${HOST_DIR}" \
| sftp -q -i "${KEYFILE}" "${USER}@${HOST}" 2>/dev/null \
| tail -n +2 | sort
}
# Upload a local file to the storage box path "${HOST_DIR}/<remote_name>"
sftp_put() {
local local_file="$1"
local remote_name="$2" # just the filename, no directory
sftp -i "${KEYFILE}" "${USER}@${HOST}" <<EOF
put ${local_file} ${HOST_DIR}/${remote_name}
EOF
}
# ----- Subcommands -----
cmd_init_remote() {
echo ""
echo "[init-remote]"
require_cmds sftp
echo "Checking for remote directory: ${HOST_DIR}"
if echo "ls ${HOST_DIR}" | sftp -i "${KEYFILE}" "${USER}@${HOST}" >/dev/null 2>&1; then
echo "Remote directory already exists: ${HOST_DIR}"
return 0
fi
echo "Creating remote directory: ${HOST_DIR}"
set +e
sftp -i "${KEYFILE}" "${USER}@${HOST}" <<EOF
mkdir ${HOST_DIR}
EOF
rc=$?
set -e
if [[ $rc -ne 0 ]]; then
die "Failed to create remote directory ${HOST_DIR}"
fi
# Re-check
if echo "ls ${HOST_DIR}" | sftp -q -i "${KEYFILE}" "${USER}@${HOST}" >/dev/null 2>&1; then
echo "Remote directory created: ${HOST_DIR}"
else
die "Remote directory ${HOST_DIR} not found after creation"
fi
}
cmd_snapshot() {
echo ""
echo "[snapshot]"
require_cmds zfs date tr
local ts snap
ts="$(timestamp)"
snap="${DATASET}@${ts}"
echo "Taking recursive snapshot \"${snap}\""
(set -x; zfs snapshot -r "${snap}")
echo "Recursive snapshot \"${snap}\" created"
}
cmd_send_to_remote() {
echo ""
echo "[send-to-remote]"
require_cmds zfs age sftp mktemp stat
local snap base target tmp size_bytes
snap="$(latest_snapshot_for_dataset)"
[[ -n "${snap}" ]] || die "No snapshot found to send. Run 'snapshot' first or ensure the dataset has snapshots."
base="$(basename "${snap}")" # e.g., zroot@2025-09-30-12-00-00-0300
target="${base}.enc"
tmp="$(mktemp -t backup_send.XXXXXX)"
trap 'rm -f "${tmp}"' EXIT
echo "Creating encrypted replication stream to temp file: ${tmp}"
# -R: recursive hierarchy, -v: progress to stderr, -c: send compressed (keeps on-disk compression)
(set -x; zfs send -Rvc "${snap}" | age -e -i "${KEYFILE}" > "${tmp}")
size_bytes="$(stat -f %z "${tmp}" 2>/dev/null || stat -c %s "${tmp}" 2>/dev/null || echo "unknown")"
echo "Local stream size: ${size_bytes} bytes"
echo "Uploading via SFTP to ${HOST}:${HOST_DIR}/${target}"
if sftp_put "${tmp}" "${target}"; then
echo "Upload complete"
else
die "SFTP upload failed (does the remote directory '${HOST_DIR}' exist? Run 'init-remote')"
fi
rm -f "${tmp}"
trap - EXIT
}
cmd_prune_remote() {
echo ""
echo "[prune-remote]"
require_cmds sftp awk sort wc
echo "Fetching remote backup listing from sftp://${HOST}/${HOST_DIR}"
BACKUPS="$(list_remote_backups_sorted || true)"
mapfile -t BACKUP_ARR < <(printf "%s\n" "${BACKUPS}")
local count="${#BACKUP_ARR[@]}"
if [[ "${count}" -le "${KEEP_REMOTE}" ]]; then
echo "Remote backups (${count}) <= KEEP_REMOTE (${KEEP_REMOTE}); nothing to prune."
return 0
fi
echo "Pruning remote backups, keeping latest ${KEEP_REMOTE} (will delete $(("${count}" - "${KEEP_REMOTE}")))"
local to_delete_count=$((count - KEEP_REMOTE))
local deleted=0
for ((i=0; i<to_delete_count; i++)); do
b="${BACKUP_ARR[$i]}"
[[ -n "${b}" ]] || continue
echo "Deleting remote: ${b}"
set +e
echo "rm ${HOST_DIR}/${b}" | sftp -i "${KEYFILE}" "${USER}@${HOST}"
rc=$?
set -e
if [[ $rc -ne 0 ]]; then
die "Failed to delete remote file: ${b}"
fi
deleted=$((deleted+1))
done
echo "Remote prune done. Deleted: ${deleted}"
}
cmd_prune_local() {
echo ""
echo "[prune-local]"
require_cmds zfs awk
echo "Pruning local snapshots on dataset: ${DATASET}; keeping latest ${KEEP_LOCAL}"
mapfile -t snaps < <(list_top_snapshots_newest_first)
local total="${#snaps[@]}"
if [[ "${total}" -le "${KEEP_LOCAL}" ]]; then
echo "Local snapshots (${total}) <= KEEP_LOCAL (${KEEP_LOCAL}); nothing to prune."
return 0
fi
local deleted=0
# List is newest-first; skip first KEEP_LOCAL and destroy the rest RECURSIVELY across the tree
for ((i=KEEP_LOCAL; i<total; i++)); do
s="${snaps[$i]}" # e.g., zroot@2025-09-30-...
echo "Destroying recursive snapshot: ${s}"
(set -x; zfs destroy -r "${s}")
deleted=$((deleted+1))
done
echo "Local prune done. Deleted: ${deleted}"
}
cmd_notify() {
echo "Sending notification email..."
local latest=$(latest_snapshot_for_dataset "${DATASET}")
echo "Backup of snapshot ${latest} completed at $(date)" | mail -s "Backup completed" "${EMAIL_TO}"
}
usage() {
cat <<EOF
Usage: $(basename "$0") [subcommand [subcommand ...]]
Subcommands (executed in order):
init-remote Create the remote backup directory (\$HOST_DIR). Succeeds if it already exists.
snapshot Create a new **recursive** ZFS snapshot for \$DATASET
send-to-remote Create encrypted replication stream to a temp file, then upload via SFTP
prune-remote Keep latest \$KEEP_REMOTE backups on remote (default ${KEEP_REMOTE})
prune-local Keep latest \$KEEP_LOCAL local snapshots on the top dataset (default ${KEEP_LOCAL})
notify Send notification email
Notes:
- Run 'init-remote' once before the first upload, or anytime after changing \$HOST_DIR.
- Local pruning destroys older snapshots **recursively** to maintain consistency across descendants.
Examples:
$(basename "$0") init-remote snapshot send-to-remote prune-remote prune-local
EOF
}
# ----- Main -----
main() {
if [[ $# -eq 0 ]]; then
usage
exit 1
fi
# sanity
[[ -n "${DATASET}" ]] || die "DATASET not set"
[[ -n "${USER}" && -n "${HOST}" ]] || die "USER/HOST not set"
[[ -r "${KEYFILE}" ]] || die "KEYFILE not readable: ${KEYFILE}"
while [[ $# -gt 0 ]]; do
case "$1" in
init-remote) cmd_init_remote ;;
snapshot) cmd_snapshot ;;
send-to-remote) cmd_send_to_remote ;;
prune-remote) cmd_prune_remote ;;
prune-local) cmd_prune_local ;;
notify) cmd_notify ;;
-h|--help|help) usage; exit 0 ;;
*) die "Unknown subcommand: $1" ;;
esac
shift
done
echo "Done."
}
main "$@"
{% endraw %}
|