forked from stdlib-js/stdlib
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathchecksum
More file actions
executable file
·177 lines (150 loc) · 3.4 KB
/
checksum
File metadata and controls
executable file
·177 lines (150 loc) · 3.4 KB
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
#!/usr/bin/env bash
#
# @license Apache-2.0
#
# Copyright (c) 2017 The Stdlib Authors.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# Verify the checksum of one or more files.
#
# Usage: checksum <filepath> <hash> <filepath> <hash> ...
#
# Arguments:
#
# filepath File to verify.
# hash Expected checksum.
#
# shellcheck disable=SC2181
# VARIABLES #
# Checksum type:
checksum_type='sha256'
# Program used to compute a checksum:
checksum_program=
# Command to compute a checksum:
cmd=
# FUNCTIONS #
# Prints usage information.
usage() {
echo '' >&2
echo 'Usage: checksum <filepath> <hash> <filepath> <hash> ...' >&2
echo '' >&2
}
# Defines an error handler.
#
# $1 - error status
on_error() {
echo 'ERROR: An error was encountered during execution.' >&2
cleanup
exit "$1"
}
# Runs clean-up tasks.
cleanup() {
echo '' >&2
}
# Prints a success message.
print_success() {
echo 'Success.' >&2
}
# Prints a checksum.
#
# $1 - checksum
print_checksum() {
local num_lines
local width
local lines
local str
local len
local pos
width=64 # characters
len="${#1}"
if [[ "${len}" -gt "${width}" ]]; then
str="$1"
num_lines=$((len / width)) # floored
lines=$(seq 0 1 "${num_lines}") # total_lines = num_lines + 1
for i in ${lines}; do
pos=$((i * width))
echo " ${str:${pos}:${width}}"
done
else
echo " $1" >&2
fi
}
# Prints a checksum error.
#
# $1 - file
# $2 - checksum type
# $3 - checksum program
# $4 - expected checksum
# $5 - actual checksum
print_checksum_error() {
echo '' >&2
echo "ERROR: $2 checksum failure for $1. Expected:" >&2
echo '' >&2
print_checksum "$4"
echo '' >&2
echo "But \`$3\` results in:" >&2
echo '' >&2
print_checksum "$5"
echo '' >&2
echo "This may be due to bad downloads or network proxies. Check your network proxy/" >&2
echo "firewall settings and try downloading and verifying again." >&2
echo '' >&2
}
# Verifies a checksum.
#
# $1 - file
# $2 - expected checksum
verify() {
local curr_checksum
curr_checksum=$(eval "${cmd} $1 | awk '{ print \$1; }'")
if [[ "${curr_checksum}" != "$2" ]]; then
print_checksum_error "$1" "${checksum_type}" "${checksum_program}" "$2" "${curr_checksum}"
return 1
fi
return 0
}
# Main execution sequence.
main() {
local args
local len
args=("$@")
len="${#args[@]}"
for (( i=0; i<${len}; i+=2 )) ; do
verify "${args[i]}" "${args[i+1]}"
if [[ "$?" -ne 0 ]]; then
on_error 1
fi
done
print_success
cleanup
exit 0
}
# MAIN #
# Handle arguments...
if [[ "$#" -eq 0 ]]; then
usage
exit 0
elif [[ $(($#%2)) -eq 1 ]]; then
echo 'ERROR: invalid arguments. Each file to verify must be followed by an expected checksum.' >&2
exit 1
fi
# Find a program for computing a SHA256 checksum...
if [[ -n "$(command -v sha256sum)" ]]; then
checksum_program="sha256sum"
cmd='sha256sum'
elif [[ -n "$(command -v shasum)" ]]; then
checksum_program="shasum"
cmd='shasum -a 256'
fi
# Run main:
main "$@"