|
|
@ -1,4 +1,6 @@ |
|
|
|
#!/bin/sh |
|
|
|
#!/bin/sh |
|
|
|
|
|
|
|
# Not technically POSIX-compliant due to use of "local", but almost every |
|
|
|
|
|
|
|
# shell anyone uses today supports it, so its probably fine |
|
|
|
|
|
|
|
|
|
|
|
DIR=$(dirname "$0") |
|
|
|
DIR=$(dirname "$0") |
|
|
|
|
|
|
|
|
|
|
@ -6,20 +8,14 @@ echo "Please verify all commits in the following list are not evil:" |
|
|
|
git log "$DIR" |
|
|
|
git log "$DIR" |
|
|
|
|
|
|
|
|
|
|
|
VERIFIED_ROOT=$(cat "${DIR}/trusted-git-root") |
|
|
|
VERIFIED_ROOT=$(cat "${DIR}/trusted-git-root") |
|
|
|
|
|
|
|
REVSIG_ALLOWED=$(cat "${DIR}/allow-revsig-commits") |
|
|
|
IS_REVSIG_ALLOWED () { |
|
|
|
|
|
|
|
while read LINE; do |
|
|
|
|
|
|
|
[ "$LINE" = "$1" ] && return 0 |
|
|
|
|
|
|
|
done < "${DIR}/allow-revsig-commits" |
|
|
|
|
|
|
|
return 1 |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
HAVE_FAILED=false |
|
|
|
HAVE_FAILED=false |
|
|
|
IS_SIGNED () { |
|
|
|
IS_SIGNED () { |
|
|
|
if [ $1 = $VERIFIED_ROOT ]; then |
|
|
|
if [ $1 = $VERIFIED_ROOT ]; then |
|
|
|
return 0; |
|
|
|
return 0; |
|
|
|
fi |
|
|
|
fi |
|
|
|
if IS_REVSIG_ALLOWED "$1"; then |
|
|
|
if [ "${REVSIG_ALLOWED#*$1}" != "$REVSIG_ALLOWED" ]; then |
|
|
|
export BITCOIN_VERIFY_COMMITS_ALLOW_REVSIG=1 |
|
|
|
export BITCOIN_VERIFY_COMMITS_ALLOW_REVSIG=1 |
|
|
|
else |
|
|
|
else |
|
|
|
export BITCOIN_VERIFY_COMMITS_ALLOW_REVSIG=0 |
|
|
|
export BITCOIN_VERIFY_COMMITS_ALLOW_REVSIG=0 |
|
|
@ -27,7 +23,8 @@ IS_SIGNED () { |
|
|
|
if ! git -c "gpg.program=${DIR}/gpg.sh" verify-commit $1 > /dev/null 2>&1; then |
|
|
|
if ! git -c "gpg.program=${DIR}/gpg.sh" verify-commit $1 > /dev/null 2>&1; then |
|
|
|
return 1; |
|
|
|
return 1; |
|
|
|
fi |
|
|
|
fi |
|
|
|
local PARENTS=$(git show -s --format=format:%P $1) |
|
|
|
local PARENTS |
|
|
|
|
|
|
|
PARENTS=$(git show -s --format=format:%P $1) |
|
|
|
for PARENT in $PARENTS; do |
|
|
|
for PARENT in $PARENTS; do |
|
|
|
if IS_SIGNED $PARENT > /dev/null; then |
|
|
|
if IS_SIGNED $PARENT > /dev/null; then |
|
|
|
return 0; |
|
|
|
return 0; |
|
|
|