acme.sh/acme.sh

4554 lines
112 KiB
Bash
Raw Normal View History

#!/usr/bin/env sh
2016-04-25 12:01:37 +00:00
2016-11-12 10:28:17 +00:00
VER=2.6.5
2016-04-13 12:37:18 +00:00
2016-04-14 13:44:26 +00:00
PROJECT_NAME="acme.sh"
2016-04-13 12:37:18 +00:00
2016-04-14 13:44:26 +00:00
PROJECT_ENTRY="acme.sh"
PROJECT="https://github.com/Neilpang/$PROJECT_NAME"
2016-03-08 12:44:12 +00:00
DEFAULT_INSTALL_HOME="$HOME/.$PROJECT_NAME"
_SCRIPT_="$0"
2016-10-11 12:56:59 +00:00
_SUB_FOLDERS="dnsapi deploy"
2016-03-08 12:44:12 +00:00
DEFAULT_CA="https://acme-v01.api.letsencrypt.org"
DEFAULT_AGREEMENT="https://letsencrypt.org/documents/LE-SA-v1.1.1-August-1-2016.pdf"
2016-03-08 12:44:12 +00:00
2016-11-13 13:47:58 +00:00
DEFAULT_USER_AGENT="$PROJECT_NAME/$VER ($PROJECT)"
DEFAULT_ACCOUNT_EMAIL=""
2016-03-19 14:04:03 +00:00
DEFAULT_ACCOUNT_KEY_LENGTH=2048
DEFAULT_DOMAIN_KEY_LENGTH=2048
2016-03-08 12:44:12 +00:00
STAGE_CA="https://acme-staging.api.letsencrypt.org"
VTYPE_HTTP="http-01"
VTYPE_DNS="dns-01"
VTYPE_TLS="tls-sni-01"
2016-11-11 13:13:33 +00:00
#VTYPE_TLS2="tls-sni-02"
LOCAL_ANY_ADDRESS="0.0.0.0"
MAX_RENEW=60
2016-06-26 02:09:51 +00:00
DEFAULT_DNS_SLEEP=120
2016-09-23 14:35:13 +00:00
NO_VALUE="no"
W_TLS="tls"
2016-03-08 12:44:12 +00:00
STATE_VERIFIED="verified_ok"
2016-03-17 13:18:09 +00:00
BEGIN_CSR="-----BEGIN CERTIFICATE REQUEST-----"
END_CSR="-----END CERTIFICATE REQUEST-----"
BEGIN_CERT="-----BEGIN CERTIFICATE-----"
END_CERT="-----END CERTIFICATE-----"
2016-06-18 03:29:28 +00:00
RENEW_SKIP=2
ECC_SEP="_"
ECC_SUFFIX="${ECC_SEP}ecc"
2016-09-25 13:58:59 +00:00
LOG_LEVEL_1=1
LOG_LEVEL_2=2
LOG_LEVEL_3=3
DEFAULT_LOG_LEVEL="$LOG_LEVEL_1"
_DEBUG_WIKI="https://github.com/Neilpang/acme.sh/wiki/How-to-debug-acme.sh"
2016-03-08 12:44:12 +00:00
2016-09-06 11:37:41 +00:00
__INTERACTIVE=""
2016-11-09 11:30:39 +00:00
if [ -t 1 ]; then
2016-09-06 11:37:41 +00:00
__INTERACTIVE="1"
fi
2016-04-17 09:33:08 +00:00
__green() {
2016-11-09 11:30:39 +00:00
if [ "$__INTERACTIVE" ]; then
2016-09-02 12:55:11 +00:00
printf '\033[1;31;32m'
fi
printf -- "$1"
2016-11-09 11:30:39 +00:00
if [ "$__INTERACTIVE" ]; then
2016-09-02 12:55:11 +00:00
printf '\033[0m'
fi
}
__red() {
2016-11-09 11:30:39 +00:00
if [ "$__INTERACTIVE" ]; then
2016-09-02 12:55:11 +00:00
printf '\033[1;31;40m'
fi
printf -- "$1"
2016-11-09 11:30:39 +00:00
if [ "$__INTERACTIVE" ]; then
2016-09-02 12:55:11 +00:00
printf '\033[0m'
fi
}
2016-04-17 09:33:08 +00:00
2016-09-25 13:58:59 +00:00
_printargs() {
2016-11-09 11:30:39 +00:00
if [ -z "$2" ]; then
2016-09-25 13:58:59 +00:00
printf -- "[$(date)] $1"
else
2016-09-25 13:58:59 +00:00
printf -- "[$(date)] $1='$2'"
fi
2016-09-25 13:58:59 +00:00
printf "\n"
}
2016-11-04 14:03:41 +00:00
_dlg_versions() {
echo "Diagnosis versions: "
echo "openssl:"
2016-11-09 11:30:39 +00:00
if _exists openssl; then
2016-11-04 14:03:41 +00:00
openssl version 2>&1
else
echo "openssl doesn't exists."
fi
2016-11-09 11:30:39 +00:00
2016-11-04 14:03:41 +00:00
echo "apache:"
2016-11-09 11:30:39 +00:00
if [ "$_APACHECTL" ] && _exists "$_APACHECTL"; then
2016-11-04 14:03:41 +00:00
_APACHECTL -V 2>&1
else
echo "apache doesn't exists."
fi
2016-11-09 11:30:39 +00:00
2016-11-04 14:03:41 +00:00
echo "nc:"
2016-11-09 11:30:39 +00:00
if _exists "nc"; then
2016-11-04 14:03:41 +00:00
nc -h 2>&1
else
_debug "nc doesn't exists."
fi
}
2016-09-25 13:58:59 +00:00
_log() {
[ -z "$LOG_FILE" ] && return
2016-11-09 12:45:57 +00:00
_printargs "$@" >>"$LOG_FILE"
2016-09-25 13:58:59 +00:00
}
_info() {
_log "$@"
_printargs "$@"
2016-03-08 12:44:12 +00:00
}
_err() {
2016-09-25 13:58:59 +00:00
_log "$@"
2016-09-28 05:13:08 +00:00
printf -- "[$(date)] " >&2
2016-11-09 11:30:39 +00:00
if [ -z "$2" ]; then
2016-09-28 05:13:08 +00:00
__red "$1" >&2
else
__red "$1='$2'" >&2
fi
2016-09-27 13:27:43 +00:00
printf "\n" >&2
2016-03-08 12:44:12 +00:00
return 1
}
_usage() {
2016-11-09 11:30:39 +00:00
__red "$@" >&2
2016-09-28 05:13:08 +00:00
printf "\n" >&2
}
_debug() {
2016-11-09 11:30:39 +00:00
if [ -z "$LOG_LEVEL" ] || [ "$LOG_LEVEL" -ge "$LOG_LEVEL_1" ]; then
2016-09-25 13:58:59 +00:00
_log "$@"
fi
2016-11-09 11:30:39 +00:00
if [ -z "$DEBUG" ]; then
return
fi
2016-09-25 13:58:59 +00:00
_printargs "$@" >&2
}
_debug2() {
2016-11-09 11:30:39 +00:00
if [ "$LOG_LEVEL" ] && [ "$LOG_LEVEL" -ge "$LOG_LEVEL_2" ]; then
2016-09-25 13:58:59 +00:00
_log "$@"
fi
2016-11-09 11:30:39 +00:00
if [ "$DEBUG" ] && [ "$DEBUG" -ge "2" ]; then
_debug "$@"
fi
}
_debug3() {
2016-11-09 11:30:39 +00:00
if [ "$LOG_LEVEL" ] && [ "$LOG_LEVEL" -ge "$LOG_LEVEL_3" ]; then
2016-09-25 13:58:59 +00:00
_log "$@"
fi
2016-11-09 11:30:39 +00:00
if [ "$DEBUG" ] && [ "$DEBUG" -ge "3" ]; then
_debug "$@"
fi
}
2016-11-09 11:30:39 +00:00
_startswith() {
2016-04-16 13:52:24 +00:00
_str="$1"
_sub="$2"
2016-05-13 13:14:00 +00:00
echo "$_str" | grep "^$_sub" >/dev/null 2>&1
2016-04-16 13:52:24 +00:00
}
2016-11-09 11:30:39 +00:00
_endswith() {
_str="$1"
_sub="$2"
echo "$_str" | grep -- "$_sub\$" >/dev/null 2>&1
}
2016-11-09 11:30:39 +00:00
_contains() {
2016-04-16 13:52:24 +00:00
_str="$1"
_sub="$2"
echo "$_str" | grep -- "$_sub" >/dev/null 2>&1
2016-04-16 13:52:24 +00:00
}
_hasfield() {
_str="$1"
_field="$2"
_sep="$3"
2016-11-09 11:30:39 +00:00
if [ -z "$_field" ]; then
_usage "Usage: str field [sep]"
return 1
fi
2016-11-09 11:30:39 +00:00
if [ -z "$_sep" ]; then
_sep=","
fi
2016-11-09 11:30:39 +00:00
for f in $(echo "$_str" | tr ',' ' '); do
if [ "$f" = "$_field" ]; then
_debug2 "'$_str' contains '$_field'"
return 0 #contains ok
fi
done
_debug2 "'$_str' does not contain '$_field'"
return 1 #not contains
}
2016-11-09 11:30:39 +00:00
_getfield() {
_str="$1"
_findex="$2"
_sep="$3"
2016-11-09 11:30:39 +00:00
if [ -z "$_findex" ]; then
_usage "Usage: str field [sep]"
return 1
fi
2016-11-09 11:30:39 +00:00
if [ -z "$_sep" ]; then
_sep=","
fi
2016-11-09 14:28:12 +00:00
_ffi="$_findex"
2016-11-09 11:30:39 +00:00
while [ "$_ffi" -gt "0" ]; do
2016-11-09 14:28:12 +00:00
_fv="$(echo "$_str" | cut -d "$_sep" -f "$_ffi")"
2016-11-09 11:30:39 +00:00
if [ "$_fv" ]; then
printf -- "%s" "$_fv"
return 0
fi
2016-11-09 12:45:57 +00:00
_ffi="$(_math "$_ffi" - 1)"
done
2016-11-09 11:30:39 +00:00
printf -- "%s" "$_str"
}
2016-11-09 11:30:39 +00:00
_exists() {
cmd="$1"
2016-11-09 11:30:39 +00:00
if [ -z "$cmd" ]; then
_usage "Usage: _exists cmd"
return 1
fi
2016-11-17 05:17:29 +00:00
if eval type type >/dev/null 2>&1; then
eval type "$cmd" >/dev/null 2>&1
elif command >/dev/null 2>&1; then
2016-05-13 13:14:00 +00:00
command -v "$cmd" >/dev/null 2>&1
2016-11-17 05:20:20 +00:00
else
2016-11-11 13:13:33 +00:00
which "$cmd" >/dev/null 2>&1
2016-04-16 11:38:11 +00:00
fi
ret="$?"
_debug3 "$cmd exists=$ret"
return $ret
}
2016-04-17 09:33:08 +00:00
#a + b
2016-11-09 11:30:39 +00:00
_math() {
2016-11-12 02:58:20 +00:00
_m_opts="$@"
printf "%s" "$(($_m_opts))"
2016-04-17 09:33:08 +00:00
}
_h_char_2_dec() {
_ch=$1
case "${_ch}" in
2016-11-09 11:30:39 +00:00
a | A)
2016-05-13 13:14:00 +00:00
printf "10"
2016-11-09 11:30:39 +00:00
;;
b | B)
2016-05-13 13:14:00 +00:00
printf "11"
2016-11-09 11:30:39 +00:00
;;
c | C)
2016-05-13 13:14:00 +00:00
printf "12"
2016-11-09 11:30:39 +00:00
;;
d | D)
2016-05-13 13:14:00 +00:00
printf "13"
2016-11-09 11:30:39 +00:00
;;
e | E)
2016-05-13 13:14:00 +00:00
printf "14"
2016-11-09 11:30:39 +00:00
;;
f | F)
2016-05-13 13:14:00 +00:00
printf "15"
2016-11-09 11:30:39 +00:00
;;
2016-04-17 09:33:08 +00:00
*)
2016-05-13 13:14:00 +00:00
printf "%s" "$_ch"
2016-11-09 11:30:39 +00:00
;;
2016-05-13 13:14:00 +00:00
esac
2016-04-17 09:33:08 +00:00
}
2016-08-14 14:37:21 +00:00
_URGLY_PRINTF=""
2016-11-09 11:30:39 +00:00
if [ "$(printf '\x41')" != 'A' ]; then
2016-08-14 14:37:21 +00:00
_URGLY_PRINTF=1
fi
2016-03-08 12:44:12 +00:00
_h2b() {
hex=$(cat)
i=1
j=2
2016-11-11 13:13:33 +00:00
_debug3 _URGLY_PRINTF "$_URGLY_PRINTF"
2016-11-09 11:30:39 +00:00
while true; do
if [ -z "$_URGLY_PRINTF" ]; then
2016-11-09 13:06:22 +00:00
h="$(printf "%s" "$hex" | cut -c $i-$j)"
2016-11-09 11:30:39 +00:00
if [ -z "$h" ]; then
break
2016-04-17 09:33:08 +00:00
fi
2016-11-11 13:13:33 +00:00
printf "\x$h%s"
2016-04-17 09:33:08 +00:00
else
2016-11-09 12:45:57 +00:00
ic="$(printf "%s" "$hex" | cut -c $i)"
jc="$(printf "%s" "$hex" | cut -c $j)"
2016-11-09 11:30:39 +00:00
if [ -z "$ic$jc" ]; then
break
2016-04-17 09:33:08 +00:00
fi
2016-05-13 13:14:00 +00:00
ic="$(_h_char_2_dec "$ic")"
jc="$(_h_char_2_dec "$jc")"
2016-11-11 14:00:15 +00:00
printf '\'"$(printf "%o" "$(_math "$ic" \* 16 + $jc)")""%s"
2016-03-08 12:44:12 +00:00
fi
2016-11-11 13:13:33 +00:00
i="$(_math "$i" + 2)"
j="$(_math "$j" + 2)"
2016-03-08 12:44:12 +00:00
done
}
2016-11-20 14:57:07 +00:00
#hex string
_hex() {
_str="$1"
_str_len=${#_str}
_h_i=1
while [ "$_h_i" -le "$_str_len" ]; do
2016-11-20 15:04:28 +00:00
_str_c="$(printf "%s" "$_str" | cut -c "$_h_i")"
2016-11-20 14:57:07 +00:00
printf "%02x" "'$_str_c"
_h_i="$(_math "$_h_i" + 1)"
done
}
#options file
_sed_i() {
options="$1"
filename="$2"
2016-11-09 11:30:39 +00:00
if [ -z "$filename" ]; then
_usage "Usage:_sed_i options filename"
return 1
fi
2016-04-22 12:50:43 +00:00
_debug2 options "$options"
if sed -h 2>&1 | grep "\-i\[SUFFIX]" >/dev/null 2>&1; then
_debug "Using sed -i"
2016-04-22 12:50:43 +00:00
sed -i "$options" "$filename"
else
_debug "No -i support in sed"
2016-05-13 13:14:00 +00:00
text="$(cat "$filename")"
2016-11-09 11:30:39 +00:00
echo "$text" | sed "$options" >"$filename"
fi
}
_egrep_o() {
2016-11-18 12:14:08 +00:00
if ! egrep -o "$1" 2>/dev/null; then
sed -n 's/.*\('"$1"'\).*/\1/p'
fi
}
2016-03-17 13:18:09 +00:00
#Usage: file startline endline
_getfile() {
filename="$1"
startline="$2"
endline="$3"
2016-11-09 11:30:39 +00:00
if [ -z "$endline" ]; then
_usage "Usage: file startline endline"
2016-03-17 13:18:09 +00:00
return 1
fi
2016-11-09 11:30:39 +00:00
i="$(grep -n -- "$startline" "$filename" | cut -d : -f 1)"
if [ -z "$i" ]; then
2016-03-17 13:18:09 +00:00
_err "Can not find start line: $startline"
return 1
fi
2016-05-13 13:14:00 +00:00
i="$(_math "$i" + 1)"
_debug i "$i"
2016-11-09 11:30:39 +00:00
j="$(grep -n -- "$endline" "$filename" | cut -d : -f 1)"
if [ -z "$j" ]; then
2016-03-17 13:18:09 +00:00
_err "Can not find end line: $endline"
return 1
fi
2016-05-13 13:14:00 +00:00
j="$(_math "$j" - 1)"
_debug j "$j"
2016-11-09 11:30:39 +00:00
sed -n "$i,${j}p" "$filename"
2016-03-17 13:18:09 +00:00
}
#Usage: multiline
2016-03-08 12:44:12 +00:00
_base64() {
2016-11-09 11:30:39 +00:00
if [ "$1" ]; then
2016-03-17 13:18:09 +00:00
openssl base64 -e
else
openssl base64 -e | tr -d '\r\n'
fi
}
#Usage: multiline
_dbase64() {
2016-11-09 11:30:39 +00:00
if [ "$1" ]; then
2016-03-17 13:18:09 +00:00
openssl base64 -d -A
else
openssl base64 -d
fi
}
#Usage: hashalg [outputhex]
2016-03-17 13:18:09 +00:00
#Output Base64-encoded digest
_digest() {
alg="$1"
2016-11-09 11:30:39 +00:00
if [ -z "$alg" ]; then
_usage "Usage: _digest hashalg"
2016-03-17 13:18:09 +00:00
return 1
fi
2016-11-09 11:30:39 +00:00
outputhex="$2"
2016-11-09 11:30:39 +00:00
2016-11-11 15:30:14 +00:00
if [ "$alg" = "sha256" ] || [ "$alg" = "sha1" ] || [ "$alg" = "md5" ]; then
2016-11-09 11:30:39 +00:00
if [ "$outputhex" ]; then
2016-11-09 12:45:57 +00:00
openssl dgst -"$alg" -hex | cut -d = -f 2 | tr -d ' '
else
2016-11-09 12:45:57 +00:00
openssl dgst -"$alg" -binary | _base64
2016-11-08 13:27:39 +00:00
fi
else
_err "$alg is not supported yet"
return 1
fi
}
2016-11-20 14:57:07 +00:00
#Usage: hashalg secret_hex [outputhex]
#Output binary hmac
2016-11-08 13:27:39 +00:00
_hmac() {
alg="$1"
2016-11-20 14:57:07 +00:00
secret_hex="$2"
2016-11-08 13:27:39 +00:00
outputhex="$3"
2016-11-09 11:30:39 +00:00
2016-11-20 14:57:07 +00:00
if [ -z "$secret_hex" ]; then
2016-11-09 11:30:39 +00:00
_usage "Usage: _hmac hashalg secret [outputhex]"
2016-11-08 13:27:39 +00:00
return 1
fi
2016-08-24 10:46:23 +00:00
if [ "$alg" = "sha256" ] || [ "$alg" = "sha1" ]; then
2016-11-09 11:30:39 +00:00
if [ "$outputhex" ]; then
2016-11-20 14:57:07 +00:00
openssl dgst -"$alg" -mac HMAC -macopt "hexkey:$secret_hex" | cut -d = -f 2 | tr -d ' '
else
2016-11-20 14:57:07 +00:00
openssl dgst -"$alg" -mac HMAC -macopt "hexkey:$secret_hex" -binary
fi
2016-03-17 13:18:09 +00:00
else
_err "$alg is not supported yet"
return 1
fi
}
#Usage: keyfile hashalg
#Output: Base64-encoded signature value
_sign() {
keyfile="$1"
alg="$2"
2016-11-09 11:30:39 +00:00
if [ -z "$alg" ]; then
_usage "Usage: _sign keyfile hashalg"
2016-03-17 13:18:09 +00:00
return 1
fi
2016-11-09 11:30:39 +00:00
_sign_openssl="openssl dgst -sign $keyfile "
2016-11-09 11:30:39 +00:00
if [ "$alg" = "sha256" ]; then
_sign_openssl="$_sign_openssl -$alg"
2016-03-17 13:18:09 +00:00
else
_err "$alg is not supported yet"
return 1
2016-08-14 14:37:21 +00:00
fi
2016-11-09 11:30:39 +00:00
if grep "BEGIN RSA PRIVATE KEY" "$keyfile" >/dev/null 2>&1; then
$_sign_openssl | _base64
2016-11-09 11:30:39 +00:00
elif grep "BEGIN EC PRIVATE KEY" "$keyfile" >/dev/null 2>&1; then
if ! _signedECText="$($_sign_openssl | openssl asn1parse -inform DER)"; then
2016-11-04 15:34:06 +00:00
_err "Sign failed: $_sign_openssl"
_err "Key file: $keyfile"
2016-11-09 13:06:22 +00:00
_err "Key content:$(wc -l <"$keyfile") lises"
2016-11-04 15:34:06 +00:00
return 1
fi
_debug3 "_signedECText" "$_signedECText"
_ec_r="$(echo "$_signedECText" | _head_n 2 | _tail_n 1 | cut -d : -f 4 | tr -d "\r\n")"
_debug3 "_ec_r" "$_ec_r"
_ec_s="$(echo "$_signedECText" | _head_n 3 | _tail_n 1 | cut -d : -f 4 | tr -d "\r\n")"
_debug3 "_ec_s" "$_ec_s"
printf "%s" "$_ec_r$_ec_s" | _h2b | _base64
else
_err "Unknown key file format."
return 1
fi
2016-11-09 11:30:39 +00:00
2016-03-08 12:44:12 +00:00
}
#keylength
_isEccKey() {
_length="$1"
2016-11-09 11:30:39 +00:00
if [ -z "$_length" ]; then
return 1
fi
[ "$_length" != "1024" ] \
2016-11-09 11:30:39 +00:00
&& [ "$_length" != "2048" ] \
&& [ "$_length" != "3072" ] \
&& [ "$_length" != "4096" ] \
&& [ "$_length" != "8192" ]
}
# _createkey 2048|ec-256 file
_createkey() {
length="$1"
f="$2"
eccname="$length"
2016-11-09 11:30:39 +00:00
if _startswith "$length" "ec-"; then
2016-11-09 13:06:22 +00:00
length=$(printf "%s" "$length" | cut -d '-' -f 2-100)
2016-11-09 11:30:39 +00:00
if [ "$length" = "256" ]; then
eccname="prime256v1"
fi
2016-11-09 11:30:39 +00:00
if [ "$length" = "384" ]; then
eccname="secp384r1"
fi
2016-11-09 11:30:39 +00:00
if [ "$length" = "521" ]; then
eccname="secp521r1"
fi
fi
2016-11-09 11:30:39 +00:00
if [ -z "$length" ]; then
length=2048
fi
2016-11-09 11:30:39 +00:00
2016-08-25 14:27:48 +00:00
_debug "Use length $length"
2016-11-09 11:30:39 +00:00
if _isEccKey "$length"; then
2016-08-25 14:27:48 +00:00
_debug "Using ec name: $eccname"
2016-11-11 14:32:11 +00:00
openssl ecparam -name "$eccname" -genkey 2>/dev/null >"$f"
else
2016-08-25 14:27:48 +00:00
_debug "Using RSA: $length"
2016-11-11 14:32:11 +00:00
openssl genrsa "$length" 2>/dev/null >"$f"
fi
2016-11-09 11:30:39 +00:00
if [ "$?" != "0" ]; then
_err "Create key error."
return 1
fi
}
#domain
_is_idn() {
_is_idn_d="$1"
_debug2 _is_idn_d "$_is_idn_d"
2016-11-11 15:48:27 +00:00
_idn_temp=$(printf "%s" "$_is_idn_d" | tr -d '[0-9]' | tr -d '[a-z]' | tr -d '[A-Z]' | tr -d '.,-')
_debug2 _idn_temp "$_idn_temp"
[ "$_idn_temp" ]
}
#aa.com
#aa.com,bb.com,cc.com
_idn() {
__idn_d="$1"
2016-11-09 11:30:39 +00:00
if ! _is_idn "$__idn_d"; then
printf "%s" "$__idn_d"
return 0
fi
2016-11-09 11:30:39 +00:00
if _exists idn; then
if _contains "$__idn_d" ','; then
_i_first="1"
2016-11-09 11:30:39 +00:00
for f in $(echo "$__idn_d" | tr ',' ' '); do
[ -z "$f" ] && continue
2016-11-09 11:30:39 +00:00
if [ -z "$_i_first" ]; then
printf "%s" ","
else
_i_first=""
fi
2016-10-31 13:22:04 +00:00
idn --quiet "$f" | tr -d "\r\n"
done
else
idn "$__idn_d" | tr -d "\r\n"
fi
else
_err "Please install idn to process IDN names."
fi
}
#_createcsr cn san_list keyfile csrfile conf
_createcsr() {
_debug _createcsr
domain="$1"
domainlist="$2"
csrkey="$3"
csr="$4"
csrconf="$5"
_debug2 domain "$domain"
_debug2 domainlist "$domainlist"
_debug2 csrkey "$csrkey"
_debug2 csr "$csr"
_debug2 csrconf "$csrconf"
2016-11-09 11:30:39 +00:00
printf "[ req_distinguished_name ]\n[ req ]\ndistinguished_name = req_distinguished_name\nreq_extensions = v3_req\n[ v3_req ]\n\nkeyUsage = nonRepudiation, digitalSignature, keyEncipherment" >"$csrconf"
2016-09-23 14:35:13 +00:00
if [ -z "$domainlist" ] || [ "$domainlist" = "$NO_VALUE" ]; then
#single domain
_info "Single domain" "$domain"
else
2016-11-09 13:06:22 +00:00
domainlist="$(_idn "$domainlist")"
_debug2 domainlist "$domainlist"
2016-11-09 11:30:39 +00:00
if _contains "$domainlist" ","; then
2016-11-09 13:06:22 +00:00
alt="DNS:$(echo "$domainlist" | sed "s/,/,DNS:/g")"
else
alt="DNS:$domainlist"
fi
#multi
_info "Multi domain" "$alt"
2016-11-09 11:30:39 +00:00
printf -- "\nsubjectAltName=$alt" >>"$csrconf"
fi
2016-11-09 11:30:39 +00:00
if [ "$Le_OCSP_Stable" ]; then
_savedomainconf Le_OCSP_Stable "$Le_OCSP_Stable"
2016-11-09 11:30:39 +00:00
printf -- "\nbasicConstraints = CA:FALSE\n1.3.6.1.5.5.7.1.24=DER:30:03:02:01:05" >>"$csrconf"
fi
2016-11-09 11:30:39 +00:00
_csr_cn="$(_idn "$domain")"
_debug2 _csr_cn "$_csr_cn"
openssl req -new -sha256 -key "$csrkey" -subj "/CN=$_csr_cn" -config "$csrconf" -out "$csr"
}
#_signcsr key csr conf cert
_signcsr() {
key="$1"
csr="$2"
conf="$3"
cert="$4"
2016-06-18 04:28:23 +00:00
_debug "_signcsr"
2016-11-09 11:30:39 +00:00
_msg="$(openssl x509 -req -days 365 -in "$csr" -signkey "$key" -extensions v3_req -extfile "$conf" -out "$cert" 2>&1)"
2016-06-18 04:28:23 +00:00
_ret="$?"
_debug "$_msg"
return $_ret
}
#_csrfile
_readSubjectFromCSR() {
_csrfile="$1"
2016-11-09 11:30:39 +00:00
if [ -z "$_csrfile" ]; then
_usage "_readSubjectFromCSR mycsr.csr"
return 1
fi
2016-11-09 11:30:39 +00:00
openssl req -noout -in "$_csrfile" -subject | _egrep_o "CN=.*" | cut -d = -f 2 | cut -d / -f 1 | tr -d '\n'
}
#_csrfile
#echo comma separated domain list
_readSubjectAltNamesFromCSR() {
_csrfile="$1"
2016-11-09 11:30:39 +00:00
if [ -z "$_csrfile" ]; then
_usage "_readSubjectAltNamesFromCSR mycsr.csr"
return 1
fi
2016-11-09 11:30:39 +00:00
_csrsubj="$(_readSubjectFromCSR "$_csrfile")"
_debug _csrsubj "$_csrsubj"
2016-11-09 11:30:39 +00:00
_dnsAltnames="$(openssl req -noout -text -in "$_csrfile" | grep "^ *DNS:.*" | tr -d ' \n')"
_debug _dnsAltnames "$_dnsAltnames"
2016-11-09 11:30:39 +00:00
if _contains "$_dnsAltnames," "DNS:$_csrsubj,"; then
_debug "AltNames contains subject"
2016-08-27 12:00:47 +00:00
_dnsAltnames="$(printf "%s" "$_dnsAltnames," | sed "s/DNS:$_csrsubj,//g")"
else
_debug "AltNames doesn't contain subject"
fi
2016-11-09 11:30:39 +00:00
2016-08-27 12:00:47 +00:00
printf "%s" "$_dnsAltnames" | sed "s/DNS://g"
}
#_csrfile
_readKeyLengthFromCSR() {
_csrfile="$1"
2016-11-09 11:30:39 +00:00
if [ -z "$_csrfile" ]; then
2016-08-27 12:00:47 +00:00
_usage "_readKeyLengthFromCSR mycsr.csr"
return 1
fi
2016-11-09 11:30:39 +00:00
_outcsr="$(openssl req -noout -text -in "$_csrfile")"
if _contains "$_outcsr" "Public Key Algorithm: id-ecPublicKey"; then
_debug "ECC CSR"
echo "$_outcsr" | _egrep_o "^ *ASN1 OID:.*" | cut -d ':' -f 2 | tr -d ' '
else
_debug "RSA CSR"
echo "$_outcsr" | _egrep_o "^ *Public-Key:.*" | cut -d '(' -f 2 | cut -d ' ' -f 1
fi
}
2016-03-13 10:17:13 +00:00
_ss() {
_port="$1"
2016-11-09 11:30:39 +00:00
if _exists "ss"; then
2016-03-23 14:23:24 +00:00
_debug "Using: ss"
2016-05-13 13:14:00 +00:00
ss -ntpl | grep ":$_port "
2016-03-23 14:23:24 +00:00
return 0
fi
2016-11-09 11:30:39 +00:00
if _exists "netstat"; then
2016-03-13 10:24:03 +00:00
_debug "Using: netstat"
2016-11-09 11:30:39 +00:00
if netstat -h 2>&1 | grep "\-p proto" >/dev/null; then
2016-03-23 12:23:56 +00:00
#for windows version netstat tool
netstat -an -p tcp | grep "LISTENING" | grep ":$_port "
2016-03-23 12:23:56 +00:00
else
2016-11-09 11:30:39 +00:00
if netstat -help 2>&1 | grep "\-p protocol" >/dev/null; then
2016-05-13 13:14:00 +00:00
netstat -an -p tcp | grep LISTEN | grep ":$_port "
2016-11-09 11:30:39 +00:00
elif netstat -help 2>&1 | grep -- '-P protocol' >/dev/null; then
#for solaris
2016-08-10 15:13:14 +00:00
netstat -an -P tcp | grep "\.$_port " | grep "LISTEN"
2016-03-23 14:23:24 +00:00
else
2016-05-13 13:14:00 +00:00
netstat -ntpl | grep ":$_port "
2016-03-23 14:23:24 +00:00
fi
2016-03-23 12:23:56 +00:00
fi
2016-03-13 10:17:13 +00:00
return 0
fi
2016-03-23 14:23:24 +00:00
2016-03-13 10:17:13 +00:00
return 1
}
#domain [password] [isEcc]
toPkcs() {
domain="$1"
pfxPassword="$2"
2016-11-09 11:30:39 +00:00
if [ -z "$domain" ]; then
_usage "Usage: $PROJECT_ENTRY --toPkcs -d domain [--password pfx-password]"
return 1
fi
_isEcc="$3"
2016-11-09 11:30:39 +00:00
_initpath "$domain" "$_isEcc"
2016-11-09 11:30:39 +00:00
if [ "$pfxPassword" ]; then
openssl pkcs12 -export -out "$CERT_PFX_PATH" -inkey "$CERT_KEY_PATH" -in "$CERT_PATH" -certfile "$CA_CERT_PATH" -password "pass:$pfxPassword"
else
openssl pkcs12 -export -out "$CERT_PFX_PATH" -inkey "$CERT_KEY_PATH" -in "$CERT_PATH" -certfile "$CA_CERT_PATH"
fi
2016-11-09 11:30:39 +00:00
if [ "$?" = "0" ]; then
_info "Success, Pfx is exported to: $CERT_PFX_PATH"
fi
}
#[2048]
2016-03-08 12:44:12 +00:00
createAccountKey() {
_info "Creating account key"
2016-11-09 11:30:39 +00:00
if [ -z "$1" ]; then
_usage "Usage: $PROJECT_ENTRY --createAccountKey --accountkeylength 2048"
2016-03-08 12:44:12 +00:00
return
fi
2016-11-09 11:30:39 +00:00
length=$1
_create_account_key "$length"
}
_create_account_key() {
length=$1
2016-11-09 11:30:39 +00:00
if [ -z "$length" ] || [ "$length" = "$NO_VALUE" ]; then
_debug "Use default length $DEFAULT_ACCOUNT_KEY_LENGTH"
length="$DEFAULT_ACCOUNT_KEY_LENGTH"
2016-03-08 12:44:12 +00:00
fi
2016-11-09 11:30:39 +00:00
_debug length "$length"
2016-03-08 12:44:12 +00:00
_initpath
mkdir -p "$CA_DIR"
2016-11-09 11:30:39 +00:00
if [ -f "$ACCOUNT_KEY_PATH" ]; then
2016-03-08 12:44:12 +00:00
_info "Account key exists, skip"
return
else
#generate account key
2016-08-13 12:37:52 +00:00
_createkey "$length" "$ACCOUNT_KEY_PATH"
2016-03-08 12:44:12 +00:00
fi
}
#domain [length]
2016-03-08 12:44:12 +00:00
createDomainKey() {
_info "Creating domain key"
2016-11-09 11:30:39 +00:00
if [ -z "$1" ]; then
_usage "Usage: $PROJECT_ENTRY --createDomainKey -d domain.com [ --keylength 2048 ]"
2016-03-08 12:44:12 +00:00
return
fi
2016-11-09 11:30:39 +00:00
2016-03-08 12:44:12 +00:00
domain=$1
length=$2
2016-11-09 11:30:39 +00:00
if [ -z "$length" ]; then
_debug "Use DEFAULT_DOMAIN_KEY_LENGTH=$DEFAULT_DOMAIN_KEY_LENGTH"
length="$DEFAULT_DOMAIN_KEY_LENGTH"
fi
2016-11-09 13:06:22 +00:00
_initpath "$domain" "$length"
2016-11-09 11:30:39 +00:00
if [ ! -f "$CERT_KEY_PATH" ] || ([ "$FORCE" ] && ! [ "$IS_RENEW" ]); then
_createkey "$length" "$CERT_KEY_PATH"
2016-03-08 12:44:12 +00:00
else
2016-11-09 11:30:39 +00:00
if [ "$IS_RENEW" ]; then
2016-03-08 12:44:12 +00:00
_info "Domain key exists, skip"
return 0
else
_err "Domain key exists, do you want to overwrite the key?"
_err "Add '--force', and try again."
2016-03-08 12:44:12 +00:00
return 1
fi
fi
}
# domain domainlist isEcc
2016-03-08 12:44:12 +00:00
createCSR() {
_info "Creating csr"
2016-11-09 11:30:39 +00:00
if [ -z "$1" ]; then
_usage "Usage: $PROJECT_ENTRY --createCSR -d domain1.com [-d domain2.com -d domain3.com ... ]"
2016-03-08 12:44:12 +00:00
return
fi
2016-11-09 11:30:39 +00:00
domain="$1"
domainlist="$2"
_isEcc="$3"
2016-11-09 11:30:39 +00:00
_initpath "$domain" "$_isEcc"
2016-11-09 11:30:39 +00:00
if [ -f "$CSR_PATH" ] && [ "$IS_RENEW" ] && [ -z "$FORCE" ]; then
2016-03-08 12:44:12 +00:00
_info "CSR exists, skip"
return
fi
2016-11-09 11:30:39 +00:00
if [ ! -f "$CERT_KEY_PATH" ]; then
_err "The key file is not found: $CERT_KEY_PATH"
_err "Please create the key file first."
return 1
fi
_createcsr "$domain" "$domainlist" "$CERT_KEY_PATH" "$CSR_PATH" "$DOMAIN_SSL_CONF"
2016-11-09 11:30:39 +00:00
2016-03-08 12:44:12 +00:00
}
_urlencode() {
2016-11-09 13:06:22 +00:00
tr '/+' '_-' | tr -d '= '
2016-03-08 12:44:12 +00:00
}
_time2str() {
#BSD
2016-11-09 13:06:22 +00:00
if date -u -d@"$1" 2>/dev/null; then
2016-03-08 12:44:12 +00:00
return
fi
2016-11-09 11:30:39 +00:00
2016-03-08 12:44:12 +00:00
#Linux
2016-11-09 13:06:22 +00:00
if date -u -r "$1" 2>/dev/null; then
2016-03-08 12:44:12 +00:00
return
fi
2016-11-09 11:30:39 +00:00
#Soaris
2016-11-09 11:30:39 +00:00
if _exists adb; then
2016-11-11 14:36:16 +00:00
_t_s_a=$(echo "0t${1}=Y" | adb)
echo "$_t_s_a"
fi
2016-11-09 11:30:39 +00:00
2016-03-08 12:44:12 +00:00
}
2016-05-23 14:02:43 +00:00
_normalizeJson() {
sed "s/\" *: *\([\"{\[]\)/\":\1/g" | sed "s/^ *\([^ ]\)/\1/" | tr -d "\r\n"
}
2016-03-09 15:16:46 +00:00
_stat() {
#Linux
2016-11-09 11:30:39 +00:00
if stat -c '%U:%G' "$1" 2>/dev/null; then
2016-03-09 15:16:46 +00:00
return
fi
2016-11-09 11:30:39 +00:00
2016-03-09 15:16:46 +00:00
#BSD
2016-11-09 11:30:39 +00:00
if stat -f '%Su:%Sg' "$1" 2>/dev/null; then
2016-03-09 15:16:46 +00:00
return
fi
2016-11-09 11:30:39 +00:00
return 1 #error, 'stat' not found
2016-03-09 15:16:46 +00:00
}
#keyfile
_calcjwk() {
keyfile="$1"
2016-11-09 11:30:39 +00:00
if [ -z "$keyfile" ]; then
_usage "Usage: _calcjwk keyfile"
return 1
fi
2016-11-09 11:30:39 +00:00
if [ "$JWK_HEADER" ] && [ "$__CACHED_JWK_KEY_FILE" = "$keyfile" ]; then
2016-10-29 04:14:48 +00:00
_debug2 "Use cached jwk for file: $__CACHED_JWK_KEY_FILE"
return 0
fi
2016-11-09 11:30:39 +00:00
if grep "BEGIN RSA PRIVATE KEY" "$keyfile" >/dev/null 2>&1; then
_debug "RSA key"
2016-11-09 13:06:22 +00:00
pub_exp=$(openssl rsa -in "$keyfile" -noout -text | grep "^publicExponent:" | cut -d '(' -f 2 | cut -d 'x' -f 2 | cut -d ')' -f 1)
2016-11-09 11:30:39 +00:00
if [ "${#pub_exp}" = "5" ]; then
pub_exp=0$pub_exp
fi
_debug3 pub_exp "$pub_exp"
2016-11-09 11:30:39 +00:00
2016-11-09 13:06:22 +00:00
e=$(echo "$pub_exp" | _h2b | _base64)
_debug3 e "$e"
2016-11-09 11:30:39 +00:00
2016-11-09 13:06:22 +00:00
modulus=$(openssl rsa -in "$keyfile" -modulus -noout | cut -d '=' -f 2)
_debug3 modulus "$modulus"
2016-11-09 11:30:39 +00:00
n="$(printf "%s" "$modulus" | _h2b | _base64 | _urlencode)"
jwk='{"e": "'$e'", "kty": "RSA", "n": "'$n'"}'
_debug3 jwk "$jwk"
2016-11-09 11:30:39 +00:00
2016-10-28 10:07:04 +00:00
JWK_HEADER='{"alg": "RS256", "jwk": '$jwk'}'
JWK_HEADERPLACE_PART1='{"nonce": "'
JWK_HEADERPLACE_PART2='", "alg": "RS256", "jwk": '$jwk'}'
2016-11-09 11:30:39 +00:00
elif grep "BEGIN EC PRIVATE KEY" "$keyfile" >/dev/null 2>&1; then
_debug "EC key"
2016-11-09 13:06:22 +00:00
crv="$(openssl ec -in "$keyfile" -noout -text 2>/dev/null | grep "^NIST CURVE:" | cut -d ":" -f 2 | tr -d " \r\n")"
_debug3 crv "$crv"
2016-11-09 11:30:39 +00:00
if [ -z "$crv" ]; then
_debug "Let's try ASN1 OID"
2016-11-09 13:06:22 +00:00
crv_oid="$(openssl ec -in "$keyfile" -noout -text 2>/dev/null | grep "^ASN1 OID:" | cut -d ":" -f 2 | tr -d " \r\n")"
2016-11-04 14:53:33 +00:00
_debug3 crv_oid "$crv_oid"
case "${crv_oid}" in
"prime256v1")
2016-11-09 11:30:39 +00:00
crv="P-256"
;;
"secp384r1")
2016-11-09 11:30:39 +00:00
crv="P-384"
;;
"secp521r1")
2016-11-09 11:30:39 +00:00
crv="P-521"
;;
*)
2016-11-09 11:30:39 +00:00
_err "ECC oid : $crv_oid"
return 1
;;
2016-11-04 14:47:45 +00:00
esac
_debug3 crv "$crv"
fi
2016-11-09 11:30:39 +00:00
2016-11-09 13:06:22 +00:00
pubi="$(openssl ec -in "$keyfile" -noout -text 2>/dev/null | grep -n pub: | cut -d : -f 1)"
2016-11-09 13:18:47 +00:00
pubi=$(_math "$pubi" + 1)
_debug3 pubi "$pubi"
2016-11-09 11:30:39 +00:00
2016-11-09 13:06:22 +00:00
pubj="$(openssl ec -in "$keyfile" -noout -text 2>/dev/null | grep -n "ASN1 OID:" | cut -d : -f 1)"
2016-11-09 13:18:47 +00:00
pubj=$(_math "$pubj" - 1)
_debug3 pubj "$pubj"
2016-11-09 11:30:39 +00:00
2016-11-09 13:06:22 +00:00
pubtext="$(openssl ec -in "$keyfile" -noout -text 2>/dev/null | sed -n "$pubi,${pubj}p" | tr -d " \n\r")"
_debug3 pubtext "$pubtext"
2016-11-09 11:30:39 +00:00
2016-11-09 12:45:57 +00:00
xlen="$(printf "%s" "$pubtext" | tr -d ':' | wc -c)"
2016-11-09 13:18:47 +00:00
xlen=$(_math "$xlen" / 4)
_debug3 xlen "$xlen"
2016-04-17 09:33:08 +00:00
xend=$(_math "$xlen" + 1)
2016-11-09 13:06:22 +00:00
x="$(printf "%s" "$pubtext" | cut -d : -f 2-"$xend")"
_debug3 x "$x"
2016-11-09 11:30:39 +00:00
2016-11-09 12:45:57 +00:00
x64="$(printf "%s" "$x" | tr -d : | _h2b | _base64 | _urlencode)"
_debug3 x64 "$x64"
2016-04-17 09:33:08 +00:00
2016-05-13 13:14:00 +00:00
xend=$(_math "$xend" + 1)
2016-11-09 13:06:22 +00:00
y="$(printf "%s" "$pubtext" | cut -d : -f "$xend"-10000)"
_debug3 y "$y"
2016-11-09 11:30:39 +00:00
2016-11-09 12:45:57 +00:00
y64="$(printf "%s" "$y" | tr -d : | _h2b | _base64 | _urlencode)"
_debug3 y64 "$y64"
2016-11-09 11:30:39 +00:00
2016-10-29 04:14:48 +00:00
jwk='{"crv": "'$crv'", "kty": "EC", "x": "'$x64'", "y": "'$y64'"}'
_debug3 jwk "$jwk"
2016-11-09 11:30:39 +00:00
2016-10-28 10:07:04 +00:00
JWK_HEADER='{"alg": "ES256", "jwk": '$jwk'}'
JWK_HEADERPLACE_PART1='{"nonce": "'
JWK_HEADERPLACE_PART2='", "alg": "ES256", "jwk": '$jwk'}'
else
_err "Only RSA or EC key is supported."
return 1
fi
2016-10-28 10:07:04 +00:00
_debug3 JWK_HEADER "$JWK_HEADER"
2016-10-29 04:14:48 +00:00
__CACHED_JWK_KEY_FILE="$keyfile"
}
2016-08-14 14:37:21 +00:00
2016-08-25 13:46:31 +00:00
_time() {
date -u "+%s"
}
2016-08-14 14:37:21 +00:00
_mktemp() {
2016-11-09 11:30:39 +00:00
if _exists mktemp; then
if mktemp 2>/dev/null; then
2016-11-01 12:29:58 +00:00
return 0
2016-11-09 11:30:39 +00:00
elif _contains "$(mktemp 2>&1)" "-t prefix" && mktemp -t "$PROJECT_NAME" 2>/dev/null; then
2016-09-27 15:43:18 +00:00
#for Mac osx
2016-11-01 12:29:58 +00:00
return 0
2016-09-27 13:27:43 +00:00
fi
2016-08-14 14:37:21 +00:00
fi
2016-11-09 11:30:39 +00:00
if [ -d "/tmp" ]; then
2016-08-25 13:46:31 +00:00
echo "/tmp/${PROJECT_NAME}wefADf24sf.$(_time).tmp"
return 0
2016-11-09 11:30:39 +00:00
elif [ "$LE_TEMP_DIR" ] && mkdir -p "$LE_TEMP_DIR"; then
2016-11-01 12:29:58 +00:00
echo "/$LE_TEMP_DIR/wefADf24sf.$(_time).tmp"
return 0
2016-08-25 13:46:31 +00:00
fi
_err "Can not create temp file."
2016-08-14 14:37:21 +00:00
}
_inithttp() {
2016-11-09 11:30:39 +00:00
if [ -z "$HTTP_HEADER" ] || ! touch "$HTTP_HEADER"; then
2016-08-14 14:37:21 +00:00
HTTP_HEADER="$(_mktemp)"
_debug2 HTTP_HEADER "$HTTP_HEADER"
fi
2016-11-09 11:30:39 +00:00
if [ "$__HTTP_INITIALIZED" ]; then
if [ "$_ACME_CURL$_ACME_WGET" ]; then
2016-10-28 12:56:18 +00:00
_debug2 "Http already initialized."
return 0
fi
fi
2016-11-09 11:30:39 +00:00
if [ -z "$_ACME_CURL" ] && _exists "curl"; then
2016-10-28 12:56:18 +00:00
_ACME_CURL="curl -L --silent --dump-header $HTTP_HEADER "
2016-11-09 11:30:39 +00:00
if [ "$DEBUG" ] && [ "$DEBUG" -ge "2" ]; then
2016-08-14 14:37:21 +00:00
_CURL_DUMP="$(_mktemp)"
2016-10-28 12:56:18 +00:00
_ACME_CURL="$_ACME_CURL --trace-ascii $_CURL_DUMP "
2016-08-14 14:37:21 +00:00
fi
2016-11-09 11:30:39 +00:00
if [ "$CA_BUNDLE" ]; then
2016-10-28 12:56:18 +00:00
_ACME_CURL="$_ACME_CURL --cacert $CA_BUNDLE "
fi
2016-08-14 14:37:21 +00:00
fi
2016-11-09 11:30:39 +00:00
2016-10-28 12:56:18 +00:00
if [ -z "$_ACME_WGET" ] && _exists "wget"; then
_ACME_WGET="wget -q"
2016-11-09 11:30:39 +00:00
if [ "$DEBUG" ] && [ "$DEBUG" -ge "2" ]; then
2016-10-28 12:56:18 +00:00
_ACME_WGET="$_ACME_WGET -d "
2016-08-14 14:37:21 +00:00
fi
2016-11-09 11:30:39 +00:00
if [ "$CA_BUNDLE" ]; then
2016-10-28 12:56:18 +00:00
_ACME_WGET="$_ACME_WGET --ca-certificate $CA_BUNDLE "
fi
2016-08-14 14:37:21 +00:00
fi
2016-10-28 12:56:18 +00:00
__HTTP_INITIALIZED=1
2016-08-14 14:37:21 +00:00
}
2016-05-09 14:36:48 +00:00
# body url [needbase64] [POST|PUT]
_post() {
body="$1"
url="$2"
needbase64="$3"
2016-05-07 15:33:42 +00:00
httpmethod="$4"
2016-11-09 11:30:39 +00:00
if [ -z "$httpmethod" ]; then
2016-05-07 15:33:42 +00:00
httpmethod="POST"
fi
_debug $httpmethod
2016-05-13 13:33:52 +00:00
_debug "url" "$url"
2016-07-29 10:07:16 +00:00
_debug2 "body" "$body"
2016-11-09 11:30:39 +00:00
2016-08-14 14:37:21 +00:00
_inithttp
2016-11-09 11:30:39 +00:00
if [ "$_ACME_CURL" ]; then
2016-10-28 12:56:18 +00:00
_CURL="$_ACME_CURL"
2016-11-21 12:56:50 +00:00
if [ "$HTTPS_INSECURE" ]; then
_CURL="$_CURL --insecure "
fi
2016-05-31 13:38:41 +00:00
_debug "_CURL" "$_CURL"
2016-11-09 11:30:39 +00:00
if [ "$needbase64" ]; then
response="$($_CURL --user-agent "$USER_AGENT" -X $httpmethod -H "$_H1" -H "$_H2" -H "$_H3" -H "$_H4" -H "$_H5" --data "$body" "$url" | _base64)"
else
2016-11-09 11:30:39 +00:00
response="$($_CURL --user-agent "$USER_AGENT" -X $httpmethod -H "$_H1" -H "$_H2" -H "$_H3" -H "$_H4" -H "$_H5" --data "$body" "$url")"
fi
2016-05-31 04:12:30 +00:00
_ret="$?"
2016-11-09 11:30:39 +00:00
if [ "$_ret" != "0" ]; then
2016-06-25 01:40:00 +00:00
_err "Please refer to https://curl.haxx.se/libcurl/c/libcurl-errors.html for error code: $_ret"
2016-11-09 11:30:39 +00:00
if [ "$DEBUG" ] && [ "$DEBUG" -ge "2" ]; then
2016-06-25 01:40:00 +00:00
_err "Here is the curl dump log:"
_err "$(cat "$_CURL_DUMP")"
fi
2016-06-25 01:29:23 +00:00
fi
2016-11-09 11:30:39 +00:00
elif [ "$_ACME_WGET" ]; then
2016-11-21 12:56:50 +00:00
_WGET="$_ACME_WGET"
if [ "$HTTPS_INSECURE" ]; then
_WGET="$_WGET --no-check-certificate "
fi
_debug "_WGET" "$_WGET"
2016-11-09 11:30:39 +00:00
if [ "$needbase64" ]; then
if [ "$httpmethod" = "POST" ]; then
2016-11-21 12:56:50 +00:00
response="$($_WGET -S -O - --user-agent="$USER_AGENT" --header "$_H5" --header "$_H4" --header "$_H3" --header "$_H2" --header "$_H1" --post-data="$body" "$url" 2>"$HTTP_HEADER" | _base64)"
else
2016-11-21 12:56:50 +00:00
response="$($_WGET -S -O - --user-agent="$USER_AGENT" --header "$_H5" --header "$_H4" --header "$_H3" --header "$_H2" --header "$_H1" --method $httpmethod --body-data="$body" "$url" 2>"$HTTP_HEADER" | _base64)"
fi
else
2016-11-09 11:30:39 +00:00
if [ "$httpmethod" = "POST" ]; then
2016-11-21 12:56:50 +00:00
response="$($_WGET -S -O - --user-agent="$USER_AGENT" --header "$_H5" --header "$_H4" --header "$_H3" --header "$_H2" --header "$_H1" --post-data="$body" "$url" 2>"$HTTP_HEADER")"
else
2016-11-21 12:56:50 +00:00
response="$($_WGET -S -O - --user-agent="$USER_AGENT" --header "$_H5" --header "$_H4" --header "$_H3" --header "$_H2" --header "$_H1" --method $httpmethod --body-data="$body" "$url" 2>"$HTTP_HEADER")"
fi
fi
2016-05-31 04:12:30 +00:00
_ret="$?"
2016-11-09 11:30:39 +00:00
if [ "$_ret" = "8" ]; then
2016-10-03 14:08:40 +00:00
_ret=0
_debug "wget returns 8, the server returns a 'Bad request' respons, lets process the response later."
fi
2016-11-09 11:30:39 +00:00
if [ "$_ret" != "0" ]; then
_err "Please refer to https://www.gnu.org/software/wget/manual/html_node/Exit-Status.html for error code: $_ret"
2016-06-25 01:29:23 +00:00
fi
_sed_i "s/^ *//g" "$HTTP_HEADER"
2016-07-02 05:46:35 +00:00
else
_ret="$?"
_err "Neither curl nor wget is found, can not do $httpmethod."
fi
2016-05-31 04:12:30 +00:00
_debug "_ret" "$_ret"
2016-05-13 13:14:00 +00:00
printf "%s" "$response"
2016-05-31 04:12:30 +00:00
return $_ret
}
# url getheader timeout
_get() {
2016-05-07 15:33:42 +00:00
_debug GET
url="$1"
onlyheader="$2"
t="$3"
2016-11-09 13:18:47 +00:00
_debug url "$url"
_debug "timeout" "$t"
2016-08-14 14:37:21 +00:00
_inithttp
2016-11-09 11:30:39 +00:00
if [ "$_ACME_CURL" ]; then
2016-10-28 12:56:18 +00:00
_CURL="$_ACME_CURL"
2016-11-21 12:56:50 +00:00
if [ "$HTTPS_INSECURE" ]; then
_CURL="$_CURL --insecure "
fi
2016-11-09 11:30:39 +00:00
if [ "$t" ]; then
_CURL="$_CURL --connect-timeout $t"
fi
_debug "_CURL" "$_CURL"
2016-11-09 11:30:39 +00:00
if [ "$onlyheader" ]; then
2016-11-09 13:06:22 +00:00
$_CURL -I --user-agent "$USER_AGENT" -H "$_H1" -H "$_H2" -H "$_H3" -H "$_H4" -H "$_H5" "$url"
else
2016-11-09 13:06:22 +00:00
$_CURL --user-agent "$USER_AGENT" -H "$_H1" -H "$_H2" -H "$_H3" -H "$_H4" -H "$_H5" "$url"
fi
2016-05-31 13:20:10 +00:00
ret=$?
2016-11-09 11:30:39 +00:00
if [ "$ret" != "0" ]; then
2016-08-14 15:20:53 +00:00
_err "Please refer to https://curl.haxx.se/libcurl/c/libcurl-errors.html for error code: $ret"
2016-11-09 11:30:39 +00:00
if [ "$DEBUG" ] && [ "$DEBUG" -ge "2" ]; then
2016-08-14 14:37:21 +00:00
_err "Here is the curl dump log:"
_err "$(cat "$_CURL_DUMP")"
fi
fi
2016-11-09 11:30:39 +00:00
elif [ "$_ACME_WGET" ]; then
2016-10-28 12:56:18 +00:00
_WGET="$_ACME_WGET"
2016-11-21 12:56:50 +00:00
if [ "$HTTPS_INSECURE" ]; then
_WGET="$_WGET --no-check-certificate "
fi
2016-11-09 11:30:39 +00:00
if [ "$t" ]; then
_WGET="$_WGET --timeout=$t"
fi
_debug "_WGET" "$_WGET"
2016-11-09 11:30:39 +00:00
if [ "$onlyheader" ]; then
2016-11-09 13:06:22 +00:00
$_WGET --user-agent="$USER_AGENT" --header "$_H5" --header "$_H4" --header "$_H3" --header "$_H2" --header "$_H1" -S -O /dev/null "$url" 2>&1 | sed 's/^[ ]*//g'
else
2016-11-09 13:06:22 +00:00
$_WGET --user-agent="$USER_AGENT" --header "$_H5" --header "$_H4" --header "$_H3" --header "$_H2" --header "$_H1" -O - "$url"
fi
2016-05-31 13:20:10 +00:00
ret=$?
2016-11-09 11:30:39 +00:00
if [ "$_ret" = "8" ]; then
2016-10-03 14:08:40 +00:00
_ret=0
_debug "wget returns 8, the server returns a 'Bad request' respons, lets process the response later."
fi
2016-11-09 11:30:39 +00:00
if [ "$ret" != "0" ]; then
_err "Please refer to https://www.gnu.org/software/wget/manual/html_node/Exit-Status.html for error code: $ret"
2016-08-14 14:37:21 +00:00
fi
2016-07-02 05:46:35 +00:00
else
ret=$?
_err "Neither curl nor wget is found, can not do GET."
2016-05-31 13:20:10 +00:00
fi
2016-05-31 13:38:41 +00:00
_debug "ret" "$ret"
return $ret
}
2016-10-03 14:29:48 +00:00
_head_n() {
2016-11-09 13:18:47 +00:00
head -n "$1"
2016-10-03 14:29:48 +00:00
}
_tail_n() {
2016-11-09 13:06:22 +00:00
if ! tail -n "$1" 2>/dev/null; then
2016-10-05 05:03:45 +00:00
#fix for solaris
2016-11-09 13:06:22 +00:00
tail -"$1"
2016-10-05 05:03:45 +00:00
fi
2016-10-03 14:29:48 +00:00
}
2016-08-14 14:37:21 +00:00
# url payload needbase64 keyfile
2016-03-08 12:44:12 +00:00
_send_signed_request() {
url=$1
payload=$2
needbase64=$3
keyfile=$4
2016-11-09 11:30:39 +00:00
if [ -z "$keyfile" ]; then
keyfile="$ACCOUNT_KEY_PATH"
fi
2016-11-09 13:06:22 +00:00
_debug url "$url"
2016-03-08 12:44:12 +00:00
_debug payload "$payload"
2016-11-09 11:30:39 +00:00
if ! _calcjwk "$keyfile"; then
return 1
fi
payload64=$(printf "%s" "$payload" | _base64 | _urlencode)
2016-11-09 13:06:22 +00:00
_debug3 payload64 "$payload64"
2016-11-09 11:30:39 +00:00
if [ -z "$_CACHED_NONCE" ]; then
2016-10-28 13:30:40 +00:00
_debug2 "Get nonce."
nonceurl="$API/directory"
2016-11-09 13:18:47 +00:00
_headers="$(_get "$nonceurl" "onlyheader")"
2016-11-09 11:30:39 +00:00
if [ "$?" != "0" ]; then
2016-10-28 13:30:40 +00:00
_err "Can not connect to $nonceurl to get nonce."
return 1
fi
2016-11-09 11:30:39 +00:00
2016-11-02 15:22:36 +00:00
_debug2 _headers "$_headers"
2016-11-09 11:30:39 +00:00
_CACHED_NONCE="$(echo "$_headers" | grep "Replay-Nonce:" | _head_n 1 | tr -d "\r\n " | cut -d ':' -f 2)"
2016-11-02 15:22:36 +00:00
_debug2 _CACHED_NONCE "$_CACHED_NONCE"
2016-10-28 13:30:40 +00:00
else
_debug2 "Use _CACHED_NONCE" "$_CACHED_NONCE"
2016-05-31 04:28:43 +00:00
fi
2016-10-28 13:30:40 +00:00
nonce="$_CACHED_NONCE"
2016-11-02 15:22:36 +00:00
_debug2 nonce "$nonce"
2016-05-31 12:16:57 +00:00
2016-10-28 10:07:04 +00:00
protected="$JWK_HEADERPLACE_PART1$nonce$JWK_HEADERPLACE_PART2"
_debug3 protected "$protected"
2016-11-09 11:30:39 +00:00
2016-11-09 12:45:57 +00:00
protected64="$(printf "%s" "$protected" | _base64 | _urlencode)"
_debug3 protected64 "$protected64"
2016-11-09 11:30:39 +00:00
if ! _sig_t="$(printf "%s" "$protected64.$payload64" | _sign "$keyfile" "sha256")"; then
2016-11-04 14:22:01 +00:00
_err "Sign request failed."
return 1
fi
_debug3 _sig_t "$_sig_t"
2016-11-09 11:30:39 +00:00
2016-11-04 14:22:01 +00:00
sig="$(printf "%s" "$_sig_t" | _urlencode)"
_debug3 sig "$sig"
2016-11-09 11:30:39 +00:00
2016-10-28 10:07:04 +00:00
body="{\"header\": $JWK_HEADER, \"protected\": \"$protected64\", \"payload\": \"$payload64\", \"signature\": \"$sig\"}"
_debug3 body "$body"
2016-03-19 14:04:03 +00:00
2016-11-09 13:06:22 +00:00
response="$(_post "$body" "$url" "$needbase64")"
2016-10-28 13:30:40 +00:00
_CACHED_NONCE=""
2016-11-09 11:30:39 +00:00
if [ "$?" != "0" ]; then
2016-10-03 14:08:40 +00:00
_err "Can not post to $url"
2016-05-31 04:28:43 +00:00
return 1
fi
2016-05-23 14:02:43 +00:00
_debug2 original "$response"
2016-03-08 12:44:12 +00:00
2016-11-09 11:30:39 +00:00
response="$(echo "$response" | _normalizeJson)"
2016-03-08 12:44:12 +00:00
2016-10-28 13:30:40 +00:00
responseHeaders="$(cat "$HTTP_HEADER")"
2016-11-09 11:30:39 +00:00
_debug2 responseHeaders "$responseHeaders"
2016-11-09 11:30:39 +00:00
_debug2 response "$response"
2016-11-09 13:18:47 +00:00
code="$(grep "^HTTP" "$HTTP_HEADER" | _tail_n 1 | cut -d " " -f 2 | tr -d "\r\n")"
_debug code "$code"
2016-03-08 12:44:12 +00:00
2016-10-28 13:30:40 +00:00
_CACHED_NONCE="$(echo "$responseHeaders" | grep "Replay-Nonce:" | _head_n 1 | tr -d "\r\n " | cut -d ':' -f 2)"
2016-03-08 12:44:12 +00:00
}
#setopt "file" "opt" "=" "value" [";"]
_setopt() {
__conf="$1"
__opt="$2"
__sep="$3"
__val="$4"
__end="$5"
2016-11-09 11:30:39 +00:00
if [ -z "$__opt" ]; then
_usage usage: _setopt '"file" "opt" "=" "value" [";"]'
2016-03-08 12:44:12 +00:00
return
fi
2016-11-09 11:30:39 +00:00
if [ ! -f "$__conf" ]; then
2016-03-08 12:44:12 +00:00
touch "$__conf"
fi
2016-11-09 11:30:39 +00:00
if grep -n "^$__opt$__sep" "$__conf" >/dev/null; then
_debug3 OK
2016-11-09 11:30:39 +00:00
if _contains "$__val" "&"; then
2016-11-09 13:18:47 +00:00
__val="$(echo "$__val" | sed 's/&/\\&/g')"
2016-03-08 12:44:12 +00:00
fi
2016-11-09 13:18:47 +00:00
text="$(cat "$__conf")"
2016-11-09 11:30:39 +00:00
echo "$text" | sed "s|^$__opt$__sep.*$|$__opt$__sep$__val$__end|" >"$__conf"
2016-03-08 12:44:12 +00:00
2016-11-09 11:30:39 +00:00
elif grep -n "^#$__opt$__sep" "$__conf" >/dev/null; then
if _contains "$__val" "&"; then
2016-11-09 13:18:47 +00:00
__val="$(echo "$__val" | sed 's/&/\\&/g')"
2016-03-08 12:44:12 +00:00
fi
2016-11-09 13:18:47 +00:00
text="$(cat "$__conf")"
2016-11-09 11:30:39 +00:00
echo "$text" | sed "s|^#$__opt$__sep.*$|$__opt$__sep$__val$__end|" >"$__conf"
2016-03-08 12:44:12 +00:00
else
_debug3 APP
2016-11-09 11:30:39 +00:00
echo "$__opt$__sep$__val$__end" >>"$__conf"
2016-03-08 12:44:12 +00:00
fi
2016-11-09 13:18:47 +00:00
_debug2 "$(grep -n "^$__opt$__sep" "$__conf")"
2016-03-08 12:44:12 +00:00
}
#_save_conf file key value
#save to conf
_save_conf() {
_s_c_f="$1"
_sdkey="$2"
_sdvalue="$3"
2016-11-09 11:30:39 +00:00
if [ "$_s_c_f" ]; then
_setopt "$_s_c_f" "$_sdkey" "=" "'$_sdvalue'"
2016-04-27 14:14:15 +00:00
else
_err "config file is empty, can not save $_sdkey=$_sdvalue"
2016-04-27 14:14:15 +00:00
fi
}
#_clear_conf file key
_clear_conf() {
_c_c_f="$1"
_sdkey="$2"
2016-11-09 11:30:39 +00:00
if [ "$_c_c_f" ]; then
2016-11-14 09:47:22 +00:00
_conf_data="$(cat "$_c_c_f")"
2016-11-16 14:44:39 +00:00
echo "$_conf_data" | sed "s/^$_sdkey *=.*$//" >"$_c_c_f"
2016-03-08 12:44:12 +00:00
else
_err "config file is empty, can not clear"
2016-03-08 12:44:12 +00:00
fi
}
#_read_conf file key
_read_conf() {
_r_c_f="$1"
_sdkey="$2"
2016-11-09 11:30:39 +00:00
if [ -f "$_r_c_f" ]; then
(
2016-11-09 13:18:47 +00:00
eval "$(grep "^$_sdkey *=" "$_r_c_f")"
2016-11-09 11:30:39 +00:00
eval "printf \"%s\" \"\$$_sdkey\""
)
else
_debug "config file is empty, can not read $_sdkey"
2016-03-08 12:44:12 +00:00
fi
}
#_savedomainconf key value
#save to domain.conf
_savedomainconf() {
_save_conf "$DOMAIN_CONF" "$1" "$2"
2016-04-27 14:14:15 +00:00
}
#_cleardomainconf key
_cleardomainconf() {
_clear_conf "$DOMAIN_CONF" "$1"
2016-03-08 12:44:12 +00:00
}
#_readdomainconf key
_readdomainconf() {
_read_conf "$DOMAIN_CONF" "$1"
}
2016-03-08 12:44:12 +00:00
#_saveaccountconf key value
_saveaccountconf() {
_save_conf "$ACCOUNT_CONF_PATH" "$1" "$2"
2016-03-08 12:44:12 +00:00
}
2016-08-14 14:37:21 +00:00
#_clearaccountconf key
_clearaccountconf() {
_clear_conf "$ACCOUNT_CONF_PATH" "$1"
}
#_savecaconf key value
_savecaconf() {
_save_conf "$CA_CONF" "$1" "$2"
}
#_readcaconf key
_readcaconf() {
_read_conf "$CA_CONF" "$1"
}
#_clearaccountconf key
_clearcaconf() {
_clear_conf "$CA_CONF" "$1"
2016-08-14 14:37:21 +00:00
}
# content localaddress
2016-03-08 12:44:12 +00:00
_startserver() {
content="$1"
ncaddr="$2"
_debug "ncaddr" "$ncaddr"
2016-04-12 15:18:22 +00:00
_debug "startserver: $$"
nchelp="$(nc -h 2>&1)"
2016-11-09 11:30:39 +00:00
_debug Le_HTTPPort "$Le_HTTPPort"
_debug Le_Listen_V4 "$Le_Listen_V4"
_debug Le_Listen_V6 "$Le_Listen_V6"
2016-10-10 11:47:16 +00:00
_NC="nc"
2016-11-09 11:30:39 +00:00
if [ "$Le_Listen_V4" ]; then
_NC="$_NC -4"
2016-11-09 11:30:39 +00:00
elif [ "$Le_Listen_V6" ]; then
_NC="$_NC -6"
fi
2016-11-09 11:30:39 +00:00
if echo "$nchelp" | grep "\-q[ ,]" >/dev/null; then
2016-10-10 11:47:16 +00:00
_NC="$_NC -q 1 -l $ncaddr"
else
2016-11-09 11:30:39 +00:00
if echo "$nchelp" | grep "GNU netcat" >/dev/null && echo "$nchelp" | grep "\-c, \-\-close" >/dev/null; then
2016-10-10 11:47:16 +00:00
_NC="$_NC -c -l $ncaddr"
2016-11-09 11:30:39 +00:00
elif echo "$nchelp" | grep "\-N" | grep "Shutdown the network socket after EOF on stdin" >/dev/null; then
2016-10-10 11:47:16 +00:00
_NC="$_NC -N -l $ncaddr"
else
_NC="$_NC -l $ncaddr"
fi
fi
_debug "_NC" "$_NC"
#for centos ncat
2016-11-09 11:30:39 +00:00
if _contains "$nchelp" "nmap.org"; then
_debug "Using ncat: nmap.org"
2016-11-16 14:20:47 +00:00
if ! _exec "printf \"%s\r\n\r\n%s\" \"HTTP/1.1 200 OK\" \"$content\" | $_NC \"$Le_HTTPPort\" >&2"; then
_exec_err
return 1
fi
2016-11-16 14:44:39 +00:00
if [ "$DEBUG" ]; then
2016-11-16 14:20:47 +00:00
_exec_err
fi
return
fi
2016-11-09 11:30:39 +00:00
# while true ; do
2016-11-16 14:20:47 +00:00
if ! _exec "printf \"%s\r\n\r\n%s\" \"HTTP/1.1 200 OK\" \"$content\" | $_NC -p \"$Le_HTTPPort\" >&2"; then
_exec "printf \"%s\r\n\r\n%s\" \"HTTP/1.1 200 OK\" \"$content\" | $_NC \"$Le_HTTPPort\" >&2"
2016-11-09 11:30:39 +00:00
fi
2016-11-16 14:20:47 +00:00
2016-11-09 11:30:39 +00:00
if [ "$?" != "0" ]; then
_err "nc listen error."
2016-11-16 14:20:47 +00:00
_exec_err
2016-11-09 11:30:39 +00:00
exit 1
fi
2016-11-16 14:44:39 +00:00
if [ "$DEBUG" ]; then
2016-11-16 14:20:47 +00:00
_exec_err
fi
2016-11-09 11:30:39 +00:00
# done
2016-03-08 12:44:12 +00:00
}
2016-11-09 11:30:39 +00:00
_stopserver() {
2016-03-08 12:44:12 +00:00
pid="$1"
2016-04-12 15:18:22 +00:00
_debug "pid" "$pid"
2016-11-09 11:30:39 +00:00
if [ -z "$pid" ]; then
2016-04-12 15:18:22 +00:00
return
fi
2016-07-15 08:40:03 +00:00
_debug2 "Le_HTTPPort" "$Le_HTTPPort"
2016-11-09 11:30:39 +00:00
if [ "$Le_HTTPPort" ]; then
if [ "$DEBUG" ] && [ "$DEBUG" -gt "3" ]; then
_get "http://localhost:$Le_HTTPPort" "" 1
2016-07-15 08:40:03 +00:00
else
_get "http://localhost:$Le_HTTPPort" "" 1 >/dev/null 2>&1
2016-07-15 08:40:03 +00:00
fi
fi
2016-11-09 11:30:39 +00:00
2016-07-15 08:40:03 +00:00
_debug2 "Le_TLSPort" "$Le_TLSPort"
2016-11-09 11:30:39 +00:00
if [ "$Le_TLSPort" ]; then
if [ "$DEBUG" ] && [ "$DEBUG" -gt "3" ]; then
_get "https://localhost:$Le_TLSPort" "" 1
_get "https://localhost:$Le_TLSPort" "" 1
2016-07-15 08:40:03 +00:00
else
_get "https://localhost:$Le_TLSPort" "" 1 >/dev/null 2>&1
_get "https://localhost:$Le_TLSPort" "" 1 >/dev/null 2>&1
2016-07-15 08:40:03 +00:00
fi
fi
2016-03-08 12:44:12 +00:00
}
2016-09-30 14:13:27 +00:00
# sleep sec
_sleep() {
_sleep_sec="$1"
2016-11-09 11:30:39 +00:00
if [ "$__INTERACTIVE" ]; then
2016-09-30 14:13:27 +00:00
_sleep_c="$_sleep_sec"
2016-11-09 11:30:39 +00:00
while [ "$_sleep_c" -ge "0" ]; do
2016-09-30 14:43:24 +00:00
printf "\r \r"
2016-09-30 14:13:27 +00:00
__green "$_sleep_c"
2016-11-09 13:18:47 +00:00
_sleep_c="$(_math "$_sleep_c" - 1)"
2016-09-30 14:13:27 +00:00
sleep 1
done
2016-09-30 14:43:24 +00:00
printf "\r"
2016-09-30 14:13:27 +00:00
else
sleep "$_sleep_sec"
fi
}
# _starttlsserver san_a san_b port content _ncaddr
_starttlsserver() {
_info "Starting tls server."
san_a="$1"
san_b="$2"
port="$3"
content="$4"
opaddr="$5"
2016-11-09 11:30:39 +00:00
_debug san_a "$san_a"
_debug san_b "$san_b"
_debug port "$port"
2016-11-09 11:30:39 +00:00
#create key TLS_KEY
2016-11-09 11:30:39 +00:00
if ! _createkey "2048" "$TLS_KEY"; then
_err "Create tls validation key error."
return 1
fi
2016-11-09 11:30:39 +00:00
#create csr
alt="$san_a"
2016-11-09 11:30:39 +00:00
if [ "$san_b" ]; then
alt="$alt,$san_b"
fi
2016-11-09 11:30:39 +00:00
if ! _createcsr "tls.acme.sh" "$alt" "$TLS_KEY" "$TLS_CSR" "$TLS_CONF"; then
_err "Create tls validation csr error."
return 1
fi
2016-11-09 11:30:39 +00:00
#self signed
2016-11-09 11:30:39 +00:00
if ! _signcsr "$TLS_KEY" "$TLS_CSR" "$TLS_CONF" "$TLS_CERT"; then
_err "Create tls validation cert error."
return 1
fi
2016-11-09 11:30:39 +00:00
__S_OPENSSL="openssl s_server -cert $TLS_CERT -key $TLS_KEY "
2016-11-09 11:30:39 +00:00
if [ "$opaddr" ]; then
__S_OPENSSL="$__S_OPENSSL -accept $opaddr:$port"
else
__S_OPENSSL="$__S_OPENSSL -accept $port"
fi
_debug Le_Listen_V4 "$Le_Listen_V4"
_debug Le_Listen_V6 "$Le_Listen_V6"
2016-11-09 11:30:39 +00:00
if [ "$Le_Listen_V4" ]; then
__S_OPENSSL="$__S_OPENSSL -4"
2016-11-09 11:30:39 +00:00
elif [ "$Le_Listen_V6" ]; then
__S_OPENSSL="$__S_OPENSSL -6"
fi
2016-11-09 11:30:39 +00:00
#start openssl
_debug "$__S_OPENSSL"
2016-11-09 11:30:39 +00:00
if [ "$DEBUG" ] && [ "$DEBUG" -ge "2" ]; then
2016-11-09 13:44:46 +00:00
(printf "%s\r\n\r\n%s" "HTTP/1.1 200 OK" "$content" | $__S_OPENSSL -tlsextdebug) &
2016-06-17 12:54:22 +00:00
else
2016-11-09 13:44:46 +00:00
(printf "%s\r\n\r\n%s" "HTTP/1.1 200 OK" "$content" | $__S_OPENSSL >/dev/null 2>&1) &
2016-06-17 12:54:22 +00:00
fi
serverproc="$!"
2016-10-29 02:53:45 +00:00
sleep 1
2016-11-09 13:44:46 +00:00
_debug serverproc "$serverproc"
}
#file
_readlink() {
_rf="$1"
if ! readlink -f "$_rf" 2>/dev/null; then
2016-11-09 11:30:39 +00:00
if _startswith "$_rf" "\./$PROJECT_ENTRY"; then
2016-09-22 13:38:11 +00:00
printf -- "%s" "$(pwd)/$PROJECT_ENTRY"
return 0
fi
2016-11-09 11:30:39 +00:00
readlink "$_rf"
fi
}
2016-09-19 15:07:43 +00:00
__initHome() {
2016-11-09 11:30:39 +00:00
if [ -z "$_SCRIPT_HOME" ]; then
if _exists readlink && _exists dirname; then
2016-10-09 14:27:25 +00:00
_debug "Lets find script dir."
_debug "_SCRIPT_" "$_SCRIPT_"
_script="$(_readlink "$_SCRIPT_")"
_debug "_script" "$_script"
_script_home="$(dirname "$_script")"
_debug "_script_home" "$_script_home"
2016-11-09 11:30:39 +00:00
if [ -d "$_script_home" ]; then
_SCRIPT_HOME="$_script_home"
else
_err "It seems the script home is not correct:$_script_home"
fi
fi
fi
2016-11-09 11:30:39 +00:00
if [ -z "$LE_WORKING_DIR" ]; then
if [ -f "$DEFAULT_INSTALL_HOME/account.conf" ]; then
2016-09-22 13:38:11 +00:00
_debug "It seems that $PROJECT_NAME is already installed in $DEFAULT_INSTALL_HOME"
LE_WORKING_DIR="$DEFAULT_INSTALL_HOME"
else
LE_WORKING_DIR="$_SCRIPT_HOME"
fi
2016-03-08 12:44:12 +00:00
fi
2016-11-09 11:30:39 +00:00
if [ -z "$LE_WORKING_DIR" ]; then
_debug "Using default home:$DEFAULT_INSTALL_HOME"
LE_WORKING_DIR="$DEFAULT_INSTALL_HOME"
fi
2016-09-22 13:38:11 +00:00
export LE_WORKING_DIR
2016-04-11 14:33:57 +00:00
_DEFAULT_ACCOUNT_CONF_PATH="$LE_WORKING_DIR/account.conf"
2016-11-09 11:30:39 +00:00
if [ -z "$ACCOUNT_CONF_PATH" ]; then
if [ -f "$_DEFAULT_ACCOUNT_CONF_PATH" ]; then
. "$_DEFAULT_ACCOUNT_CONF_PATH"
fi
2016-04-11 14:33:57 +00:00
fi
2016-11-09 11:30:39 +00:00
if [ -z "$ACCOUNT_CONF_PATH" ]; then
2016-04-11 14:33:57 +00:00
ACCOUNT_CONF_PATH="$_DEFAULT_ACCOUNT_CONF_PATH"
2016-03-08 12:44:12 +00:00
fi
2016-11-09 11:30:39 +00:00
DEFAULT_LOG_FILE="$LE_WORKING_DIR/$PROJECT_NAME.log"
2016-11-09 11:30:39 +00:00
2016-09-27 15:43:18 +00:00
DEFAULT_CA_HOME="$LE_WORKING_DIR/ca"
2016-11-09 11:30:39 +00:00
if [ -z "$LE_TEMP_DIR" ]; then
2016-11-01 12:29:58 +00:00
LE_TEMP_DIR="$LE_WORKING_DIR/tmp"
fi
2016-09-19 15:07:43 +00:00
}
#[domain] [keylength]
_initpath() {
__initHome
2016-11-09 11:30:39 +00:00
if [ -f "$ACCOUNT_CONF_PATH" ]; then
. "$ACCOUNT_CONF_PATH"
2016-03-08 12:44:12 +00:00
fi
2016-11-09 11:30:39 +00:00
if [ "$IN_CRON" ]; then
if [ ! "$_USER_PATH_EXPORTED" ]; then
2016-04-05 13:08:19 +00:00
_USER_PATH_EXPORTED=1
export PATH="$USER_PATH:$PATH"
fi
fi
2016-11-09 11:30:39 +00:00
if [ -z "$CA_HOME" ]; then
2016-09-27 15:43:18 +00:00
CA_HOME="$DEFAULT_CA_HOME"
fi
2016-04-05 13:08:19 +00:00
2016-11-09 11:30:39 +00:00
if [ -z "$API" ]; then
if [ -z "$STAGE" ]; then
2016-03-08 12:44:12 +00:00
API="$DEFAULT_CA"
else
API="$STAGE_CA"
_info "Using stage api:$API"
2016-11-09 11:30:39 +00:00
fi
2016-03-08 12:44:12 +00:00
fi
2016-11-09 11:30:39 +00:00
2016-09-27 15:43:18 +00:00
_API_HOST="$(echo "$API" | cut -d : -f 2 | tr -d '/')"
CA_DIR="$CA_HOME/$_API_HOST"
2016-11-09 11:30:39 +00:00
2016-09-27 15:43:18 +00:00
_DEFAULT_CA_CONF="$CA_DIR/ca.conf"
2016-11-09 11:30:39 +00:00
if [ -z "$CA_CONF" ]; then
2016-09-27 15:43:18 +00:00
CA_CONF="$_DEFAULT_CA_CONF"
fi
2016-11-09 11:30:39 +00:00
if [ -f "$CA_CONF" ]; then
2016-09-27 15:43:18 +00:00
. "$CA_CONF"
fi
2016-11-09 11:30:39 +00:00
if [ -z "$ACME_DIR" ]; then
2016-03-08 12:44:12 +00:00
ACME_DIR="/home/.acme"
fi
2016-11-09 11:30:39 +00:00
if [ -z "$APACHE_CONF_BACKUP_DIR" ]; then
2016-04-05 13:17:04 +00:00
APACHE_CONF_BACKUP_DIR="$LE_WORKING_DIR"
2016-03-08 12:44:12 +00:00
fi
2016-11-09 11:30:39 +00:00
if [ -z "$USER_AGENT" ]; then
2016-03-19 14:04:03 +00:00
USER_AGENT="$DEFAULT_USER_AGENT"
fi
2016-11-09 11:30:39 +00:00
if [ -z "$HTTP_HEADER" ]; then
2016-08-17 05:17:06 +00:00
HTTP_HEADER="$LE_WORKING_DIR/http.header"
fi
2016-09-27 15:43:18 +00:00
_OLD_ACCOUNT_KEY="$LE_WORKING_DIR/account.key"
_OLD_ACCOUNT_JSON="$LE_WORKING_DIR/account.json"
2016-11-09 11:30:39 +00:00
2016-09-27 15:43:18 +00:00
_DEFAULT_ACCOUNT_KEY_PATH="$CA_DIR/account.key"
_DEFAULT_ACCOUNT_JSON_PATH="$CA_DIR/account.json"
2016-11-09 11:30:39 +00:00
if [ -z "$ACCOUNT_KEY_PATH" ]; then
ACCOUNT_KEY_PATH="$_DEFAULT_ACCOUNT_KEY_PATH"
2016-03-08 12:44:12 +00:00
fi
2016-11-09 11:30:39 +00:00
if [ -z "$ACCOUNT_JSON_PATH" ]; then
2016-09-27 15:43:18 +00:00
ACCOUNT_JSON_PATH="$_DEFAULT_ACCOUNT_JSON_PATH"
fi
2016-11-09 11:30:39 +00:00
_DEFAULT_CERT_HOME="$LE_WORKING_DIR"
2016-11-09 11:30:39 +00:00
if [ -z "$CERT_HOME" ]; then
CERT_HOME="$_DEFAULT_CERT_HOME"
fi
2016-11-09 11:30:39 +00:00
if [ -z "$1" ]; then
2016-03-08 12:44:12 +00:00
return 0
fi
2016-11-09 11:30:39 +00:00
domain="$1"
_ilength="$2"
2016-03-08 12:44:12 +00:00
2016-11-09 11:30:39 +00:00
if [ -z "$DOMAIN_PATH" ]; then
domainhome="$CERT_HOME/$domain"
domainhomeecc="$CERT_HOME/$domain$ECC_SUFFIX"
2016-11-09 11:30:39 +00:00
2016-03-08 12:44:12 +00:00
DOMAIN_PATH="$domainhome"
2016-11-09 11:30:39 +00:00
if _isEccKey "$_ilength"; then
DOMAIN_PATH="$domainhomeecc"
else
2016-11-09 11:30:39 +00:00
if [ ! -d "$domainhome" ] && [ -d "$domainhomeecc" ]; then
_info "The domain '$domain' seems to have a ECC cert already, please add '$(__red "--ecc")' parameter if you want to use that cert."
fi
fi
_debug DOMAIN_PATH "$DOMAIN_PATH"
2016-03-08 12:44:12 +00:00
fi
2016-11-09 11:30:39 +00:00
if [ -z "$DOMAIN_CONF" ]; then
DOMAIN_CONF="$DOMAIN_PATH/$domain.conf"
2016-03-08 12:44:12 +00:00
fi
2016-11-09 11:30:39 +00:00
if [ -z "$DOMAIN_SSL_CONF" ]; then
DOMAIN_SSL_CONF="$DOMAIN_PATH/$domain.csr.conf"
2016-03-08 12:44:12 +00:00
fi
2016-11-09 11:30:39 +00:00
if [ -z "$CSR_PATH" ]; then
CSR_PATH="$DOMAIN_PATH/$domain.csr"
2016-03-08 12:44:12 +00:00
fi
2016-11-09 11:30:39 +00:00
if [ -z "$CERT_KEY_PATH" ]; then
CERT_KEY_PATH="$DOMAIN_PATH/$domain.key"
2016-03-08 12:44:12 +00:00
fi
2016-11-09 11:30:39 +00:00
if [ -z "$CERT_PATH" ]; then
CERT_PATH="$DOMAIN_PATH/$domain.cer"
2016-03-08 12:44:12 +00:00
fi
2016-11-09 11:30:39 +00:00
if [ -z "$CA_CERT_PATH" ]; then
CA_CERT_PATH="$DOMAIN_PATH/ca.cer"
2016-03-08 12:44:12 +00:00
fi
2016-11-09 11:30:39 +00:00
if [ -z "$CERT_FULLCHAIN_PATH" ]; then
CERT_FULLCHAIN_PATH="$DOMAIN_PATH/fullchain.cer"
2016-03-13 03:37:14 +00:00
fi
2016-11-09 11:30:39 +00:00
if [ -z "$CERT_PFX_PATH" ]; then
CERT_PFX_PATH="$DOMAIN_PATH/$domain.pfx"
fi
2016-11-09 11:30:39 +00:00
if [ -z "$TLS_CONF" ]; then
TLS_CONF="$DOMAIN_PATH/tls.valdation.conf"
fi
2016-11-09 11:30:39 +00:00
if [ -z "$TLS_CERT" ]; then
TLS_CERT="$DOMAIN_PATH/tls.valdation.cert"
fi
2016-11-09 11:30:39 +00:00
if [ -z "$TLS_KEY" ]; then
TLS_KEY="$DOMAIN_PATH/tls.valdation.key"
fi
2016-11-09 11:30:39 +00:00
if [ -z "$TLS_CSR" ]; then
TLS_CSR="$DOMAIN_PATH/tls.valdation.csr"
fi
2016-11-09 11:30:39 +00:00
2016-03-08 12:44:12 +00:00
}
2016-11-01 12:29:58 +00:00
_exec() {
2016-11-09 11:30:39 +00:00
if [ -z "$_EXEC_TEMP_ERR" ]; then
2016-11-01 12:29:58 +00:00
_EXEC_TEMP_ERR="$(_mktemp)"
fi
2016-11-09 11:30:39 +00:00
if [ "$_EXEC_TEMP_ERR" ]; then
2016-11-16 14:20:47 +00:00
eval "$@ 2>>$_EXEC_TEMP_ERR"
2016-11-01 12:29:58 +00:00
else
2016-11-16 14:20:47 +00:00
eval "$@"
2016-11-01 12:29:58 +00:00
fi
}
_exec_err() {
2016-11-16 14:20:47 +00:00
[ "$_EXEC_TEMP_ERR" ] && _err "$(cat "$_EXEC_TEMP_ERR")" && echo "" >"$_EXEC_TEMP_ERR"
2016-11-01 12:29:58 +00:00
}
2016-03-08 12:44:12 +00:00
_apachePath() {
2016-07-20 14:18:07 +00:00
_APACHECTL="apachectl"
2016-11-09 11:30:39 +00:00
if ! _exists apachectl; then
if _exists apache2ctl; then
_APACHECTL="apache2ctl"
2016-06-26 03:49:41 +00:00
else
2016-06-27 02:32:51 +00:00
_err "'apachectl not found. It seems that apache is not installed, or you are not root user.'"
2016-06-26 03:49:41 +00:00
_err "Please use webroot mode to try again."
return 1
fi
fi
2016-11-09 11:30:39 +00:00
if ! _exec $_APACHECTL -V >/dev/null; then
2016-11-01 12:29:58 +00:00
_exec_err
return 1
fi
2016-11-09 11:30:39 +00:00
if [ "$APACHE_HTTPD_CONF" ]; then
_saveaccountconf APACHE_HTTPD_CONF "$APACHE_HTTPD_CONF"
httpdconf="$APACHE_HTTPD_CONF"
2016-11-09 13:18:47 +00:00
httpdconfname="$(basename "$httpdconfname")"
else
2016-11-09 11:30:39 +00:00
httpdconfname="$($_APACHECTL -V | grep SERVER_CONFIG_FILE= | cut -d = -f 2 | tr -d '"')"
_debug httpdconfname "$httpdconfname"
2016-11-09 11:30:39 +00:00
if [ -z "$httpdconfname" ]; then
_err "Can not read apache config file."
return 1
fi
2016-11-09 11:30:39 +00:00
if _startswith "$httpdconfname" '/'; then
httpdconf="$httpdconfname"
2016-11-09 13:18:47 +00:00
httpdconfname="$(basename "$httpdconfname")"
else
2016-11-09 11:30:39 +00:00
httpdroot="$($_APACHECTL -V | grep HTTPD_ROOT= | cut -d = -f 2 | tr -d '"')"
_debug httpdroot "$httpdroot"
httpdconf="$httpdroot/$httpdconfname"
2016-11-09 13:18:47 +00:00
httpdconfname="$(basename "$httpdconfname")"
fi
fi
2016-05-21 06:47:23 +00:00
_debug httpdconf "$httpdconf"
2016-05-21 07:33:10 +00:00
_debug httpdconfname "$httpdconfname"
2016-11-09 11:30:39 +00:00
if [ ! -f "$httpdconf" ]; then
2016-05-21 06:47:23 +00:00
_err "Apache Config file not found" "$httpdconf"
2016-03-08 12:44:12 +00:00
return 1
fi
return 0
}
_restoreApache() {
2016-11-09 11:30:39 +00:00
if [ -z "$usingApache" ]; then
2016-03-08 12:44:12 +00:00
return 0
fi
_initpath
2016-11-09 11:30:39 +00:00
if ! _apachePath; then
2016-03-08 12:44:12 +00:00
return 1
fi
2016-11-09 11:30:39 +00:00
if [ ! -f "$APACHE_CONF_BACKUP_DIR/$httpdconfname" ]; then
2016-03-08 12:44:12 +00:00
_debug "No config file to restore."
return 0
fi
2016-11-09 11:30:39 +00:00
cat "$APACHE_CONF_BACKUP_DIR/$httpdconfname" >"$httpdconf"
2016-04-16 10:31:00 +00:00
_debug "Restored: $httpdconf."
2016-11-09 11:30:39 +00:00
if ! _exec $_APACHECTL -t; then
2016-11-01 12:29:58 +00:00
_exec_err
2016-03-08 12:44:12 +00:00
_err "Sorry, restore apache config error, please contact me."
2016-11-09 11:30:39 +00:00
return 1
2016-03-08 12:44:12 +00:00
fi
2016-04-16 10:31:00 +00:00
_debug "Restored successfully."
2016-03-08 12:44:12 +00:00
rm -f "$APACHE_CONF_BACKUP_DIR/$httpdconfname"
2016-11-09 11:30:39 +00:00
return 0
2016-03-08 12:44:12 +00:00
}
_setApache() {
_initpath
2016-11-09 11:30:39 +00:00
if ! _apachePath; then
2016-03-08 12:44:12 +00:00
return 1
fi
2016-06-15 05:46:45 +00:00
#test the conf first
2016-06-15 05:57:27 +00:00
_info "Checking if there is an error in the apache config file before starting."
2016-11-09 11:30:39 +00:00
2016-11-09 14:35:30 +00:00
if ! _exec "$_APACHECTL" -t >/dev/null; then
2016-11-01 12:29:58 +00:00
_exec_err
_err "The apache config file has error, please fix it first, then try again."
2016-06-15 05:57:27 +00:00
_err "Don't worry, there is nothing changed to your system."
2016-11-09 11:30:39 +00:00
return 1
2016-06-15 05:46:45 +00:00
else
_info "OK"
fi
2016-11-09 11:30:39 +00:00
2016-03-08 12:44:12 +00:00
#backup the conf
2016-05-16 14:42:32 +00:00
_debug "Backup apache config file" "$httpdconf"
2016-11-09 11:30:39 +00:00
if ! cp "$httpdconf" "$APACHE_CONF_BACKUP_DIR/"; then
2016-06-15 05:57:27 +00:00
_err "Can not backup apache config file, so abort. Don't worry, the apache config is not changed."
2016-05-21 07:33:10 +00:00
_err "This might be a bug of $PROJECT_NAME , pleae report issue: $PROJECT"
return 1
fi
2016-03-08 12:44:12 +00:00
_info "JFYI, Config file $httpdconf is backuped to $APACHE_CONF_BACKUP_DIR/$httpdconfname"
_info "In case there is an error that can not be restored automatically, you may try restore it yourself."
_info "The backup file will be deleted on sucess, just forget it."
2016-11-09 11:30:39 +00:00
2016-03-08 12:44:12 +00:00
#add alias
2016-11-09 11:30:39 +00:00
apacheVer="$($_APACHECTL -V | grep "Server version:" | cut -d : -f 2 | cut -d " " -f 2 | cut -d '/' -f 2)"
_debug "apacheVer" "$apacheVer"
apacheMajer="$(echo "$apacheVer" | cut -d . -f 1)"
apacheMinor="$(echo "$apacheVer" | cut -d . -f 2)"
2016-11-09 11:30:39 +00:00
if [ "$apacheVer" ] && [ "$apacheMajer$apacheMinor" -ge "24" ]; then
echo "
2016-03-08 12:44:12 +00:00
Alias /.well-known/acme-challenge $ACME_DIR
<Directory $ACME_DIR >
Require all granted
</Directory>
2016-11-09 11:30:39 +00:00
" >>"$httpdconf"
else
echo "
Alias /.well-known/acme-challenge $ACME_DIR
<Directory $ACME_DIR >
Order allow,deny
Allow from all
2016-03-08 12:44:12 +00:00
</Directory>
2016-11-09 11:30:39 +00:00
" >>"$httpdconf"
fi
2016-11-09 11:30:39 +00:00
_msg="$($_APACHECTL -t 2>&1)"
if [ "$?" != "0" ]; then
2016-06-15 05:46:45 +00:00
_err "Sorry, apache config error"
2016-11-09 11:30:39 +00:00
if _restoreApache; then
2016-06-15 05:57:27 +00:00
_err "The apache config file is restored."
2016-06-15 05:46:45 +00:00
else
2016-06-15 05:57:27 +00:00
_err "Sorry, The apache config file can not be restored, please report bug."
2016-06-15 05:46:45 +00:00
fi
2016-11-09 11:30:39 +00:00
return 1
2016-03-08 12:44:12 +00:00
fi
2016-11-09 11:30:39 +00:00
if [ ! -d "$ACME_DIR" ]; then
2016-03-08 12:44:12 +00:00
mkdir -p "$ACME_DIR"
chmod 755 "$ACME_DIR"
fi
2016-11-09 11:30:39 +00:00
2016-11-09 14:35:30 +00:00
if ! _exec "$_APACHECTL" graceful; then
2016-11-09 11:30:39 +00:00
_exec_err
2016-11-01 12:29:58 +00:00
_err "$_APACHECTL graceful error, please contact me."
2016-03-08 12:44:12 +00:00
_restoreApache
2016-11-09 11:30:39 +00:00
return 1
2016-03-08 12:44:12 +00:00
fi
usingApache="1"
return 0
}
2016-04-16 10:31:00 +00:00
_clearup() {
2016-11-09 14:35:30 +00:00
_stopserver "$serverproc"
2016-03-08 12:44:12 +00:00
serverproc=""
_restoreApache
_clearupdns
2016-11-09 11:30:39 +00:00
if [ -z "$DEBUG" ]; then
rm -f "$TLS_CONF"
rm -f "$TLS_CERT"
rm -f "$TLS_KEY"
rm -f "$TLS_CSR"
fi
2016-03-08 12:44:12 +00:00
}
_clearupdns() {
_debug "_clearupdns"
2016-11-09 11:30:39 +00:00
if [ "$dnsadded" != 1 ] || [ -z "$vlist" ]; then
2016-11-01 11:14:33 +00:00
_debug "Dns not added, skip."
return
fi
2016-11-09 11:30:39 +00:00
ventries=$(echo "$vlist" | tr ',' ' ')
for ventry in $ventries; do
2016-11-09 14:07:32 +00:00
d=$(echo "$ventry" | cut -d "$sep" -f 1)
keyauthorization=$(echo "$ventry" | cut -d "$sep" -f 2)
vtype=$(echo "$ventry" | cut -d "$sep" -f 4)
_currentRoot=$(echo "$ventry" | cut -d "$sep" -f 5)
2016-11-09 11:30:39 +00:00
if [ "$keyauthorization" = "$STATE_VERIFIED" ]; then
_info "$d is already verified, skip $vtype."
continue
fi
2016-11-09 11:30:39 +00:00
if [ "$vtype" != "$VTYPE_DNS" ]; then
_info "Skip $d for $vtype"
continue
fi
2016-11-09 11:30:39 +00:00
2016-11-09 14:07:32 +00:00
d_api="$(_findHook "$d" dnsapi "$_currentRoot")"
_debug d_api "$d_api"
2016-11-09 11:30:39 +00:00
if [ -z "$d_api" ]; then
_info "Not Found domain api file: $d_api"
continue
fi
2016-11-09 11:30:39 +00:00
(
2016-11-09 13:44:46 +00:00
if ! . "$d_api"; then
_err "Load file $d_api error. Please check your api file and try again."
return 1
fi
2016-11-09 11:30:39 +00:00
rmcommand="${_currentRoot}_rm"
2016-11-09 13:44:46 +00:00
if ! _exists "$rmcommand"; then
_err "It seems that your api file doesn't define $rmcommand"
return 1
fi
2016-11-09 11:30:39 +00:00
txtdomain="_acme-challenge.$d"
2016-11-09 11:30:39 +00:00
2016-11-09 13:44:46 +00:00
if ! $rmcommand "$txtdomain"; then
_err "Error removing txt for domain:$txtdomain"
return 1
fi
)
2016-11-09 11:30:39 +00:00
done
}
2016-03-08 12:44:12 +00:00
# webroot removelevel tokenfile
_clearupwebbroot() {
__webroot="$1"
2016-11-09 11:30:39 +00:00
if [ -z "$__webroot" ]; then
2016-03-08 12:44:12 +00:00
_debug "no webroot specified, skip"
return 0
fi
2016-11-09 11:30:39 +00:00
2016-07-15 08:40:03 +00:00
_rmpath=""
2016-11-09 11:30:39 +00:00
if [ "$2" = '1' ]; then
2016-07-15 08:40:03 +00:00
_rmpath="$__webroot/.well-known"
2016-11-09 11:30:39 +00:00
elif [ "$2" = '2' ]; then
2016-07-15 08:40:03 +00:00
_rmpath="$__webroot/.well-known/acme-challenge"
2016-11-09 11:30:39 +00:00
elif [ "$2" = '3' ]; then
2016-07-15 08:40:03 +00:00
_rmpath="$__webroot/.well-known/acme-challenge/$3"
2016-03-08 12:44:12 +00:00
else
2016-06-18 03:29:28 +00:00
_debug "Skip for removelevel:$2"
2016-03-08 12:44:12 +00:00
fi
2016-11-09 11:30:39 +00:00
if [ "$_rmpath" ]; then
if [ "$DEBUG" ]; then
2016-07-15 08:40:03 +00:00
_debug "Debugging, skip removing: $_rmpath"
else
rm -rf "$_rmpath"
fi
fi
2016-11-09 11:30:39 +00:00
2016-03-08 12:44:12 +00:00
return 0
}
_on_before_issue() {
2016-09-26 05:33:09 +00:00
_debug _on_before_issue
2016-11-09 11:30:39 +00:00
if _hasfield "$Le_Webroot" "$NO_VALUE"; then
if ! _exists "nc"; then
_err "Please install netcat(nc) tools first."
return 1
fi
fi
_debug Le_LocalAddress "$Le_LocalAddress"
2016-11-09 11:30:39 +00:00
alldomains=$(echo "$Le_Domain,$Le_Alt" | tr ',' ' ')
_index=1
_currentRoot=""
_addrIndex=1
2016-11-09 11:30:39 +00:00
for d in $alldomains; do
2016-11-09 13:44:46 +00:00
_debug "Check for domain" "$d"
_currentRoot="$(_getfield "$Le_Webroot" $_index)"
_debug "_currentRoot" "$_currentRoot"
_index=$(_math $_index + 1)
_checkport=""
2016-11-09 11:30:39 +00:00
if [ "$_currentRoot" = "$NO_VALUE" ]; then
_info "Standalone mode."
2016-11-09 11:30:39 +00:00
if [ -z "$Le_HTTPPort" ]; then
Le_HTTPPort=80
else
2016-11-09 11:30:39 +00:00
_savedomainconf "Le_HTTPPort" "$Le_HTTPPort"
fi
_checkport="$Le_HTTPPort"
2016-11-09 11:30:39 +00:00
elif [ "$_currentRoot" = "$W_TLS" ]; then
_info "Standalone tls mode."
2016-11-09 11:30:39 +00:00
if [ -z "$Le_TLSPort" ]; then
Le_TLSPort=443
else
2016-11-09 11:30:39 +00:00
_savedomainconf "Le_TLSPort" "$Le_TLSPort"
fi
_checkport="$Le_TLSPort"
fi
2016-11-09 11:30:39 +00:00
if [ "$_checkport" ]; then
_debug _checkport "$_checkport"
_checkaddr="$(_getfield "$Le_LocalAddress" $_addrIndex)"
_debug _checkaddr "$_checkaddr"
2016-11-09 11:30:39 +00:00
_addrIndex="$(_math $_addrIndex + 1)"
2016-11-09 11:30:39 +00:00
_netprc="$(_ss "$_checkport" | grep "$_checkport")"
netprc="$(echo "$_netprc" | grep "$_checkaddr")"
2016-11-09 11:30:39 +00:00
if [ -z "$netprc" ]; then
netprc="$(echo "$_netprc" | grep "$LOCAL_ANY_ADDRESS")"
fi
2016-11-09 11:30:39 +00:00
if [ "$netprc" ]; then
_err "$netprc"
2016-11-09 11:30:39 +00:00
_err "tcp port $_checkport is already used by $(echo "$netprc" | cut -d : -f 4)"
_err "Please stop it first"
return 1
fi
fi
done
2016-11-09 11:30:39 +00:00
if _hasfield "$Le_Webroot" "apache"; then
if ! _setApache; then
_err "set up apache error. Report error to me."
return 1
fi
else
usingApache=""
fi
#run pre hook
2016-11-09 11:30:39 +00:00
if [ "$Le_PreHook" ]; then
_info "Run pre hook:'$Le_PreHook'"
if ! (
cd "$DOMAIN_PATH" && eval "$Le_PreHook"
2016-11-09 11:30:39 +00:00
); then
_err "Error when run pre hook."
return 1
fi
fi
}
_on_issue_err() {
2016-09-26 05:33:09 +00:00
_debug _on_issue_err
2016-11-09 11:30:39 +00:00
if [ "$LOG_FILE" ]; then
2016-09-25 13:58:59 +00:00
_err "Please check log file for more details: $LOG_FILE"
else
2016-11-16 11:45:00 +00:00
_err "Please add '--debug' or '--log' to check more details."
2016-09-25 13:58:59 +00:00
_err "See: $_DEBUG_WIKI"
fi
2016-11-09 11:30:39 +00:00
if [ "$DEBUG" ] && [ "$DEBUG" -gt "0" ]; then
2016-11-04 14:03:41 +00:00
_debug "$(_dlg_versions)"
fi
2016-11-09 11:30:39 +00:00
#run the post hook
2016-11-09 11:30:39 +00:00
if [ "$Le_PostHook" ]; then
_info "Run post hook:'$Le_PostHook'"
if ! (
cd "$DOMAIN_PATH" && eval "$Le_PostHook"
2016-11-09 11:30:39 +00:00
); then
_err "Error when run post hook."
return 1
fi
fi
}
_on_issue_success() {
2016-09-26 05:33:09 +00:00
_debug _on_issue_success
#run the post hook
2016-11-09 11:30:39 +00:00
if [ "$Le_PostHook" ]; then
_info "Run post hook:'$Le_PostHook'"
if ! (
cd "$DOMAIN_PATH" && eval "$Le_PostHook"
2016-11-09 11:30:39 +00:00
); then
_err "Error when run post hook."
return 1
fi
fi
2016-11-09 11:30:39 +00:00
#run renew hook
2016-11-09 11:30:39 +00:00
if [ "$IS_RENEW" ] && [ "$Le_RenewHook" ]; then
_info "Run renew hook:'$Le_RenewHook'"
if ! (
cd "$DOMAIN_PATH" && eval "$Le_RenewHook"
2016-11-09 11:30:39 +00:00
); then
_err "Error when run renew hook."
return 1
fi
2016-11-09 11:30:39 +00:00
fi
}
updateaccount() {
_initpath
_regAccount
}
registeraccount() {
_reg_length="$1"
_initpath
_regAccount "$_reg_length"
}
__calcAccountKeyHash() {
2016-11-09 13:56:50 +00:00
[ -f "$ACCOUNT_KEY_PATH" ] && _digest sha256 <"$ACCOUNT_KEY_PATH"
}
#keylength
_regAccount() {
_initpath
_reg_length="$1"
2016-11-09 11:30:39 +00:00
2016-09-27 15:43:18 +00:00
if [ ! -f "$ACCOUNT_KEY_PATH" ] && [ -f "$_OLD_ACCOUNT_KEY" ]; then
_info "mv $_OLD_ACCOUNT_KEY to $ACCOUNT_KEY_PATH"
mv "$_OLD_ACCOUNT_KEY" "$ACCOUNT_KEY_PATH"
fi
2016-11-09 11:30:39 +00:00
2016-09-27 15:43:18 +00:00
if [ ! -f "$ACCOUNT_JSON_PATH" ] && [ -f "$_OLD_ACCOUNT_JSON" ]; then
_info "mv $_OLD_ACCOUNT_JSON to $ACCOUNT_JSON_PATH"
mv "$_OLD_ACCOUNT_JSON" "$ACCOUNT_JSON_PATH"
fi
2016-11-09 11:30:39 +00:00
if [ ! -f "$ACCOUNT_KEY_PATH" ]; then
if ! _create_account_key "$_reg_length"; then
_err "Create account key error."
return 1
fi
fi
2016-11-09 11:30:39 +00:00
if ! _calcjwk "$ACCOUNT_KEY_PATH"; then
return 1
fi
_updateTos=""
_reg_res="new-reg"
2016-11-09 11:30:39 +00:00
while true; do
_debug AGREEMENT "$AGREEMENT"
2016-11-09 11:30:39 +00:00
regjson='{"resource": "'$_reg_res'", "agreement": "'$AGREEMENT'"}'
2016-11-09 11:30:39 +00:00
if [ "$ACCOUNT_EMAIL" ]; then
regjson='{"resource": "'$_reg_res'", "contact": ["mailto: '$ACCOUNT_EMAIL'"], "agreement": "'$AGREEMENT'"}'
fi
2016-11-09 11:30:39 +00:00
if [ -z "$_updateTos" ]; then
_info "Registering account"
2016-11-09 11:30:39 +00:00
if ! _send_signed_request "$API/acme/new-reg" "$regjson"; then
_err "Register account Error: $response"
return 1
fi
2016-11-09 11:30:39 +00:00
if [ "$code" = "" ] || [ "$code" = '201' ]; then
2016-11-09 13:56:50 +00:00
echo "$response" >"$ACCOUNT_JSON_PATH"
_info "Registered"
2016-11-09 11:30:39 +00:00
elif [ "$code" = '409' ]; then
_info "Already registered"
else
_err "Register account Error: $response"
return 1
fi
2016-11-09 11:30:39 +00:00
_accUri="$(echo "$responseHeaders" | grep "^Location:" | _head_n 1 | cut -d ' ' -f 2 | tr -d "\r\n")"
_debug "_accUri" "$_accUri"
2016-10-03 14:29:48 +00:00
_tos="$(echo "$responseHeaders" | grep "^Link:.*rel=\"terms-of-service\"" | _head_n 1 | _egrep_o "<.*>" | tr -d '<>')"
_debug "_tos" "$_tos"
2016-11-09 11:30:39 +00:00
if [ -z "$_tos" ]; then
_debug "Use default tos: $DEFAULT_AGREEMENT"
_tos="$DEFAULT_AGREEMENT"
fi
if [ "$_tos" != "$AGREEMENT" ]; then
_updateTos=1
AGREEMENT="$_tos"
_reg_res="reg"
continue
fi
2016-11-09 11:30:39 +00:00
else
_debug "Update tos: $_tos"
2016-11-09 11:30:39 +00:00
if ! _send_signed_request "$_accUri" "$regjson"; then
_err "Update tos error."
return 1
fi
2016-11-09 11:30:39 +00:00
if [ "$code" = '202' ]; then
_info "Update success."
2016-11-09 11:30:39 +00:00
CA_KEY_HASH="$(__calcAccountKeyHash)"
_debug "Calc CA_KEY_HASH" "$CA_KEY_HASH"
_savecaconf CA_KEY_HASH "$CA_KEY_HASH"
else
_err "Update account error."
return 1
fi
fi
return 0
done
}
2016-10-11 12:56:59 +00:00
# domain folder file
_findHook() {
_hookdomain="$1"
_hookcat="$2"
_hookname="$3"
2016-11-11 15:30:14 +00:00
if [ -f "$_SCRIPT_HOME/$_hookcat/$_hookname" ]; then
d_api="$_SCRIPT_HOME/$_hookcat/$_hookname"
elif [ -f "$_SCRIPT_HOME/$_hookcat/$_hookname.sh" ]; then
d_api="$_SCRIPT_HOME/$_hookcat/$_hookname.sh"
2016-11-09 11:30:39 +00:00
elif [ -f "$LE_WORKING_DIR/$_hookdomain/$_hookname" ]; then
2016-10-11 12:56:59 +00:00
d_api="$LE_WORKING_DIR/$_hookdomain/$_hookname"
2016-11-09 11:30:39 +00:00
elif [ -f "$LE_WORKING_DIR/$_hookdomain/$_hookname.sh" ]; then
2016-10-11 12:56:59 +00:00
d_api="$LE_WORKING_DIR/$_hookdomain/$_hookname.sh"
2016-11-09 11:30:39 +00:00
elif [ -f "$LE_WORKING_DIR/$_hookname" ]; then
2016-10-11 12:56:59 +00:00
d_api="$LE_WORKING_DIR/$_hookname"
2016-11-09 11:30:39 +00:00
elif [ -f "$LE_WORKING_DIR/$_hookname.sh" ]; then
2016-10-11 12:56:59 +00:00
d_api="$LE_WORKING_DIR/$_hookname.sh"
2016-11-09 11:30:39 +00:00
elif [ -f "$LE_WORKING_DIR/$_hookcat/$_hookname" ]; then
2016-10-11 12:56:59 +00:00
d_api="$LE_WORKING_DIR/$_hookcat/$_hookname"
2016-11-09 11:30:39 +00:00
elif [ -f "$LE_WORKING_DIR/$_hookcat/$_hookname.sh" ]; then
2016-10-11 12:56:59 +00:00
d_api="$LE_WORKING_DIR/$_hookcat/$_hookname.sh"
fi
printf "%s" "$d_api"
}
2016-10-27 14:10:58 +00:00
#domain
__get_domain_new_authz() {
_gdnd="$1"
_info "Getting new-authz for domain" "$_gdnd"
2016-11-09 11:30:39 +00:00
2016-10-27 14:10:58 +00:00
_Max_new_authz_retry_times=5
_authz_i=0
2016-11-09 11:30:39 +00:00
while [ "$_authz_i" -lt "$_Max_new_authz_retry_times" ]; do
2016-11-11 15:52:02 +00:00
_debug "Try new-authz for the $_authz_i time."
2016-11-09 11:30:39 +00:00
if ! _send_signed_request "$API/acme/new-authz" "{\"resource\": \"new-authz\", \"identifier\": {\"type\": \"dns\", \"value\": \"$(_idn "$_gdnd")\"}}"; then
2016-10-27 14:10:58 +00:00
_err "Can not get domain new authz."
return 1
fi
2016-11-09 11:30:39 +00:00
if ! _contains "$response" "An error occurred while processing your request"; then
2016-10-27 14:10:58 +00:00
_info "The new-authz request is ok."
break
fi
_authz_i="$(_math "$_authz_i" + 1)"
2016-10-27 14:47:19 +00:00
_info "The server is busy, Sleep $_authz_i to retry."
2016-10-27 14:10:58 +00:00
_sleep "$_authz_i"
2016-11-09 11:30:39 +00:00
done
2016-10-27 14:10:58 +00:00
2016-11-09 11:30:39 +00:00
if [ "$_authz_i" = "$_Max_new_authz_retry_times" ]; then
2016-11-11 15:52:02 +00:00
_err "new-authz retry reach the max $_Max_new_authz_retry_times times."
2016-10-27 14:10:58 +00:00
fi
2016-11-09 11:30:39 +00:00
if [ ! -z "$code" ] && [ ! "$code" = '201' ]; then
2016-10-27 14:10:58 +00:00
_err "new-authz error: $response"
return 1
fi
}
#webroot, domain domainlist keylength
2016-03-08 12:44:12 +00:00
issue() {
2016-11-09 11:30:39 +00:00
if [ -z "$2" ]; then
_usage "Usage: $PROJECT_ENTRY --issue -d a.com -w /path/to/webroot/a.com/ "
2016-03-08 12:44:12 +00:00
return 1
fi
Le_Webroot="$1"
Le_Domain="$2"
Le_Alt="$3"
Le_Keylength="$4"
Le_RealCertPath="$5"
Le_RealKeyPath="$6"
Le_RealCACertPath="$7"
Le_ReloadCmd="$8"
Le_RealFullChainPath="$9"
Le_PreHook="${10}"
Le_PostHook="${11}"
Le_RenewHook="${12}"
Le_LocalAddress="${13}"
2016-11-09 11:30:39 +00:00
#remove these later.
2016-11-09 11:30:39 +00:00
if [ "$Le_Webroot" = "dns-cf" ]; then
Le_Webroot="dns_cf"
fi
2016-11-09 11:30:39 +00:00
if [ "$Le_Webroot" = "dns-dp" ]; then
Le_Webroot="dns_dp"
fi
2016-11-09 11:30:39 +00:00
if [ "$Le_Webroot" = "dns-cx" ]; then
Le_Webroot="dns_cx"
fi
2016-09-27 15:52:52 +00:00
_debug "Using api: $API"
2016-11-09 11:30:39 +00:00
if [ ! "$IS_RENEW" ]; then
2016-11-09 13:56:50 +00:00
_initpath "$Le_Domain" "$Le_Keylength"
mkdir -p "$DOMAIN_PATH"
fi
2016-11-09 11:30:39 +00:00
if [ -f "$DOMAIN_CONF" ]; then
Le_NextRenewTime=$(_readdomainconf Le_NextRenewTime)
2016-05-07 15:33:42 +00:00
_debug Le_NextRenewTime "$Le_NextRenewTime"
2016-11-09 12:45:57 +00:00
if [ -z "$FORCE" ] && [ "$Le_NextRenewTime" ] && [ "$(_time)" -lt "$Le_NextRenewTime" ]; then
_saved_domain=$(_readdomainconf Le_Domain)
_debug _saved_domain "$_saved_domain"
_saved_alt=$(_readdomainconf Le_Alt)
_debug _saved_alt "$_saved_alt"
2016-11-09 11:30:39 +00:00
if [ "$_saved_domain,$_saved_alt" = "$Le_Domain,$Le_Alt" ]; then
_info "Domains not changed."
_info "Skip, Next renewal time is: $(__green "$(_readdomainconf Le_NextRenewTimeStr)")"
2016-11-09 11:30:39 +00:00
_info "Add '$(__red '--force')' to force to renew."
return $RENEW_SKIP
else
_info "Domains have changed."
fi
2016-03-08 12:44:12 +00:00
fi
fi
2016-11-09 11:30:39 +00:00
_savedomainconf "Le_Domain" "$Le_Domain"
_savedomainconf "Le_Alt" "$Le_Alt"
_savedomainconf "Le_Webroot" "$Le_Webroot"
_savedomainconf "Le_PreHook" "$Le_PreHook"
_savedomainconf "Le_PostHook" "$Le_PostHook"
_savedomainconf "Le_RenewHook" "$Le_RenewHook"
if [ "$Le_LocalAddress" ]; then
_savedomainconf "Le_LocalAddress" "$Le_LocalAddress"
2016-10-29 09:43:38 +00:00
else
_cleardomainconf "Le_LocalAddress"
fi
2016-09-28 05:07:51 +00:00
Le_API="$API"
_savedomainconf "Le_API" "$Le_API"
2016-11-09 11:30:39 +00:00
if [ "$Le_Alt" = "$NO_VALUE" ]; then
2016-03-08 12:44:12 +00:00
Le_Alt=""
fi
2016-11-09 11:30:39 +00:00
if [ "$Le_Keylength" = "$NO_VALUE" ]; then
Le_Keylength=""
fi
2016-11-09 11:30:39 +00:00
if ! _on_before_issue; then
_err "_on_before_issue."
return 1
2016-03-08 12:44:12 +00:00
fi
_saved_account_key_hash="$(_readcaconf "CA_KEY_HASH")"
_debug2 _saved_account_key_hash "$_saved_account_key_hash"
2016-11-09 11:30:39 +00:00
if [ -z "$_saved_account_key_hash" ] || [ "$_saved_account_key_hash" != "$(__calcAccountKeyHash)" ]; then
if ! _regAccount "$_accountkeylength"; then
_on_issue_err
return 1
fi
else
_debug "_saved_account_key_hash is not changed, skip register account."
fi
2016-11-09 11:30:39 +00:00
if [ -f "$CSR_PATH" ] && [ ! -f "$CERT_KEY_PATH" ]; then
_info "Signing from existing CSR."
else
_key=$(_readdomainconf Le_Keylength)
_debug "Read key length:$_key"
2016-11-09 11:30:39 +00:00
if [ ! -f "$CERT_KEY_PATH" ] || [ "$Le_Keylength" != "$_key" ]; then
2016-11-09 13:56:50 +00:00
if ! createDomainKey "$Le_Domain" "$Le_Keylength"; then
_err "Create domain key error."
_clearup
_on_issue_err
return 1
fi
fi
2016-11-09 11:30:39 +00:00
if ! _createcsr "$Le_Domain" "$Le_Alt" "$CERT_KEY_PATH" "$CSR_PATH" "$DOMAIN_SSL_CONF"; then
_err "Create CSR error."
2016-04-16 10:31:00 +00:00
_clearup
_on_issue_err
return 1
fi
2016-03-08 12:44:12 +00:00
fi
2016-11-09 11:30:39 +00:00
_savedomainconf "Le_Keylength" "$Le_Keylength"
2016-03-08 12:44:12 +00:00
vlist="$Le_Vlist"
2016-10-28 15:30:32 +00:00
_info "Getting domain auth token for each domain"
2016-03-08 12:44:12 +00:00
sep='#'
2016-11-09 11:30:39 +00:00
if [ -z "$vlist" ]; then
alldomains=$(echo "$Le_Domain,$Le_Alt" | tr ',' ' ')
_index=1
_currentRoot=""
2016-11-09 11:30:39 +00:00
for d in $alldomains; do
2016-11-09 13:56:50 +00:00
_info "Getting webroot for domain" "$d"
_w="$(echo $Le_Webroot | cut -d , -f $_index)"
_info _w "$_w"
2016-11-09 11:30:39 +00:00
if [ "$_w" ]; then
_currentRoot="$_w"
fi
_debug "_currentRoot" "$_currentRoot"
2016-04-17 09:33:08 +00:00
_index=$(_math $_index + 1)
2016-11-09 11:30:39 +00:00
vtype="$VTYPE_HTTP"
2016-11-09 11:30:39 +00:00
if _startswith "$_currentRoot" "dns"; then
vtype="$VTYPE_DNS"
fi
2016-11-09 11:30:39 +00:00
if [ "$_currentRoot" = "$W_TLS" ]; then
vtype="$VTYPE_TLS"
fi
2016-05-31 12:32:58 +00:00
2016-11-09 11:30:39 +00:00
if ! __get_domain_new_authz "$d"; then
2016-05-31 12:32:58 +00:00
_clearup
_on_issue_err
2016-05-31 12:32:58 +00:00
return 1
fi
2016-11-09 11:30:39 +00:00
if [ -z "$thumbprint" ]; then
accountkey_json=$(printf "%s" "$jwk" | tr -d ' ')
2016-10-29 04:14:48 +00:00
thumbprint=$(printf "%s" "$accountkey_json" | _digest "sha256" | _urlencode)
2016-03-08 12:44:12 +00:00
fi
2016-11-09 11:30:39 +00:00
entry="$(printf "%s\n" "$response" | _egrep_o '[^\{]*"type":"'$vtype'"[^\}]*')"
2016-03-08 12:44:12 +00:00
_debug entry "$entry"
2016-11-09 11:30:39 +00:00
if [ -z "$entry" ]; then
2016-05-13 13:14:00 +00:00
_err "Error, can not get domain token $d"
_clearup
_on_issue_err
2016-05-13 13:14:00 +00:00
return 1
fi
token="$(printf "%s\n" "$entry" | _egrep_o '"token":"[^"]*' | cut -d : -f 2 | tr -d '"')"
2016-11-09 13:56:50 +00:00
_debug token "$token"
2016-11-09 11:30:39 +00:00
uri="$(printf "%s\n" "$entry" | _egrep_o '"uri":"[^"]*' | cut -d : -f 2,3 | tr -d '"')"
2016-11-09 13:56:50 +00:00
_debug uri "$uri"
2016-10-28 15:30:32 +00:00
2016-03-08 12:44:12 +00:00
keyauthorization="$token.$thumbprint"
_debug keyauthorization "$keyauthorization"
2016-11-09 12:45:57 +00:00
if printf "%s" "$response" | grep '"status":"valid"' >/dev/null 2>&1; then
_info "$d is already verified, skip."
2016-11-09 13:56:50 +00:00
keyauthorization="$STATE_VERIFIED"
_debug keyauthorization "$keyauthorization"
fi
dvlist="$d$sep$keyauthorization$sep$uri$sep$vtype$sep$_currentRoot"
2016-03-08 12:44:12 +00:00
_debug dvlist "$dvlist"
2016-11-09 11:30:39 +00:00
2016-03-08 12:44:12 +00:00
vlist="$vlist$dvlist,"
done
#add entry
dnsadded=""
2016-11-09 11:30:39 +00:00
ventries=$(echo "$vlist" | tr ',' ' ')
for ventry in $ventries; do
2016-11-09 13:56:50 +00:00
d=$(echo "$ventry" | cut -d "$sep" -f 1)
keyauthorization=$(echo "$ventry" | cut -d "$sep" -f 2)
vtype=$(echo "$ventry" | cut -d "$sep" -f 4)
_currentRoot=$(echo "$ventry" | cut -d "$sep" -f 5)
2016-11-09 11:30:39 +00:00
if [ "$keyauthorization" = "$STATE_VERIFIED" ]; then
_info "$d is already verified, skip $vtype."
continue
fi
2016-11-09 11:30:39 +00:00
if [ "$vtype" = "$VTYPE_DNS" ]; then
2016-03-08 12:44:12 +00:00
dnsadded='0'
txtdomain="_acme-challenge.$d"
_debug txtdomain "$txtdomain"
txt="$(printf "%s" "$keyauthorization" | _digest "sha256" | _urlencode)"
2016-03-08 12:44:12 +00:00
_debug txt "$txt"
2016-10-11 12:56:59 +00:00
2016-11-09 14:07:32 +00:00
d_api="$(_findHook "$d" dnsapi "$_currentRoot")"
2016-10-11 12:56:59 +00:00
2016-03-08 12:44:12 +00:00
_debug d_api "$d_api"
2016-11-09 11:30:39 +00:00
if [ "$d_api" ]; then
2016-03-08 12:44:12 +00:00
_info "Found domain api file: $d_api"
else
_err "Add the following TXT record:"
2016-11-09 14:07:32 +00:00
_err "Domain: '$(__green "$txtdomain")'"
_err "TXT value: '$(__green "$txt")'"
2016-03-08 12:44:12 +00:00
_err "Please be aware that you prepend _acme-challenge. before your domain"
_err "so the resulting subdomain will be: $txtdomain"
continue
fi
2016-11-09 11:30:39 +00:00
2016-03-31 13:28:54 +00:00
(
2016-11-09 13:56:50 +00:00
if ! . "$d_api"; then
2016-03-31 13:28:54 +00:00
_err "Load file $d_api error. Please check your api file and try again."
return 1
fi
2016-11-09 11:30:39 +00:00
addcommand="${_currentRoot}_add"
2016-11-09 13:56:50 +00:00
if ! _exists "$addcommand"; then
2016-03-31 13:28:54 +00:00
_err "It seems that your api file is not correct, it must have a function named: $addcommand"
return 1
fi
2016-11-09 11:30:39 +00:00
2016-11-09 13:56:50 +00:00
if ! $addcommand "$txtdomain" "$txt"; then
2016-03-31 13:28:54 +00:00
_err "Error add txt for domain:$txtdomain"
return 1
fi
)
2016-11-09 11:30:39 +00:00
if [ "$?" != "0" ]; then
2016-04-16 10:31:00 +00:00
_clearup
_on_issue_err
2016-03-08 12:44:12 +00:00
return 1
fi
dnsadded='1'
fi
done
2016-11-09 11:30:39 +00:00
if [ "$dnsadded" = '0' ]; then
_savedomainconf "Le_Vlist" "$vlist"
2016-03-08 12:44:12 +00:00
_debug "Dns record not added yet, so, save to $DOMAIN_CONF and exit."
_err "Please add the TXT records to the domains, and retry again."
2016-04-16 10:31:00 +00:00
_clearup
_on_issue_err
2016-03-08 12:44:12 +00:00
return 1
fi
2016-11-09 11:30:39 +00:00
2016-03-08 12:44:12 +00:00
fi
2016-11-09 11:30:39 +00:00
if [ "$dnsadded" = '1' ]; then
if [ -z "$Le_DNSSleep" ]; then
2016-11-09 13:56:50 +00:00
Le_DNSSleep="$DEFAULT_DNS_SLEEP"
else
2016-11-09 11:30:39 +00:00
_savedomainconf "Le_DNSSleep" "$Le_DNSSleep"
fi
_info "Sleep $(__green $Le_DNSSleep) seconds for the txt records to take effect"
2016-11-09 13:56:50 +00:00
_sleep "$Le_DNSSleep"
2016-03-08 12:44:12 +00:00
fi
2016-11-09 11:30:39 +00:00
2016-03-08 12:44:12 +00:00
_debug "ok, let's start to verify"
_ncIndex=1
2016-11-09 11:30:39 +00:00
ventries=$(echo "$vlist" | tr ',' ' ')
for ventry in $ventries; do
2016-11-09 13:56:50 +00:00
d=$(echo "$ventry" | cut -d "$sep" -f 1)
keyauthorization=$(echo "$ventry" | cut -d "$sep" -f 2)
uri=$(echo "$ventry" | cut -d "$sep" -f 3)
vtype=$(echo "$ventry" | cut -d "$sep" -f 4)
_currentRoot=$(echo "$ventry" | cut -d "$sep" -f 5)
2016-11-09 11:30:39 +00:00
if [ "$keyauthorization" = "$STATE_VERIFIED" ]; then
_info "$d is already verified, skip $vtype."
continue
fi
2016-03-08 12:44:12 +00:00
_info "Verifying:$d"
_debug "d" "$d"
_debug "keyauthorization" "$keyauthorization"
_debug "uri" "$uri"
removelevel=""
token="$(printf "%s" "$keyauthorization" | cut -d '.' -f 1)"
_debug "_currentRoot" "$_currentRoot"
2016-11-09 11:30:39 +00:00
if [ "$vtype" = "$VTYPE_HTTP" ]; then
if [ "$_currentRoot" = "$NO_VALUE" ]; then
2016-03-08 12:44:12 +00:00
_info "Standalone mode server"
2016-11-09 11:30:39 +00:00
_ncaddr="$(_getfield "$Le_LocalAddress" "$_ncIndex")"
_ncIndex="$(_math $_ncIndex + 1)"
_startserver "$keyauthorization" "$_ncaddr" &
2016-11-09 11:30:39 +00:00
if [ "$?" != "0" ]; then
2016-04-16 10:31:00 +00:00
_clearup
_on_issue_err
2016-04-12 15:18:22 +00:00
return 1
fi
2016-03-08 12:44:12 +00:00
serverproc="$!"
2016-10-29 02:53:45 +00:00
sleep 1
2016-11-09 13:56:50 +00:00
_debug serverproc "$serverproc"
2016-04-12 15:18:22 +00:00
2016-03-08 12:44:12 +00:00
else
2016-11-09 11:30:39 +00:00
if [ "$_currentRoot" = "apache" ]; then
2016-04-16 11:23:44 +00:00
wellknown_path="$ACME_DIR"
else
wellknown_path="$_currentRoot/.well-known/acme-challenge"
2016-11-09 11:30:39 +00:00
if [ ! -d "$_currentRoot/.well-known" ]; then
2016-04-16 11:23:44 +00:00
removelevel='1'
2016-11-09 11:30:39 +00:00
elif [ ! -d "$_currentRoot/.well-known/acme-challenge" ]; then
2016-04-16 11:23:44 +00:00
removelevel='2'
else
removelevel='3'
fi
2016-03-08 12:44:12 +00:00
fi
2016-04-16 11:23:44 +00:00
2016-03-08 12:44:12 +00:00
_debug wellknown_path "$wellknown_path"
2016-04-16 11:23:44 +00:00
2016-03-08 12:44:12 +00:00
_debug "writing token:$token to $wellknown_path/$token"
mkdir -p "$wellknown_path"
2016-11-01 11:14:33 +00:00
2016-11-09 11:30:39 +00:00
if ! printf "%s" "$keyauthorization" >"$wellknown_path/$token"; then
2016-11-01 11:14:33 +00:00
_err "$d:Can not write token to file : $wellknown_path/$token"
_clearupwebbroot "$_currentRoot" "$removelevel" "$token"
_clearup
_on_issue_err
return 1
fi
2016-11-09 11:30:39 +00:00
if [ ! "$usingApache" ]; then
2016-11-09 14:35:30 +00:00
if webroot_owner=$(_stat "$_currentRoot"); then
_debug "Changing owner/group of .well-known to $webroot_owner"
2016-11-09 13:56:50 +00:00
chown -R "$webroot_owner" "$_currentRoot/.well-known"
else
2016-11-09 11:30:39 +00:00
_debug "not chaning owner/group of webroot"
fi
fi
2016-11-09 11:30:39 +00:00
2016-03-08 12:44:12 +00:00
fi
2016-11-09 11:30:39 +00:00
elif [ "$vtype" = "$VTYPE_TLS" ]; then
#create A
#_hash_A="$(printf "%s" $token | _digest "sha256" "hex" )"
#_debug2 _hash_A "$_hash_A"
#_x="$(echo $_hash_A | cut -c 1-32)"
#_debug2 _x "$_x"
#_y="$(echo $_hash_A | cut -c 33-64)"
#_debug2 _y "$_y"
#_SAN_A="$_x.$_y.token.acme.invalid"
#_debug2 _SAN_A "$_SAN_A"
2016-11-09 11:30:39 +00:00
#create B
2016-11-09 14:07:32 +00:00
_hash_B="$(printf "%s" "$keyauthorization" | _digest "sha256" "hex")"
_debug2 _hash_B "$_hash_B"
2016-11-09 14:07:32 +00:00
_x="$(echo "$_hash_B" | cut -c 1-32)"
_debug2 _x "$_x"
2016-11-09 14:07:32 +00:00
_y="$(echo "$_hash_B" | cut -c 33-64)"
_debug2 _y "$_y"
2016-11-09 11:30:39 +00:00
#_SAN_B="$_x.$_y.ka.acme.invalid"
2016-11-09 11:30:39 +00:00
_SAN_B="$_x.$_y.acme.invalid"
_debug2 _SAN_B "$_SAN_B"
2016-11-09 11:30:39 +00:00
_ncaddr="$(_getfield "$Le_LocalAddress" "$_ncIndex")"
2016-11-09 14:07:32 +00:00
_ncIndex="$(_math "$_ncIndex" + 1)"
if ! _starttlsserver "$_SAN_B" "$_SAN_A" "$Le_TLSPort" "$keyauthorization" "$_ncaddr"; then
_err "Start tls server error."
_clearupwebbroot "$_currentRoot" "$removelevel" "$token"
_clearup
_on_issue_err
return 1
fi
2016-03-08 12:44:12 +00:00
fi
2016-11-09 11:30:39 +00:00
2016-11-09 13:56:50 +00:00
if ! _send_signed_request "$uri" "{\"resource\": \"challenge\", \"keyAuthorization\": \"$keyauthorization\"}"; then
2016-05-31 12:32:58 +00:00
_err "$d:Can not get challenge: $response"
_clearupwebbroot "$_currentRoot" "$removelevel" "$token"
_clearup
_on_issue_err
2016-05-31 12:32:58 +00:00
return 1
fi
2016-11-09 11:30:39 +00:00
if [ ! -z "$code" ] && [ ! "$code" = '202' ]; then
_err "$d:Challenge error: $response"
_clearupwebbroot "$_currentRoot" "$removelevel" "$token"
2016-03-08 12:44:12 +00:00
_clearup
_on_issue_err
2016-03-08 12:44:12 +00:00
return 1
fi
2016-11-09 11:30:39 +00:00
2016-04-12 15:18:22 +00:00
waittimes=0
2016-11-09 11:30:39 +00:00
if [ -z "$MAX_RETRY_TIMES" ]; then
2016-04-12 15:18:22 +00:00
MAX_RETRY_TIMES=30
fi
2016-11-09 11:30:39 +00:00
while true; do
2016-11-09 14:07:32 +00:00
waittimes=$(_math "$waittimes" + 1)
2016-11-09 11:30:39 +00:00
if [ "$waittimes" -ge "$MAX_RETRY_TIMES" ]; then
2016-04-12 15:18:22 +00:00
_err "$d:Timeout"
_clearupwebbroot "$_currentRoot" "$removelevel" "$token"
_clearup
_on_issue_err
2016-04-12 15:18:22 +00:00
return 1
fi
2016-11-09 11:30:39 +00:00
2016-10-29 02:53:45 +00:00
_debug "sleep 2 secs to verify"
sleep 2
2016-03-08 12:44:12 +00:00
_debug "checking"
2016-11-09 14:35:30 +00:00
response="$(_get "$uri")"
2016-11-09 11:30:39 +00:00
if [ "$?" != "0" ]; then
_err "$d:Verify error:$response"
_clearupwebbroot "$_currentRoot" "$removelevel" "$token"
2016-03-08 12:44:12 +00:00
_clearup
_on_issue_err
2016-03-08 12:44:12 +00:00
return 1
fi
2016-05-31 13:20:10 +00:00
_debug2 original "$response"
2016-11-09 11:30:39 +00:00
response="$(echo "$response" | _normalizeJson)"
2016-05-31 04:28:43 +00:00
_debug2 response "$response"
2016-11-09 11:30:39 +00:00
status=$(echo "$response" | _egrep_o '"status":"[^"]*' | cut -d : -f 2 | tr -d '"')
if [ "$status" = "valid" ]; then
2016-03-08 12:44:12 +00:00
_info "Success"
2016-11-09 13:56:50 +00:00
_stopserver "$serverproc"
2016-03-08 12:44:12 +00:00
serverproc=""
_clearupwebbroot "$_currentRoot" "$removelevel" "$token"
2016-11-09 11:30:39 +00:00
break
2016-03-08 12:44:12 +00:00
fi
2016-11-09 11:30:39 +00:00
if [ "$status" = "invalid" ]; then
error="$(echo "$response" | tr -d "\r\n" | _egrep_o '"error":\{[^\}]*')"
_debug2 error "$error"
errordetail="$(echo "$error" | _egrep_o '"detail": *"[^"]*' | cut -d '"' -f 4)"
_debug2 errordetail "$errordetail"
if [ "$errordetail" ]; then
_err "$d:Verify error:$errordetail"
else
_err "$d:Verify error:$error"
fi
if [ "$DEBUG" ]; then
if [ "$vtype" = "$VTYPE_HTTP" ]; then
_debug "Debug: get token url."
_get "http://$d/.well-known/acme-challenge/$token" "" 1
fi
fi
_clearupwebbroot "$_currentRoot" "$removelevel" "$token"
2016-03-08 12:44:12 +00:00
_clearup
_on_issue_err
2016-11-09 11:30:39 +00:00
return 1
2016-03-08 12:44:12 +00:00
fi
2016-11-09 11:30:39 +00:00
if [ "$status" = "pending" ]; then
2016-03-08 12:44:12 +00:00
_info "Pending"
else
2016-11-09 11:30:39 +00:00
_err "$d:Verify error:$response"
_clearupwebbroot "$_currentRoot" "$removelevel" "$token"
2016-03-08 12:44:12 +00:00
_clearup
_on_issue_err
2016-03-08 12:44:12 +00:00
return 1
fi
2016-11-09 11:30:39 +00:00
2016-03-08 12:44:12 +00:00
done
2016-11-09 11:30:39 +00:00
2016-03-08 12:44:12 +00:00
done
_clearup
_info "Verify finished, start to sign."
2016-03-31 12:42:17 +00:00
der="$(_getfile "${CSR_PATH}" "${BEGIN_CSR}" "${END_CSR}" | tr -d "\r\n" | _urlencode)"
2016-11-09 11:30:39 +00:00
if ! _send_signed_request "$API/acme/new-cert" "{\"resource\": \"new-cert\", \"csr\": \"$der\"}" "needbase64"; then
2016-05-31 12:32:58 +00:00
_err "Sign failed."
_on_issue_err
2016-05-31 12:32:58 +00:00
return 1
fi
2016-11-09 11:30:39 +00:00
_rcert="$response"
2016-11-09 14:07:32 +00:00
Le_LinkCert="$(grep -i '^Location.*$' "$HTTP_HEADER" | _head_n 1 | tr -d "\r\n" | cut -d " " -f 2)"
2016-11-09 11:30:39 +00:00
_savedomainconf "Le_LinkCert" "$Le_LinkCert"
2016-03-08 12:44:12 +00:00
2016-11-09 11:30:39 +00:00
if [ "$Le_LinkCert" ]; then
echo "$BEGIN_CERT" >"$CERT_PATH"
2016-03-08 12:44:12 +00:00
2016-10-29 09:43:38 +00:00
#if ! _get "$Le_LinkCert" | _base64 "multiline" >> "$CERT_PATH" ; then
# _debug "Get cert failed. Let's try last response."
# printf -- "%s" "$_rcert" | _dbase64 "multiline" | _base64 "multiline" >> "$CERT_PATH"
#fi
2016-11-09 11:30:39 +00:00
if ! printf -- "%s" "$_rcert" | _dbase64 "multiline" | _base64 "multiline" >>"$CERT_PATH"; then
2016-10-29 09:43:38 +00:00
_debug "Try cert link."
2016-11-09 11:30:39 +00:00
_get "$Le_LinkCert" | _base64 "multiline" >>"$CERT_PATH"
fi
2016-11-09 11:30:39 +00:00
echo "$END_CERT" >>"$CERT_PATH"
_info "$(__green "Cert success.")"
2016-03-08 12:44:12 +00:00
cat "$CERT_PATH"
2016-11-09 11:30:39 +00:00
_info "Your cert is in $(__green " $CERT_PATH ")"
if [ -f "$CERT_KEY_PATH" ]; then
_info "Your cert key is in $(__green " $CERT_KEY_PATH ")"
fi
2016-03-13 03:37:14 +00:00
cp "$CERT_PATH" "$CERT_FULLCHAIN_PATH"
2016-04-05 13:08:19 +00:00
2016-11-09 11:30:39 +00:00
if [ ! "$USER_PATH" ] || [ ! "$IN_CRON" ]; then
2016-04-05 13:08:19 +00:00
USER_PATH="$PATH"
_saveaccountconf "USER_PATH" "$USER_PATH"
fi
2016-03-08 12:44:12 +00:00
fi
2016-11-09 11:30:39 +00:00
if [ -z "$Le_LinkCert" ]; then
2016-11-09 14:07:32 +00:00
response="$(echo "$response" | _dbase64 "multiline" | _normalizeJson)"
2016-11-09 11:30:39 +00:00
_err "Sign failed: $(echo "$response" | _egrep_o '"detail":"[^"]*"')"
_on_issue_err
2016-03-08 12:44:12 +00:00
return 1
fi
2016-11-09 11:30:39 +00:00
_cleardomainconf "Le_Vlist"
2016-11-09 14:07:32 +00:00
Le_LinkIssuer=$(grep -i '^Link' "$HTTP_HEADER" | _head_n 1 | cut -d " " -f 2 | cut -d ';' -f 1 | tr -d '<>')
2016-11-09 11:30:39 +00:00
if ! _contains "$Le_LinkIssuer" ":"; then
2016-08-14 14:37:21 +00:00
Le_LinkIssuer="$API$Le_LinkIssuer"
fi
2016-11-09 11:30:39 +00:00
_savedomainconf "Le_LinkIssuer" "$Le_LinkIssuer"
if [ "$Le_LinkIssuer" ]; then
echo "$BEGIN_CERT" >"$CA_CERT_PATH"
_get "$Le_LinkIssuer" | _base64 "multiline" >>"$CA_CERT_PATH"
echo "$END_CERT" >>"$CA_CERT_PATH"
_info "The intermediate CA cert is in $(__green " $CA_CERT_PATH ")"
cat "$CA_CERT_PATH" >>"$CERT_FULLCHAIN_PATH"
_info "And the full chain certs is there: $(__green " $CERT_FULLCHAIN_PATH ")"
2016-03-08 12:44:12 +00:00
fi
2016-11-09 11:30:39 +00:00
2016-08-25 13:46:31 +00:00
Le_CertCreateTime=$(_time)
2016-11-09 11:30:39 +00:00
_savedomainconf "Le_CertCreateTime" "$Le_CertCreateTime"
Le_CertCreateTimeStr=$(date -u)
_savedomainconf "Le_CertCreateTimeStr" "$Le_CertCreateTimeStr"
if [ -z "$Le_RenewalDays" ] || [ "$Le_RenewalDays" -lt "0" ] || [ "$Le_RenewalDays" -gt "$MAX_RENEW" ]; then
2016-11-09 13:56:50 +00:00
Le_RenewalDays="$MAX_RENEW"
2016-06-13 06:49:00 +00:00
else
2016-11-09 11:30:39 +00:00
_savedomainconf "Le_RenewalDays" "$Le_RenewalDays"
fi
2016-11-09 11:30:39 +00:00
if [ "$CA_BUNDLE" ]; then
_saveaccountconf CA_BUNDLE "$CA_BUNDLE"
else
_clearaccountconf "CA_BUNDLE"
fi
2016-11-09 11:30:39 +00:00
if [ "$HTTPS_INSECURE" ]; then
2016-08-14 14:37:21 +00:00
_saveaccountconf HTTPS_INSECURE "$HTTPS_INSECURE"
else
2016-11-09 11:30:39 +00:00
_clearaccountconf "HTTPS_INSECURE"
fi
2016-04-17 09:33:08 +00:00
2016-11-09 11:30:39 +00:00
if [ "$Le_Listen_V4" ]; then
_savedomainconf "Le_Listen_V4" "$Le_Listen_V4"
2016-10-02 15:54:21 +00:00
_cleardomainconf Le_Listen_V6
2016-11-09 11:30:39 +00:00
elif [ "$Le_Listen_V6" ]; then
_savedomainconf "Le_Listen_V6" "$Le_Listen_V6"
2016-10-02 15:54:21 +00:00
_cleardomainconf Le_Listen_V4
fi
2016-09-28 05:07:51 +00:00
2016-11-09 13:56:50 +00:00
Le_NextRenewTime=$(_math "$Le_CertCreateTime" + "$Le_RenewalDays" \* 24 \* 60 \* 60)
2016-11-09 11:30:39 +00:00
2016-11-09 13:56:50 +00:00
Le_NextRenewTimeStr=$(_time2str "$Le_NextRenewTime")
2016-11-09 11:30:39 +00:00
_savedomainconf "Le_NextRenewTimeStr" "$Le_NextRenewTimeStr"
2016-11-09 13:56:50 +00:00
Le_NextRenewTime=$(_math "$Le_NextRenewTime" - 86400)
2016-11-09 11:30:39 +00:00
_savedomainconf "Le_NextRenewTime" "$Le_NextRenewTime"
2016-09-28 05:07:51 +00:00
_on_issue_success
2016-03-08 12:44:12 +00:00
2016-11-09 11:30:39 +00:00
if [ "$Le_RealCertPath$Le_RealKeyPath$Le_RealCACertPath$Le_ReloadCmd$Le_RealFullChainPath" ]; then
_installcert
2016-04-27 15:34:29 +00:00
fi
2016-03-08 12:44:12 +00:00
}
#domain [isEcc]
2016-03-08 12:44:12 +00:00
renew() {
Le_Domain="$1"
2016-11-09 11:30:39 +00:00
if [ -z "$Le_Domain" ]; then
_usage "Usage: $PROJECT_ENTRY --renew -d domain.com [--ecc]"
2016-03-08 12:44:12 +00:00
return 1
fi
_isEcc="$2"
2016-11-09 14:09:30 +00:00
_initpath "$Le_Domain" "$_isEcc"
2016-08-25 05:06:04 +00:00
_info "$(__green "Renew: '$Le_Domain'")"
2016-11-09 11:30:39 +00:00
if [ ! -f "$DOMAIN_CONF" ]; then
_info "'$Le_Domain' is not a issued domain, skip."
2016-11-09 11:30:39 +00:00
return 0
2016-03-08 12:44:12 +00:00
fi
2016-11-09 11:30:39 +00:00
if [ "$Le_RenewalDays" ]; then
_savedomainconf Le_RenewalDays "$Le_RenewalDays"
fi
. "$DOMAIN_CONF"
2016-11-09 11:30:39 +00:00
if [ "$Le_API" ]; then
2016-09-27 15:43:18 +00:00
API="$Le_API"
fi
2016-11-09 11:30:39 +00:00
if [ -z "$FORCE" ] && [ "$Le_NextRenewTime" ] && [ "$(_time)" -lt "$Le_NextRenewTime" ]; then
2016-08-25 05:06:04 +00:00
_info "Skip, Next renewal time is: $(__green "$Le_NextRenewTimeStr")"
_info "Add '$(__red '--force')' to force to renew."
2016-11-09 14:09:30 +00:00
return "$RENEW_SKIP"
2016-03-08 12:44:12 +00:00
fi
2016-11-09 11:30:39 +00:00
2016-03-08 12:44:12 +00:00
IS_RENEW="1"
issue "$Le_Webroot" "$Le_Domain" "$Le_Alt" "$Le_Keylength" "$Le_RealCertPath" "$Le_RealKeyPath" "$Le_RealCACertPath" "$Le_ReloadCmd" "$Le_RealFullChainPath" "$Le_PreHook" "$Le_PostHook" "$Le_RenewHook" "$Le_LocalAddress"
2016-11-09 14:09:30 +00:00
res="$?"
2016-11-09 11:30:39 +00:00
if [ "$res" != "0" ]; then
2016-11-09 14:09:30 +00:00
return "$res"
2016-10-11 12:56:59 +00:00
fi
2016-11-09 11:30:39 +00:00
if [ "$Le_DeployHook" ]; then
2016-11-09 14:09:30 +00:00
deploy "$Le_Domain" "$Le_DeployHook" "$Le_Keylength"
res="$?"
2016-10-11 12:56:59 +00:00
fi
2016-11-09 11:30:39 +00:00
2016-03-08 12:44:12 +00:00
IS_RENEW=""
2016-11-09 14:09:30 +00:00
return "$res"
2016-03-08 12:44:12 +00:00
}
2016-06-18 03:29:28 +00:00
#renewAll [stopRenewOnError]
2016-03-08 12:44:12 +00:00
renewAll() {
_initpath
2016-06-18 03:29:28 +00:00
_stopRenewOnError="$1"
_debug "_stopRenewOnError" "$_stopRenewOnError"
_ret="0"
2016-11-11 13:13:33 +00:00
for di in "${CERT_HOME}"/*.*/; do
_debug di "$di"
2016-11-18 11:44:43 +00:00
if ! [ -d "$di" ]; then
_debug "Not directory, skip: $di"
continue
fi
2016-11-11 13:13:33 +00:00
d=$(basename "$di")
2016-11-09 14:28:12 +00:00
_debug d "$d"
(
2016-11-09 14:28:12 +00:00
if _endswith "$d" "$ECC_SUFFIX"; then
_isEcc=$(echo "$d" | cut -d "$ECC_SEP" -f 2)
d=$(echo "$d" | cut -d "$ECC_SEP" -f 1)
fi
renew "$d" "$_isEcc"
2016-04-27 14:14:15 +00:00
)
2016-06-18 03:29:28 +00:00
rc="$?"
_debug "Return code: $rc"
2016-11-09 11:30:39 +00:00
if [ "$rc" != "0" ]; then
if [ "$rc" = "$RENEW_SKIP" ]; then
2016-06-18 03:29:28 +00:00
_info "Skipped $d"
2016-11-09 11:30:39 +00:00
elif [ "$_stopRenewOnError" ]; then
2016-06-18 03:29:28 +00:00
_err "Error renew $d, stop now."
2016-11-09 14:28:12 +00:00
return "$rc"
2016-06-18 03:29:28 +00:00
else
_ret="$rc"
_err "Error renew $d, Go ahead to next one."
fi
fi
2016-03-08 12:44:12 +00:00
done
2016-11-09 14:28:12 +00:00
return "$_ret"
2016-03-08 12:44:12 +00:00
}
#csr webroot
2016-11-09 11:30:39 +00:00
signcsr() {
_csrfile="$1"
_csrW="$2"
if [ -z "$_csrfile" ] || [ -z "$_csrW" ]; then
_usage "Usage: $PROJECT_ENTRY --signcsr --csr mycsr.csr -w /path/to/webroot/a.com/ "
return 1
fi
_initpath
_csrsubj=$(_readSubjectFromCSR "$_csrfile")
2016-11-09 11:30:39 +00:00
if [ "$?" != "0" ]; then
_err "Can not read subject from csr: $_csrfile"
return 1
fi
_debug _csrsubj "$_csrsubj"
_csrdomainlist=$(_readSubjectAltNamesFromCSR "$_csrfile")
2016-11-09 11:30:39 +00:00
if [ "$?" != "0" ]; then
_err "Can not read domain list from csr: $_csrfile"
return 1
fi
_debug "_csrdomainlist" "$_csrdomainlist"
2016-11-09 11:30:39 +00:00
if [ -z "$_csrsubj" ]; then
_csrsubj="$(_getfield "$_csrdomainlist" 1)"
_debug _csrsubj "$_csrsubj"
_csrdomainlist="$(echo "$_csrdomainlist" | cut -d , -f 2-)"
_debug "_csrdomainlist" "$_csrdomainlist"
fi
2016-11-09 11:30:39 +00:00
if [ -z "$_csrsubj" ]; then
_err "Can not read subject from csr: $_csrfile"
return 1
fi
2016-11-09 11:30:39 +00:00
_csrkeylength=$(_readKeyLengthFromCSR "$_csrfile")
2016-11-09 11:30:39 +00:00
if [ "$?" != "0" ] || [ -z "$_csrkeylength" ]; then
_err "Can not read key length from csr: $_csrfile"
return 1
fi
2016-11-09 11:30:39 +00:00
_initpath "$_csrsubj" "$_csrkeylength"
mkdir -p "$DOMAIN_PATH"
2016-11-09 11:30:39 +00:00
_info "Copy csr to: $CSR_PATH"
cp "$_csrfile" "$CSR_PATH"
2016-11-09 11:30:39 +00:00
issue "$_csrW" "$_csrsubj" "$_csrdomainlist" "$_csrkeylength"
2016-11-09 11:30:39 +00:00
}
showcsr() {
2016-11-09 11:30:39 +00:00
_csrfile="$1"
_csrd="$2"
if [ -z "$_csrfile" ] && [ -z "$_csrd" ]; then
_usage "Usage: $PROJECT_ENTRY --showcsr --csr mycsr.csr"
return 1
fi
_initpath
2016-11-09 11:30:39 +00:00
_csrsubj=$(_readSubjectFromCSR "$_csrfile")
2016-11-09 11:30:39 +00:00
if [ "$?" != "0" ] || [ -z "$_csrsubj" ]; then
_err "Can not read subject from csr: $_csrfile"
return 1
fi
2016-11-09 11:30:39 +00:00
_info "Subject=$_csrsubj"
_csrdomainlist=$(_readSubjectAltNamesFromCSR "$_csrfile")
2016-11-09 11:30:39 +00:00
if [ "$?" != "0" ]; then
_err "Can not read domain list from csr: $_csrfile"
return 1
fi
_debug "_csrdomainlist" "$_csrdomainlist"
_info "SubjectAltNames=$_csrdomainlist"
_csrkeylength=$(_readKeyLengthFromCSR "$_csrfile")
2016-11-09 11:30:39 +00:00
if [ "$?" != "0" ] || [ -z "$_csrkeylength" ]; then
_err "Can not read key length from csr: $_csrfile"
return 1
fi
_info "KeyLength=$_csrkeylength"
}
2016-06-09 06:18:54 +00:00
list() {
_raw="$1"
2016-06-09 06:18:54 +00:00
_initpath
2016-11-09 11:30:39 +00:00
2016-06-14 05:07:33 +00:00
_sep="|"
2016-11-09 11:30:39 +00:00
if [ "$_raw" ]; then
2016-11-09 13:44:46 +00:00
printf "%s\n" "Main_Domain${_sep}KeyLength${_sep}SAN_Domains${_sep}Created${_sep}Renew"
2016-11-11 13:13:33 +00:00
for di in "${CERT_HOME}"/*.*/; do
2016-11-18 11:44:43 +00:00
if ! [ -d "$di" ]; then
_debug "Not directory, skip: $di"
continue
fi
2016-11-11 13:13:33 +00:00
d=$(basename "$di")
2016-11-09 14:28:12 +00:00
_debug d "$d"
2016-06-14 05:07:33 +00:00
(
2016-11-09 14:28:12 +00:00
if _endswith "$d" "$ECC_SUFFIX"; then
_isEcc=$(echo "$d" | cut -d "$ECC_SEP" -f 2)
d=$(echo "$d" | cut -d "$ECC_SEP" -f 1)
fi
2016-11-11 13:13:33 +00:00
_initpath "$d" "$_isEcc"
2016-11-09 11:30:39 +00:00
if [ -f "$DOMAIN_CONF" ]; then
2016-06-14 05:07:33 +00:00
. "$DOMAIN_CONF"
2016-11-09 13:44:46 +00:00
printf "%s\n" "$Le_Domain${_sep}\"$Le_Keylength\"${_sep}$Le_Alt${_sep}$Le_CertCreateTimeStr${_sep}$Le_NextRenewTimeStr"
2016-06-14 05:07:33 +00:00
fi
)
done
else
2016-11-09 11:30:39 +00:00
if _exists column; then
list "raw" | column -t -s "$_sep"
else
list "raw" | tr "$_sep" '\t'
fi
2016-06-14 05:07:33 +00:00
fi
2016-06-09 06:18:54 +00:00
}
2016-10-11 12:56:59 +00:00
deploy() {
Le_Domain="$1"
Le_DeployHook="$2"
_isEcc="$3"
2016-11-09 11:30:39 +00:00
if [ -z "$Le_DeployHook" ]; then
2016-10-11 12:56:59 +00:00
_usage "Usage: $PROJECT_ENTRY --deploy -d domain.com --deploy-hook cpanel [--ecc] "
return 1
fi
2016-11-11 13:13:33 +00:00
_initpath "$Le_Domain" "$_isEcc"
2016-11-09 11:30:39 +00:00
if [ ! -d "$DOMAIN_PATH" ]; then
2016-10-11 12:56:59 +00:00
_err "Domain is not valid:'$Le_Domain'"
return 1
fi
2016-11-11 13:13:33 +00:00
_deployApi="$(_findHook "$Le_Domain" deploy "$Le_DeployHook")"
2016-11-09 11:30:39 +00:00
if [ -z "$_deployApi" ]; then
2016-10-11 12:56:59 +00:00
_err "The deploy hook $Le_DeployHook is not found."
return 1
fi
_debug _deployApi "$_deployApi"
2016-11-09 11:30:39 +00:00
2016-10-11 12:56:59 +00:00
_savedomainconf Le_DeployHook "$Le_DeployHook"
2016-11-09 11:30:39 +00:00
2016-10-11 12:56:59 +00:00
if ! (
2016-11-11 13:13:33 +00:00
if ! . "$_deployApi"; then
2016-10-11 12:56:59 +00:00
_err "Load file $_deployApi error. Please check your api file and try again."
return 1
fi
2016-11-09 11:30:39 +00:00
2016-10-11 12:56:59 +00:00
d_command="${Le_DeployHook}_deploy"
2016-11-11 13:13:33 +00:00
if ! _exists "$d_command"; then
2016-10-11 12:56:59 +00:00
_err "It seems that your api file is not correct, it must have a function named: $d_command"
return 1
fi
2016-11-09 11:30:39 +00:00
2016-11-11 13:13:33 +00:00
if ! $d_command "$Le_Domain" "$CERT_KEY_PATH" "$CERT_PATH" "$CA_CERT_PATH" "$CERT_FULLCHAIN_PATH"; then
2016-10-11 12:56:59 +00:00
_err "Error deploy for domain:$Le_Domain"
_on_issue_err
return 1
fi
2016-11-09 11:30:39 +00:00
); then
2016-10-11 12:56:59 +00:00
_err "Deploy error."
return 1
else
_info "$(__green Success)"
fi
2016-11-09 11:30:39 +00:00
2016-10-11 12:56:59 +00:00
}
2016-03-08 12:44:12 +00:00
installcert() {
Le_Domain="$1"
2016-11-09 11:30:39 +00:00
if [ -z "$Le_Domain" ]; then
_usage "Usage: $PROJECT_ENTRY --installcert -d domain.com [--ecc] [--certpath cert-file-path] [--keypath key-file-path] [--capath ca-cert-file-path] [ --reloadCmd reloadCmd] [--fullchainpath fullchain-path]"
2016-03-08 12:44:12 +00:00
return 1
fi
Le_RealCertPath="$2"
Le_RealKeyPath="$3"
Le_RealCACertPath="$4"
Le_ReloadCmd="$5"
Le_RealFullChainPath="$6"
_isEcc="$7"
2016-11-11 13:47:24 +00:00
_initpath "$Le_Domain" "$_isEcc"
2016-11-09 11:30:39 +00:00
if [ ! -d "$DOMAIN_PATH" ]; then
_err "Domain is not valid:'$Le_Domain'"
return 1
fi
_installcert
}
2016-03-08 12:44:12 +00:00
_installcert() {
2016-11-09 11:30:39 +00:00
_savedomainconf "Le_RealCertPath" "$Le_RealCertPath"
_savedomainconf "Le_RealCACertPath" "$Le_RealCACertPath"
_savedomainconf "Le_RealKeyPath" "$Le_RealKeyPath"
_savedomainconf "Le_ReloadCmd" "$Le_ReloadCmd"
_savedomainconf "Le_RealFullChainPath" "$Le_RealFullChainPath"
2016-03-08 12:44:12 +00:00
2016-11-09 11:30:39 +00:00
if [ "$Le_RealCertPath" = "$NO_VALUE" ]; then
2016-04-27 14:14:15 +00:00
Le_RealCertPath=""
fi
2016-11-09 11:30:39 +00:00
if [ "$Le_RealKeyPath" = "$NO_VALUE" ]; then
2016-04-27 14:14:15 +00:00
Le_RealKeyPath=""
fi
2016-11-09 11:30:39 +00:00
if [ "$Le_RealCACertPath" = "$NO_VALUE" ]; then
2016-04-27 14:14:15 +00:00
Le_RealCACertPath=""
fi
2016-11-09 11:30:39 +00:00
if [ "$Le_ReloadCmd" = "$NO_VALUE" ]; then
2016-04-27 14:14:15 +00:00
Le_ReloadCmd=""
fi
2016-11-09 11:30:39 +00:00
if [ "$Le_RealFullChainPath" = "$NO_VALUE" ]; then
2016-04-27 14:14:15 +00:00
Le_RealFullChainPath=""
fi
2016-11-09 11:30:39 +00:00
if [ "$Le_RealCertPath" ]; then
2016-11-11 13:47:24 +00:00
2016-04-27 14:14:15 +00:00
_info "Installing cert to:$Le_RealCertPath"
2016-11-09 11:30:39 +00:00
if [ -f "$Le_RealCertPath" ] && [ ! "$IS_RENEW" ]; then
cp "$Le_RealCertPath" "$Le_RealCertPath".bak
2016-03-08 12:44:12 +00:00
fi
2016-11-09 11:30:39 +00:00
cat "$CERT_PATH" >"$Le_RealCertPath"
2016-03-08 12:44:12 +00:00
fi
2016-11-09 11:30:39 +00:00
if [ "$Le_RealCACertPath" ]; then
2016-11-11 13:47:24 +00:00
2016-04-27 14:14:15 +00:00
_info "Installing CA to:$Le_RealCACertPath"
2016-11-09 11:30:39 +00:00
if [ "$Le_RealCACertPath" = "$Le_RealCertPath" ]; then
echo "" >>"$Le_RealCACertPath"
cat "$CA_CERT_PATH" >>"$Le_RealCACertPath"
2016-03-08 12:44:12 +00:00
else
2016-11-09 11:30:39 +00:00
if [ -f "$Le_RealCACertPath" ] && [ ! "$IS_RENEW" ]; then
cp "$Le_RealCACertPath" "$Le_RealCACertPath".bak
fi
2016-11-09 11:30:39 +00:00
cat "$CA_CERT_PATH" >"$Le_RealCACertPath"
2016-03-08 12:44:12 +00:00
fi
fi
2016-11-09 11:30:39 +00:00
if [ "$Le_RealKeyPath" ]; then
2016-03-08 12:44:12 +00:00
2016-04-27 14:14:15 +00:00
_info "Installing key to:$Le_RealKeyPath"
2016-11-09 11:30:39 +00:00
if [ -f "$Le_RealKeyPath" ] && [ ! "$IS_RENEW" ]; then
cp "$Le_RealKeyPath" "$Le_RealKeyPath".bak
2016-03-08 12:44:12 +00:00
fi
2016-11-09 11:30:39 +00:00
cat "$CERT_KEY_PATH" >"$Le_RealKeyPath"
2016-03-08 12:44:12 +00:00
fi
2016-11-09 11:30:39 +00:00
if [ "$Le_RealFullChainPath" ]; then
2016-11-11 13:47:24 +00:00
2016-04-27 14:14:15 +00:00
_info "Installing full chain to:$Le_RealFullChainPath"
2016-11-09 11:30:39 +00:00
if [ -f "$Le_RealFullChainPath" ] && [ ! "$IS_RENEW" ]; then
cp "$Le_RealFullChainPath" "$Le_RealFullChainPath".bak
fi
2016-11-09 11:30:39 +00:00
cat "$CERT_FULLCHAIN_PATH" >"$Le_RealFullChainPath"
fi
2016-03-08 12:44:12 +00:00
2016-11-09 11:30:39 +00:00
if [ "$Le_ReloadCmd" ]; then
2016-03-08 12:44:12 +00:00
_info "Run Le_ReloadCmd: $Le_ReloadCmd"
2016-11-09 11:30:39 +00:00
if (cd "$DOMAIN_PATH" && eval "$Le_ReloadCmd"); then
_info "$(__green "Reload success")"
2016-04-27 14:14:15 +00:00
else
_err "Reload error for :$Le_Domain"
fi
fi
2016-03-08 12:44:12 +00:00
}
installcronjob() {
_initpath
2016-11-09 11:30:39 +00:00
if ! _exists "crontab"; then
2016-03-29 13:49:18 +00:00
_err "crontab doesn't exist, so, we can not install cron jobs."
_err "All your certs will not be renewed automatically."
2016-04-13 12:37:18 +00:00
_err "You must add your own cron job to call '$PROJECT_ENTRY --cron' everyday."
2016-03-29 13:49:18 +00:00
return 1
fi
2016-03-08 12:44:12 +00:00
_info "Installing cron job"
2016-11-09 11:30:39 +00:00
if ! crontab -l | grep "$PROJECT_ENTRY --cron"; then
if [ -f "$LE_WORKING_DIR/$PROJECT_ENTRY" ]; then
2016-04-13 12:37:18 +00:00
lesh="\"$LE_WORKING_DIR\"/$PROJECT_ENTRY"
2016-03-08 12:44:12 +00:00
else
2016-04-13 12:37:18 +00:00
_err "Can not install cronjob, $PROJECT_ENTRY not found."
2016-03-08 12:44:12 +00:00
return 1
fi
2016-11-09 11:30:39 +00:00
if _exists uname && uname -a | grep solaris >/dev/null; then
crontab -l | {
cat
echo "0 0 * * * $lesh --cron --home \"$LE_WORKING_DIR\" > /dev/null"
} | crontab --
else
2016-11-09 11:30:39 +00:00
crontab -l | {
cat
echo "0 0 * * * $lesh --cron --home \"$LE_WORKING_DIR\" > /dev/null"
} | crontab -
fi
2016-03-08 12:44:12 +00:00
fi
2016-11-09 11:30:39 +00:00
if [ "$?" != "0" ]; then
2016-03-08 12:44:12 +00:00
_err "Install cron job failed. You need to manually renew your certs."
_err "Or you can add cronjob by yourself:"
2016-04-13 12:37:18 +00:00
_err "$lesh --cron --home \"$LE_WORKING_DIR\" > /dev/null"
2016-03-08 12:44:12 +00:00
return 1
fi
}
uninstallcronjob() {
2016-11-09 11:30:39 +00:00
if ! _exists "crontab"; then
2016-03-29 13:57:56 +00:00
return
fi
2016-03-08 12:44:12 +00:00
_info "Removing cron job"
2016-04-13 12:37:18 +00:00
cr="$(crontab -l | grep "$PROJECT_ENTRY --cron")"
2016-11-09 11:30:39 +00:00
if [ "$cr" ]; then
if _exists uname && uname -a | grep solaris >/dev/null; then
crontab -l | sed "/$PROJECT_ENTRY --cron/d" | crontab --
else
crontab -l | sed "/$PROJECT_ENTRY --cron/d" | crontab -
fi
2016-04-13 12:37:18 +00:00
LE_WORKING_DIR="$(echo "$cr" | cut -d ' ' -f 9 | tr -d '"')"
2016-03-08 12:44:12 +00:00
_info LE_WORKING_DIR "$LE_WORKING_DIR"
2016-11-09 11:30:39 +00:00
fi
2016-03-08 12:44:12 +00:00
_initpath
2016-04-13 12:37:18 +00:00
2016-03-08 12:44:12 +00:00
}
2016-04-06 14:16:09 +00:00
revoke() {
Le_Domain="$1"
2016-11-09 11:30:39 +00:00
if [ -z "$Le_Domain" ]; then
_usage "Usage: $PROJECT_ENTRY --revoke -d domain.com"
2016-04-06 14:16:09 +00:00
return 1
fi
2016-11-09 11:30:39 +00:00
_isEcc="$2"
2016-11-11 13:22:48 +00:00
_initpath "$Le_Domain" "$_isEcc"
2016-11-09 11:30:39 +00:00
if [ ! -f "$DOMAIN_CONF" ]; then
2016-04-06 14:16:09 +00:00
_err "$Le_Domain is not a issued domain, skip."
2016-11-09 11:30:39 +00:00
return 1
2016-04-06 14:16:09 +00:00
fi
2016-11-09 11:30:39 +00:00
if [ ! -f "$CERT_PATH" ]; then
2016-04-06 14:16:09 +00:00
_err "Cert for $Le_Domain $CERT_PATH is not found, skip."
return 1
fi
2016-11-09 11:30:39 +00:00
cert="$(_getfile "${CERT_PATH}" "${BEGIN_CERT}" "${END_CERT}" | tr -d "\r\n" | _urlencode)"
if [ -z "$cert" ]; then
2016-04-06 14:16:09 +00:00
_err "Cert for $Le_Domain is empty found, skip."
return 1
fi
2016-11-09 11:30:39 +00:00
2016-04-06 14:16:09 +00:00
data="{\"resource\": \"revoke-cert\", \"certificate\": \"$cert\"}"
uri="$API/acme/revoke-cert"
2016-11-09 11:30:39 +00:00
if [ -f "$CERT_KEY_PATH" ]; then
2016-10-28 12:56:18 +00:00
_info "Try domain key first."
2016-11-11 13:22:48 +00:00
if _send_signed_request "$uri" "$data" "" "$CERT_KEY_PATH"; then
2016-11-09 11:30:39 +00:00
if [ -z "$response" ]; then
2016-10-28 12:56:18 +00:00
_info "Revoke success."
2016-11-11 13:22:48 +00:00
rm -f "$CERT_PATH"
2016-10-28 12:56:18 +00:00
return 0
2016-11-09 11:30:39 +00:00
else
2016-10-28 12:56:18 +00:00
_err "Revoke error by domain key."
_err "$response"
fi
2016-04-06 14:16:09 +00:00
fi
2016-11-09 11:30:39 +00:00
else
2016-10-28 12:56:18 +00:00
_info "Domain key file doesn't exists."
2016-04-06 14:16:09 +00:00
fi
2016-10-28 12:56:18 +00:00
_info "Try account key."
2016-04-06 14:16:09 +00:00
2016-11-11 13:22:48 +00:00
if _send_signed_request "$uri" "$data" "" "$ACCOUNT_KEY_PATH"; then
2016-11-09 11:30:39 +00:00
if [ -z "$response" ]; then
2016-04-06 14:16:09 +00:00
_info "Revoke success."
2016-11-11 13:22:48 +00:00
rm -f "$CERT_PATH"
2016-04-06 14:16:09 +00:00
return 0
2016-11-09 11:30:39 +00:00
else
2016-04-06 14:16:09 +00:00
_err "Revoke error."
2016-07-21 02:48:37 +00:00
_debug "$response"
2016-04-06 14:16:09 +00:00
fi
fi
return 1
}
2016-03-08 12:44:12 +00:00
#domain vtype
_deactivate() {
_d_domain="$1"
_d_type="$2"
_initpath
2016-11-09 11:30:39 +00:00
_d_i=0
_d_max_retry=9
2016-11-09 11:30:39 +00:00
while [ "$_d_i" -lt "$_d_max_retry" ]; do
2016-09-24 06:01:28 +00:00
_info "Deactivate: $_d_domain"
_d_i="$(_math $_d_i + 1)"
2016-11-09 11:30:39 +00:00
if ! __get_domain_new_authz "$_d_domain"; then
2016-10-27 14:10:58 +00:00
_err "Can not get domain new authz token."
return 1
fi
2016-11-09 11:30:39 +00:00
2016-10-03 14:29:48 +00:00
authzUri="$(echo "$responseHeaders" | grep "^Location:" | _head_n 1 | cut -d ' ' -f 2 | tr -d "\r\n")"
2016-09-23 14:35:13 +00:00
_debug "authzUri" "$authzUri"
2016-11-09 11:30:39 +00:00
if [ ! -z "$code" ] && [ ! "$code" = '201' ]; then
_err "new-authz error: $response"
return 1
fi
2016-11-09 11:30:39 +00:00
entry="$(printf "%s\n" "$response" | _egrep_o '[^\{]*"status":"valid","uri"[^\}]*')"
_debug entry "$entry"
2016-11-09 11:30:39 +00:00
if [ -z "$entry" ]; then
2016-09-22 15:25:32 +00:00
_info "No more valid entry found."
break
fi
2016-11-09 11:30:39 +00:00
_vtype="$(printf "%s\n" "$entry" | _egrep_o '"type": *"[^"]*"' | cut -d : -f 2 | tr -d '"')"
2016-11-11 13:22:48 +00:00
_debug _vtype "$_vtype"
_info "Found $_vtype"
2016-11-09 11:30:39 +00:00
uri="$(printf "%s\n" "$entry" | _egrep_o '"uri":"[^"]*' | cut -d : -f 2,3 | tr -d '"')"
2016-11-11 13:22:48 +00:00
_debug uri "$uri"
2016-11-09 11:30:39 +00:00
if [ "$_d_type" ] && [ "$_d_type" != "$_vtype" ]; then
_info "Skip $_vtype"
continue
fi
2016-11-09 11:30:39 +00:00
_info "Deactivate: $_vtype"
2016-11-09 11:30:39 +00:00
if ! _send_signed_request "$authzUri" "{\"resource\": \"authz\", \"status\":\"deactivated\"}"; then
_err "Can not deactivate $_vtype."
return 1
fi
2016-11-09 11:30:39 +00:00
2016-09-22 15:25:32 +00:00
_info "Deactivate: $_vtype success."
2016-11-09 11:30:39 +00:00
done
_debug "$_d_i"
2016-11-09 11:30:39 +00:00
if [ "$_d_i" -lt "$_d_max_retry" ]; then
_info "Deactivated success!"
else
_err "Deactivate failed."
fi
}
deactivate() {
2016-09-23 14:35:13 +00:00
_d_domain_list="$1"
_d_type="$2"
_initpath
2016-09-23 14:35:13 +00:00
_debug _d_domain_list "$_d_domain_list"
2016-11-09 11:30:39 +00:00
if [ -z "$(echo $_d_domain_list | cut -d , -f 1)" ]; then
2016-09-23 14:35:13 +00:00
_usage "Usage: $PROJECT_ENTRY --deactivate -d domain.com [-d domain.com]"
return 1
fi
2016-11-09 11:30:39 +00:00
for _d_dm in $(echo "$_d_domain_list" | tr ',' ' '); do
if [ -z "$_d_dm" ] || [ "$_d_dm" = "$NO_VALUE" ]; then
2016-09-23 14:35:13 +00:00
continue
fi
2016-11-11 13:22:48 +00:00
if ! _deactivate "$_d_dm" "$_d_type"; then
2016-09-24 06:17:04 +00:00
return 1
fi
2016-09-23 14:35:13 +00:00
done
}
2016-03-08 12:44:12 +00:00
# Detect profile file if not specified as environment variable
_detect_profile() {
2016-11-09 11:30:39 +00:00
if [ -n "$PROFILE" -a -f "$PROFILE" ]; then
2016-03-08 12:44:12 +00:00
echo "$PROFILE"
return
fi
DETECTED_PROFILE=''
SHELLTYPE="$(basename "/$SHELL")"
2016-11-09 11:30:39 +00:00
if [ "$SHELLTYPE" = "bash" ]; then
if [ -f "$HOME/.bashrc" ]; then
2016-03-08 12:44:12 +00:00
DETECTED_PROFILE="$HOME/.bashrc"
2016-11-09 11:30:39 +00:00
elif [ -f "$HOME/.bash_profile" ]; then
2016-03-08 12:44:12 +00:00
DETECTED_PROFILE="$HOME/.bash_profile"
fi
2016-11-09 11:30:39 +00:00
elif [ "$SHELLTYPE" = "zsh" ]; then
2016-03-08 12:44:12 +00:00
DETECTED_PROFILE="$HOME/.zshrc"
fi
2016-11-09 11:30:39 +00:00
if [ -z "$DETECTED_PROFILE" ]; then
if [ -f "$HOME/.profile" ]; then
2016-03-08 12:44:12 +00:00
DETECTED_PROFILE="$HOME/.profile"
2016-11-09 11:30:39 +00:00
elif [ -f "$HOME/.bashrc" ]; then
2016-03-08 12:44:12 +00:00
DETECTED_PROFILE="$HOME/.bashrc"
2016-11-09 11:30:39 +00:00
elif [ -f "$HOME/.bash_profile" ]; then
2016-03-08 12:44:12 +00:00
DETECTED_PROFILE="$HOME/.bash_profile"
2016-11-09 11:30:39 +00:00
elif [ -f "$HOME/.zshrc" ]; then
2016-03-08 12:44:12 +00:00
DETECTED_PROFILE="$HOME/.zshrc"
fi
fi
2016-11-09 11:30:39 +00:00
if [ ! -z "$DETECTED_PROFILE" ]; then
2016-03-08 12:44:12 +00:00
echo "$DETECTED_PROFILE"
fi
}
_initconf() {
_initpath
2016-11-09 11:30:39 +00:00
if [ ! -f "$ACCOUNT_CONF_PATH" ]; then
2016-04-11 14:33:57 +00:00
echo "#ACCOUNT_CONF_PATH=xxxx
#Account configurations:
2016-03-08 12:44:12 +00:00
#Here are the supported macros, uncomment them to make them take effect.
2016-04-11 14:33:57 +00:00
#ACCOUNT_EMAIL=aaa@example.com # the account email used to register account.
2016-03-09 10:32:50 +00:00
#ACCOUNT_KEY_PATH=\"/path/to/account.key\"
#CERT_HOME=\"/path/to/cert/home\"
2016-03-08 12:44:12 +00:00
#LOG_FILE=\"$DEFAULT_LOG_FILE\"
2016-09-25 14:26:41 +00:00
#LOG_LEVEL=1
2016-09-19 15:07:43 +00:00
2016-09-20 14:23:49 +00:00
#AUTO_UPGRADE=\"1\"
2016-03-08 12:44:12 +00:00
#STAGE=1 # Use the staging api
#FORCE=1 # Force to issue cert
#DEBUG=1 # Debug mode
#USER_AGENT=\"$USER_AGENT\"
2016-04-05 13:08:19 +00:00
2016-11-11 13:22:48 +00:00
#USER_PATH=
2016-04-05 13:08:19 +00:00
2016-03-08 12:44:12 +00:00
#dns api
#######################
#Cloudflare:
#api key
2016-03-09 10:33:24 +00:00
#CF_Key=\"sdfsdfsdfljlbjkljlkjsdfoiwje\"
2016-03-08 12:44:12 +00:00
#account email
2016-03-09 10:33:24 +00:00
#CF_Email=\"xxxx@sss.com\"
2016-03-08 12:44:12 +00:00
#######################
#Dnspod.cn:
#api key id
2016-03-09 10:33:24 +00:00
#DP_Id=\"1234\"
2016-03-08 12:44:12 +00:00
#api key
2016-03-09 10:33:24 +00:00
#DP_Key=\"sADDsdasdgdsf\"
2016-03-08 12:44:12 +00:00
#######################
#Cloudxns.com:
2016-03-09 10:33:24 +00:00
#CX_Key=\"1234\"
2016-03-08 12:44:12 +00:00
#
2016-03-09 10:33:24 +00:00
#CX_Secret=\"sADDsdasdgdsf\"
2016-07-29 10:07:16 +00:00
#######################
#Godaddy.com:
#GD_Key=\"sdfdsgdgdfdasfds\"
#
#GD_Secret=\"sADDsdasdfsdfdssdgdsf\"
2016-03-08 12:44:12 +00:00
2016-10-26 09:57:45 +00:00
#######################
#nsupdate:
#NSUPDATE_KEY=\"/path/to/update.key\"
#NSUPDATE_SERVER=\"192.168.0.1\"
#######################
#PowerDNS:
#PDNS_Url=\"http://ns.example.com:8081\"
#PDNS_ServerId=\"localhost\"
#PDNS_Token=\"0123456789ABCDEF\"
#PDNS_Ttl=60
2016-11-20 15:21:07 +00:00
#######################
#Amazon Route53:
#AWS_ACCESS_KEY_ID=XXXXXXXXXX
#AWS_SECRET_ACCESS_KEY=XXXXXXXXXXXXXXX
2016-11-09 13:44:46 +00:00
" >"$ACCOUNT_CONF_PATH"
2016-03-08 12:44:12 +00:00
fi
}
# nocron
_precheck() {
_nocron="$1"
2016-11-09 11:30:39 +00:00
if ! _exists "curl" && ! _exists "wget"; then
_err "Please install curl or wget first, we need to access http resources."
2016-03-08 12:44:12 +00:00
return 1
fi
2016-11-09 11:30:39 +00:00
if [ -z "$_nocron" ]; then
if ! _exists "crontab"; then
_err "It is recommended to install crontab first. try to install 'cron, crontab, crontabs or vixie-cron'."
_err "We need to set cron job to renew the certs automatically."
_err "Otherwise, your certs will not be able to be renewed automatically."
2016-11-09 11:30:39 +00:00
if [ -z "$FORCE" ]; then
_err "Please add '--force' and try install again to go without crontab."
_err "./$PROJECT_ENTRY --install --force"
return 1
fi
2016-03-29 13:49:18 +00:00
fi
2016-03-08 12:44:12 +00:00
fi
2016-11-09 11:30:39 +00:00
if ! _exists "openssl"; then
_err "Please install openssl first."
_err "We need openssl to generate keys."
2016-03-08 12:44:12 +00:00
return 1
fi
2016-11-09 11:30:39 +00:00
if ! _exists "nc"; then
_err "It is recommended to install nc first, try to install 'nc' or 'netcat'."
_err "We use nc for standalone server if you use standalone mode."
_err "If you don't use standalone mode, just ignore this warning."
fi
2016-11-09 11:30:39 +00:00
return 0
}
_setShebang() {
_file="$1"
_shebang="$2"
2016-11-09 11:30:39 +00:00
if [ -z "$_shebang" ]; then
_usage "Usage: file shebang"
return 1
fi
cp "$_file" "$_file.tmp"
2016-11-09 11:30:39 +00:00
echo "$_shebang" >"$_file"
sed -n 2,99999p "$_file.tmp" >>"$_file"
rm -f "$_file.tmp"
}
2016-05-07 09:11:01 +00:00
_installalias() {
_initpath
_envfile="$LE_WORKING_DIR/$PROJECT_ENTRY.env"
2016-11-09 11:30:39 +00:00
if [ "$_upgrading" ] && [ "$_upgrading" = "1" ]; then
2016-11-09 14:35:30 +00:00
echo "$(cat "$_envfile")" | sed "s|^LE_WORKING_DIR.*$||" >"$_envfile"
echo "$(cat "$_envfile")" | sed "s|^alias le.*$||" >"$_envfile"
echo "$(cat "$_envfile")" | sed "s|^alias le.sh.*$||" >"$_envfile"
2016-05-07 09:11:01 +00:00
fi
2016-05-08 13:21:07 +00:00
_setopt "$_envfile" "export LE_WORKING_DIR" "=" "\"$LE_WORKING_DIR\""
2016-05-07 09:11:01 +00:00
_setopt "$_envfile" "alias $PROJECT_ENTRY" "=" "\"$LE_WORKING_DIR/$PROJECT_ENTRY\""
_profile="$(_detect_profile)"
2016-11-09 11:30:39 +00:00
if [ "$_profile" ]; then
2016-05-07 09:11:01 +00:00
_debug "Found profile: $_profile"
_info "Installing alias to '$_profile'"
2016-05-07 09:11:01 +00:00
_setopt "$_profile" ". \"$_envfile\""
_info "OK, Close and reopen your terminal to start using $PROJECT_NAME"
else
_info "No profile is found, you will need to go into $LE_WORKING_DIR to use $PROJECT_NAME"
fi
#for csh
_cshfile="$LE_WORKING_DIR/$PROJECT_ENTRY.csh"
_csh_profile="$HOME/.cshrc"
2016-11-09 11:30:39 +00:00
if [ -f "$_csh_profile" ]; then
_info "Installing alias to '$_csh_profile'"
_setopt "$_cshfile" "setenv LE_WORKING_DIR" " " "\"$LE_WORKING_DIR\""
_setopt "$_cshfile" "alias $PROJECT_ENTRY" " " "\"$LE_WORKING_DIR/$PROJECT_ENTRY\""
2016-11-09 11:30:39 +00:00
_setopt "$_csh_profile" "source \"$_cshfile\""
2016-05-07 09:11:01 +00:00
fi
2016-11-09 11:30:39 +00:00
2016-05-09 14:28:45 +00:00
#for tcsh
_tcsh_profile="$HOME/.tcshrc"
2016-11-09 11:30:39 +00:00
if [ -f "$_tcsh_profile" ]; then
_info "Installing alias to '$_tcsh_profile'"
2016-05-09 14:28:45 +00:00
_setopt "$_cshfile" "setenv LE_WORKING_DIR" " " "\"$LE_WORKING_DIR\""
_setopt "$_cshfile" "alias $PROJECT_ENTRY" " " "\"$LE_WORKING_DIR/$PROJECT_ENTRY\""
2016-11-09 11:30:39 +00:00
_setopt "$_tcsh_profile" "source \"$_cshfile\""
2016-05-09 14:28:45 +00:00
fi
2016-05-07 09:11:01 +00:00
}
# nocron
install() {
2016-11-09 11:30:39 +00:00
if [ -z "$LE_WORKING_DIR" ]; then
LE_WORKING_DIR="$DEFAULT_INSTALL_HOME"
fi
2016-11-09 11:30:39 +00:00
_nocron="$1"
2016-11-09 11:30:39 +00:00
if ! _initpath; then
_err "Install failed."
2016-03-08 12:44:12 +00:00
return 1
fi
2016-11-09 11:30:39 +00:00
if [ "$_nocron" ]; then
2016-06-26 05:30:47 +00:00
_debug "Skip install cron job"
fi
2016-11-09 11:30:39 +00:00
if ! _precheck "$_nocron"; then
_err "Pre-check failed, can not install."
2016-03-08 12:44:12 +00:00
return 1
fi
2016-11-09 11:30:39 +00:00
2016-04-14 13:44:26 +00:00
#convert from le
2016-11-09 11:30:39 +00:00
if [ -d "$HOME/.le" ]; then
for envfile in "le.env" "le.sh.env"; do
if [ -f "$HOME/.le/$envfile" ]; then
if grep "le.sh" "$HOME/.le/$envfile" >/dev/null; then
_upgrading="1"
_info "You are upgrading from le.sh"
_info "Renaming \"$HOME/.le\" to $LE_WORKING_DIR"
mv "$HOME/.le" "$LE_WORKING_DIR"
mv "$LE_WORKING_DIR/$envfile" "$LE_WORKING_DIR/$PROJECT_ENTRY.env"
break
2016-04-14 13:44:26 +00:00
fi
fi
done
fi
2016-03-08 12:44:12 +00:00
_info "Installing to $LE_WORKING_DIR"
2016-11-09 11:30:39 +00:00
if ! mkdir -p "$LE_WORKING_DIR"; then
2016-06-07 05:23:32 +00:00
_err "Can not create working dir: $LE_WORKING_DIR"
2016-03-27 12:31:22 +00:00
return 1
fi
2016-11-09 11:30:39 +00:00
chmod 700 "$LE_WORKING_DIR"
2016-11-09 13:44:46 +00:00
cp "$PROJECT_ENTRY" "$LE_WORKING_DIR/" && chmod +x "$LE_WORKING_DIR/$PROJECT_ENTRY"
2016-03-08 12:44:12 +00:00
2016-11-09 11:30:39 +00:00
if [ "$?" != "0" ]; then
2016-04-13 12:37:18 +00:00
_err "Install failed, can not copy $PROJECT_ENTRY"
2016-03-08 12:44:12 +00:00
return 1
fi
2016-04-13 12:37:18 +00:00
_info "Installed to $LE_WORKING_DIR/$PROJECT_ENTRY"
2016-03-08 12:44:12 +00:00
2016-05-07 09:11:01 +00:00
_installalias
2016-03-08 12:44:12 +00:00
2016-11-09 11:30:39 +00:00
for subf in $_SUB_FOLDERS; do
if [ -d "$subf" ]; then
2016-11-09 13:44:46 +00:00
mkdir -p "$LE_WORKING_DIR/$subf"
cp "$subf"/* "$LE_WORKING_DIR"/"$subf"/
2016-10-11 12:56:59 +00:00
fi
done
2016-11-09 11:30:39 +00:00
if [ ! -f "$ACCOUNT_CONF_PATH" ]; then
2016-03-08 12:44:12 +00:00
_initconf
fi
2016-04-14 13:44:26 +00:00
2016-11-09 11:30:39 +00:00
if [ "$_DEFAULT_ACCOUNT_CONF_PATH" != "$ACCOUNT_CONF_PATH" ]; then
_setopt "$_DEFAULT_ACCOUNT_CONF_PATH" "ACCOUNT_CONF_PATH" "=" "\"$ACCOUNT_CONF_PATH\""
2016-04-14 13:44:26 +00:00
fi
2016-11-09 11:30:39 +00:00
if [ "$_DEFAULT_CERT_HOME" != "$CERT_HOME" ]; then
_saveaccountconf "CERT_HOME" "$CERT_HOME"
fi
2016-11-09 11:30:39 +00:00
if [ "$_DEFAULT_ACCOUNT_KEY_PATH" != "$ACCOUNT_KEY_PATH" ]; then
_saveaccountconf "ACCOUNT_KEY_PATH" "$ACCOUNT_KEY_PATH"
fi
2016-11-09 11:30:39 +00:00
if [ -z "$_nocron" ]; then
installcronjob
fi
2016-11-09 11:30:39 +00:00
if [ -z "$NO_DETECT_SH" ]; then
2016-04-18 14:43:33 +00:00
#Modify shebang
2016-11-09 11:30:39 +00:00
if _exists bash; then
2016-10-09 14:27:25 +00:00
_info "Good, bash is found, so change the shebang to use bash as prefered."
2016-04-18 14:43:33 +00:00
_shebang='#!/usr/bin/env bash'
_setShebang "$LE_WORKING_DIR/$PROJECT_ENTRY" "$_shebang"
2016-11-09 11:30:39 +00:00
for subf in $_SUB_FOLDERS; do
if [ -d "$LE_WORKING_DIR/$subf" ]; then
for _apifile in "$LE_WORKING_DIR/$subf/"*.sh; do
2016-10-11 12:56:59 +00:00
_setShebang "$_apifile" "$_shebang"
done
fi
done
fi
fi
2016-03-08 12:44:12 +00:00
_info OK
}
2016-06-26 05:30:47 +00:00
# nocron
2016-03-08 12:44:12 +00:00
uninstall() {
2016-06-26 05:30:47 +00:00
_nocron="$1"
2016-11-09 11:30:39 +00:00
if [ -z "$_nocron" ]; then
2016-06-26 05:30:47 +00:00
uninstallcronjob
fi
2016-03-08 12:44:12 +00:00
_initpath
2016-10-23 07:10:09 +00:00
_uninstallalias
2016-11-09 11:30:39 +00:00
2016-11-09 13:44:46 +00:00
rm -f "$LE_WORKING_DIR/$PROJECT_ENTRY"
2016-10-23 07:10:09 +00:00
_info "The keys and certs are in $LE_WORKING_DIR, you can remove them by yourself."
}
_uninstallalias() {
_initpath
2016-03-08 12:44:12 +00:00
_profile="$(_detect_profile)"
2016-11-09 11:30:39 +00:00
if [ "$_profile" ]; then
2016-10-23 07:10:09 +00:00
_info "Uninstalling alias from: '$_profile'"
2016-11-09 13:44:46 +00:00
text="$(cat "$_profile")"
2016-11-09 11:30:39 +00:00
echo "$text" | sed "s|^.*\"$LE_WORKING_DIR/$PROJECT_NAME.env\"$||" >"$_profile"
2016-03-08 12:44:12 +00:00
fi
2016-05-07 09:11:01 +00:00
_csh_profile="$HOME/.cshrc"
2016-11-09 11:30:39 +00:00
if [ -f "$_csh_profile" ]; then
2016-10-23 07:10:09 +00:00
_info "Uninstalling alias from: '$_csh_profile'"
2016-11-09 13:44:46 +00:00
text="$(cat "$_csh_profile")"
2016-11-09 11:30:39 +00:00
echo "$text" | sed "s|^.*\"$LE_WORKING_DIR/$PROJECT_NAME.csh\"$||" >"$_csh_profile"
2016-05-07 09:11:01 +00:00
fi
2016-11-09 11:30:39 +00:00
2016-05-09 14:28:45 +00:00
_tcsh_profile="$HOME/.tcshrc"
2016-11-09 11:30:39 +00:00
if [ -f "$_tcsh_profile" ]; then
2016-10-23 07:10:09 +00:00
_info "Uninstalling alias from: '$_csh_profile'"
2016-11-09 13:44:46 +00:00
text="$(cat "$_tcsh_profile")"
2016-11-09 11:30:39 +00:00
echo "$text" | sed "s|^.*\"$LE_WORKING_DIR/$PROJECT_NAME.csh\"$||" >"$_tcsh_profile"
2016-05-09 14:28:45 +00:00
fi
2016-03-08 12:44:12 +00:00
}
cron() {
2016-04-05 13:08:19 +00:00
IN_CRON=1
_initpath
2016-11-09 11:30:39 +00:00
if [ "$AUTO_UPGRADE" = "1" ]; then
export LE_WORKING_DIR
(
2016-11-09 11:30:39 +00:00
if ! upgrade; then
_err "Cron:Upgrade failed!"
return 1
fi
)
2016-11-09 13:44:46 +00:00
. "$LE_WORKING_DIR/$PROJECT_ENTRY" >/dev/null
2016-09-20 12:34:33 +00:00
2016-11-09 11:30:39 +00:00
if [ -t 1 ]; then
2016-09-20 12:34:33 +00:00
__INTERACTIVE="1"
fi
2016-11-09 11:30:39 +00:00
_info "Auto upgraded to: $VER"
fi
2016-03-08 12:44:12 +00:00
renewAll
2016-06-18 03:29:28 +00:00
_ret="$?"
2016-04-05 13:08:19 +00:00
IN_CRON=""
2016-09-24 05:43:08 +00:00
exit $_ret
2016-03-08 12:44:12 +00:00
}
version() {
echo "$PROJECT"
echo "v$VER"
2016-03-08 12:44:12 +00:00
}
showhelp() {
_initpath
2016-03-08 12:44:12 +00:00
version
2016-04-13 12:37:18 +00:00
echo "Usage: $PROJECT_ENTRY command ...[parameters]....
Commands:
--help, -h Show this help message.
--version, -v Show version info.
2016-04-13 12:37:18 +00:00
--install Install $PROJECT_NAME to your system.
--uninstall Uninstall $PROJECT_NAME, and uninstall the cron job.
--upgrade Upgrade $PROJECT_NAME to the latest code from $PROJECT .
--issue Issue a cert.
--signcsr Issue a cert from an existing csr.
2016-10-11 12:56:59 +00:00
--deploy Deploy the cert to your server.
--installcert Install the issued cert to apache/nginx or any other server.
--renew, -r Renew a cert.
--renewAll Renew all the certs.
--revoke Revoke a cert.
--list List all the certs.
--showcsr Show the content of a csr.
--installcronjob Install the cron job to renew certs, you don't need to call this. The 'install' command can automatically install the cron job.
--uninstallcronjob Uninstall the cron job. The 'uninstall' command can do this automatically.
--cron Run cron job to renew all the certs.
--toPkcs Export the certificate and key to a pfx file.
--updateaccount Update account info.
--registeraccount Register account key.
--createAccountKey, -cak Create an account private key, professional use.
--createDomainKey, -cdk Create an domain private key, professional use.
--createCSR, -ccsr Create CSR , professional use.
--deactivate Deactivate the domain authz, professional use.
Parameters:
--domain, -d domain.tld Specifies a domain, used to issue, renew or revoke etc.
--force, -f Used to force to install or force to renew a cert immediately.
--staging, --test Use staging server, just for test.
--debug Output debug info.
--webroot, -w /path/to/webroot Specifies the web root folder for web root mode.
--standalone Use standalone mode.
--tls Use standalone tls mode.
--apache Use apache mode.
--dns [dns_cf|dns_dp|dns_cx|/path/to/api/file] Use dns mode or dns api.
--dnssleep [$DEFAULT_DNS_SLEEP] The time in seconds to wait for all the txt records to take effect in dns api mode. Default $DEFAULT_DNS_SLEEP seconds.
--keylength, -k [2048] Specifies the domain key length: 2048, 3072, 4096, 8192 or ec-256, ec-384.
--accountkeylength, -ak [2048] Specifies the account key length.
--log [/path/to/logfile] Specifies the log file. The default is: \"$DEFAULT_LOG_FILE\" if you don't give a file path here.
2016-09-25 13:58:59 +00:00
--log-level 1|2 Specifies the log level, default is 1.
These parameters are to install the cert to nginx/apache or anyother server after issue/renew a cert:
--certpath /path/to/real/cert/file After issue/renew, the cert will be copied to this path.
--keypath /path/to/real/key/file After issue/renew, the key will be copied to this path.
--capath /path/to/real/ca/file After issue/renew, the intermediate cert will be copied to this path.
--fullchainpath /path/to/fullchain/file After issue/renew, the fullchain cert will be copied to this path.
--reloadcmd \"service nginx reload\" After issue/renew, it's used to reload the server.
--accountconf Specifies a customized account config file.
--home Specifies the home dir for $PROJECT_NAME .
--certhome Specifies the home dir to save all the certs, only valid for '--install' command.
--useragent Specifies the user agent string. it will be saved for future use too.
--accountemail Specifies the account email for registering, Only valid for the '--install' command.
--accountkey Specifies the account key path, Only valid for the '--install' command.
2016-06-26 02:09:51 +00:00
--days Specifies the days to renew the cert when using '--issue' command. The max value is $MAX_RENEW days.
--httpport Specifies the standalone listening port. Only valid if the server is behind a reverse proxy or load balancer.
--tlsport Specifies the standalone tls listening port. Only valid if the server is behind a reverse proxy or load balancer.
--local-address Specifies the standalone/tls server listening address, in case you have multiple ip addresses.
2016-06-14 05:07:33 +00:00
--listraw Only used for '--list' command, list the certs in raw format.
--stopRenewOnError, -se Only valid for '--renewall' command. Stop if one cert has error in renewal.
--insecure Do not check the server certificate, in some devices, the api server's certificate may not be trusted.
--ca-bundle Specifices the path to the CA certificate bundle to verify api server's certificate.
2016-06-27 02:32:51 +00:00
--nocron Only valid for '--install' command, which means: do not install the default cron job. In this case, the certs will not be renewed automatically.
--ecc Specifies to use the ECC cert. Valid for '--installcert', '--renew', '--revoke', '--toPkcs' and '--createCSR'
--csr Specifies the input csr.
--pre-hook Command to be run before obtaining any certificates.
--post-hook Command to be run after attempting to obtain/renew certificates. No matter the obain/renew is success or failed.
--renew-hook Command to be run once for each successfully renewed certificate.
2016-10-11 12:56:59 +00:00
--deploy-hook The hook file to deploy cert
--ocsp-must-staple, --ocsp Generate ocsp must Staple extension.
2016-09-28 14:05:43 +00:00
--auto-upgrade [0|1] Valid for '--upgrade' command, indicating whether to upgrade automatically in future.
--listen-v4 Force standalone/tls server to listen at ipv4.
--listen-v6 Force standalone/tls server to listen at ipv6.
2016-03-08 12:44:12 +00:00
"
}
2016-06-26 05:30:47 +00:00
# nocron
2016-03-27 12:31:22 +00:00
_installOnline() {
_info "Installing from online archive."
2016-06-26 05:30:47 +00:00
_nocron="$1"
2016-11-09 11:30:39 +00:00
if [ ! "$BRANCH" ]; then
2016-03-27 12:31:22 +00:00
BRANCH="master"
fi
2016-03-27 12:31:22 +00:00
target="$PROJECT/archive/$BRANCH.tar.gz"
_info "Downloading $target"
localname="$BRANCH.tar.gz"
2016-11-09 11:30:39 +00:00
if ! _get "$target" >$localname; then
2016-08-15 11:15:19 +00:00
_err "Download error."
2016-03-27 12:31:22 +00:00
return 1
fi
2016-07-03 04:46:18 +00:00
(
2016-11-09 11:30:39 +00:00
_info "Extracting $localname"
tar xzf $localname
cd "$PROJECT_NAME-$BRANCH"
chmod +x $PROJECT_ENTRY
if ./$PROJECT_ENTRY install "$_nocron"; then
_info "Install success!"
fi
cd ..
rm -rf "$PROJECT_NAME-$BRANCH"
rm -f "$localname"
2016-07-03 04:46:18 +00:00
)
2016-03-27 12:31:22 +00:00
}
2016-06-26 05:30:47 +00:00
upgrade() {
if (
_initpath
export LE_WORKING_DIR
2016-07-02 05:46:35 +00:00
cd "$LE_WORKING_DIR"
2016-06-26 05:30:47 +00:00
_installOnline "nocron"
2016-11-09 11:30:39 +00:00
); then
2016-06-26 05:30:47 +00:00
_info "Upgrade success!"
2016-07-04 12:40:29 +00:00
exit 0
2016-06-26 05:30:47 +00:00
else
_err "Upgrade failed!"
2016-07-04 12:40:29 +00:00
exit 1
2016-06-26 05:30:47 +00:00
fi
}
2016-09-19 15:07:43 +00:00
_processAccountConf() {
2016-11-09 11:30:39 +00:00
if [ "$_useragent" ]; then
2016-09-19 15:07:43 +00:00
_saveaccountconf "USER_AGENT" "$_useragent"
2016-11-09 11:30:39 +00:00
elif [ "$USER_AGENT" ] && [ "$USER_AGENT" != "$DEFAULT_USER_AGENT" ]; then
_saveaccountconf "USER_AGENT" "$USER_AGENT"
2016-09-19 15:07:43 +00:00
fi
2016-11-09 11:30:39 +00:00
if [ "$_accountemail" ]; then
2016-09-19 15:07:43 +00:00
_saveaccountconf "ACCOUNT_EMAIL" "$_accountemail"
2016-11-09 11:30:39 +00:00
elif [ "$ACCOUNT_EMAIL" ] && [ "$ACCOUNT_EMAIL" != "$DEFAULT_ACCOUNT_EMAIL" ]; then
_saveaccountconf "ACCOUNT_EMAIL" "$ACCOUNT_EMAIL"
2016-09-19 15:07:43 +00:00
fi
2016-11-09 11:30:39 +00:00
if [ "$_auto_upgrade" ]; then
2016-09-28 14:05:43 +00:00
_saveaccountconf "AUTO_UPGRADE" "$_auto_upgrade"
2016-11-09 11:30:39 +00:00
elif [ "$AUTO_UPGRADE" ]; then
2016-09-28 14:05:43 +00:00
_saveaccountconf "AUTO_UPGRADE" "$AUTO_UPGRADE"
fi
2016-11-09 11:30:39 +00:00
2016-09-19 15:07:43 +00:00
}
_process() {
_CMD=""
_domain=""
2016-09-23 14:35:13 +00:00
_altdomains="$NO_VALUE"
_webroot=""
2016-07-09 09:25:27 +00:00
_keylength=""
_accountkeylength=""
_certpath=""
_keypath=""
_capath=""
_fullchainpath=""
2016-04-27 14:14:15 +00:00
_reloadcmd=""
_password=""
_accountconf=""
_useragent=""
_accountemail=""
_accountkey=""
_certhome=""
_httpport=""
_tlsport=""
_dnssleep=""
2016-06-14 05:07:33 +00:00
_listraw=""
2016-06-18 03:29:28 +00:00
_stopRenewOnError=""
2016-11-11 13:15:48 +00:00
#_insecure=""
_ca_bundle=""
_nocron=""
_ecc=""
_csr=""
_pre_hook=""
_post_hook=""
_renew_hook=""
2016-10-11 12:56:59 +00:00
_deploy_hook=""
2016-09-19 15:07:43 +00:00
_logfile=""
_log=""
_local_address=""
2016-09-25 13:58:59 +00:00
_log_level=""
2016-09-28 14:05:43 +00:00
_auto_upgrade=""
_listen_v4=""
_listen_v6=""
2016-11-09 11:30:39 +00:00
while [ ${#} -gt 0 ]; do
case "${1}" in
2016-11-09 11:30:39 +00:00
--help | -h)
showhelp
return
;;
2016-11-09 11:30:39 +00:00
--version | -v)
version
return
;;
2016-11-09 11:30:39 +00:00
--install)
_CMD="install"
;;
2016-11-09 11:30:39 +00:00
--uninstall)
_CMD="uninstall"
;;
2016-11-09 11:30:39 +00:00
--upgrade)
2016-06-26 05:30:47 +00:00
_CMD="upgrade"
;;
2016-11-09 11:30:39 +00:00
--issue)
_CMD="issue"
;;
2016-11-09 11:30:39 +00:00
--deploy)
2016-10-11 12:56:59 +00:00
_CMD="deploy"
;;
2016-11-09 11:30:39 +00:00
--signcsr)
_CMD="signcsr"
;;
2016-11-09 11:30:39 +00:00
--showcsr)
_CMD="showcsr"
;;
2016-11-09 11:30:39 +00:00
--installcert | -i)
_CMD="installcert"
;;
2016-11-09 11:30:39 +00:00
--renew | -r)
_CMD="renew"
;;
2016-11-09 11:30:39 +00:00
--renewAll | --renewall)
_CMD="renewAll"
;;
2016-11-09 11:30:39 +00:00
--revoke)
_CMD="revoke"
;;
2016-11-09 11:30:39 +00:00
--list)
2016-06-09 06:18:54 +00:00
_CMD="list"
;;
2016-11-09 11:30:39 +00:00
--installcronjob)
_CMD="installcronjob"
;;
2016-11-09 11:30:39 +00:00
--uninstallcronjob)
_CMD="uninstallcronjob"
;;
2016-11-09 11:30:39 +00:00
--cron)
_CMD="cron"
;;
2016-11-09 11:30:39 +00:00
--toPkcs)
_CMD="toPkcs"
2016-11-09 11:30:39 +00:00
;;
--createAccountKey | --createaccountkey | -cak)
_CMD="createAccountKey"
;;
2016-11-09 11:30:39 +00:00
--createDomainKey | --createdomainkey | -cdk)
_CMD="createDomainKey"
;;
2016-11-09 11:30:39 +00:00
--createCSR | --createcsr | -ccr)
_CMD="createCSR"
;;
2016-11-09 11:30:39 +00:00
--deactivate)
_CMD="deactivate"
;;
2016-11-09 11:30:39 +00:00
--updateaccount)
_CMD="updateaccount"
;;
2016-11-09 11:30:39 +00:00
--registeraccount)
_CMD="registeraccount"
;;
2016-11-09 11:30:39 +00:00
--domain | -d)
_dvalue="$2"
2016-11-09 11:30:39 +00:00
if [ "$_dvalue" ]; then
if _startswith "$_dvalue" "-"; then
2016-06-09 04:45:30 +00:00
_err "'$_dvalue' is not a valid domain for parameter '$1'"
return 1
fi
2016-11-09 11:30:39 +00:00
if _is_idn "$_dvalue" && ! _exists idn; then
_err "It seems that $_dvalue is an IDN( Internationalized Domain Names), please install 'idn' command first."
return 1
fi
2016-11-09 11:30:39 +00:00
if [ -z "$_domain" ]; then
2016-06-09 04:45:30 +00:00
_domain="$_dvalue"
else
2016-11-09 11:30:39 +00:00
if [ "$_altdomains" = "$NO_VALUE" ]; then
2016-06-09 04:45:30 +00:00
_altdomains="$_dvalue"
else
_altdomains="$_altdomains,$_dvalue"
fi
fi
fi
2016-11-09 11:30:39 +00:00
shift
;;
2016-11-09 11:30:39 +00:00
--force | -f)
FORCE="1"
;;
2016-11-09 11:30:39 +00:00
--staging | --test)
STAGE="1"
;;
2016-11-09 11:30:39 +00:00
--debug)
if [ -z "$2" ] || _startswith "$2" "-"; then
DEBUG="1"
else
DEBUG="$2"
shift
2016-11-09 11:30:39 +00:00
fi
;;
2016-11-09 11:30:39 +00:00
--webroot | -w)
wvalue="$2"
2016-11-09 11:30:39 +00:00
if [ -z "$_webroot" ]; then
_webroot="$wvalue"
else
_webroot="$_webroot,$wvalue"
fi
shift
2016-11-09 11:30:39 +00:00
;;
--standalone)
2016-09-23 14:35:13 +00:00
wvalue="$NO_VALUE"
2016-11-09 11:30:39 +00:00
if [ -z "$_webroot" ]; then
_webroot="$wvalue"
else
_webroot="$_webroot,$wvalue"
fi
;;
2016-11-09 11:30:39 +00:00
--local-address)
lvalue="$2"
_local_address="$_local_address$lvalue,"
shift
;;
2016-11-09 11:30:39 +00:00
--apache)
wvalue="apache"
2016-11-09 11:30:39 +00:00
if [ -z "$_webroot" ]; then
_webroot="$wvalue"
else
_webroot="$_webroot,$wvalue"
fi
;;
2016-11-09 11:30:39 +00:00
--tls)
wvalue="$W_TLS"
2016-11-09 11:30:39 +00:00
if [ -z "$_webroot" ]; then
_webroot="$wvalue"
else
_webroot="$_webroot,$wvalue"
fi
;;
2016-11-09 11:30:39 +00:00
--dns)
wvalue="dns"
2016-11-09 11:30:39 +00:00
if ! _startswith "$2" "-"; then
wvalue="$2"
shift
fi
2016-11-09 11:30:39 +00:00
if [ -z "$_webroot" ]; then
_webroot="$wvalue"
else
_webroot="$_webroot,$wvalue"
fi
;;
2016-11-09 11:30:39 +00:00
--dnssleep)
_dnssleep="$2"
Le_DNSSleep="$_dnssleep"
shift
;;
2016-11-09 11:30:39 +00:00
--keylength | -k)
_keylength="$2"
shift
;;
2016-11-09 11:30:39 +00:00
--accountkeylength | -ak)
_accountkeylength="$2"
shift
;;
2016-11-09 11:30:39 +00:00
--certpath)
_certpath="$2"
shift
;;
2016-11-09 11:30:39 +00:00
--keypath)
_keypath="$2"
shift
;;
2016-11-09 11:30:39 +00:00
--capath)
_capath="$2"
shift
;;
2016-11-09 11:30:39 +00:00
--fullchainpath)
_fullchainpath="$2"
shift
;;
2016-11-09 11:30:39 +00:00
--reloadcmd | --reloadCmd)
_reloadcmd="$2"
shift
;;
2016-11-09 11:30:39 +00:00
--password)
_password="$2"
shift
;;
2016-11-09 11:30:39 +00:00
--accountconf)
_accountconf="$2"
ACCOUNT_CONF_PATH="$_accountconf"
2016-04-13 12:37:18 +00:00
shift
;;
2016-11-09 11:30:39 +00:00
--home)
LE_WORKING_DIR="$2"
2016-04-13 12:37:18 +00:00
shift
;;
2016-11-09 11:30:39 +00:00
--certhome)
_certhome="$2"
CERT_HOME="$_certhome"
shift
2016-11-09 11:30:39 +00:00
;;
--useragent)
_useragent="$2"
USER_AGENT="$_useragent"
shift
;;
2016-11-09 11:30:39 +00:00
--accountemail)
_accountemail="$2"
ACCOUNT_EMAIL="$_accountemail"
shift
;;
2016-11-09 11:30:39 +00:00
--accountkey)
_accountkey="$2"
ACCOUNT_KEY_PATH="$_accountkey"
shift
;;
2016-11-09 11:30:39 +00:00
--days)
_days="$2"
Le_RenewalDays="$_days"
shift
;;
2016-11-09 11:30:39 +00:00
--httpport)
_httpport="$2"
Le_HTTPPort="$_httpport"
shift
;;
2016-11-09 11:30:39 +00:00
--tlsport)
_tlsport="$2"
Le_TLSPort="$_tlsport"
shift
;;
2016-11-09 11:30:39 +00:00
--listraw)
2016-06-14 05:07:33 +00:00
_listraw="raw"
2016-11-09 11:30:39 +00:00
;;
--stopRenewOnError | --stoprenewonerror | -se)
2016-06-18 03:29:28 +00:00
_stopRenewOnError="1"
;;
2016-11-09 11:30:39 +00:00
--insecure)
2016-11-11 13:15:48 +00:00
#_insecure="1"
2016-08-14 14:37:21 +00:00
HTTPS_INSECURE="1"
;;
2016-11-09 11:30:39 +00:00
--ca-bundle)
2016-11-09 13:44:46 +00:00
_ca_bundle="$(readlink -f "$2")"
CA_BUNDLE="$_ca_bundle"
shift
;;
2016-11-09 11:30:39 +00:00
--nocron)
_nocron="1"
;;
2016-11-09 11:30:39 +00:00
--ecc)
_ecc="isEcc"
;;
2016-11-09 11:30:39 +00:00
--csr)
_csr="$2"
shift
;;
2016-11-09 11:30:39 +00:00
--pre-hook)
_pre_hook="$2"
shift
;;
2016-11-09 11:30:39 +00:00
--post-hook)
_post_hook="$2"
shift
;;
2016-11-09 11:30:39 +00:00
--renew-hook)
_renew_hook="$2"
shift
;;
2016-11-09 11:30:39 +00:00
--deploy-hook)
2016-10-11 12:56:59 +00:00
_deploy_hook="$2"
shift
;;
2016-11-09 11:30:39 +00:00
--ocsp-must-staple | --ocsp)
Le_OCSP_Stable="1"
;;
2016-11-09 11:30:39 +00:00
--log | --logfile)
_log="1"
2016-09-19 15:07:43 +00:00
_logfile="$2"
2016-11-09 11:30:39 +00:00
if _startswith "$_logfile" '-'; then
_logfile=""
else
shift
fi
2016-09-19 15:07:43 +00:00
LOG_FILE="$_logfile"
2016-11-09 11:30:39 +00:00
if [ -z "$LOG_LEVEL" ]; then
2016-09-25 13:58:59 +00:00
LOG_LEVEL="$DEFAULT_LOG_LEVEL"
fi
;;
2016-11-09 11:30:39 +00:00
--log-level)
_log_level="$2"
2016-09-25 13:58:59 +00:00
LOG_LEVEL="$_log_level"
shift
2016-09-19 15:07:43 +00:00
;;
2016-11-09 11:30:39 +00:00
--auto-upgrade)
2016-09-28 14:05:43 +00:00
_auto_upgrade="$2"
2016-11-09 11:30:39 +00:00
if [ -z "$_auto_upgrade" ] || _startswith "$_auto_upgrade" '-'; then
2016-09-28 14:05:43 +00:00
_auto_upgrade="1"
else
shift
fi
AUTO_UPGRADE="$_auto_upgrade"
;;
2016-11-09 11:30:39 +00:00
--listen-v4)
_listen_v4="1"
Le_Listen_V4="$_listen_v4"
;;
2016-11-09 11:30:39 +00:00
--listen-v6)
_listen_v6="1"
Le_Listen_V6="$_listen_v6"
;;
2016-11-09 11:30:39 +00:00
*)
_err "Unknown parameter : $1"
return 1
;;
esac
shift 1
done
2016-11-09 11:30:39 +00:00
if [ "${_CMD}" != "install" ]; then
2016-09-19 15:07:43 +00:00
__initHome
2016-10-12 13:48:18 +00:00
if [ "$_log" ]; then
2016-11-09 11:30:39 +00:00
if [ -z "$_logfile" ]; then
2016-10-12 13:48:18 +00:00
_logfile="$DEFAULT_LOG_FILE"
fi
fi
2016-11-09 11:30:39 +00:00
if [ "$_logfile" ]; then
2016-09-19 15:07:43 +00:00
_saveaccountconf "LOG_FILE" "$_logfile"
2016-10-12 13:48:18 +00:00
LOG_FILE="$_logfile"
2016-09-19 15:07:43 +00:00
fi
2016-09-25 13:58:59 +00:00
2016-11-09 11:30:39 +00:00
if [ "$_log_level" ]; then
2016-09-25 13:58:59 +00:00
_saveaccountconf "LOG_LEVEL" "$_log_level"
LOG_LEVEL="$_log_level"
fi
2016-11-09 11:30:39 +00:00
2016-09-19 15:07:43 +00:00
_processAccountConf
fi
2016-11-09 11:30:39 +00:00
2016-11-04 14:03:41 +00:00
_debug2 LE_WORKING_DIR "$LE_WORKING_DIR"
2016-11-09 11:30:39 +00:00
if [ "$DEBUG" ]; then
2016-07-15 08:40:03 +00:00
version
fi
case "${_CMD}" in
install) install "$_nocron" ;;
2016-06-27 02:32:51 +00:00
uninstall) uninstall "$_nocron" ;;
2016-06-26 05:30:47 +00:00
upgrade) upgrade ;;
issue)
2016-11-09 11:30:39 +00:00
issue "$_webroot" "$_domain" "$_altdomains" "$_keylength" "$_certpath" "$_keypath" "$_capath" "$_reloadcmd" "$_fullchainpath" "$_pre_hook" "$_post_hook" "$_renew_hook" "$_local_address"
;;
2016-10-11 12:56:59 +00:00
deploy)
deploy "$_domain" "$_deploy_hook" "$_ecc"
;;
signcsr)
signcsr "$_csr" "$_webroot"
;;
showcsr)
showcsr "$_csr" "$_domain"
;;
installcert)
installcert "$_domain" "$_certpath" "$_keypath" "$_capath" "$_reloadcmd" "$_fullchainpath" "$_ecc"
;;
2016-11-09 11:30:39 +00:00
renew)
renew "$_domain" "$_ecc"
;;
2016-11-09 11:30:39 +00:00
renewAll)
2016-06-18 03:29:28 +00:00
renewAll "$_stopRenewOnError"
;;
2016-11-09 11:30:39 +00:00
revoke)
revoke "$_domain" "$_ecc"
;;
2016-11-09 11:30:39 +00:00
deactivate)
2016-09-23 14:35:13 +00:00
deactivate "$_domain,$_altdomains"
;;
2016-11-09 11:30:39 +00:00
registeraccount)
registeraccount "$_accountkeylength"
;;
2016-11-09 11:30:39 +00:00
updateaccount)
updateaccount
;;
2016-11-09 11:30:39 +00:00
list)
2016-06-14 05:07:33 +00:00
list "$_listraw"
2016-06-09 06:18:54 +00:00
;;
installcronjob) installcronjob ;;
uninstallcronjob) uninstallcronjob ;;
cron) cron ;;
2016-11-09 11:30:39 +00:00
toPkcs)
toPkcs "$_domain" "$_password" "$_ecc"
;;
2016-11-09 11:30:39 +00:00
createAccountKey)
createAccountKey "$_accountkeylength"
;;
2016-11-09 11:30:39 +00:00
createDomainKey)
createDomainKey "$_domain" "$_keylength"
;;
2016-11-09 11:30:39 +00:00
createCSR)
createCSR "$_domain" "$_altdomains" "$_ecc"
;;
*)
_err "Invalid command: $_CMD"
2016-11-09 11:30:39 +00:00
showhelp
return 1
2016-11-09 11:30:39 +00:00
;;
esac
2016-05-09 14:56:19 +00:00
_ret="$?"
2016-11-09 11:30:39 +00:00
if [ "$_ret" != "0" ]; then
2016-05-09 14:56:19 +00:00
return $_ret
fi
2016-11-09 11:30:39 +00:00
if [ "${_CMD}" = "install" ]; then
if [ "$_log" ]; then
if [ -z "$LOG_FILE" ]; then
LOG_FILE="$DEFAULT_LOG_FILE"
fi
_saveaccountconf "LOG_FILE" "$LOG_FILE"
2016-09-19 15:07:43 +00:00
fi
2016-11-09 11:30:39 +00:00
if [ "$_log_level" ]; then
2016-09-25 13:58:59 +00:00
_saveaccountconf "LOG_LEVEL" "$_log_level"
fi
2016-09-19 15:07:43 +00:00
_processAccountConf
fi
}
2016-11-09 11:30:39 +00:00
if [ "$INSTALLONLINE" ]; then
2016-03-27 12:37:26 +00:00
INSTALLONLINE=""
2016-03-27 12:31:22 +00:00
_installOnline $BRANCH
exit
fi
2016-03-08 12:44:12 +00:00
2016-09-21 05:39:39 +00:00
main() {
[ -z "$1" ] && showhelp && return
2016-11-09 11:30:39 +00:00
if _startswith "$1" '-'; then _process "$@"; else "$@"; fi
2016-09-21 05:39:39 +00:00
}
2016-09-21 05:27:05 +00:00
2016-10-05 04:15:06 +00:00
main "$@"