2015-03-31 21:22:42 +02:00
|
|
|
#!/bin/bash
|
2015-04-04 14:07:00 +02:00
|
|
|
#
|
|
|
|
# .---. . .
|
|
|
|
# | | |
|
|
|
|
# |--- .--. .-. .-. .-.| .-. .--.--. |.-. .-. .--. .-.
|
|
|
|
# | | (.-' (.-' ( | ( )| | | | )( )| | (.-'
|
|
|
|
# ' ' --' --' -' - -' ' ' -' -' -' ' - --'
|
|
|
|
#
|
|
|
|
# Freedom in the Cloud
|
|
|
|
#
|
2016-01-27 10:54:02 +01:00
|
|
|
# Create self-signed or Let's Encrypt certificates on Debian
|
2015-03-31 21:22:42 +02:00
|
|
|
|
|
|
|
# License
|
|
|
|
# =======
|
|
|
|
#
|
2016-10-31 17:24:49 +01:00
|
|
|
# Copyright (C) 2015-2016 Bob Mottram <bob@freedombone.net>
|
2015-03-31 21:22:42 +02:00
|
|
|
#
|
|
|
|
# This program is free software: you can redistribute it and/or modify
|
2016-02-13 23:09:27 +01:00
|
|
|
# it under the terms of the GNU Affero General Public License as published by
|
2015-03-31 21:22:42 +02:00
|
|
|
# the Free Software Foundation, either version 3 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
|
2016-02-13 23:09:27 +01:00
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU Affero General Public License for more details.
|
2015-03-31 21:22:42 +02:00
|
|
|
#
|
2016-02-13 23:09:27 +01:00
|
|
|
# You should have received a copy of the GNU Affero General Public License
|
|
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2015-03-31 21:22:42 +02:00
|
|
|
|
2015-11-27 12:42:16 +01:00
|
|
|
PROJECT_NAME='freedombone'
|
|
|
|
|
2015-11-27 17:52:23 +01:00
|
|
|
export TEXTDOMAIN=${PROJECT_NAME}-addcert
|
2015-11-27 12:42:16 +01:00
|
|
|
export TEXTDOMAINDIR="/usr/share/locale"
|
|
|
|
|
2016-01-26 18:10:22 +01:00
|
|
|
CONFIGURATION_FILE=$HOME/${PROJECT_NAME}.cfg
|
2016-01-08 12:18:52 +01:00
|
|
|
COMPLETION_FILE=$HOME/${PROJECT_NAME}-completed.txt
|
|
|
|
|
2016-10-10 11:28:37 +02:00
|
|
|
UTILS_FILES=/usr/share/${PROJECT_NAME}/utils/${PROJECT_NAME}-utils-*
|
|
|
|
for f in $UTILS_FILES
|
|
|
|
do
|
|
|
|
source $f
|
|
|
|
done
|
2016-06-30 15:59:43 +02:00
|
|
|
|
2016-08-10 11:27:14 +02:00
|
|
|
# Don't pin certs by default
|
|
|
|
PIN_CERTS=
|
|
|
|
|
2015-03-31 21:22:42 +02:00
|
|
|
HOSTNAME=
|
2015-11-17 23:21:40 +01:00
|
|
|
LETSENCRYPT_HOSTNAME=
|
2015-03-31 21:22:42 +02:00
|
|
|
COUNTRY_CODE="US"
|
|
|
|
AREA="Free Speech Zone"
|
|
|
|
LOCATION="Freedomville"
|
|
|
|
ORGANISATION="Freedombone"
|
|
|
|
UNIT="Freedombone Unit"
|
2015-06-14 16:56:46 +02:00
|
|
|
EXTENSIONS=""
|
2015-06-17 21:03:20 +02:00
|
|
|
NODH=
|
2015-10-27 15:38:05 +01:00
|
|
|
DH_KEYLENGTH=2048
|
2015-11-17 23:21:40 +01:00
|
|
|
INSTALL_DIR=/root/build
|
|
|
|
LETSENCRYPT_SERVER='https://acme-v01.api.letsencrypt.org/directory'
|
2016-01-08 12:18:52 +01:00
|
|
|
MY_EMAIL_ADDRESS=
|
2016-02-01 11:05:29 +01:00
|
|
|
FRIENDS_MIRRORS_SERVER=
|
|
|
|
FRIENDS_MIRRORS_PASSWORD=
|
|
|
|
FRIENDS_MIRRORS_SSH_PORT=
|
|
|
|
MY_MIRRORS_PASSWORD=
|
2016-01-26 18:10:22 +01:00
|
|
|
|
2015-03-31 21:22:42 +02:00
|
|
|
function show_help {
|
2016-07-24 14:19:56 +02:00
|
|
|
echo ''
|
|
|
|
echo $"${PROJECT_NAME}-addcert -h [hostname] -c [country code] -a [area] -l [location]"
|
|
|
|
echo $' -o [organisation] -u [unit] --ca "" --nodh ""'
|
|
|
|
echo ''
|
|
|
|
echo $'Creates a self-signed certificate for the given hostname'
|
|
|
|
echo ''
|
|
|
|
echo $' --help Show help'
|
|
|
|
echo $' -h --hostname [name] Hostname'
|
|
|
|
echo $' -e --letsencrypt [hostname] Hostname to use with Lets Encrypt'
|
|
|
|
echo $' -s --server [url] Lets Encrypt server URL'
|
|
|
|
echo $' -c --country [code] Optional country code (eg. US, GB, etc)'
|
|
|
|
echo $' -a --area [description] Optional area description'
|
|
|
|
echo $' -l --location [locn] Optional location name'
|
|
|
|
echo $' -o --organisation [name] Optional organisation name'
|
|
|
|
echo $' -u --unit [name] Optional unit name'
|
|
|
|
echo $' --email [address] Email address for letsencrypt'
|
|
|
|
echo $' --dhkey [bits] DH key length in bits'
|
|
|
|
echo $' --nodh "" Do not calculate DH params'
|
|
|
|
echo $' --ca "" Certificate authority cert'
|
|
|
|
echo ''
|
|
|
|
exit 0
|
2015-03-31 21:22:42 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
while [[ $# > 1 ]]
|
|
|
|
do
|
2016-07-24 14:19:56 +02:00
|
|
|
key="$1"
|
2015-03-31 21:22:42 +02:00
|
|
|
|
2016-07-24 14:19:56 +02:00
|
|
|
case $key in
|
2016-08-10 11:27:14 +02:00
|
|
|
--help)
|
|
|
|
show_help
|
|
|
|
;;
|
|
|
|
-h|--hostname)
|
|
|
|
shift
|
|
|
|
HOSTNAME="$1"
|
|
|
|
;;
|
|
|
|
-e|--letsencrypt)
|
|
|
|
shift
|
|
|
|
LETSENCRYPT_HOSTNAME="$1"
|
|
|
|
;;
|
|
|
|
--email)
|
|
|
|
shift
|
|
|
|
MY_EMAIL_ADDRESS="$1"
|
|
|
|
;;
|
|
|
|
-s|--server)
|
|
|
|
shift
|
|
|
|
LETSENCRYPT_SERVER="$1"
|
|
|
|
;;
|
|
|
|
-c|--country)
|
|
|
|
shift
|
|
|
|
COUNTRY_CODE="$1"
|
|
|
|
;;
|
|
|
|
-a|--area)
|
|
|
|
shift
|
|
|
|
AREA="$1"
|
|
|
|
;;
|
|
|
|
-l|--location)
|
|
|
|
shift
|
|
|
|
LOCATION="$1"
|
|
|
|
;;
|
|
|
|
-o|--organisation)
|
|
|
|
shift
|
|
|
|
ORGANISATION="$1"
|
|
|
|
;;
|
|
|
|
-u|--unit)
|
|
|
|
shift
|
|
|
|
UNIT="$1"
|
|
|
|
;;
|
|
|
|
--ca)
|
|
|
|
shift
|
|
|
|
EXTENSIONS="-extensions v3_ca"
|
|
|
|
ORGANISATION="Freedombone-CA"
|
|
|
|
;;
|
|
|
|
--nodh)
|
|
|
|
shift
|
|
|
|
NODH="true"
|
|
|
|
;;
|
|
|
|
--dhkey)
|
|
|
|
shift
|
|
|
|
DH_KEYLENGTH=${1}
|
|
|
|
;;
|
|
|
|
--pin)
|
|
|
|
shift
|
|
|
|
PIN_CERTS=${1}
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
# unknown option
|
|
|
|
;;
|
2016-07-24 14:19:56 +02:00
|
|
|
esac
|
|
|
|
shift
|
2015-03-31 21:22:42 +02:00
|
|
|
done
|
|
|
|
|
|
|
|
if [ ! $HOSTNAME ]; then
|
2016-07-24 14:19:56 +02:00
|
|
|
if [ ! $LETSENCRYPT_HOSTNAME ]; then
|
2016-08-10 11:27:14 +02:00
|
|
|
echo $'No hostname specified'
|
|
|
|
exit 5748
|
2016-07-24 14:19:56 +02:00
|
|
|
fi
|
2015-03-31 21:22:42 +02:00
|
|
|
fi
|
|
|
|
|
|
|
|
if ! which openssl > /dev/null ;then
|
2016-07-24 14:19:56 +02:00
|
|
|
echo $"$0: openssl is not installed, exiting" 1>&2
|
|
|
|
exit 5689
|
2015-03-31 21:22:42 +02:00
|
|
|
fi
|
|
|
|
|
2015-11-17 23:21:40 +01:00
|
|
|
if [ ! -d /etc/ssl/mycerts ]; then
|
2016-07-24 14:19:56 +02:00
|
|
|
mkdir /etc/ssl/mycerts
|
2015-06-19 23:08:28 +02:00
|
|
|
fi
|
|
|
|
|
2015-12-12 11:55:16 +01:00
|
|
|
CERTFILE=$HOSTNAME
|
|
|
|
|
|
|
|
function add_cert_letsencrypt {
|
2016-07-24 14:19:56 +02:00
|
|
|
CERTFILE=$LETSENCRYPT_HOSTNAME
|
|
|
|
|
|
|
|
# obtain the email address for the admin user
|
|
|
|
if [ ! $MY_EMAIL_ADDRESS ]; then
|
2016-08-10 11:27:14 +02:00
|
|
|
if [ -f $CONFIGURATION_FILE ]; then
|
2016-10-13 12:31:28 +02:00
|
|
|
read_config_param MY_EMAIL_ADDRESS
|
2016-08-08 11:29:52 +02:00
|
|
|
fi
|
|
|
|
fi
|
2016-07-24 14:19:56 +02:00
|
|
|
if [ ! $MY_EMAIL_ADDRESS ]; then
|
2016-08-10 11:27:14 +02:00
|
|
|
if [ -f $COMPLETION_FILE ]; then
|
|
|
|
if grep -q "Admin user:" $COMPLETION_FILE; then
|
2016-10-16 20:50:56 +02:00
|
|
|
function_check get_completion_param
|
|
|
|
ADMIN_USER=$(get_completion_param "Admin user")
|
|
|
|
if [ ${#ADMIN_USER} -eq 0 ]; then
|
|
|
|
exit 463732
|
|
|
|
fi
|
2016-08-10 11:27:14 +02:00
|
|
|
MY_EMAIL_ADDRESS=$ADMIN_USER@$HOSTNAME
|
|
|
|
fi
|
2016-08-08 11:29:52 +02:00
|
|
|
fi
|
|
|
|
fi
|
2016-06-30 15:59:43 +02:00
|
|
|
|
2016-10-20 20:05:27 +02:00
|
|
|
if [ ! -f /usr/bin/certbot ]; then
|
2016-10-23 20:38:14 +02:00
|
|
|
apt-get -yq install certbot -t jessie-backports
|
2016-10-20 20:05:27 +02:00
|
|
|
if [ ! -f /usr/bin/certbot ]; then
|
|
|
|
echo $'LetsEncrypt certbot failed to install'
|
|
|
|
exit 762830
|
2016-08-10 11:27:14 +02:00
|
|
|
fi
|
2016-07-24 14:19:56 +02:00
|
|
|
fi
|
2016-06-30 15:59:43 +02:00
|
|
|
|
2016-07-24 14:19:56 +02:00
|
|
|
# stop the web server
|
|
|
|
systemctl stop nginx
|
2016-06-30 15:59:43 +02:00
|
|
|
|
2016-10-20 22:45:02 +02:00
|
|
|
certbot certonly -n --server $LETSENCRYPT_SERVER --standalone -d $LETSENCRYPT_HOSTNAME --renew-by-default --agree-tos --email $MY_EMAIL_ADDRESS
|
2016-07-24 14:19:56 +02:00
|
|
|
if [ ! "$?" = "0" ]; then
|
2016-08-10 11:27:14 +02:00
|
|
|
echo $"Failed to install letsencrypt for domain $LETSENCRYPT_HOSTNAME"
|
|
|
|
systemctl start nginx
|
|
|
|
exit 63216
|
2016-07-24 14:19:56 +02:00
|
|
|
fi
|
|
|
|
|
|
|
|
# replace some legacy filenames
|
|
|
|
if [ -f /etc/ssl/certs/${LETSENCRYPT_HOSTNAME}.bundle.crt ]; then
|
2016-08-10 11:27:14 +02:00
|
|
|
mv /etc/ssl/certs/${LETSENCRYPT_HOSTNAME}.bundle.crt /etc/ssl/certs/${LETSENCRYPT_HOSTNAME}.pem
|
2016-07-24 14:19:56 +02:00
|
|
|
fi
|
|
|
|
if [ -f /etc/ssl/certs/${LETSENCRYPT_HOSTNAME}.crt ]; then
|
2016-08-10 11:27:14 +02:00
|
|
|
mv /etc/ssl/certs/${LETSENCRYPT_HOSTNAME}.crt /etc/ssl/certs/${LETSENCRYPT_HOSTNAME}.pem
|
2016-07-24 14:19:56 +02:00
|
|
|
fi
|
|
|
|
sed -i "s|ssl_certificate /etc/ssl/certs/${LETSENCRYPT_HOSTNAME}.bundle.crt|ssl_certificate /etc/ssl/certs/${LETSENCRYPT_HOSTNAME}.pem|g" /etc/nginx/sites-available/$LETSENCRYPT_HOSTNAME
|
|
|
|
sed -i "s|ssl_certificate /etc/ssl/certs/${LETSENCRYPT_HOSTNAME}.crt|ssl_certificate /etc/ssl/certs/${LETSENCRYPT_HOSTNAME}.pem|g" /etc/nginx/sites-available/$LETSENCRYPT_HOSTNAME
|
|
|
|
|
|
|
|
# link the private key
|
|
|
|
if [ -f /etc/ssl/private/${LETSENCRYPT_HOSTNAME}.key ]; then
|
2016-08-10 11:27:14 +02:00
|
|
|
if [ ! -f /etc/ssl/private/${LETSENCRYPT_HOSTNAME}.key.old ]; then
|
|
|
|
mv /etc/ssl/private/${LETSENCRYPT_HOSTNAME}.key /etc/ssl/private/${LETSENCRYPT_HOSTNAME}.key.old
|
|
|
|
else
|
|
|
|
rm -f /etc/ssl/private/${LETSENCRYPT_HOSTNAME}.key
|
|
|
|
fi
|
2016-07-24 14:19:56 +02:00
|
|
|
fi
|
2017-02-20 18:57:41 +01:00
|
|
|
if [ -L /etc/ssl/private/${LETSENCRYPT_HOSTNAME}.key ]; then
|
|
|
|
rm /etc/ssl/private/${LETSENCRYPT_HOSTNAME}.key
|
|
|
|
fi
|
2016-07-24 14:19:56 +02:00
|
|
|
ln -s /etc/letsencrypt/live/${LETSENCRYPT_HOSTNAME}/privkey.pem /etc/ssl/private/${LETSENCRYPT_HOSTNAME}.key
|
2016-06-30 15:59:43 +02:00
|
|
|
|
2016-07-24 14:19:56 +02:00
|
|
|
# link the public key
|
|
|
|
if [ -f /etc/ssl/certs/${LETSENCRYPT_HOSTNAME}.pem ]; then
|
2016-08-10 11:27:14 +02:00
|
|
|
if [ ! -f /etc/ssl/certs/${LETSENCRYPT_HOSTNAME}.pem.old ]; then
|
|
|
|
mv /etc/ssl/certs/${LETSENCRYPT_HOSTNAME}.pem /etc/ssl/certs/${LETSENCRYPT_HOSTNAME}.pem.old
|
|
|
|
else
|
|
|
|
rm -f /etc/ssl/certs/${LETSENCRYPT_HOSTNAME}.pem
|
|
|
|
fi
|
2016-07-24 14:19:56 +02:00
|
|
|
fi
|
2017-02-20 18:57:41 +01:00
|
|
|
if [ -L /etc/ssl/certs/${LETSENCRYPT_HOSTNAME}.pem ]; then
|
|
|
|
rm /etc/ssl/certs/${LETSENCRYPT_HOSTNAME}.pem
|
|
|
|
fi
|
2016-07-24 14:19:56 +02:00
|
|
|
ln -s /etc/letsencrypt/live/${LETSENCRYPT_HOSTNAME}/fullchain.pem /etc/ssl/certs/${LETSENCRYPT_HOSTNAME}.pem
|
2016-06-30 15:59:43 +02:00
|
|
|
|
2016-07-24 14:19:56 +02:00
|
|
|
cp /etc/letsencrypt/live/${LETSENCRYPT_HOSTNAME}/fullchain.pem /etc/ssl/mycerts/${LETSENCRYPT_HOSTNAME}.pem
|
2016-06-30 15:59:43 +02:00
|
|
|
|
2016-10-27 23:51:21 +02:00
|
|
|
update_default_domain
|
|
|
|
|
2016-07-24 14:19:56 +02:00
|
|
|
systemctl start nginx
|
2016-06-30 15:59:43 +02:00
|
|
|
|
2016-08-10 11:27:14 +02:00
|
|
|
if [ $PIN_CERTS ]; then
|
|
|
|
${PROJECT_NAME}-pin-cert $LETSENCRYPT_HOSTNAME
|
|
|
|
if [ ! "$?" = "0" ]; then
|
|
|
|
echo $"Certificate for $LETSENCRYPT_HOSTNAME could not be pinned"
|
|
|
|
exit 62878
|
|
|
|
fi
|
2016-07-24 14:19:56 +02:00
|
|
|
fi
|
2015-12-12 11:55:16 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
function add_cert_selfsigned {
|
2016-07-24 14:19:56 +02:00
|
|
|
if [[ $ORGANISATION == "Freedombone-CA" ]]; then
|
2016-08-10 11:27:14 +02:00
|
|
|
CERTFILE="ca-$HOSTNAME"
|
2016-07-24 14:19:56 +02:00
|
|
|
fi
|
|
|
|
|
|
|
|
openssl req -x509 ${EXTENSIONS} -nodes -days 3650 -sha256 \
|
2016-08-10 11:27:14 +02:00
|
|
|
-subj "/O=$ORGANISATION/OU=$UNIT/C=$COUNTRY_CODE/ST=$AREA/L=$LOCATION/CN=$HOSTNAME" \
|
|
|
|
-newkey rsa:4096 -keyout /etc/ssl/private/${CERTFILE}.key \
|
|
|
|
-out /etc/ssl/certs/${CERTFILE}.crt
|
2016-07-24 14:19:56 +02:00
|
|
|
chmod 400 /etc/ssl/private/${CERTFILE}.key
|
|
|
|
chmod 640 /etc/ssl/certs/${CERTFILE}.crt
|
|
|
|
cp /etc/ssl/certs/${CERTFILE}.crt /etc/ssl/mycerts
|
|
|
|
|
2016-08-10 11:27:14 +02:00
|
|
|
if [ $PIN_CERTS ]; then
|
|
|
|
${PROJECT_NAME}-pin-cert $CERTFILE
|
|
|
|
if [ ! "$?" = "0" ]; then
|
|
|
|
echo $"Certificate for $CERTFILE could not be pinned"
|
|
|
|
exit 62879
|
|
|
|
fi
|
2016-07-24 14:19:56 +02:00
|
|
|
fi
|
2015-12-12 11:55:16 +01:00
|
|
|
}
|
2015-03-31 21:22:42 +02:00
|
|
|
|
2015-12-12 11:55:16 +01:00
|
|
|
function generate_dh_params {
|
2016-07-24 14:19:56 +02:00
|
|
|
if [ ! $NODH ]; then
|
2016-08-10 11:27:14 +02:00
|
|
|
if [ ! -f /etc/ssl/certs/${CERTFILE}.dhparam ]; then
|
|
|
|
${PROJECT_NAME}-dhparam -h ${CERTFILE} --fast yes
|
|
|
|
fi
|
2016-07-24 14:19:56 +02:00
|
|
|
fi
|
2015-12-12 11:55:16 +01:00
|
|
|
}
|
2015-03-31 21:22:42 +02:00
|
|
|
|
2015-12-12 11:55:16 +01:00
|
|
|
function restart_web_server {
|
2016-07-24 14:19:56 +02:00
|
|
|
if [ -f /etc/init.d/nginx ]; then
|
2016-08-10 11:27:14 +02:00
|
|
|
/etc/init.d/nginx reload
|
2016-07-24 14:19:56 +02:00
|
|
|
fi
|
2015-12-12 11:55:16 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
function make_cert_bundle {
|
2016-07-24 14:19:56 +02:00
|
|
|
# Create a bundle of your certificates
|
|
|
|
cat /etc/ssl/mycerts/*.crt /etc/ssl/mycerts/*.pem > /etc/ssl/${PROJECT_NAME}-bundle.crt
|
|
|
|
tar -czvf /etc/ssl/${PROJECT_NAME}-certs.tar.gz /etc/ssl/mycerts/*.crt /etc/ssl/mycerts/*.pem
|
2015-12-12 11:55:16 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
function create_cert {
|
2016-07-24 14:19:56 +02:00
|
|
|
if [ $LETSENCRYPT_HOSTNAME ]; then
|
2016-08-10 11:27:14 +02:00
|
|
|
add_cert_letsencrypt
|
2016-07-24 14:19:56 +02:00
|
|
|
else
|
2016-08-10 11:27:14 +02:00
|
|
|
add_cert_selfsigned
|
2016-07-24 14:19:56 +02:00
|
|
|
fi
|
2015-12-12 11:55:16 +01:00
|
|
|
}
|
2015-03-31 21:22:42 +02:00
|
|
|
|
2016-01-27 10:54:02 +01:00
|
|
|
read_repo_servers
|
2015-12-12 11:55:16 +01:00
|
|
|
create_cert
|
|
|
|
generate_dh_params
|
|
|
|
restart_web_server
|
|
|
|
make_cert_bundle
|
2015-11-17 23:21:40 +01:00
|
|
|
|
2015-03-31 21:22:42 +02:00
|
|
|
exit 0
|