freedombone/src/freedombone-addcert

155 lines
4.0 KiB
Plaintext
Raw Normal View History

#!/bin/bash
2015-04-04 14:07:00 +02:00
#
# .---. . .
# | | |
# |--- .--. .-. .-. .-.| .-. .--.--. |.-. .-. .--. .-.
# | | (.-' (.-' ( | ( )| | | | )( )| | (.-'
# ' ' --' --' -' - -' ' ' -' -' -' ' - --'
#
# Freedom in the Cloud
#
# A script for creating self-signed certificates on Debian
# License
# =======
#
# Copyright (C) 2015 Bob Mottram <bob@robotics.uk.to>
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# 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
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
HOSTNAME=
COUNTRY_CODE="US"
AREA="Free Speech Zone"
LOCATION="Freedomville"
ORGANISATION="Freedombone"
UNIT="Freedombone Unit"
2015-06-14 16:56:46 +02:00
EXTENSIONS=""
NODH=
2015-10-27 15:38:05 +01:00
DH_KEYLENGTH=2048
function show_help {
echo ''
echo 'freedombone-addcert -h [hostname] -c [country code] -a [area] -l [location]'
2015-06-19 23:54:32 +02:00
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 ' -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'
2015-08-15 10:10:00 +02:00
echo ' --dhkey [bits] DH key length in bits'
2015-06-19 23:54:32 +02:00
echo ' --nodh "" Do not calculate DH params'
echo ' --ca "" Certificate authority cert'
echo ''
2015-04-04 14:07:00 +02:00
exit 0
}
while [[ $# > 1 ]]
do
key="$1"
case $key in
--help)
show_help
;;
-h|--hostname)
shift
HOSTNAME="$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"
;;
2015-06-14 16:56:46 +02:00
--ca)
2015-06-19 23:54:32 +02:00
shift
2015-06-14 16:56:46 +02:00
EXTENSIONS="-extensions v3_ca"
2015-06-19 23:08:28 +02:00
ORGANISATION="Freedombone-CA"
2015-06-14 16:56:46 +02:00
;;
--nodh)
2015-06-19 23:54:32 +02:00
shift
NODH="true"
;;
2015-08-15 10:10:00 +02:00
--dhkey)
shift
DH_KEYLENGTH=${1}
;;
*)
# unknown option
;;
esac
shift
done
if [ ! $HOSTNAME ]; then
echo 'No hostname specified'
2015-04-04 14:07:00 +02:00
exit 5748
fi
if ! which openssl > /dev/null ;then
echo "$0: openssl is not installed, exiting" 1>&2
exit 5689
fi
2015-06-19 23:08:28 +02:00
CERTFILE=$HOSTNAME
2015-06-19 23:15:41 +02:00
if [[ $ORGANISATION == "Freedombone-CA" ]]; then
2015-06-19 23:54:32 +02:00
CERTFILE="ca-$HOSTNAME"
2015-06-19 23:08:28 +02:00
fi
openssl req -x509 $EXTENSIONS -nodes -days 3650 -sha256 \
2015-06-19 23:54:32 +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
if [ ! $NODH ]; then
2015-08-15 10:10:00 +02:00
openssl dhparam -check -text -5 $DH_KEYLENGTH -out /etc/ssl/certs/$CERTFILE.dhparam
fi
2015-06-19 23:08:28 +02:00
chmod 400 /etc/ssl/private/$CERTFILE.key
chmod 640 /etc/ssl/certs/$CERTFILE.crt
chmod 640 /etc/ssl/certs/$CERTFILE.dhparam
if [ -f /etc/init.d/nginx ]; then
/etc/init.d/nginx reload
fi
# add the public certificate to a separate directory
# so that we can redistribute it easily
if [ ! -d /etc/ssl/mycerts ]; then
mkdir /etc/ssl/mycerts
fi
2015-06-19 23:08:28 +02:00
cp /etc/ssl/certs/$CERTFILE.crt /etc/ssl/mycerts
# Create a bundle of your certificates
cat /etc/ssl/mycerts/*.crt > /etc/ssl/freedombone-bundle.crt
tar -czvf /etc/ssl/freedombone-certs.tar.gz /etc/ssl/mycerts/*.crt
exit 0