blob: 0a438a729e677adaa5bd1188ce0cace484b56a12 (
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
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
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
|
#!/bin/sh
#
# Copyright (c) 2017-2018 Aaron LI <aly@aaronly.me>
# MIT License
#
# Tool to update a DragonFly BSD system using binary releases or
# snapshot builds.
#
set -e
DEBUG=${DEBUG:-""}
NAME="dfly-update"
VERSION="0.?.?"
TOOLDIR="${0%/*}"
PREFIX="${PREFIX:-${TOOLDIR}}"
CONFIGFILE="${PREFIX}/${NAME}.conf"
#
# Error Codes
#
EC_OS=10
EC_TMPFILE=11
EC_MD5=12
EC_ARGS=13
EC_FETCH=14
EC_MOUNT=15
#
# Default Configurations
#
# Base URL to Remote DragonFly BSD images
URL_BASE="https://mirror-master.dragonflybsd.org"
URL_MASTER="${URL_BASE}/snapshots/x86_64/images"
URL_RELEASE="${URL_BASE}/iso-images"
# Default to track the same branch as the installed system
# * MASTER (i.e., the DEVELOPMENT branch)
# * RELEASE
# * (empty) - same as the local installed branch
UPDATE_BRANCH=
# Temporary directory to cache the image, etc, ...
CACHE_DIR="/var/tmp/${NAME}"
# Directory to mount the system image
MNT_DIR="/mnt/${NAME}"
#
# Helper Functions
#
debug() {
[ -n "${DEBUG}" ] && echo "DEBUG: $@" >&2
}
warn() {
echo "WARNING: $@" >&2
}
error() {
local ec="$1"
shift
echo "ERROR: $@" >&2
exit ${ec}
}
check_os() {
[ $# -eq 0 ] || exit ${EC_ARGS}
local os=$(uname -s)
if [ "${os}" != "DragonFly" ]; then
error ${EC_OS} "Not a DragonFly BSD system!"
fi
}
# contains(string, substring)
#
# Returns 0 if the specified string contains the specified substring,
# otherwise returns 1.
#
# Credit: https://stackoverflow.com/a/8811800
contains() {
[ $# -eq 2 ] || exit ${EC_ARGS}
local string="$1"
local substring="$2"
if [ "${string#*$substring}" != "$string" ]; then
return 0 # $substring is in $string
else
return 1 # $substring is not in $string
fi
}
# Determine the branch from the image filename
get_branch_filename() {
[ $# -eq 1 ] || exit ${EC_ARGS}
if contains "$1" "-DEV-"; then
echo "MASTER"
else
echo "RELEASE"
fi
}
# Determine whether the given name refers to the master branch?
is_master_branch() {
[ $# -eq 1 ] || exit ${EC_ARGS}
case "$1" in
master|MASTER|[dD][eE][vV]*)
return 0
;;
*)
return 1
;;
esac
}
# Get the branch of the installed system
# * DEVELOPMENT
# * RELEASE
get_local_branch() {
[ $# -eq 0 ] || exit ${EC_ARGS}
check_os
uname -r | awk -F'-' '{ print $2 }'
}
# Get the version of local installed system
get_local_version() {
[ $# -eq 0 ] || exit ${EC_ARGS}
check_os
local version=$(uname -v | awk '{ print $2 }')
echo "${version}" | awk -F'-' '{ print $1 }' | tr -d 'v'
}
# Get the URL of the MD5 list
get_md5list_url() {
[ $# -eq 1 ] || exit ${EC_ARGS}
local branch="$1"
if is_master_branch "${branch}"; then
echo "${URL_MASTER}/CHECKSUM.MD5"
else
echo "${URL_RELEASE}/md5.txt"
fi
}
# Determine the URL of the given image filename
get_image_url() {
[ $# -eq 1 ] || exit ${EC_ARGS}
local filename="$1"
local branch=$(get_branch_filename ${filename})
if is_master_branch "${branch}"; then
echo "${URL_MASTER}/${filename}"
else
echo "${URL_RELEASE}/${filename}"
fi
}
# Get the latest remote system image
# Returns:
# "_filename='<latest.iso/img>'; _md5='<md5/of/latest.iso/img>'"
get_latest_image() {
[ $# -eq 1 ] || exit ${EC_ARGS}
local branch="$1"
local url_checksum=$(get_md5list_url ${branch})
local tmpchecksum=$(mktemp -t ${NAME}) || exit ${EC_TMPFILE}
local latest_filename latest_md5 line
echo "Fetch remote systems checksum: ${url_checksum}" >&2
fetch -q -o ${tmpchecksum} "${url_checksum}" || exit ${EC_FETCH}
if is_master_branch "${branch}"; then
line=$(fgrep '.img.bz2' ${tmpchecksum} | tail -n 1)
else
line=$(fgrep '.img.bz2' ${tmpchecksum} | \
fgrep -v 'gui-' | tail -n 1)
fi
latest_filename=$(echo "${line}" | awk -F'[()]' '{ print $2 }')
latest_md5=$(echo "${line}" | awk '{ print $4 }')
rm -f ${tmpchecksum}
debug "_filename='${latest_filename}'; _md5='${latest_md5}'"
echo "_filename='${latest_filename}'; _md5='${latest_md5}'"
}
# Extract the version from image filename
get_version_filename() {
[ $# -eq 2 ] || exit ${EC_ARGS}
local branch="$1"
local filename="$2"
local version
if is_master_branch "${branch}"; then
version=$(echo "${filename}" | cut -d'-' -f5 | cut -d'.' -f1-5)
else
version=$(echo "${filename}" | cut -d'-' -f3 | cut -d'_' -f1)
version=${version#v}
fi
echo ${version}
}
# Compare between two version strings
# Parameters: ver1 ver2
# Returns values:
# * 0 : ver1 = ver2
# * 1 : ver1 < ver2
# * 2 : ver1 > ver2
compare_version() {
[ $# -eq 2 ] || exit ${EC_ARGS}
local ver1="$1"
local ver2="$2"
local ver_low=$(echo -e "${ver1}\n${ver2}" | sort -V | head -n 1)
if [ "${ver1}" = "${ver2}" ]; then
echo 0
elif [ "${ver1}" = "${ver_low}" ]; then
echo 1
else
echo 2
fi
}
# Checksum the image file
#
# checksum_image(file, md5)
#
# Returns:
# * 0 : file exists and its md5 hash matches the given one.
# * 1 : otherwise
checksum_image() {
[ $# -eq 2 ] || exit ${EC_ARGS}
local file="$1"
local md5_match="$2"
local md5
[ -f "${file}" ] && md5=$(md5 -q "${file}")
if [ -n "${md5}" ] && [ "${md5}" = "${md5_match}" ]; then
return 0
else
return 1
fi
}
# Download the latest system image (IMG file)
#
# download_image(url, outfile)
#
download_image() {
[ $# -eq 2 ] || exit ${EC_ARGS}
local url="$1"
local outfile="$2"
local outdir=$(dirname "${outfile}")
[ ! -d "${outdir}" ] && mkdir -v "${outdir}"
echo "Downloading the new system image ..."
echo " <= ${url}"
echo " => ${outfile}"
fetch -o "${outfile}" "${url}" \
&& echo "DONE" \
|| exit ${EC_FETCH}
}
# Mount the downloaded image (IMG file)
#
# mount_image(imgfile, mntpnt)
#
mount_image() {
[ $# -eq 2 ] || exit ${EC_ARGS}
local imgfile="$1"
local mntpnt="$2"
local vn=$(vnconfig -l | fgrep "not in use" | head -n 1 | cut -d':' -f 1)
[ ! -d "${mntpnt}" ] && mkdir -v "${mntpnt}"
echo "Mounting image ${imgfile} to ${mntpnt} ..."
vnconfig -v -c ${vn} ${imgfile} || exit ${EC_VN}
mount -r /dev/${vn}s2a ${mntpnt} \
&& echo "DONE" \
|| exit ${EC_MOUNT}
}
}
#
# Sub-command functions
#
cmd_version() {
[ $# -eq 0 ] || exit ${EC_ARGS}
cat <<_EOF_
v${VERSION}
Aaron LI <aly@aaronly.me>
https://github.com/liweitianux/dfly-update
_EOF_
}
cmd_usage() {
[ $# -eq 0 ] || exit ${EC_ARGS}
cat <<_EOF_
dfly-update - DragonFly BSD update tool using binary release/snapshots
Usage:
help | --help | -h
Show this help.
version | --version | -v
Show version information of this tool.
status
Show local installed system version and remote available version.
download <filename> <md5>
Download the given image and check aginst the given MD5
mount <filepath>
Mount the given image file
_EOF_
echo
cmd_version
}
cmd_status() {
[ $# -eq 0 ] || exit ${EC_ARGS}
local branch=$(get_local_branch)
local version=$(get_local_version)
local branch_remote version_remote has_update
if [ -z "${UPDATE_BRANCH}" ]; then
branch_remote=${branch}
else
branch_remote=${UPDATE_BRANCH}
fi
eval "$(get_latest_image ${branch_remote})" || exit $?
version_remote=$(get_version_filename ${branch_remote} ${_filename})
cat <<_EOF_
Local installed system:
branch: ${branch}
version: ${version}
Remote available system:
branch: ${branch_remote}
version: ${version_remote}
filename: ${_filename}
md5: ${_md5}
_EOF_
has_update=$(compare_version ${version} ${version_remote})
if [ ${has_update} -eq 0 ]; then
echo "^_^ Your DragonFly is up-to-date ^_^"
elif [ ${has_update} -eq 1 ]; then
echo "!!! Your DragonFly needs update !!!"
else
echo "??? Your DragonFly is newer than remote ???"
fi
}
# Download the given image and check aginst the given MD5
#
# usage:
# cmd_download <filename> <md5>
cmd_download() {
[ $# -eq 2 ] || exit ${EC_ARGS}
local filename="$1"
local md5="$2"
local url=$(get_image_url ${filename})
local filepath="${CACHE_DIR}/${filename}"
download_image "${url}" "${filepath}"
if checksum_image "${filepath}" "${md5}"; then
echo "Downloaded and MD5-checked image file."
else
echo "Downloaded image file does not match the MD5!"
exit ${EC_MD5}
fi
}
# Mount the given image file
#
# usage:
# cmd_mount <filepath>
cmd_mount() {
[ $# -eq 1 ] || exit ${EC_ARGS}
local filepath="$1"
case "${filepath}" in
*.bz2)
echo -n "Decompressing file: ${filepath} ..."
bunzip2 "${filepath}"
echo "DONE"
filepath="${filepath%.bz2}"
;;
esac
mount_image "${filepath}" "${MNT_DIR}"
}
#
# Main
#
# Load configurations
[ -r "${CONFIGFILE}" ] && . ${CONFIGFILE}
COMMAND="$1"
case "${COMMAND}" in
version|--version|-v)
shift
cmd_version
;;
status)
shift
cmd_status "$@"
;;
download)
shift
cmd_download "$@"
;;
mount)
shift
cmd_mount "$@"
;;
help|--help|-h|*)
cmd_usage
;;
esac
exit 0
|