Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add manual cert renewal script for 0.3.X. #763

Merged
merged 1 commit into from
Mar 14, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,10 +1,6 @@
#!/bin/bash

# This is intended for use with Gateway releases before 0.3.0, as those
# releases did not have an automatic certificate updater. The certificate
# paths specified in this script do not match what is currently expected,
# so DO NOT run this on any releases after 0.3.0. It should be safe on 0.3.0,
# but should be unnecessary.
# This is intended for use with 0.2.X gateway releases.

script_dir=$(readlink -f $(dirname "$0"))
moziot_dir="/home/pi/mozilla-iot"
Expand Down Expand Up @@ -55,8 +51,8 @@ fi

if [ -z "$(which certbot)" ]; then
echo "Installing certbot."
apt-get update >/dev/null 2>&1 && \
apt-get -y --force-yes install certbot >/dev/null 2>&1 || \
apt update >/dev/null 2>&1 && \
apt install -y certbot >/dev/null 2>&1 || \
abort "Failed to install."
fi

Expand Down Expand Up @@ -134,7 +130,7 @@ cp "${moziot_dir}/etc/live/${domain}/chain.pem" \
"${moziot_dir}/gateway/chain.pem"

echo "Registering domain with server."
curl "http://api.mozilla-iot.org/setemail" \
curl "https://api.mozilla-iot.org:8443/setemail" \
-s -G \
--data-urlencode "token=${token}" \
--data-urlencode "email=${email}" || abort "Failed to register."
Expand Down
159 changes: 159 additions & 0 deletions tools/manual-renew-certs-0.3.X.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,159 @@
#!/bin/bash

# This is intended for use with 0.3.X gateway releases.

script_dir=$(readlink -f $(dirname "$0"))
moziot_dir="/home/pi/mozilla-iot"
moziot_email="certificate@mozilla-iot.org"
pagekite_pidfile="/tmp/_pagekite.pid"
temp_dir="$(mktemp -d)"
server_pid=""

abort() {
[ -f "${pagekite_pidfile}" ] && \
kill -15 $(<"${pagekite_pidfile}") >/dev/null 2>/dev/null
rm -f "${pagekite_pidfile}"

[ -n "${server_pid}" ] && \
kill -15 "${server_pid}" >/dev/null 2>/dev/null
rm -rf "${temp_dir}"

systemctl start mozilla-iot-gateway.service

echo -e "$1"
exit 1
}

if [ $(id -u) -ne 0 ]; then
abort "This script must be run as root!"
fi

if [ -z "$(which sqlite3)" ]; then
echo "Installing sqlite3."
apt update >/dev/null 2>&1 && apt install -y sqlite3 || \
abort "Failed to install."
fi

email="$1"
if [ -z "$email" ]; then
prog=$(basename $(readlink -f "$0"))
abort "Usage:\n\t$prog EMAIL"
fi

if [ ! -f "${moziot_dir}/gateway/db.sqlite3" ]; then
abort "Could not read ${moziot_dir}/gateway/db.sqlite3"
fi

domain="$(sqlite3 "${moziot_dir}/gateway/db.sqlite3" \
"SELECT value FROM settings WHERE key='tunneltoken'" | \
grep -oP '"name":".*?"' | \
cut -d: -f2 | \
cut -d\" -f2).mozilla-iot.org"
token=$(sqlite3 "${moziot_dir}/gateway/db.sqlite3" \
"SELECT value FROM settings WHERE key='tunneltoken'" | \
grep -oP '"token":".*?"' | \
cut -d: -f2 | \
cut -d\" -f2)

if [ "${domain}" = ".mozilla-iot.org" -o -z "${token}" ]; then
abort "Could not determine domain or token."
fi

if [ -z "$(which certbot)" ]; then
echo "Installing certbot."
apt -y install certbot >/dev/null 2>&1 || \
abort "Failed to install."
fi

echo "Stopping IoT gateway service."
systemctl stop mozilla-iot-gateway.service || abort "Failed to stop service."

echo "Starting temporary web server."
cd "${temp_dir}"
cat >server.py <<EOF
import BaseHTTPServer
import SimpleHTTPServer
import ssl


httpd = BaseHTTPServer.HTTPServer(
('localhost', 4443),
SimpleHTTPServer.SimpleHTTPRequestHandler)
httpd.socket = ssl.wrap_socket(httpd.socket,
server_side=True,
keyfile='privkey.pem',
certfile='cert.pem')
httpd.serve_forever()
EOF
openssl req \
-new \
-x509 \
-keyout privkey.pem \
-out cert.pem \
-days 365 \
-subj "/C=US/ST=CA/L=Mountain View/O=Mozilla/CN=${domain}/emailAddress=${moziot_email}" \
-nodes >/dev/null 2>&1

python2 server.py >/dev/null 2>&1 &
server_pid=$!
cd - >/dev/null 2>&1

echo "Starting PageKite."
"${moziot_dir}/gateway/pagekite.py" \
--clean \
--frontend="${domain}:443" \
--service_on="https:${domain}:localhost:4443:${token}" \
--daemonize \
--pidfile="${pagekite_pidfile}" || abort "Failed to start PageKite."

echo "Verifying domain and renewing certificate for: ${domain}"
certbot certonly \
--webroot \
--webroot-path "${temp_dir}" \
--preferred-challenges=http \
-d "${domain}" \
--force-renewal \
--config-dir "${moziot_dir}/etc" \
--work-dir "${moziot_dir}/var/lib" \
--logs-dir "${moziot_dir}/var/log" \
--non-interactive \
--agree-tos \
--email "${moziot_email}" || abort "Failed to verify and renew."

chown -R pi:pi "${moziot_dir}/etc" "${moziot_dir}/var"

echo "Stopping temporary web server."
kill -15 "${server_pid}" >/dev/null 2>&1
rm -rf "${temp_dir}"

echo "Stopping PageKite."
kill -15 $(<"${pagekite_pidfile}") >/dev/null 2>&1
rm -f "${pagekite_pidfile}"

echo "Copying in new certificates."
if [ -d "${moziot_dir}/gateway/ssl" ]; then
cp "${moziot_dir}/etc/live/${domain}/cert.pem" \
"${moziot_dir}/gateway/ssl/certificate.pem"
cp "${moziot_dir}/etc/live/${domain}/privkey.pem" \
"${moziot_dir}/gateway/ssl/privatekey.pem"
cp "${moziot_dir}/etc/live/${domain}/chain.pem" \
"${moziot_dir}/gateway/ssl/chain.pem"
else
cp "${moziot_dir}/etc/live/${domain}/cert.pem" \
"${moziot_dir}/gateway/certificate.pem"
cp "${moziot_dir}/etc/live/${domain}/privkey.pem" \
"${moziot_dir}/gateway/privatekey.pem"
cp "${moziot_dir}/etc/live/${domain}/chain.pem" \
"${moziot_dir}/gateway/chain.pem"
fi

echo "Registering domain with server."
curl "https://api.mozilla-iot.org:8443/setemail" \
-s -G \
--data-urlencode "token=${token}" \
--data-urlencode "email=${email}" || abort "Failed to register."

echo "Starting IoT gateway service."
systemctl start mozilla-iot-gateway.service || abort "Failed to start service."

echo "Done!"