You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
174 lines
4.5 KiB
174 lines
4.5 KiB
#!/bin/bash
|
|
# Copyright (C) 2012-2017 VLC authors and VideoLAN
|
|
# Copyright (C) 2012-2014 Felix Paul Kühne <fkuehne at videolan dot org>
|
|
#
|
|
# This program is free software; you can redistribute it and/or modify it
|
|
# under the terms of the GNU Lesser General Public License as published by
|
|
# the Free Software Foundation; either version 2.1 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU Lesser General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU Lesser General Public License
|
|
# along with this program; if not, write to the Free Software Foundation,
|
|
# Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
|
|
|
|
set -e
|
|
# set -o xtrace
|
|
|
|
info()
|
|
{
|
|
green='\x1B[1;32m'
|
|
normal='\x1B[0m'
|
|
echo -e "[${green}codesign${normal}] $1"
|
|
}
|
|
|
|
usage()
|
|
{
|
|
cat << EOF
|
|
usage: $0 [options]
|
|
|
|
Sign VLC.app in the current directory
|
|
|
|
OPTIONS:
|
|
-h Show this help
|
|
-i Identity to use
|
|
-g Developer ID certificate mode (validates with Gatekeeper)
|
|
-r Enable runtime hardening
|
|
EOF
|
|
|
|
}
|
|
|
|
while getopts "hi:gr" OPTION
|
|
do
|
|
case $OPTION in
|
|
h)
|
|
usage
|
|
exit 1
|
|
;;
|
|
i)
|
|
IDENTITY=$OPTARG
|
|
;;
|
|
g)
|
|
GK="yes"
|
|
;;
|
|
r)
|
|
RUNTIME="yes"
|
|
;;
|
|
*)
|
|
usage
|
|
exit 1
|
|
;;
|
|
esac
|
|
done
|
|
shift $(($OPTIND - 1))
|
|
|
|
if [ "x$1" != "x" ]; then
|
|
usage
|
|
exit 1
|
|
fi
|
|
|
|
VLCCACHEGEN=""
|
|
if [ -e "./bin/vlc-cache-gen" ]; then
|
|
VLCCACHEGEN="./bin/vlc-cache-gen"
|
|
fi
|
|
if [ -e "./vlc-cache-gen" ]; then
|
|
VLCCACHEGEN="./vlc-cache-gen"
|
|
fi
|
|
|
|
$VLCCACHEGEN --help 1>/dev/null 2>&1 && returncode=$? || returncode=$?
|
|
if [ $returncode -ne 0 ]; then
|
|
info "WARN: Cannot execute vlc-cache-gen with path '$VLCCACHEGEN' (wrong arch?)"
|
|
VLCCACHEGEN=""
|
|
fi
|
|
|
|
if [ -z "$VLCCACHEGEN" ]; then
|
|
info "WARN: Cannot find vlc-cache-gen, cache will be removed for signing"
|
|
fi
|
|
|
|
SCRIPTDIR=$(dirname "$0")
|
|
if [ ! -z "$RUNTIME" ]; then
|
|
RUNTIME_FLAGS="--options runtime --entitlements $SCRIPTDIR/vlc-hardening.entitlements"
|
|
fi
|
|
|
|
# Call with $1 = file or folder
|
|
sign()
|
|
{
|
|
# info "Signing file $1 with identifier $IDENTIFIER"
|
|
|
|
codesign --force --verbose $RUNTIME_FLAGS -s "$IDENTITY" "$1"
|
|
}
|
|
|
|
|
|
info "Cleaning frameworks"
|
|
find VLC.app/Contents/Frameworks -type f -name ".DS_Store" -exec rm '{}' \;
|
|
find VLC.app/Contents/Frameworks -type f -name "*.textile" -exec rm '{}' \;
|
|
find VLC.app/Contents/Frameworks -type f -name "*.txt" -exec rm '{}' \;
|
|
|
|
info "Signing frameworks"
|
|
|
|
sign "VLC.app/Contents/Frameworks/Sparkle.framework/Versions/B/Autoupdate"
|
|
sign "VLC.app/Contents/Frameworks/Sparkle.framework/Versions/B/Updater.app"
|
|
sign "VLC.app/Contents/Frameworks/Sparkle.framework/"
|
|
|
|
if [ -e "VLC.app/Contents/Frameworks/Breakpad.framework" ]; then
|
|
sign "VLC.app/Contents/Frameworks/Breakpad.framework/Resources/breakpadUtilities.dylib"
|
|
sign "VLC.app/Contents/Frameworks/Breakpad.framework/Resources/Inspector"
|
|
sign "VLC.app/Contents/Frameworks/Breakpad.framework/Resources/crash_report_sender.app"
|
|
sign "VLC.app/Contents/Frameworks/Breakpad.framework/Versions/A"
|
|
fi
|
|
|
|
info "Signing the modules"
|
|
|
|
for i in $(find VLC.app/Contents/Frameworks/plugins -type f \( -name "*.dylib" -o -name "*.jar" \) -exec echo {} \;)
|
|
do
|
|
sign "$i"
|
|
done
|
|
|
|
if [ ! -z "$VLCCACHEGEN" ]; then
|
|
$VLCCACHEGEN VLC.app/Contents/Frameworks/plugins
|
|
sign "VLC.app/Contents/Frameworks/plugins/plugins.dat"
|
|
else
|
|
rm "VLC.app/Contents/Frameworks/plugins/plugins.dat" || true
|
|
fi
|
|
|
|
info "Signing the libraries"
|
|
|
|
for i in $(find VLC.app/Contents/Frameworks -type f -name "*.dylib" -d 1 -exec echo {} \;)
|
|
do
|
|
sign "$i"
|
|
done
|
|
|
|
for i in $(find VLC.app/Contents/Frameworks/lua -type f -exec echo {} \;)
|
|
do
|
|
sign "$i"
|
|
done
|
|
|
|
info "Signing the executable"
|
|
sign "VLC.app"
|
|
|
|
|
|
info "all items signed, validating..."
|
|
|
|
info "Validating frameworks"
|
|
if [ -e "VLC.app/Contents/Frameworks/Breakpad.framework" ]; then
|
|
codesign --verify -vv VLC.app/Contents/Frameworks/Breakpad.framework
|
|
fi
|
|
|
|
codesign --verify -vv VLC.app/Contents/Frameworks/Sparkle.framework
|
|
|
|
info "Validating autoupdate app"
|
|
codesign --verify -vv VLC.app/Contents/Frameworks/Sparkle.framework/Versions/Current/Updater.app
|
|
|
|
info "Validating complete bundle"
|
|
codesign --verify --deep --strict --verbose=4 VLC.app
|
|
|
|
if [ ! -z "$GK" ]; then
|
|
spctl -a -t exec -vv VLC.app
|
|
fi
|
|
|
|
|
|
info "Validation complete"
|
|
|