mirror of
https://github.com/lxc/lxc-templates.git
synced 2024-12-22 06:20:13 +00:00
Merge pull request #68 from kunkku/fix-apk-static
lxc-alpine: Improve integrity checking of static package manager
This commit is contained in:
commit
da14466ce0
@ -203,6 +203,10 @@ fetch_apk_keys() {
|
|||||||
cd - >/dev/null
|
cd - >/dev/null
|
||||||
}
|
}
|
||||||
|
|
||||||
|
find_keyfile() {
|
||||||
|
ls -1 "$1".alpine-*.pub 2>/dev/null | head -n 1
|
||||||
|
}
|
||||||
|
|
||||||
fetch_apk_static() {
|
fetch_apk_static() {
|
||||||
local dest="$1"
|
local dest="$1"
|
||||||
local arch="$2"
|
local arch="$2"
|
||||||
@ -219,17 +223,27 @@ fetch_apk_static() {
|
|||||||
fetch "$MIRROR_URL/latest-stable/main/$arch/${pkg_name}-${pkg_ver}.apk" \
|
fetch "$MIRROR_URL/latest-stable/main/$arch/${pkg_name}-${pkg_ver}.apk" \
|
||||||
| tar -xz -C "$dest" sbin/ # --extract --gzip --directory
|
| tar -xz -C "$dest" sbin/ # --extract --gzip --directory
|
||||||
|
|
||||||
[ -s "$dest/sbin/apk.static" ] || die 2 'apk.static not found'
|
local apk=$dest/sbin/apk.static
|
||||||
|
[ -s "$apk" ] || die 2 'apk.static not found'
|
||||||
|
|
||||||
local keyname=$(echo "$dest"/sbin/apk.static.*.pub | sed 's/.*\.SIGN\.RSA\.//')
|
local sigprefix=$apk.SIGN.RSA.sha256
|
||||||
openssl dgst -sha1 \
|
local algorithm=sha256
|
||||||
-verify "$APK_KEYS_DIR/$keyname" \
|
if ! [ -s "$(find_keyfile "$sigprefix")" ]; then
|
||||||
-signature "$dest/sbin/apk.static.SIGN.RSA.$keyname" \
|
sigprefix=${sigprefix%.*}
|
||||||
"$dest/sbin/apk.static" \
|
algorithm=sha1
|
||||||
|| die 2 'Signature verification for apk.static failed'
|
fi
|
||||||
|
local keyfile=$(find_keyfile "$sigprefix")
|
||||||
|
if ! openssl dgst -$algorithm \
|
||||||
|
-verify "$APK_KEYS_DIR/${keyfile#$sigprefix.}" \
|
||||||
|
-signature "$keyfile" \
|
||||||
|
"$apk"; then
|
||||||
|
|
||||||
|
rm -f "$apk"
|
||||||
|
die 2 'Signature verification for apk.static failed'
|
||||||
|
fi
|
||||||
|
|
||||||
# Note: apk doesn't return 0 for --version
|
# Note: apk doesn't return 0 for --version
|
||||||
local out="$("$dest"/sbin/apk.static --version)"
|
local out=$("$apk" --version)
|
||||||
echo "$out"
|
echo "$out"
|
||||||
|
|
||||||
[ "${out%% *}" = 'apk-tools' ] || die 3 'apk.static --version failed'
|
[ "${out%% *}" = 'apk-tools' ] || die 3 'apk.static --version failed'
|
||||||
|
Loading…
Reference in New Issue
Block a user