-
Notifications
You must be signed in to change notification settings - Fork 1
/
snapaid.sh
executable file
·495 lines (407 loc) · 11.2 KB
/
snapaid.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
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
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
#!/bin/sh -
#
# Copyright 2018 John-Mark Gurney.
# 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.
#
# $Id$
#
STOREDIR="$HOME/.snapaid"
KEYS="78B342BA26C7B2AC681EA7BE524F0C37A0B946A3"
KEY_URLS='https://svnweb.freebsd.org/doc/head/share/pgpkeys/gjb.key?view=co'
setdefaults() {
GPG=$(which gpg2)
WGET=$(which wget)
SHASUM=$(which shasum)
}
setdefaults
if [ ! -x "$GPG" ]; then
echo 'Failed to find gpg2 executable'
exit 1
fi
if [ ! -x "$WGET" ]; then
echo 'Failed to find wget executable'
exit 1
fi
if [ ! -x "$SHASUM" ]; then
echo 'Failed to find shasum executable'
exit 1
fi
#wget:
# -N for timestamps
# --backups=x for backing up
hostname=people.FreeBSD.org
hostname=www.funkthat.com
completeurl="https://${hostname}/~jmg/FreeBSD-snap/snapshot.complete.idx.xz"
currenturl="https://${hostname}/~jmg/FreeBSD-snap/snapshot.idx.xz"
# type release arch platform date svnrev xxx fname url mid
# 1 2 3 4 5 6 7 8 9 10
# iso 11.1-STABLE arm-armv6 BEAGLEBONE 20180315 r330998 xxx FreeBSD-11.1-STABLE-arm-armv6-BEAGLEBONE-20180315-r330998.img.xz https://download.freebsd.org/ftp/snapshots/ISO-IMAGES/11.1/FreeBSD-11.1-STABLE-arm-armv6-BEAGLEBONE-20180315-r330998.img.xz [email protected]
set -e
# This is used for some testing functions
copy_function() {
declare -F "$1" > /dev/null || return 1
local func="$(declare -f "$1")"
eval "${2}(${func#*\(}"
}
# Test function to cause a bad input
cmd_failure() {
exit 1
}
# First time fails, second time run real command
gpg_first_fails() {
copy_function verifygpg_orig verifygpg
return 1
}
# When first arg is --, just touch the file to fake a bad d/l
bad_file_dl() {
if [ x"$1" = x"--" ]; then
touch $(basename "$2")
else
$WGET_orig "$@"
fi
}
# Make sure that the storage directory is present
mkstore() {
mkdir "$STOREDIR" 2>/dev/null || :
if ! [ -x "$STOREDIR" -a -w "$STOREDIR" -a -d "$STOREDIR" ]; then
echo "$STOREDIR is not a writable directory."
fi
}
check_keys() {
for i in $KEYS; do
if ! $GPG --list-keys "$i" >/dev/null 2>&1; then
return 1
fi
done
return 0
}
# Given a message id, get the raw body and store it.
get_raw() {
mkstore
mid="$1"
midfile="$STOREDIR/$mid".raw
if [ ! -e "$midfile" ]; then
# get the location, it's a database lookup
loc=$($WGET --max-redirect=0 --method=HEAD -S -o - -O - 'https://docs.freebsd.org/cgi/mid.cgi?'"$mid" 2>/dev/null | awk 'tolower($1) == "location:" { print $2; exit }')
# Some emails are sent to both -current and -snapshot,
# we can't handle them for now
# such as [email protected]
if [ x"$loc" = x"" ]; then
return 1
fi
# if it's relative, add https
if [ x"$loc" != x"${loc#//}" ]; then
# add https
loc="https:$loc"
fi
# get the raw part
tmpfile="$STOREDIR/.tmp.$$.$mid".raw
# strip out everything but message id and first signed part
$WGET -O - "$loc"+raw 2>/dev/null | awk '
tolower($1) == "message-id:" && check == 0 {
print
}
$0 == "-----BEGIN PGP SIGNED MESSAGE-----" {
sigbody = 1
}
sigbody {
print
}
$0 == "-----END PGP SIGNATURE-----" {
sigbody = 0
}' > "$tmpfile"
if verifygpg "$tmpfile"; then
mv "$tmpfile" "$STOREDIR/$mid.raw"
else
rm "$tmpfile"
echo Bad signature from mail archive.
return 1
fi
else
if ! verifygpg "$midfile"; then
rm "$midfile"
get_raw "$mid"
return $?
fi
fi
}
fetch() {
mkstore
if ! (cd "$STOREDIR" && $WGET -N "$1" >/dev/null 2>&1); then
return 1
fi
}
getvermid() {
xzcat "$STOREDIR"/snapshot.complete.idx.xz | awk '$8 == fname {
print $10
}' fname="$i"
}
# takes basename of arg, which much exist in STOREDIR, and verifies
# that the signature is valid.
verifygpg() {
local fname
fname=$(basename "$1")
if ! (cd "$STOREDIR" && $GPG --verify "$fname" 2> /dev/null); then
echo 'ERROR: PGP signature verification failed!'
return 1
fi
}
# Verifies the file
verifyfile() {
local fname
local hashinfo
local algo hash
fname="$STOREDIR/${1}.raw"
hashinfo=$(awk '
check && $2 == "('"$2"')" {
hashes[$1] = $4
}
$0 == "-----BEGIN PGP SIGNED MESSAGE-----" {
check = 1
}
$0 == "-----BEGIN PGP SIGNATURE-----" {
check = 0
}
END {
if ("SHA512" in hashes)
algo = "SHA512"
else if ("SHA256" in hashes)
algo = "SHA256"
else {
print "unkn BADHASH"
exit 1
}
print algo " " hashes[algo]
}
' "$fname")
read algo hash <<-EOF
${hashinfo}
EOF
if [ x"$algo" == x"unkn" -o x"$algo" = x"" ]; then
echo 'Unable to find hash for file.'
exit 1
fi
echo "$hash $2" | $SHASUM -a "${algo#SHA}" -c -
}
dlverify() {
fname="$8"
dlurl="$9"
vermid="${10}"
# verify snap email
if ! get_raw "$vermid"; then
echo "Unable to fetch/verify snapshot email for: $fname"
return 1
fi
if ! [ -f $(basename "$dlurl") ]; then
# fetch link
$WGET -- "$dlurl"
else
echo 'Image already exists, verifying...'
fi
if ! verifyfile "$vermid" "$fname"; then
echo 'Removing bad file.'
rm "$fname"
return 1
fi
}
if ! check_keys; then
echo 'Necessary keys have not been imported into key ring.'
echo "Please obtain they following keyid(s):"
echo $KEYS
echo ""
echo "The keys may be obtained from the following URLs:"
for i in $KEY_URLS; do
echo "$i"
done
echo ""
echo "and imported into GPG w/ the --import option. This can be"
echo "done via the command:"
echo "fetch -o - $KEY_URLS | gpg --import -"
echo ""
echo "For extra security, additional verification should be done, such"
echo "as manually verifying finger prints."
exit 3
fi
if [ x"$1" = x"verify" ]; then
shift
if ! fetch "$completeurl"; then
echo Failed to fetch the complete index.
exit 1
fi
for i in "$@"; do
vermid=$(getvermid "$i")
if [ x"$vermid" = x"" ]; then
echo "Unable to find entry for: $i"
continue
fi
if ! get_raw "$vermid"; then
echo "Unable to fetch snapshot email for: $i"
continue
fi
verifyfile "$vermid" "$i"
done
elif [ x"$1" = x"find" ]; then
fetch "$currenturl"
tmpdir=$(mktemp -d -t snapaid)
trap "rm -r $tmpdir" 0
( cd "$tmpdir";
xzcat "$STOREDIR"/snapshot.idx.xz | sort -r -k 5 > selection;
while :; do
# display current list
cnt=$(wc -l < selection)
awk '
BEGIN {
fmtstr = "%2s %-3s %-15s %-18s %-18s %-8s %-7s\n"
printf(fmtstr, "#", "TYP", "RELEASE", "ARCH", "PLATFORM/TYPE", "DATE", "SVNREV")
cnt = 1
}
{
if ($4 == "xxx")
plt=$7
else
plt=$4
printf(fmtstr, cnt, $1, $2, $3, plt, $5, $6)
if (cnt >= 20)
exit 0
cnt += 1
}
' selection
read -p 'Select image #, enter search term, reset, or quit: ' sel
if [ x"$sel" = x"reset" ]; then
xzcat "$STOREDIR"/snapshot.idx.xz | sort -r -k 5 > selection;
continue
elif [ x"$sel" = x"quit" ]; then
echo "$sel" > sel
break
fi
if [ "$cnt" -gt 20 ]; then
cnt=20
fi
if [ "$sel" -ge 1 -a "$sel" -le "$cnt" ] 2>/dev/null; then
echo $(tail -n +"$sel" selection | head -n 1) > sel
break
else
# restrict
if ! grep -- "$sel" selection > selection.new; then
echo WARNING: Ignoring selection, no results.
else
mv selection.new selection
fi
fi
done
)
sel=$(cat "$tmpdir"/sel)
if [ x"$sel" = x"quit" ]; then
exit 0
fi
set -- ${sel}
echo selected image "$8"
dlverify ${sel}
elif [ x"$1" = x"test" ]; then
# Setup test environment
tmpdir=$(mktemp -d -t snapaid)
trap "rm -r $tmpdir" 0
cd "$tmpdir"
STOREDIR="$tmpdir"/snapaid
# Make sure that the check keys function works.
echo 'Testing check_keys works...'
# Prime the custom keyring
GPG="gpg2 --no-default-keyring --keyring pubring.gpg"
for i in $KEY_URLS; do
$WGET -O - -- "$i" 2>/dev/null | $GPG --import 2>/dev/null
done
if ! check_keys; then
echo failed
exit 1
fi
KEYS_orig="$KEYS"
KEYS="0x1384923867573928" # bogus key
if check_keys; then
echo failed
exit 1
fi
echo passed
# Test a bad download fails
echo 'Testing dlverify...'
WGET_orig="$WGET"
WGET=bad_file_dl
# if dlverify is successsful, then it's a failure
if dlverify iso 13.0-CURRENT sparc64 xxx 20181026 r339752 bootonly FreeBSD-13.0-CURRENT-sparc64-20181026-r339752-bootonly.iso.xz https://download.freebsd.org/ftp/snapshots/ISO-IMAGES/13.0/FreeBSD-13.0-CURRENT-sparc64-20181026-r339752-bootonly.iso.xz [email protected]; then
echo 'failed'
exit 1
fi
# Make sure that a bad d/l was not left behind
if [ -e FreeBSD-13.0-CURRENT-sparc64-20181026-r339752-bootonly.iso.xz ]; then
echo failed
exit 1
fi
echo passed
# Test getting the raw file
echo 'Testing get_raw success...'
mid='[email protected]'
get_raw "$mid"
# Verify resulsts
(cd "$STOREDIR" && echo '6e53df5995b6cc423c7f2d63b6df52d5d7f70e8586c25f91433fd8a1a2466e77be6a38884bde8bedd9ff6e7deb0215a66e1c2a16e4955503c20445e649a5fb47 [email protected]' | $SHASUM -a 512 -c)
echo passed
# If the file already exists, but fails verification, that
# it will refetch and be correct
echo 'Testing get_raw with file already present that fails verification...'
copy_function verifygpg verifygpg_orig
copy_function gpg_first_fails verifygpg
get_raw "$mid"
(cd "$STOREDIR" && echo '6e53df5995b6cc423c7f2d63b6df52d5d7f70e8586c25f91433fd8a1a2466e77be6a38884bde8bedd9ff6e7deb0215a66e1c2a16e4955503c20445e649a5fb47 [email protected]' | $SHASUM -a 512 -c)
echo passed
# If the file already exists, a "broken" wget won't cause
# a problem
echo 'Testing get_raw with file already present...'
WGET=cmd_failure
get_raw "$mid"
echo passed
# Test failure
echo 'Testing get_raw fails w/ bad data...'
WGET=cmd_failure
rm "$STOREDIR/$mid.raw"
# it should fail
! get_raw "$mid"
# and the desired file should not exist
if [ -e "$STOREDIR/$mid.raw" ]; then
echo 'Test failed!'
exit 1;
fi
echo passed
setdefaults
echo tests completed!!!
else
if [ $# -gt 0 ]; then
echo "Unknown verb: $1"
fi
echo "Usage:"
echo " $0 verify file ..."
echo " $0 find"
echo ""
echo "The verify option will attempt to verify each file specified."
echo ""
echo "The find option will start up an interactive session to find"
echo "and select the snapshot to download and verify."
fi