2014-10-27 08:07:25 +01:00
|
|
|
#!/bin/sh
|
2016-09-11 21:36:22 +02:00
|
|
|
# Copyright (c) 2014-2016 The Bitcoin Core developers
|
|
|
|
# Distributed under the MIT software license, see the accompanying
|
|
|
|
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
2016-05-21 03:29:15 +02:00
|
|
|
INPUT=$(cat /dev/stdin)
|
2014-10-27 08:07:25 +01:00
|
|
|
VALID=false
|
2015-10-23 11:05:42 +02:00
|
|
|
REVSIG=false
|
2016-05-21 03:29:15 +02:00
|
|
|
IFS='
|
|
|
|
'
|
2017-02-27 20:13:39 +01:00
|
|
|
if [ "$BITCOIN_VERIFY_COMMITS_ALLOW_SHA1" = 1 ]; then
|
|
|
|
GPG_RES="$(echo "$INPUT" | gpg --trust-model always "$@" 2>/dev/null)"
|
|
|
|
else
|
2017-03-01 16:58:14 +01:00
|
|
|
# Note how we've disabled SHA1 with the --weak-digest option, disabling
|
|
|
|
# signatures - including selfsigs - that use SHA1. While you might think that
|
|
|
|
# collision attacks shouldn't be an issue as they'd be an attack on yourself,
|
|
|
|
# in fact because what's being signed is a commit object that's
|
|
|
|
# semi-deterministically generated by untrusted input (the pull-req) in theory
|
|
|
|
# an attacker could construct a pull-req that results in a commit object that
|
|
|
|
# they've created a collision for. Not the most likely attack, but preventing
|
|
|
|
# it is pretty easy so we do so as a "belt-and-suspenders" measure.
|
2017-03-06 22:13:40 +01:00
|
|
|
GPG_RES=""
|
|
|
|
for LINE in "$(gpg --version)"; do
|
|
|
|
case "$LINE" in
|
|
|
|
"gpg (GnuPG) 1.4.1"*|"gpg (GnuPG) 2.0."*)
|
|
|
|
echo "Please upgrade to at least gpg 2.1.10 to check for weak signatures" > /dev/stderr
|
|
|
|
GPG_RES="$(echo "$INPUT" | gpg --trust-model always "$@" 2>/dev/null)"
|
|
|
|
;;
|
|
|
|
# We assume if you're running 2.1+, you're probably running 2.1.10+
|
|
|
|
# gpg will fail otherwise
|
|
|
|
# We assume if you're running 1.X, it is either 1.4.1X or 1.4.20+
|
|
|
|
# gpg will fail otherwise
|
|
|
|
esac
|
|
|
|
done
|
|
|
|
[ "$GPG_RES" = "" ] && GPG_RES="$(echo "$INPUT" | gpg --trust-model always --weak-digest sha1 "$@" 2>/dev/null)"
|
2017-02-27 20:13:39 +01:00
|
|
|
fi
|
|
|
|
for LINE in $(echo "$GPG_RES"); do
|
2015-10-23 11:05:42 +02:00
|
|
|
case "$LINE" in
|
|
|
|
"[GNUPG:] VALIDSIG "*)
|
2014-10-27 08:07:25 +01:00
|
|
|
while read KEY; do
|
2017-03-04 01:02:23 +01:00
|
|
|
[ "${LINE#?GNUPG:? VALIDSIG * * * * * * * * * }" = "$KEY" ] && VALID=true
|
2014-10-27 08:07:25 +01:00
|
|
|
done < ./contrib/verify-commits/trusted-keys
|
2015-10-23 11:05:42 +02:00
|
|
|
;;
|
|
|
|
"[GNUPG:] REVKEYSIG "*)
|
|
|
|
[ "$BITCOIN_VERIFY_COMMITS_ALLOW_REVSIG" != 1 ] && exit 1
|
2017-03-05 17:19:17 +01:00
|
|
|
REVSIG=true
|
|
|
|
GOODREVSIG="[GNUPG:] GOODSIG ${LINE#* * *}"
|
2015-10-23 11:05:42 +02:00
|
|
|
;;
|
2014-10-27 08:07:25 +01:00
|
|
|
esac
|
|
|
|
done
|
|
|
|
if ! $VALID; then
|
|
|
|
exit 1
|
|
|
|
fi
|
2015-10-23 11:05:42 +02:00
|
|
|
if $VALID && $REVSIG; then
|
2017-03-06 22:13:40 +01:00
|
|
|
echo "$INPUT" | gpg --trust-model always "$@" 2>/dev/null | grep "\[GNUPG:\] \(NEWSIG\|SIG_ID\|VALIDSIG\)"
|
2015-10-23 11:05:42 +02:00
|
|
|
echo "$GOODREVSIG"
|
|
|
|
else
|
|
|
|
echo "$INPUT" | gpg --trust-model always "$@" 2>/dev/null
|
|
|
|
fi
|