Mercurial Hosting > luan
comparison host/acme.sh @ 2015:61b0cc7db09c default tip fixssl
Manually specify letsencrypt server due to acme default server change (to zerossl)
author | Violet7 |
---|---|
date | Sat, 27 Sep 2025 13:37:11 -0700 |
parents | b735ed134662 |
children |
comparison
equal
deleted
inserted
replaced
2014:1cdc12cdcfa2 | 2015:61b0cc7db09c |
---|---|
1 #!/usr/bin/env sh | 1 #!/bin/bash |
2 | 2 |
3 VER=2.8.8 | 3 VER=3.1.2 |
4 | 4 |
5 PROJECT_NAME="acme.sh" | 5 PROJECT_NAME="acme.sh" |
6 | 6 |
7 PROJECT_ENTRY="acme.sh" | 7 PROJECT_ENTRY="acme.sh" |
8 | 8 |
18 _SUB_FOLDER_DNSAPI="dnsapi" | 18 _SUB_FOLDER_DNSAPI="dnsapi" |
19 _SUB_FOLDER_DEPLOY="deploy" | 19 _SUB_FOLDER_DEPLOY="deploy" |
20 | 20 |
21 _SUB_FOLDERS="$_SUB_FOLDER_DNSAPI $_SUB_FOLDER_DEPLOY $_SUB_FOLDER_NOTIFY" | 21 _SUB_FOLDERS="$_SUB_FOLDER_DNSAPI $_SUB_FOLDER_DEPLOY $_SUB_FOLDER_NOTIFY" |
22 | 22 |
23 LETSENCRYPT_CA_V1="https://acme-v01.api.letsencrypt.org/directory" | |
24 LETSENCRYPT_STAGING_CA_V1="https://acme-staging.api.letsencrypt.org/directory" | |
25 | |
26 CA_LETSENCRYPT_V2="https://acme-v02.api.letsencrypt.org/directory" | 23 CA_LETSENCRYPT_V2="https://acme-v02.api.letsencrypt.org/directory" |
27 CA_LETSENCRYPT_V2_TEST="https://acme-staging-v02.api.letsencrypt.org/directory" | 24 CA_LETSENCRYPT_V2_TEST="https://acme-staging-v02.api.letsencrypt.org/directory" |
28 | 25 |
29 CA_BUYPASS="https://api.buypass.com/acme/directory" | |
30 CA_BUYPASS_TEST="https://api.test4.buypass.no/acme/directory" | |
31 | |
32 CA_ZEROSSL="https://acme.zerossl.com/v2/DV90" | 26 CA_ZEROSSL="https://acme.zerossl.com/v2/DV90" |
33 _ZERO_EAB_ENDPOINT="http://api.zerossl.com/acme/eab-credentials-email" | 27 _ZERO_EAB_ENDPOINT="https://api.zerossl.com/acme/eab-credentials-email" |
34 | 28 |
35 DEFAULT_CA=$CA_LETSENCRYPT_V2 | 29 CA_SSLCOM_RSA="https://acme.ssl.com/sslcom-dv-rsa" |
30 CA_SSLCOM_ECC="https://acme.ssl.com/sslcom-dv-ecc" | |
31 | |
32 CA_GOOGLE="https://dv.acme-v02.api.pki.goog/directory" | |
33 CA_GOOGLE_TEST="https://dv.acme-v02.test-api.pki.goog/directory" | |
34 | |
35 DEFAULT_CA=$CA_ZEROSSL | |
36 DEFAULT_STAGING_CA=$CA_LETSENCRYPT_V2_TEST | 36 DEFAULT_STAGING_CA=$CA_LETSENCRYPT_V2_TEST |
37 | 37 |
38 CA_NAMES=" | 38 CA_NAMES=" |
39 ZeroSSL.com,zerossl | |
39 LetsEncrypt.org,letsencrypt | 40 LetsEncrypt.org,letsencrypt |
40 LetsEncrypt.org_test,letsencrypt_test,letsencrypttest | 41 LetsEncrypt.org_test,letsencrypt_test,letsencrypttest |
41 BuyPass.com,buypass | 42 SSL.com,sslcom |
42 BuyPass.com_test,buypass_test,buypasstest | 43 Google.com,google |
43 ZeroSSL.com,zerossl | 44 Google.com_test,googletest,google_test |
44 " | 45 " |
45 | 46 |
46 CA_SERVERS="$CA_LETSENCRYPT_V2,$CA_LETSENCRYPT_V2_TEST,$CA_BUYPASS,$CA_BUYPASS_TEST,$CA_ZEROSSL" | 47 CA_SERVERS="$CA_ZEROSSL,$CA_LETSENCRYPT_V2,$CA_LETSENCRYPT_V2_TEST,$CA_SSLCOM_RSA,$CA_GOOGLE,$CA_GOOGLE_TEST" |
47 | 48 |
48 DEFAULT_USER_AGENT="$PROJECT_NAME/$VER ($PROJECT)" | 49 DEFAULT_USER_AGENT="$PROJECT_NAME/$VER ($PROJECT)" |
49 | 50 |
50 DEFAULT_ACCOUNT_KEY_LENGTH=2048 | 51 DEFAULT_ACCOUNT_KEY_LENGTH=ec-256 |
51 DEFAULT_DOMAIN_KEY_LENGTH=2048 | 52 DEFAULT_DOMAIN_KEY_LENGTH=ec-256 |
52 | 53 |
53 DEFAULT_OPENSSL_BIN="openssl" | 54 DEFAULT_OPENSSL_BIN="openssl" |
54 | 55 |
55 VTYPE_HTTP="http-01" | 56 VTYPE_HTTP="http-01" |
56 VTYPE_DNS="dns-01" | 57 VTYPE_DNS="dns-01" |
57 VTYPE_ALPN="tls-alpn-01" | 58 VTYPE_ALPN="tls-alpn-01" |
58 | 59 |
60 ID_TYPE_DNS="dns" | |
61 ID_TYPE_IP="ip" | |
62 | |
59 LOCAL_ANY_ADDRESS="0.0.0.0" | 63 LOCAL_ANY_ADDRESS="0.0.0.0" |
60 | 64 |
61 DEFAULT_RENEW=60 | 65 DEFAULT_RENEW=60 |
62 | 66 |
63 NO_VALUE="no" | 67 NO_VALUE="no" |
72 | 76 |
73 NGINX="nginx:" | 77 NGINX="nginx:" |
74 NGINX_START="#ACME_NGINX_START" | 78 NGINX_START="#ACME_NGINX_START" |
75 NGINX_END="#ACME_NGINX_END" | 79 NGINX_END="#ACME_NGINX_END" |
76 | 80 |
77 BEGIN_CSR="-----BEGIN CERTIFICATE REQUEST-----" | 81 BEGIN_CSR="-----BEGIN [NEW ]\{0,4\}CERTIFICATE REQUEST-----" |
78 END_CSR="-----END CERTIFICATE REQUEST-----" | 82 END_CSR="-----END [NEW ]\{0,4\}CERTIFICATE REQUEST-----" |
79 | 83 |
80 BEGIN_CERT="-----BEGIN CERTIFICATE-----" | 84 BEGIN_CERT="-----BEGIN CERTIFICATE-----" |
81 END_CERT="-----END CERTIFICATE-----" | 85 END_CERT="-----END CERTIFICATE-----" |
82 | 86 |
83 CONTENT_TYPE_JSON="application/jose+json" | 87 CONTENT_TYPE_JSON="application/jose+json" |
84 RENEW_SKIP=2 | 88 RENEW_SKIP=2 |
89 CODE_DNS_MANUAL=3 | |
85 | 90 |
86 B64CONF_START="__ACME_BASE64__START_" | 91 B64CONF_START="__ACME_BASE64__START_" |
87 B64CONF_END="__ACME_BASE64__END_" | 92 B64CONF_END="__ACME_BASE64__END_" |
88 | 93 |
89 ECC_SEP="_" | 94 ECC_SEP="_" |
90 ECC_SUFFIX="${ECC_SEP}ecc" | 95 ECC_SUFFIX="${ECC_SEP}ecc" |
91 | 96 |
92 LOG_LEVEL_1=1 | 97 LOG_LEVEL_1=1 |
93 LOG_LEVEL_2=2 | 98 LOG_LEVEL_2=2 |
94 LOG_LEVEL_3=3 | 99 LOG_LEVEL_3=3 |
95 DEFAULT_LOG_LEVEL="$LOG_LEVEL_1" | 100 DEFAULT_LOG_LEVEL="$LOG_LEVEL_2" |
96 | 101 |
97 DEBUG_LEVEL_1=1 | 102 DEBUG_LEVEL_1=1 |
98 DEBUG_LEVEL_2=2 | 103 DEBUG_LEVEL_2=2 |
99 DEBUG_LEVEL_3=3 | 104 DEBUG_LEVEL_3=3 |
100 DEBUG_LEVEL_DEFAULT=$DEBUG_LEVEL_1 | 105 DEBUG_LEVEL_DEFAULT=$DEBUG_LEVEL_2 |
101 DEBUG_LEVEL_NONE=0 | 106 DEBUG_LEVEL_NONE=0 |
102 | 107 |
103 DOH_CLOUDFLARE=1 | 108 DOH_CLOUDFLARE=1 |
104 DOH_GOOGLE=2 | 109 DOH_GOOGLE=2 |
110 DOH_ALI=3 | |
111 DOH_DP=4 | |
105 | 112 |
106 HIDDEN_VALUE="[hidden](please add '--output-insecure' to see this value)" | 113 HIDDEN_VALUE="[hidden](please add '--output-insecure' to see this value)" |
107 | 114 |
108 SYSLOG_ERROR="user.error" | 115 SYSLOG_ERROR="user.error" |
109 SYSLOG_INFO="user.info" | 116 SYSLOG_INFO="user.info" |
134 NOTIFY_MODE_BULK=0 | 141 NOTIFY_MODE_BULK=0 |
135 NOTIFY_MODE_CERT=1 | 142 NOTIFY_MODE_CERT=1 |
136 | 143 |
137 NOTIFY_MODE_DEFAULT=$NOTIFY_MODE_BULK | 144 NOTIFY_MODE_DEFAULT=$NOTIFY_MODE_BULK |
138 | 145 |
146 _BASE64_ENCODED_CFGS="Le_PreHook Le_PostHook Le_RenewHook Le_Preferred_Chain Le_ReloadCmd" | |
147 | |
139 _DEBUG_WIKI="https://github.com/acmesh-official/acme.sh/wiki/How-to-debug-acme.sh" | 148 _DEBUG_WIKI="https://github.com/acmesh-official/acme.sh/wiki/How-to-debug-acme.sh" |
140 | 149 |
141 _PREPARE_LINK="https://github.com/acmesh-official/acme.sh/wiki/Install-preparations" | 150 _PREPARE_LINK="https://github.com/acmesh-official/acme.sh/wiki/Install-preparations" |
142 | 151 |
143 _STATELESS_WIKI="https://github.com/acmesh-official/acme.sh/wiki/Stateless-Mode" | 152 _STATELESS_WIKI="https://github.com/acmesh-official/acme.sh/wiki/Stateless-Mode" |
154 | 163 |
155 _REVOKE_WIKI="https://github.com/acmesh-official/acme.sh/wiki/revokecert" | 164 _REVOKE_WIKI="https://github.com/acmesh-official/acme.sh/wiki/revokecert" |
156 | 165 |
157 _ZEROSSL_WIKI="https://github.com/acmesh-official/acme.sh/wiki/ZeroSSL.com-CA" | 166 _ZEROSSL_WIKI="https://github.com/acmesh-official/acme.sh/wiki/ZeroSSL.com-CA" |
158 | 167 |
168 _SSLCOM_WIKI="https://github.com/acmesh-official/acme.sh/wiki/SSL.com-CA" | |
169 | |
159 _SERVER_WIKI="https://github.com/acmesh-official/acme.sh/wiki/Server" | 170 _SERVER_WIKI="https://github.com/acmesh-official/acme.sh/wiki/Server" |
160 | 171 |
161 _PREFERRED_CHAIN_WIKI="https://github.com/acmesh-official/acme.sh/wiki/Preferred-Chain" | 172 _PREFERRED_CHAIN_WIKI="https://github.com/acmesh-official/acme.sh/wiki/Preferred-Chain" |
173 | |
174 _VALIDITY_WIKI="https://github.com/acmesh-official/acme.sh/wiki/Validity" | |
175 | |
176 _DNSCHECK_WIKI="https://github.com/acmesh-official/acme.sh/wiki/dnscheck" | |
162 | 177 |
163 _DNS_MANUAL_ERR="The dns manual mode can not renew automatically, you must issue it again manually. You'd better use the other modes instead." | 178 _DNS_MANUAL_ERR="The dns manual mode can not renew automatically, you must issue it again manually. You'd better use the other modes instead." |
164 | 179 |
165 _DNS_MANUAL_WARN="It seems that you are using dns manual mode. please take care: $_DNS_MANUAL_ERR" | 180 _DNS_MANUAL_WARN="It seems that you are using dns manual mode. please take care: $_DNS_MANUAL_ERR" |
166 | 181 |
209 ${ACME_OPENSSL_BIN:-openssl} version 2>&1 | 224 ${ACME_OPENSSL_BIN:-openssl} version 2>&1 |
210 else | 225 else |
211 echo "$ACME_OPENSSL_BIN doesn't exist." | 226 echo "$ACME_OPENSSL_BIN doesn't exist." |
212 fi | 227 fi |
213 | 228 |
214 echo "apache:" | 229 echo "Apache:" |
215 if [ "$_APACHECTL" ] && _exists "$_APACHECTL"; then | 230 if [ "$_APACHECTL" ] && _exists "$_APACHECTL"; then |
216 $_APACHECTL -V 2>&1 | 231 $_APACHECTL -V 2>&1 |
217 else | 232 else |
218 echo "apache doesn't exist." | 233 echo "Apache doesn't exist." |
219 fi | 234 fi |
220 | 235 |
221 echo "nginx:" | 236 echo "nginx:" |
222 if _exists "nginx"; then | 237 if _exists "nginx"; then |
223 nginx -V 2>&1 | 238 nginx -V 2>&1 |
414 _printargs "$1" "$HIDDEN_VALUE" >&2 | 429 _printargs "$1" "$HIDDEN_VALUE" >&2 |
415 fi | 430 fi |
416 fi | 431 fi |
417 } | 432 } |
418 | 433 |
434 __USE_TR_TAG="" | |
435 if [ "$(echo "abc" | LANG=C tr a-z A-Z 2>/dev/null)" != "ABC" ]; then | |
436 __USE_TR_TAG="1" | |
437 fi | |
438 export __USE_TR_TAG | |
439 | |
419 _upper_case() { | 440 _upper_case() { |
420 # shellcheck disable=SC2018,SC2019 | 441 if [ "$__USE_TR_TAG" ]; then |
421 tr 'a-z' 'A-Z' | 442 LANG=C tr '[:lower:]' '[:upper:]' |
443 else | |
444 # shellcheck disable=SC2018,SC2019 | |
445 LANG=C tr '[a-z]' '[A-Z]' | |
446 fi | |
422 } | 447 } |
423 | 448 |
424 _lower_case() { | 449 _lower_case() { |
425 # shellcheck disable=SC2018,SC2019 | 450 if [ "$__USE_TR_TAG" ]; then |
426 tr 'A-Z' 'a-z' | 451 LANG=C tr '[:upper:]' '[:lower:]' |
452 else | |
453 # shellcheck disable=SC2018,SC2019 | |
454 LANG=C tr '[A-Z]' '[a-z]' | |
455 fi | |
427 } | 456 } |
428 | 457 |
429 _startswith() { | 458 _startswith() { |
430 _str="$1" | 459 _str="$1" |
431 _sub="$2" | 460 _sub="$2" |
432 echo "$_str" | grep "^$_sub" >/dev/null 2>&1 | 461 echo "$_str" | grep -- "^$_sub" >/dev/null 2>&1 |
433 } | 462 } |
434 | 463 |
435 _endswith() { | 464 _endswith() { |
436 _str="$1" | 465 _str="$1" |
437 _sub="$2" | 466 _sub="$2" |
558 if _exists xargs && [ "$(printf %s '\\x41' | xargs printf)" = 'A' ]; then | 587 if _exists xargs && [ "$(printf %s '\\x41' | xargs printf)" = 'A' ]; then |
559 _ESCAPE_XARGS=1 | 588 _ESCAPE_XARGS=1 |
560 fi | 589 fi |
561 | 590 |
562 _h2b() { | 591 _h2b() { |
563 if _exists xxd && xxd -r -p 2>/dev/null; then | 592 if _exists xxd; then |
564 return | 593 if _contains "$(xxd --help 2>&1)" "assumes -c30"; then |
594 if xxd -r -p -c 9999 2>/dev/null; then | |
595 return | |
596 fi | |
597 else | |
598 if xxd -r -p 2>/dev/null; then | |
599 return | |
600 fi | |
601 fi | |
565 fi | 602 fi |
566 | 603 |
567 hex=$(cat) | 604 hex=$(cat) |
568 ic="" | 605 ic="" |
569 jc="" | 606 jc="" |
642 #61 62 63 64 65 66 67 68 69 6a 6b 6c 6d 6e 6f 70 71 72 73 74 75 76 77 78 79 7a | 679 #61 62 63 64 65 66 67 68 69 6a 6b 6c 6d 6e 6f 70 71 72 73 74 75 76 77 78 79 7a |
643 | 680 |
644 #0 1 2 3 4 5 6 7 8 9 - _ . ~ | 681 #0 1 2 3 4 5 6 7 8 9 - _ . ~ |
645 #30 31 32 33 34 35 36 37 38 39 2d 5f 2e 7e | 682 #30 31 32 33 34 35 36 37 38 39 2d 5f 2e 7e |
646 | 683 |
684 #_url_encode [upper-hex] the encoded hex will be upper-case if the argument upper-hex is followed | |
647 #stdin stdout | 685 #stdin stdout |
648 _url_encode() { | 686 _url_encode() { |
687 _upper_hex=$1 | |
649 _hex_str=$(_hex_dump) | 688 _hex_str=$(_hex_dump) |
650 _debug3 "_url_encode" | 689 _debug3 "_url_encode" |
651 _debug3 "_hex_str" "$_hex_str" | 690 _debug3 "_hex_str" "$_hex_str" |
652 for _hex_code in $_hex_str; do | 691 for _hex_code in $_hex_str; do |
653 #upper case | 692 #upper case |
853 "7e") | 892 "7e") |
854 printf "%s" "~" | 893 printf "%s" "~" |
855 ;; | 894 ;; |
856 #other hex | 895 #other hex |
857 *) | 896 *) |
897 if [ "$_upper_hex" = "upper-hex" ]; then | |
898 _hex_code=$(printf "%s" "$_hex_code" | _upper_case) | |
899 fi | |
858 printf '%%%s' "$_hex_code" | 900 printf '%%%s' "$_hex_code" |
859 ;; | 901 ;; |
860 esac | 902 esac |
861 done | 903 done |
862 } | 904 } |
886 fi | 928 fi |
887 _debug2 options "$options" | 929 _debug2 options "$options" |
888 if sed -h 2>&1 | grep "\-i\[SUFFIX]" >/dev/null 2>&1; then | 930 if sed -h 2>&1 | grep "\-i\[SUFFIX]" >/dev/null 2>&1; then |
889 _debug "Using sed -i" | 931 _debug "Using sed -i" |
890 sed -i "$options" "$filename" | 932 sed -i "$options" "$filename" |
933 elif sed -h 2>&1 | grep "\-i extension" >/dev/null 2>&1; then | |
934 _debug "Using FreeBSD sed -i" | |
935 sed -i "" "$options" "$filename" | |
891 else | 936 else |
892 _debug "No -i support in sed" | 937 _debug "No -i support in sed" |
893 text="$(cat "$filename")" | 938 text="$(cat "$filename")" |
894 echo "$text" | sed "$options" >"$filename" | 939 echo "$text" | sed "$options" >"$filename" |
895 fi | 940 fi |
896 } | 941 } |
897 | 942 |
943 if [ "$(echo abc | egrep -o b 2>/dev/null)" = "b" ]; then | |
944 __USE_EGREP=1 | |
945 else | |
946 __USE_EGREP="" | |
947 fi | |
948 | |
898 _egrep_o() { | 949 _egrep_o() { |
899 if ! egrep -o "$1" 2>/dev/null; then | 950 if [ "$__USE_EGREP" ]; then |
951 egrep -o -- "$1" 2>/dev/null | |
952 else | |
900 sed -n 's/.*\('"$1"'\).*/\1/p' | 953 sed -n 's/.*\('"$1"'\).*/\1/p' |
901 fi | 954 fi |
902 } | 955 } |
903 | 956 |
904 #Usage: file startline endline | 957 #Usage: file startline endline |
911 return 1 | 964 return 1 |
912 fi | 965 fi |
913 | 966 |
914 i="$(grep -n -- "$startline" "$filename" | cut -d : -f 1)" | 967 i="$(grep -n -- "$startline" "$filename" | cut -d : -f 1)" |
915 if [ -z "$i" ]; then | 968 if [ -z "$i" ]; then |
916 _err "Can not find start line: $startline" | 969 _err "Cannot find start line: $startline" |
917 return 1 | 970 return 1 |
918 fi | 971 fi |
919 i="$(_math "$i" + 1)" | 972 i="$(_math "$i" + 1)" |
920 _debug i "$i" | 973 _debug i "$i" |
921 | 974 |
922 j="$(grep -n -- "$endline" "$filename" | cut -d : -f 1)" | 975 j="$(grep -n -- "$endline" "$filename" | cut -d : -f 1)" |
923 if [ -z "$j" ]; then | 976 if [ -z "$j" ]; then |
924 _err "Can not find end line: $endline" | 977 _err "Cannot find end line: $endline" |
925 return 1 | 978 return 1 |
926 fi | 979 fi |
927 j="$(_math "$j" - 1)" | 980 j="$(_math "$j" - 1)" |
928 _debug j "$j" | 981 _debug j "$j" |
929 | 982 |
944 } | 997 } |
945 | 998 |
946 #Usage: multiline | 999 #Usage: multiline |
947 _dbase64() { | 1000 _dbase64() { |
948 if [ "$1" ]; then | 1001 if [ "$1" ]; then |
1002 ${ACME_OPENSSL_BIN:-openssl} base64 -d | |
1003 else | |
949 ${ACME_OPENSSL_BIN:-openssl} base64 -d -A | 1004 ${ACME_OPENSSL_BIN:-openssl} base64 -d -A |
950 else | |
951 ${ACME_OPENSSL_BIN:-openssl} base64 -d | |
952 fi | 1005 fi |
953 } | 1006 } |
954 | 1007 |
955 #file | 1008 #file |
956 _checkcert() { | 1009 _checkcert() { |
1021 return 1 | 1074 return 1 |
1022 fi | 1075 fi |
1023 | 1076 |
1024 _sign_openssl="${ACME_OPENSSL_BIN:-openssl} dgst -sign $keyfile " | 1077 _sign_openssl="${ACME_OPENSSL_BIN:-openssl} dgst -sign $keyfile " |
1025 | 1078 |
1026 if grep "BEGIN RSA PRIVATE KEY" "$keyfile" >/dev/null 2>&1 || grep "BEGIN PRIVATE KEY" "$keyfile" >/dev/null 2>&1; then | 1079 if _isRSA "$keyfile" >/dev/null 2>&1; then |
1027 $_sign_openssl -$alg | _base64 | 1080 $_sign_openssl -$alg | _base64 |
1028 elif grep "BEGIN EC PRIVATE KEY" "$keyfile" >/dev/null 2>&1; then | 1081 elif _isEcc "$keyfile" >/dev/null 2>&1; then |
1029 if ! _signedECText="$($_sign_openssl -sha$__ECC_KEY_LEN | ${ACME_OPENSSL_BIN:-openssl} asn1parse -inform DER)"; then | 1082 if ! _signedECText="$($_sign_openssl -sha$__ECC_KEY_LEN | ${ACME_OPENSSL_BIN:-openssl} asn1parse -inform DER)"; then |
1030 _err "Sign failed: $_sign_openssl" | 1083 _err "Sign failed: $_sign_openssl" |
1031 _err "Key file: $keyfile" | 1084 _err "Key file: $keyfile" |
1032 _err "Key content:$(wc -l <"$keyfile") lines" | 1085 _err "Key content: $(wc -l <"$keyfile") lines" |
1033 return 1 | 1086 return 1 |
1034 fi | 1087 fi |
1035 _debug3 "_signedECText" "$_signedECText" | 1088 _debug3 "_signedECText" "$_signedECText" |
1036 _ec_r="$(echo "$_signedECText" | _head_n 2 | _tail_n 1 | cut -d : -f 4 | tr -d "\r\n")" | 1089 _ec_r="$(echo "$_signedECText" | _head_n 2 | _tail_n 1 | cut -d : -f 4 | tr -d "\r\n")" |
1037 _ec_s="$(echo "$_signedECText" | _head_n 3 | _tail_n 1 | cut -d : -f 4 | tr -d "\r\n")" | 1090 _ec_s="$(echo "$_signedECText" | _head_n 3 | _tail_n 1 | cut -d : -f 4 | tr -d "\r\n")" |
1107 | 1160 |
1108 if [ -z "$length" ]; then | 1161 if [ -z "$length" ]; then |
1109 length=2048 | 1162 length=2048 |
1110 fi | 1163 fi |
1111 | 1164 |
1112 _debug "Use length $length" | 1165 _debug "Using length $length" |
1113 | 1166 |
1114 if ! touch "$f" >/dev/null 2>&1; then | 1167 if ! [ -e "$f" ]; then |
1115 _f_path="$(dirname "$f")" | 1168 if ! touch "$f" >/dev/null 2>&1; then |
1116 _debug _f_path "$_f_path" | 1169 _f_path="$(dirname "$f")" |
1117 if ! mkdir -p "$_f_path"; then | 1170 _debug _f_path "$_f_path" |
1118 _err "Can not create path: $_f_path" | 1171 if ! mkdir -p "$_f_path"; then |
1172 _err "Cannot create path: $_f_path" | |
1173 return 1 | |
1174 fi | |
1175 fi | |
1176 if ! touch "$f" >/dev/null 2>&1; then | |
1119 return 1 | 1177 return 1 |
1120 fi | 1178 fi |
1179 chmod 600 "$f" | |
1121 fi | 1180 fi |
1122 | 1181 |
1123 if _isEccKey "$length"; then | 1182 if _isEccKey "$length"; then |
1124 _debug "Using ec name: $eccname" | 1183 _debug "Using EC name: $eccname" |
1125 if _opkey="$(${ACME_OPENSSL_BIN:-openssl} ecparam -name "$eccname" -genkey 2>/dev/null)"; then | 1184 if _opkey="$(${ACME_OPENSSL_BIN:-openssl} ecparam -name "$eccname" -noout -genkey 2>/dev/null)"; then |
1126 echo "$_opkey" >"$f" | 1185 echo "$_opkey" >"$f" |
1127 else | 1186 else |
1128 _err "error ecc key name: $eccname" | 1187 _err "Error encountered for ECC key named $eccname" |
1129 return 1 | 1188 return 1 |
1130 fi | 1189 fi |
1131 else | 1190 else |
1132 _debug "Using RSA: $length" | 1191 _debug "Using RSA: $length" |
1133 if _opkey="$(${ACME_OPENSSL_BIN:-openssl} genrsa "$length" 2>/dev/null)"; then | 1192 __traditional="" |
1193 if _contains "$(${ACME_OPENSSL_BIN:-openssl} help genrsa 2>&1)" "-traditional"; then | |
1194 __traditional="-traditional" | |
1195 fi | |
1196 if _opkey="$(${ACME_OPENSSL_BIN:-openssl} genrsa $__traditional "$length" 2>/dev/null)"; then | |
1134 echo "$_opkey" >"$f" | 1197 echo "$_opkey" >"$f" |
1135 else | 1198 else |
1136 _err "error rsa key: $length" | 1199 _err "Error encountered for RSA key of length $length" |
1137 return 1 | 1200 return 1 |
1138 fi | 1201 fi |
1139 fi | 1202 fi |
1140 | 1203 |
1141 if [ "$?" != "0" ]; then | 1204 if [ "$?" != "0" ]; then |
1142 _err "Create key error." | 1205 _err "Key creation error." |
1143 return 1 | 1206 return 1 |
1144 fi | 1207 fi |
1145 } | 1208 } |
1146 | 1209 |
1147 #domain | 1210 #domain |
1148 _is_idn() { | 1211 _is_idn() { |
1149 _is_idn_d="$1" | 1212 _is_idn_d="$1" |
1150 _debug2 _is_idn_d "$_is_idn_d" | 1213 _debug2 _is_idn_d "$_is_idn_d" |
1151 _idn_temp=$(printf "%s" "$_is_idn_d" | tr -d '0-9' | tr -d 'a-z' | tr -d 'A-Z' | tr -d '*.,-_') | 1214 _idn_temp=$(printf "%s" "$_is_idn_d" | tr -d '[0-9]' | tr -d '[a-z]' | tr -d '[A-Z]' | tr -d '*.,-_') |
1152 _debug2 _idn_temp "$_idn_temp" | 1215 _debug2 _idn_temp "$_idn_temp" |
1153 [ "$_idn_temp" ] | 1216 [ "$_idn_temp" ] |
1154 } | 1217 } |
1155 | 1218 |
1156 #aa.com | 1219 #aa.com |
1195 _debug2 domainlist "$domainlist" | 1258 _debug2 domainlist "$domainlist" |
1196 _debug2 csrkey "$csrkey" | 1259 _debug2 csrkey "$csrkey" |
1197 _debug2 csr "$csr" | 1260 _debug2 csr "$csr" |
1198 _debug2 csrconf "$csrconf" | 1261 _debug2 csrconf "$csrconf" |
1199 | 1262 |
1200 printf "[ req_distinguished_name ]\n[ req ]\ndistinguished_name = req_distinguished_name\nreq_extensions = v3_req\n[ v3_req ]\n\nkeyUsage = nonRepudiation, digitalSignature, keyEncipherment" >"$csrconf" | 1263 printf "[ req_distinguished_name ]\n[ req ]\ndistinguished_name = req_distinguished_name\nreq_extensions = v3_req\n[ v3_req ]" >"$csrconf" |
1264 | |
1265 if [ "$Le_ExtKeyUse" ]; then | |
1266 _savedomainconf Le_ExtKeyUse "$Le_ExtKeyUse" | |
1267 printf "\nextendedKeyUsage=$Le_ExtKeyUse\n" >>"$csrconf" | |
1268 else | |
1269 printf "\nextendedKeyUsage=serverAuth,clientAuth\n" >>"$csrconf" | |
1270 fi | |
1201 | 1271 |
1202 if [ "$acmeValidationv1" ]; then | 1272 if [ "$acmeValidationv1" ]; then |
1203 domainlist="$(_idn "$domainlist")" | 1273 domainlist="$(_idn "$domainlist")" |
1204 printf -- "\nsubjectAltName=DNS:$domainlist" >>"$csrconf" | 1274 _debug2 domainlist "$domainlist" |
1275 alt="" | |
1276 for dl in $(echo "$domainlist" | tr "," ' '); do | |
1277 if [ "$alt" ]; then | |
1278 alt="$alt,$(_getIdType "$dl" | _upper_case):$dl" | |
1279 else | |
1280 alt="$(_getIdType "$dl" | _upper_case):$dl" | |
1281 fi | |
1282 done | |
1283 printf -- "\nsubjectAltName=$alt" >>"$csrconf" | |
1205 elif [ -z "$domainlist" ] || [ "$domainlist" = "$NO_VALUE" ]; then | 1284 elif [ -z "$domainlist" ] || [ "$domainlist" = "$NO_VALUE" ]; then |
1206 #single domain | 1285 #single domain |
1207 _info "Single domain" "$domain" | 1286 _info "Single domain" "$domain" |
1208 printf -- "\nsubjectAltName=DNS:$(_idn "$domain")" >>"$csrconf" | 1287 printf -- "\nsubjectAltName=$(_getIdType "$domain" | _upper_case):$(_idn "$domain")" >>"$csrconf" |
1209 else | 1288 else |
1210 domainlist="$(_idn "$domainlist")" | 1289 domainlist="$(_idn "$domainlist")" |
1211 _debug2 domainlist "$domainlist" | 1290 _debug2 domainlist "$domainlist" |
1212 if _contains "$domainlist" ","; then | 1291 alt="$(_getIdType "$domain" | _upper_case):$(_idn "$domain")" |
1213 alt="DNS:$(_idn "$domain"),DNS:$(echo "$domainlist" | sed "s/,,/,/g" | sed "s/,/,DNS:/g")" | 1292 for dl in $(echo "'$domainlist'" | sed "s/,/' '/g"); do |
1214 else | 1293 dl=$(echo "$dl" | tr -d "'") |
1215 alt="DNS:$(_idn "$domain"),DNS:$domainlist" | 1294 alt="$alt,$(_getIdType "$dl" | _upper_case):$dl" |
1216 fi | 1295 done |
1217 #multi | 1296 #multi |
1218 _info "Multi domain" "$alt" | 1297 _info "Multi domain" "$alt" |
1219 printf -- "\nsubjectAltName=$alt" >>"$csrconf" | 1298 printf -- "\nsubjectAltName=$alt" >>"$csrconf" |
1220 fi | 1299 fi |
1221 if [ "$Le_OCSP_Staple" = "1" ]; then | 1300 if [ "$Le_OCSP_Staple" = "1" ]; then |
1228 fi | 1307 fi |
1229 | 1308 |
1230 _csr_cn="$(_idn "$domain")" | 1309 _csr_cn="$(_idn "$domain")" |
1231 _debug2 _csr_cn "$_csr_cn" | 1310 _debug2 _csr_cn "$_csr_cn" |
1232 if _contains "$(uname -a)" "MINGW"; then | 1311 if _contains "$(uname -a)" "MINGW"; then |
1233 ${ACME_OPENSSL_BIN:-openssl} req -new -sha256 -key "$csrkey" -subj "//CN=$_csr_cn" -config "$csrconf" -out "$csr" | 1312 if _isIP "$_csr_cn"; then |
1234 else | 1313 ${ACME_OPENSSL_BIN:-openssl} req -new -sha256 -key "$csrkey" -subj "//O=$PROJECT_NAME" -config "$csrconf" -out "$csr" |
1235 ${ACME_OPENSSL_BIN:-openssl} req -new -sha256 -key "$csrkey" -subj "/CN=$_csr_cn" -config "$csrconf" -out "$csr" | 1314 else |
1315 ${ACME_OPENSSL_BIN:-openssl} req -new -sha256 -key "$csrkey" -subj "//CN=$_csr_cn" -config "$csrconf" -out "$csr" | |
1316 fi | |
1317 else | |
1318 if _isIP "$_csr_cn"; then | |
1319 ${ACME_OPENSSL_BIN:-openssl} req -new -sha256 -key "$csrkey" -subj "/O=$PROJECT_NAME" -config "$csrconf" -out "$csr" | |
1320 else | |
1321 ${ACME_OPENSSL_BIN:-openssl} req -new -sha256 -key "$csrkey" -subj "/CN=$_csr_cn" -config "$csrconf" -out "$csr" | |
1322 fi | |
1236 fi | 1323 fi |
1237 } | 1324 } |
1238 | 1325 |
1239 #_signcsr key csr conf cert | 1326 #_signcsr key csr conf cert |
1240 _signcsr() { | 1327 _signcsr() { |
1318 _port="$1" | 1405 _port="$1" |
1319 | 1406 |
1320 if _exists "ss"; then | 1407 if _exists "ss"; then |
1321 _debug "Using: ss" | 1408 _debug "Using: ss" |
1322 ss -ntpl 2>/dev/null | grep ":$_port " | 1409 ss -ntpl 2>/dev/null | grep ":$_port " |
1410 return 0 | |
1411 fi | |
1412 | |
1413 if [ "$(uname)" = "AIX" ]; then | |
1414 _debug "Using: AIX netstat" | |
1415 netstat -an | grep "^tcp" | grep "LISTEN" | grep "\.$_port " | |
1323 return 0 | 1416 return 0 |
1324 fi | 1417 fi |
1325 | 1418 |
1326 if _exists "netstat"; then | 1419 if _exists "netstat"; then |
1327 _debug "Using: netstat" | 1420 _debug "Using: netstat" |
1365 elif [ "$pfxPassword" ]; then | 1458 elif [ "$pfxPassword" ]; then |
1366 ${ACME_OPENSSL_BIN:-openssl} pkcs12 -export -out "$_cpfx" -inkey "$_ckey" -in "$_ccert" -certfile "$_cca" -password "pass:$pfxPassword" | 1459 ${ACME_OPENSSL_BIN:-openssl} pkcs12 -export -out "$_cpfx" -inkey "$_ckey" -in "$_ccert" -certfile "$_cca" -password "pass:$pfxPassword" |
1367 else | 1460 else |
1368 ${ACME_OPENSSL_BIN:-openssl} pkcs12 -export -out "$_cpfx" -inkey "$_ckey" -in "$_ccert" -certfile "$_cca" | 1461 ${ACME_OPENSSL_BIN:-openssl} pkcs12 -export -out "$_cpfx" -inkey "$_ckey" -in "$_ccert" -certfile "$_cca" |
1369 fi | 1462 fi |
1463 if [ "$?" = "0" ]; then | |
1464 _savedomainconf "Le_PFXPassword" "$pfxPassword" | |
1465 fi | |
1370 | 1466 |
1371 } | 1467 } |
1372 | 1468 |
1373 #domain [password] [isEcc] | 1469 #domain [password] [isEcc] |
1374 toPkcs() { | 1470 toPkcs() { |
1384 _initpath "$domain" "$_isEcc" | 1480 _initpath "$domain" "$_isEcc" |
1385 | 1481 |
1386 _toPkcs "$CERT_PFX_PATH" "$CERT_KEY_PATH" "$CERT_PATH" "$CA_CERT_PATH" "$pfxPassword" | 1482 _toPkcs "$CERT_PFX_PATH" "$CERT_KEY_PATH" "$CERT_PATH" "$CA_CERT_PATH" "$pfxPassword" |
1387 | 1483 |
1388 if [ "$?" = "0" ]; then | 1484 if [ "$?" = "0" ]; then |
1389 _info "Success, Pfx is exported to: $CERT_PFX_PATH" | 1485 _info "Success, PFX has been exported to: $CERT_PFX_PATH" |
1390 fi | 1486 fi |
1391 | 1487 |
1392 } | 1488 } |
1393 | 1489 |
1394 #domain [isEcc] | 1490 #domain [isEcc] |
1428 _create_account_key() { | 1524 _create_account_key() { |
1429 | 1525 |
1430 length=$1 | 1526 length=$1 |
1431 | 1527 |
1432 if [ -z "$length" ] || [ "$length" = "$NO_VALUE" ]; then | 1528 if [ -z "$length" ] || [ "$length" = "$NO_VALUE" ]; then |
1433 _debug "Use default length $DEFAULT_ACCOUNT_KEY_LENGTH" | 1529 _debug "Using default length $DEFAULT_ACCOUNT_KEY_LENGTH" |
1434 length="$DEFAULT_ACCOUNT_KEY_LENGTH" | 1530 length="$DEFAULT_ACCOUNT_KEY_LENGTH" |
1435 fi | 1531 fi |
1436 | 1532 |
1437 _debug length "$length" | 1533 _debug length "$length" |
1438 _initpath | 1534 _initpath |
1439 | 1535 |
1440 mkdir -p "$CA_DIR" | 1536 mkdir -p "$CA_DIR" |
1441 if [ -s "$ACCOUNT_KEY_PATH" ]; then | 1537 if [ -s "$ACCOUNT_KEY_PATH" ]; then |
1442 _info "Account key exists, skip" | 1538 _info "Account key exists, skipping" |
1443 return 0 | 1539 return 0 |
1444 else | 1540 else |
1445 #generate account key | 1541 #generate account key |
1446 if _createkey "$length" "$ACCOUNT_KEY_PATH"; then | 1542 if _createkey "$length" "$ACCOUNT_KEY_PATH"; then |
1447 chmod 600 "$ACCOUNT_KEY_PATH" | 1543 _info "Account key creation OK." |
1448 _info "Create account key ok." | |
1449 return 0 | 1544 return 0 |
1450 else | 1545 else |
1451 _err "Create account key error." | 1546 _err "Account key creation error." |
1452 return 1 | 1547 return 1 |
1453 fi | 1548 fi |
1454 fi | 1549 fi |
1455 | 1550 |
1456 } | 1551 } |
1465 | 1560 |
1466 domain=$1 | 1561 domain=$1 |
1467 _cdl=$2 | 1562 _cdl=$2 |
1468 | 1563 |
1469 if [ -z "$_cdl" ]; then | 1564 if [ -z "$_cdl" ]; then |
1470 _debug "Use DEFAULT_DOMAIN_KEY_LENGTH=$DEFAULT_DOMAIN_KEY_LENGTH" | 1565 _debug "Using DEFAULT_DOMAIN_KEY_LENGTH=$DEFAULT_DOMAIN_KEY_LENGTH" |
1471 _cdl="$DEFAULT_DOMAIN_KEY_LENGTH" | 1566 _cdl="$DEFAULT_DOMAIN_KEY_LENGTH" |
1472 fi | 1567 fi |
1473 | 1568 |
1474 _initpath "$domain" "$_cdl" | 1569 _initpath "$domain" "$_cdl" |
1475 | 1570 |
1477 if _createkey "$_cdl" "$CERT_KEY_PATH"; then | 1572 if _createkey "$_cdl" "$CERT_KEY_PATH"; then |
1478 _savedomainconf Le_Keylength "$_cdl" | 1573 _savedomainconf Le_Keylength "$_cdl" |
1479 _info "The domain key is here: $(__green $CERT_KEY_PATH)" | 1574 _info "The domain key is here: $(__green $CERT_KEY_PATH)" |
1480 return 0 | 1575 return 0 |
1481 else | 1576 else |
1482 _err "Can not create domain key" | 1577 _err "Cannot create domain key" |
1483 return 1 | 1578 return 1 |
1484 fi | 1579 fi |
1485 else | 1580 else |
1486 if [ "$_ACME_IS_RENEW" ]; then | 1581 if [ "$_ACME_IS_RENEW" ]; then |
1487 _info "Domain key exists, skip" | 1582 _info "Domain key exists, skipping" |
1488 return 0 | 1583 return 0 |
1489 else | 1584 else |
1490 _err "Domain key exists, do you want to overwrite the key?" | 1585 _err "Domain key exists, do you want to overwrite it?" |
1491 _err "Add '--force', and try again." | 1586 _err "If so, add '--force' and try again." |
1492 return 1 | 1587 return 1 |
1493 fi | 1588 fi |
1494 fi | 1589 fi |
1495 | 1590 |
1496 } | 1591 } |
1497 | 1592 |
1498 # domain domainlist isEcc | 1593 # domain domainlist isEcc |
1499 createCSR() { | 1594 createCSR() { |
1500 _info "Creating csr" | 1595 _info "Creating CSR" |
1501 if [ -z "$1" ]; then | 1596 if [ -z "$1" ]; then |
1502 _usage "Usage: $PROJECT_ENTRY --create-csr --domain <domain.tld> [--domain <domain2.tld> ...]" | 1597 _usage "Usage: $PROJECT_ENTRY --create-csr --domain <domain.tld> [--domain <domain2.tld> ...] [--ecc]" |
1503 return | 1598 return |
1504 fi | 1599 fi |
1505 | 1600 |
1506 domain="$1" | 1601 domain="$1" |
1507 domainlist="$2" | 1602 domainlist="$2" |
1508 _isEcc="$3" | 1603 _isEcc="$3" |
1509 | 1604 |
1510 _initpath "$domain" "$_isEcc" | 1605 _initpath "$domain" "$_isEcc" |
1511 | 1606 |
1512 if [ -f "$CSR_PATH" ] && [ "$_ACME_IS_RENEW" ] && [ -z "$FORCE" ]; then | 1607 if [ -f "$CSR_PATH" ] && [ "$_ACME_IS_RENEW" ] && [ -z "$FORCE" ]; then |
1513 _info "CSR exists, skip" | 1608 _info "CSR exists, skipping" |
1514 return | 1609 return |
1515 fi | 1610 fi |
1516 | 1611 |
1517 if [ ! -f "$CERT_KEY_PATH" ]; then | 1612 if [ ! -f "$CERT_KEY_PATH" ]; then |
1518 _err "The key file is not found: $CERT_KEY_PATH" | 1613 _err "This key file was not found: $CERT_KEY_PATH" |
1519 _err "Please create the key file first." | 1614 _err "Please create it first." |
1520 return 1 | 1615 return 1 |
1521 fi | 1616 fi |
1522 _createcsr "$domain" "$domainlist" "$CERT_KEY_PATH" "$CSR_PATH" "$DOMAIN_SSL_CONF" | 1617 _createcsr "$domain" "$domainlist" "$CERT_KEY_PATH" "$CSR_PATH" "$DOMAIN_SSL_CONF" |
1523 | 1618 |
1524 } | 1619 } |
1540 echo "$_s" | tr '_-' '/+' | 1635 echo "$_s" | tr '_-' '/+' |
1541 } | 1636 } |
1542 | 1637 |
1543 _time2str() { | 1638 _time2str() { |
1544 #BSD | 1639 #BSD |
1545 if date -u -r "$1" 2>/dev/null; then | 1640 if date -u -r "$1" -j "+%Y-%m-%dT%H:%M:%SZ" 2>/dev/null; then |
1546 return | 1641 return |
1547 fi | 1642 fi |
1548 | 1643 |
1549 #Linux | 1644 #Linux |
1550 if date -u -d@"$1" 2>/dev/null; then | 1645 if date -u --date=@"$1" "+%Y-%m-%dT%H:%M:%SZ" 2>/dev/null; then |
1551 return | 1646 return |
1552 fi | 1647 fi |
1553 | 1648 |
1649 #Omnios | |
1650 if date -u -r "$1" +"%Y-%m-%dT%H:%M:%SZ" 2>/dev/null; then | |
1651 return | |
1652 fi | |
1653 | |
1554 #Solaris | 1654 #Solaris |
1555 if _exists adb; then | 1655 if printf "%(%Y-%m-%dT%H:%M:%SZ)T\n" $1 2>/dev/null; then |
1556 _t_s_a=$(echo "0t${1}=Y" | adb) | 1656 return |
1557 echo "$_t_s_a" | |
1558 fi | 1657 fi |
1559 | 1658 |
1560 #Busybox | 1659 #Busybox |
1561 if echo "$1" | awk '{ print strftime("%c", $0); }' 2>/dev/null; then | 1660 if echo "$1" | awk '{ print strftime("%Y-%m-%dT%H:%M:%SZ", $0); }' 2>/dev/null; then |
1562 return | 1661 return |
1563 fi | 1662 fi |
1564 } | 1663 } |
1565 | 1664 |
1566 _normalizeJson() { | 1665 _normalizeJson() { |
1577 if stat -f '%Su:%Sg' "$1" 2>/dev/null; then | 1676 if stat -f '%Su:%Sg' "$1" 2>/dev/null; then |
1578 return | 1677 return |
1579 fi | 1678 fi |
1580 | 1679 |
1581 return 1 #error, 'stat' not found | 1680 return 1 #error, 'stat' not found |
1681 } | |
1682 | |
1683 #keyfile | |
1684 _isRSA() { | |
1685 keyfile=$1 | |
1686 if grep "BEGIN RSA PRIVATE KEY" "$keyfile" >/dev/null 2>&1 || ${ACME_OPENSSL_BIN:-openssl} rsa -in "$keyfile" -noout -text 2>&1 | grep "^publicExponent:" 2>&1 >/dev/null; then | |
1687 return 0 | |
1688 fi | |
1689 return 1 | |
1690 } | |
1691 | |
1692 #keyfile | |
1693 _isEcc() { | |
1694 keyfile=$1 | |
1695 if grep "BEGIN EC PRIVATE KEY" "$keyfile" >/dev/null 2>&1 || ${ACME_OPENSSL_BIN:-openssl} ec -in "$keyfile" -noout -text 2>/dev/null | grep "^NIST CURVE:" 2>&1 >/dev/null; then | |
1696 return 0 | |
1697 fi | |
1698 return 1 | |
1582 } | 1699 } |
1583 | 1700 |
1584 #keyfile | 1701 #keyfile |
1585 _calcjwk() { | 1702 _calcjwk() { |
1586 keyfile="$1" | 1703 keyfile="$1" |
1592 if [ "$JWK_HEADER" ] && [ "$__CACHED_JWK_KEY_FILE" = "$keyfile" ]; then | 1709 if [ "$JWK_HEADER" ] && [ "$__CACHED_JWK_KEY_FILE" = "$keyfile" ]; then |
1593 _debug2 "Use cached jwk for file: $__CACHED_JWK_KEY_FILE" | 1710 _debug2 "Use cached jwk for file: $__CACHED_JWK_KEY_FILE" |
1594 return 0 | 1711 return 0 |
1595 fi | 1712 fi |
1596 | 1713 |
1597 if grep "BEGIN RSA PRIVATE KEY" "$keyfile" >/dev/null 2>&1; then | 1714 if _isRSA "$keyfile"; then |
1598 _debug "RSA key" | 1715 _debug "RSA key" |
1599 pub_exp=$(${ACME_OPENSSL_BIN:-openssl} rsa -in "$keyfile" -noout -text | grep "^publicExponent:" | cut -d '(' -f 2 | cut -d 'x' -f 2 | cut -d ')' -f 1) | 1716 pub_exp=$(${ACME_OPENSSL_BIN:-openssl} rsa -in "$keyfile" -noout -text | grep "^publicExponent:" | cut -d '(' -f 2 | cut -d 'x' -f 2 | cut -d ')' -f 1) |
1600 if [ "${#pub_exp}" = "5" ]; then | 1717 if [ "${#pub_exp}" = "5" ]; then |
1601 pub_exp=0$pub_exp | 1718 pub_exp=0$pub_exp |
1602 fi | 1719 fi |
1614 _debug3 jwk "$jwk" | 1731 _debug3 jwk "$jwk" |
1615 | 1732 |
1616 JWK_HEADER='{"alg": "RS256", "jwk": '$jwk'}' | 1733 JWK_HEADER='{"alg": "RS256", "jwk": '$jwk'}' |
1617 JWK_HEADERPLACE_PART1='{"nonce": "' | 1734 JWK_HEADERPLACE_PART1='{"nonce": "' |
1618 JWK_HEADERPLACE_PART2='", "alg": "RS256"' | 1735 JWK_HEADERPLACE_PART2='", "alg": "RS256"' |
1619 elif grep "BEGIN EC PRIVATE KEY" "$keyfile" >/dev/null 2>&1; then | 1736 elif _isEcc "$keyfile"; then |
1620 _debug "EC key" | 1737 _debug "EC key" |
1621 crv="$(${ACME_OPENSSL_BIN:-openssl} ec -in "$keyfile" -noout -text 2>/dev/null | grep "^NIST CURVE:" | cut -d ":" -f 2 | tr -d " \r\n")" | 1738 crv="$(${ACME_OPENSSL_BIN:-openssl} ec -in "$keyfile" -noout -text 2>/dev/null | grep "^NIST CURVE:" | cut -d ":" -f 2 | tr -d " \r\n")" |
1622 _debug3 crv "$crv" | 1739 _debug3 crv "$crv" |
1623 __ECC_KEY_LEN=$(echo "$crv" | cut -d "-" -f 2) | 1740 __ECC_KEY_LEN=$(echo "$crv" | cut -d "-" -f 2) |
1624 if [ "$__ECC_KEY_LEN" = "521" ]; then | 1741 if [ "$__ECC_KEY_LEN" = "521" ]; then |
1641 "secp521r1") | 1758 "secp521r1") |
1642 crv="P-521" | 1759 crv="P-521" |
1643 __ECC_KEY_LEN=512 | 1760 __ECC_KEY_LEN=512 |
1644 ;; | 1761 ;; |
1645 *) | 1762 *) |
1646 _err "ECC oid : $crv_oid" | 1763 _err "ECC oid: $crv_oid" |
1647 return 1 | 1764 return 1 |
1648 ;; | 1765 ;; |
1649 esac | 1766 esac |
1650 _debug3 crv "$crv" | 1767 _debug3 crv "$crv" |
1651 fi | 1768 fi |
1671 | 1788 |
1672 x64="$(printf "%s" "$x" | tr -d : | _h2b | _base64 | _url_replace)" | 1789 x64="$(printf "%s" "$x" | tr -d : | _h2b | _base64 | _url_replace)" |
1673 _debug3 x64 "$x64" | 1790 _debug3 x64 "$x64" |
1674 | 1791 |
1675 xend=$(_math "$xend" + 1) | 1792 xend=$(_math "$xend" + 1) |
1676 y="$(printf "%s" "$pubtext" | cut -d : -f "$xend"-10000)" | 1793 y="$(printf "%s" "$pubtext" | cut -d : -f "$xend"-2048)" |
1677 _debug3 y "$y" | 1794 _debug3 y "$y" |
1678 | 1795 |
1679 y64="$(printf "%s" "$y" | tr -d : | _h2b | _base64 | _url_replace)" | 1796 y64="$(printf "%s" "$y" | tr -d : | _h2b | _base64 | _url_replace)" |
1680 _debug3 y64 "$y64" | 1797 _debug3 y64 "$y64" |
1681 | 1798 |
1684 | 1801 |
1685 JWK_HEADER='{"alg": "ES'$__ECC_KEY_LEN'", "jwk": '$jwk'}' | 1802 JWK_HEADER='{"alg": "ES'$__ECC_KEY_LEN'", "jwk": '$jwk'}' |
1686 JWK_HEADERPLACE_PART1='{"nonce": "' | 1803 JWK_HEADERPLACE_PART1='{"nonce": "' |
1687 JWK_HEADERPLACE_PART2='", "alg": "ES'$__ECC_KEY_LEN'"' | 1804 JWK_HEADERPLACE_PART2='", "alg": "ES'$__ECC_KEY_LEN'"' |
1688 else | 1805 else |
1689 _err "Only RSA or EC key is supported. keyfile=$keyfile" | 1806 _err "Only RSA or EC keys are supported. keyfile=$keyfile" |
1690 _debug2 "$(cat "$keyfile")" | 1807 _debug2 "$(cat "$keyfile")" |
1691 return 1 | 1808 return 1 |
1692 fi | 1809 fi |
1693 | 1810 |
1694 _debug3 JWK_HEADER "$JWK_HEADER" | 1811 _debug3 JWK_HEADER "$JWK_HEADER" |
1695 __CACHED_JWK_KEY_FILE="$keyfile" | 1812 __CACHED_JWK_KEY_FILE="$keyfile" |
1696 } | 1813 } |
1697 | 1814 |
1698 _time() { | 1815 _time() { |
1699 date -u "+%s" | 1816 date -u "+%s" |
1817 } | |
1818 | |
1819 #support 2 formats: | |
1820 # 2022-04-01 08:10:33 to 1648800633 | |
1821 #or 2022-04-01T08:10:33Z to 1648800633 | |
1822 _date2time() { | |
1823 #Mac/BSD | |
1824 if date -u -j -f "%Y-%m-%d %H:%M:%S" "$(echo "$1" | tr -d "Z" | tr "T" ' ')" +"%s" 2>/dev/null; then | |
1825 return | |
1826 fi | |
1827 #Linux | |
1828 if date -u -d "$(echo "$1" | tr -d "Z" | tr "T" ' ')" +"%s" 2>/dev/null; then | |
1829 return | |
1830 fi | |
1831 | |
1832 #Solaris | |
1833 if gdate -u -d "$(echo "$1" | tr -d "Z" | tr "T" ' ')" +"%s" 2>/dev/null; then | |
1834 return | |
1835 fi | |
1836 #Omnios | |
1837 if python3 -c "import datetime; print(int(datetime.datetime.strptime(\"$1\", \"%Y-%m-%d %H:%M:%S\").replace(tzinfo=datetime.timezone.utc).timestamp()))" 2>/dev/null; then | |
1838 return | |
1839 fi | |
1840 #Omnios | |
1841 if python3 -c "import datetime; print(int(datetime.datetime.strptime(\"$1\", \"%Y-%m-%dT%H:%M:%SZ\").replace(tzinfo=datetime.timezone.utc).timestamp()))" 2>/dev/null; then | |
1842 return | |
1843 fi | |
1844 _err "Cannot parse _date2time $1" | |
1845 return 1 | |
1700 } | 1846 } |
1701 | 1847 |
1702 _utc_date() { | 1848 _utc_date() { |
1703 date -u "+%Y-%m-%d %H:%M:%S" | 1849 date -u "+%Y-%m-%d %H:%M:%S" |
1704 } | 1850 } |
1717 return 0 | 1863 return 0 |
1718 elif [ "$LE_TEMP_DIR" ] && mkdir -p "$LE_TEMP_DIR"; then | 1864 elif [ "$LE_TEMP_DIR" ] && mkdir -p "$LE_TEMP_DIR"; then |
1719 echo "/$LE_TEMP_DIR/wefADf24sf.$(_time).tmp" | 1865 echo "/$LE_TEMP_DIR/wefADf24sf.$(_time).tmp" |
1720 return 0 | 1866 return 0 |
1721 fi | 1867 fi |
1722 _err "Can not create temp file." | 1868 _err "Cannot create temp file." |
1869 } | |
1870 | |
1871 #clear all the https envs to cause _inithttp() to run next time. | |
1872 _resethttp() { | |
1873 __HTTP_INITIALIZED="" | |
1874 _ACME_CURL="" | |
1875 _ACME_WGET="" | |
1876 ACME_HTTP_NO_REDIRECTS="" | |
1723 } | 1877 } |
1724 | 1878 |
1725 _inithttp() { | 1879 _inithttp() { |
1726 | 1880 |
1727 if [ -z "$HTTP_HEADER" ] || ! touch "$HTTP_HEADER"; then | 1881 if [ -z "$HTTP_HEADER" ] || ! touch "$HTTP_HEADER"; then |
1735 return 0 | 1889 return 0 |
1736 fi | 1890 fi |
1737 fi | 1891 fi |
1738 | 1892 |
1739 if [ -z "$_ACME_CURL" ] && _exists "curl"; then | 1893 if [ -z "$_ACME_CURL" ] && _exists "curl"; then |
1740 _ACME_CURL="curl -L --silent --dump-header $HTTP_HEADER " | 1894 _ACME_CURL="curl --silent --dump-header $HTTP_HEADER " |
1741 if [ "$DEBUG" ] && [ "$DEBUG" -ge "2" ]; then | 1895 if [ -z "$ACME_HTTP_NO_REDIRECTS" ]; then |
1896 _ACME_CURL="$_ACME_CURL -L " | |
1897 fi | |
1898 if [ "$DEBUG" ] && [ "$DEBUG" -ge 2 ]; then | |
1742 _CURL_DUMP="$(_mktemp)" | 1899 _CURL_DUMP="$(_mktemp)" |
1743 _ACME_CURL="$_ACME_CURL --trace-ascii $_CURL_DUMP " | 1900 _ACME_CURL="$_ACME_CURL --trace-ascii $_CURL_DUMP " |
1744 fi | 1901 fi |
1745 | 1902 |
1746 if [ "$CA_PATH" ]; then | 1903 if [ "$CA_PATH" ]; then |
1747 _ACME_CURL="$_ACME_CURL --capath $CA_PATH " | 1904 _ACME_CURL="$_ACME_CURL --capath $CA_PATH " |
1748 elif [ "$CA_BUNDLE" ]; then | 1905 elif [ "$CA_BUNDLE" ]; then |
1749 _ACME_CURL="$_ACME_CURL --cacert $CA_BUNDLE " | 1906 _ACME_CURL="$_ACME_CURL --cacert $CA_BUNDLE " |
1750 fi | 1907 fi |
1751 | 1908 |
1752 if _contains "$(curl --help 2>&1)" "--globoff"; then | 1909 if _contains "$(curl --help 2>&1)" "--globoff" || _contains "$(curl --help curl 2>&1)" "--globoff"; then |
1753 _ACME_CURL="$_ACME_CURL -g " | 1910 _ACME_CURL="$_ACME_CURL -g " |
1754 fi | 1911 fi |
1912 | |
1913 #don't use --fail-with-body | |
1914 ##from curl 7.76: return fail on HTTP errors but keep the body | |
1915 #if _contains "$(curl --help http 2>&1)" "--fail-with-body"; then | |
1916 # _ACME_CURL="$_ACME_CURL --fail-with-body " | |
1917 #fi | |
1755 fi | 1918 fi |
1756 | 1919 |
1757 if [ -z "$_ACME_WGET" ] && _exists "wget"; then | 1920 if [ -z "$_ACME_WGET" ] && _exists "wget"; then |
1758 _ACME_WGET="wget -q" | 1921 _ACME_WGET="wget -q" |
1922 if [ "$ACME_HTTP_NO_REDIRECTS" ]; then | |
1923 _ACME_WGET="$_ACME_WGET --max-redirect 0 " | |
1924 fi | |
1759 if [ "$DEBUG" ] && [ "$DEBUG" -ge "2" ]; then | 1925 if [ "$DEBUG" ] && [ "$DEBUG" -ge "2" ]; then |
1760 _ACME_WGET="$_ACME_WGET -d " | 1926 if [ "$_ACME_WGET" ] && _contains "$($_ACME_WGET --help 2>&1)" "--debug"; then |
1927 _ACME_WGET="$_ACME_WGET -d " | |
1928 fi | |
1761 fi | 1929 fi |
1762 if [ "$CA_PATH" ]; then | 1930 if [ "$CA_PATH" ]; then |
1763 _ACME_WGET="$_ACME_WGET --ca-directory=$CA_PATH " | 1931 _ACME_WGET="$_ACME_WGET --ca-directory=$CA_PATH " |
1764 elif [ "$CA_BUNDLE" ]; then | 1932 elif [ "$CA_BUNDLE" ]; then |
1765 _ACME_WGET="$_ACME_WGET --ca-certificate=$CA_BUNDLE " | 1933 _ACME_WGET="$_ACME_WGET --ca-certificate=$CA_BUNDLE " |
1766 fi | 1934 fi |
1767 fi | 1935 |
1768 | 1936 #from wget 1.14: do not skip body on 404 error |
1769 #from wget 1.14: do not skip body on 404 error | 1937 if _contains "$(wget --help 2>&1)" "--content-on-error"; then |
1770 if [ "$_ACME_WGET" ] && _contains "$($_ACME_WGET --help 2>&1)" "--content-on-error"; then | 1938 _ACME_WGET="$_ACME_WGET --content-on-error " |
1771 _ACME_WGET="$_ACME_WGET --content-on-error " | 1939 fi |
1772 fi | 1940 fi |
1773 | 1941 |
1774 __HTTP_INITIALIZED=1 | 1942 __HTTP_INITIALIZED=1 |
1775 | 1943 |
1776 } | 1944 } |
1884 fi | 2052 fi |
1885 fi | 2053 fi |
1886 _ret="$?" | 2054 _ret="$?" |
1887 if [ "$_ret" = "8" ]; then | 2055 if [ "$_ret" = "8" ]; then |
1888 _ret=0 | 2056 _ret=0 |
1889 _debug "wget returns 8, the server returns a 'Bad request' response, lets process the response later." | 2057 _debug "wget returned 8 as the server returned a 'Bad Request' response. Let's process the response later." |
1890 fi | 2058 fi |
1891 if [ "$_ret" != "0" ]; then | 2059 if [ "$_ret" != "0" ]; then |
1892 _err "Please refer to https://www.gnu.org/software/wget/manual/html_node/Exit-Status.html for error code: $_ret" | 2060 _err "Please refer to https://www.gnu.org/software/wget/manual/html_node/Exit-Status.html for error code: $_ret" |
1893 fi | 2061 fi |
1894 _sed_i "s/^ *//g" "$HTTP_HEADER" | 2062 if _contains "$_WGET" " -d "; then |
2063 # Demultiplex wget debug output | |
2064 cat "$HTTP_HEADER" >&2 | |
2065 _sed_i '/^[^ ][^ ]/d; /^ *$/d' "$HTTP_HEADER" | |
2066 fi | |
2067 # remove leading whitespaces from header to match curl format | |
2068 _sed_i 's/^ //g' "$HTTP_HEADER" | |
1895 else | 2069 else |
1896 _ret="$?" | 2070 _ret="$?" |
1897 _err "Neither curl nor wget is found, can not do $httpmethod." | 2071 _err "Neither curl nor wget have been found, cannot make $httpmethod request." |
1898 fi | 2072 fi |
1899 _debug "_ret" "$_ret" | 2073 _debug "_ret" "$_ret" |
1900 printf "%s" "$response" | 2074 printf "%s" "$response" |
1901 return $_ret | 2075 return $_ret |
1902 } | 2076 } |
1942 if [ "$t" ]; then | 2116 if [ "$t" ]; then |
1943 _WGET="$_WGET --timeout=$t" | 2117 _WGET="$_WGET --timeout=$t" |
1944 fi | 2118 fi |
1945 _debug "_WGET" "$_WGET" | 2119 _debug "_WGET" "$_WGET" |
1946 if [ "$onlyheader" ]; then | 2120 if [ "$onlyheader" ]; then |
1947 $_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' | 2121 _wget_out="$($_WGET --user-agent="$USER_AGENT" --header "$_H5" --header "$_H4" --header "$_H3" --header "$_H2" --header "$_H1" -S -O /dev/null "$url" 2>&1)" |
2122 if _contains "$_WGET" " -d "; then | |
2123 # Demultiplex wget debug output | |
2124 echo "$_wget_out" >&2 | |
2125 echo "$_wget_out" | sed '/^[^ ][^ ]/d; /^ *$/d; s/^ //g' - | |
2126 fi | |
1948 else | 2127 else |
1949 $_WGET --user-agent="$USER_AGENT" --header "$_H5" --header "$_H4" --header "$_H3" --header "$_H2" --header "$_H1" -O - "$url" | 2128 $_WGET --user-agent="$USER_AGENT" --header "$_H5" --header "$_H4" --header "$_H3" --header "$_H2" --header "$_H1" -S -O - "$url" 2>"$HTTP_HEADER" |
2129 if _contains "$_WGET" " -d "; then | |
2130 # Demultiplex wget debug output | |
2131 cat "$HTTP_HEADER" >&2 | |
2132 _sed_i '/^[^ ][^ ]/d; /^ *$/d' "$HTTP_HEADER" | |
2133 fi | |
2134 # remove leading whitespaces from header to match curl format | |
2135 _sed_i 's/^ //g' "$HTTP_HEADER" | |
1950 fi | 2136 fi |
1951 ret=$? | 2137 ret=$? |
1952 if [ "$ret" = "8" ]; then | 2138 if [ "$ret" = "8" ]; then |
1953 ret=0 | 2139 ret=0 |
1954 _debug "wget returns 8, the server returns a 'Bad request' response, lets process the response later." | 2140 _debug "wget returned 8 as the server returned a 'Bad Request' response. Let's process the response later." |
1955 fi | 2141 fi |
1956 if [ "$ret" != "0" ]; then | 2142 if [ "$ret" != "0" ]; then |
1957 _err "Please refer to https://www.gnu.org/software/wget/manual/html_node/Exit-Status.html for error code: $ret" | 2143 _err "Please refer to https://www.gnu.org/software/wget/manual/html_node/Exit-Status.html for error code: $ret" |
1958 fi | 2144 fi |
1959 else | 2145 else |
1960 ret=$? | 2146 ret=$? |
1961 _err "Neither curl nor wget is found, can not do GET." | 2147 _err "Neither curl nor wget have been found, cannot make GET request." |
1962 fi | 2148 fi |
1963 _debug "ret" "$ret" | 2149 _debug "ret" "$ret" |
1964 return $ret | 2150 return $ret |
1965 } | 2151 } |
1966 | 2152 |
1967 _head_n() { | 2153 _head_n() { |
1968 head -n "$1" | 2154 head -n "$1" |
1969 } | 2155 } |
1970 | 2156 |
1971 _tail_n() { | 2157 _tail_n() { |
1972 if ! tail -n "$1" 2>/dev/null; then | 2158 if _is_solaris; then |
1973 #fix for solaris | 2159 #fix for solaris |
1974 tail -"$1" | 2160 tail -"$1" |
1975 fi | 2161 else |
2162 tail -n "$1" | |
2163 fi | |
2164 } | |
2165 | |
2166 _tail_c() { | |
2167 tail -c "$1" 2>/dev/null || tail -"$1"c | |
1976 } | 2168 } |
1977 | 2169 |
1978 # url payload needbase64 keyfile | 2170 # url payload needbase64 keyfile |
1979 _send_signed_request() { | 2171 _send_signed_request() { |
1980 url=$1 | 2172 url=$1 |
1982 needbase64=$3 | 2174 needbase64=$3 |
1983 keyfile=$4 | 2175 keyfile=$4 |
1984 if [ -z "$keyfile" ]; then | 2176 if [ -z "$keyfile" ]; then |
1985 keyfile="$ACCOUNT_KEY_PATH" | 2177 keyfile="$ACCOUNT_KEY_PATH" |
1986 fi | 2178 fi |
2179 _debug "=======Sending Signed Request=======" | |
1987 _debug url "$url" | 2180 _debug url "$url" |
1988 _debug payload "$payload" | 2181 _debug payload "$payload" |
1989 | 2182 |
1990 if ! _calcjwk "$keyfile"; then | 2183 if ! _calcjwk "$keyfile"; then |
1991 return 1 | 2184 return 1 |
2008 _debug2 "Get nonce with HEAD. ACME_NEW_NONCE" "$ACME_NEW_NONCE" | 2201 _debug2 "Get nonce with HEAD. ACME_NEW_NONCE" "$ACME_NEW_NONCE" |
2009 nonceurl="$ACME_NEW_NONCE" | 2202 nonceurl="$ACME_NEW_NONCE" |
2010 if _post "" "$nonceurl" "" "HEAD" "$__request_conent_type" >/dev/null; then | 2203 if _post "" "$nonceurl" "" "HEAD" "$__request_conent_type" >/dev/null; then |
2011 _headers="$(cat "$HTTP_HEADER")" | 2204 _headers="$(cat "$HTTP_HEADER")" |
2012 _debug2 _headers "$_headers" | 2205 _debug2 _headers "$_headers" |
2013 _CACHED_NONCE="$(echo "$_headers" | grep -i "Replay-Nonce:" | _head_n 1 | tr -d "\r\n " | cut -d ':' -f 2)" | 2206 _CACHED_NONCE="$(echo "$_headers" | grep -i "Replay-Nonce:" | _head_n 1 | tr -d "\r\n " | cut -d ':' -f 2 | cut -d , -f 1)" |
2014 fi | 2207 fi |
2015 fi | 2208 fi |
2016 if [ -z "$_CACHED_NONCE" ]; then | 2209 if [ -z "$_CACHED_NONCE" ]; then |
2017 _debug2 "Get nonce with GET. ACME_DIRECTORY" "$ACME_DIRECTORY" | 2210 _debug2 "Get nonce with GET. ACME_DIRECTORY" "$ACME_DIRECTORY" |
2018 nonceurl="$ACME_DIRECTORY" | 2211 nonceurl="$ACME_DIRECTORY" |
2025 nonceurl="$ACME_NEW_NONCE" | 2218 nonceurl="$ACME_NEW_NONCE" |
2026 _headers="$(_get "$nonceurl" "onlyheader")" | 2219 _headers="$(_get "$nonceurl" "onlyheader")" |
2027 _debug2 _headers "$_headers" | 2220 _debug2 _headers "$_headers" |
2028 _CACHED_NONCE="$(echo "$_headers" | grep -i "Replay-Nonce:" | _head_n 1 | tr -d "\r\n " | cut -d ':' -f 2)" | 2221 _CACHED_NONCE="$(echo "$_headers" | grep -i "Replay-Nonce:" | _head_n 1 | tr -d "\r\n " | cut -d ':' -f 2)" |
2029 fi | 2222 fi |
2030 _debug2 _CACHED_NONCE "$_CACHED_NONCE" | |
2031 if [ "$?" != "0" ]; then | 2223 if [ "$?" != "0" ]; then |
2032 _err "Can not connect to $nonceurl to get nonce." | 2224 _err "Cannot connect to $nonceurl to get nonce." |
2033 return 1 | 2225 return 1 |
2034 fi | 2226 fi |
2035 else | 2227 else |
2036 _debug2 "Use _CACHED_NONCE" "$_CACHED_NONCE" | 2228 _debug2 "Use _CACHED_NONCE" "$_CACHED_NONCE" |
2037 fi | 2229 fi |
2040 if [ -z "$nonce" ]; then | 2232 if [ -z "$nonce" ]; then |
2041 _info "Could not get nonce, let's try again." | 2233 _info "Could not get nonce, let's try again." |
2042 _sleep 2 | 2234 _sleep 2 |
2043 continue | 2235 continue |
2044 fi | 2236 fi |
2045 if [ "$ACME_VERSION" = "2" ]; then | 2237 |
2046 if [ "$url" = "$ACME_NEW_ACCOUNT" ]; then | 2238 if [ "$url" = "$ACME_NEW_ACCOUNT" ]; then |
2047 protected="$JWK_HEADERPLACE_PART1$nonce\", \"url\": \"${url}$JWK_HEADERPLACE_PART2, \"jwk\": $jwk"'}' | 2239 protected="$JWK_HEADERPLACE_PART1$nonce\", \"url\": \"${url}$JWK_HEADERPLACE_PART2, \"jwk\": $jwk"'}' |
2048 elif [ "$url" = "$ACME_REVOKE_CERT" ] && [ "$keyfile" != "$ACCOUNT_KEY_PATH" ]; then | 2240 elif [ "$url" = "$ACME_REVOKE_CERT" ] && [ "$keyfile" != "$ACCOUNT_KEY_PATH" ]; then |
2049 protected="$JWK_HEADERPLACE_PART1$nonce\", \"url\": \"${url}$JWK_HEADERPLACE_PART2, \"jwk\": $jwk"'}' | 2241 protected="$JWK_HEADERPLACE_PART1$nonce\", \"url\": \"${url}$JWK_HEADERPLACE_PART2, \"jwk\": $jwk"'}' |
2050 else | |
2051 protected="$JWK_HEADERPLACE_PART1$nonce\", \"url\": \"${url}$JWK_HEADERPLACE_PART2, \"kid\": \"${ACCOUNT_URL}\""'}' | |
2052 fi | |
2053 else | 2242 else |
2054 protected="$JWK_HEADERPLACE_PART1$nonce\", \"url\": \"${url}$JWK_HEADERPLACE_PART2, \"jwk\": $jwk"'}' | 2243 protected="$JWK_HEADERPLACE_PART1$nonce\", \"url\": \"${url}$JWK_HEADERPLACE_PART2, \"kid\": \"${ACCOUNT_URL}\""'}' |
2055 fi | 2244 fi |
2245 | |
2056 _debug3 protected "$protected" | 2246 _debug3 protected "$protected" |
2057 | 2247 |
2058 protected64="$(printf "%s" "$protected" | _base64 | _url_replace)" | 2248 protected64="$(printf "%s" "$protected" | _base64 | _url_replace)" |
2059 _debug3 protected64 "$protected64" | 2249 _debug3 protected64 "$protected64" |
2060 | 2250 |
2072 | 2262 |
2073 response="$(_post "$body" "$url" "$needbase64" "POST" "$__request_conent_type")" | 2263 response="$(_post "$body" "$url" "$needbase64" "POST" "$__request_conent_type")" |
2074 _CACHED_NONCE="" | 2264 _CACHED_NONCE="" |
2075 | 2265 |
2076 if [ "$?" != "0" ]; then | 2266 if [ "$?" != "0" ]; then |
2077 _err "Can not post to $url" | 2267 _err "Cannot make POST request to $url" |
2078 return 1 | 2268 return 1 |
2079 fi | 2269 fi |
2080 | 2270 |
2081 responseHeaders="$(cat "$HTTP_HEADER")" | 2271 responseHeaders="$(cat "$HTTP_HEADER")" |
2082 _debug2 responseHeaders "$responseHeaders" | 2272 _debug2 responseHeaders "$responseHeaders" |
2084 code="$(grep "^HTTP" "$HTTP_HEADER" | _tail_n 1 | cut -d " " -f 2 | tr -d "\r\n")" | 2274 code="$(grep "^HTTP" "$HTTP_HEADER" | _tail_n 1 | cut -d " " -f 2 | tr -d "\r\n")" |
2085 _debug code "$code" | 2275 _debug code "$code" |
2086 | 2276 |
2087 _debug2 original "$response" | 2277 _debug2 original "$response" |
2088 if echo "$responseHeaders" | grep -i "Content-Type: *application/json" >/dev/null 2>&1; then | 2278 if echo "$responseHeaders" | grep -i "Content-Type: *application/json" >/dev/null 2>&1; then |
2089 response="$(echo "$response" | _normalizeJson | _json_decode)" | 2279 response="$(echo "$response" | _json_decode | _normalizeJson)" |
2090 fi | 2280 fi |
2091 _debug2 response "$response" | 2281 _debug2 response "$response" |
2092 | 2282 |
2093 _CACHED_NONCE="$(echo "$responseHeaders" | grep -i "Replay-Nonce:" | _head_n 1 | tr -d "\r\n " | cut -d ':' -f 2)" | 2283 _CACHED_NONCE="$(echo "$responseHeaders" | grep -i "Replay-Nonce:" | _head_n 1 | tr -d "\r\n " | cut -d ':' -f 2 | cut -d , -f 1)" |
2094 | 2284 |
2095 if ! _startswith "$code" "2"; then | 2285 if ! _startswith "$code" "2"; then |
2096 _body="$response" | 2286 _body="$response" |
2097 if [ "$needbase64" ]; then | 2287 if [ "$needbase64" ]; then |
2098 _body="$(echo "$_body" | _dbase64 multiline)" | 2288 _body="$(echo "$_body" | _dbase64 multiline)" |
2099 _debug3 _body "$_body" | 2289 _debug3 _body "$_body" |
2100 fi | 2290 fi |
2101 | 2291 |
2292 _retryafter=$(echo "$responseHeaders" | grep -i "^Retry-After *: *[0-9]\+ *" | cut -d : -f 2 | tr -d ' ' | tr -d '\r') | |
2293 if [ "$code" = '503' ]; then | |
2294 _sleep_overload_retry_sec=$_retryafter | |
2295 if [ -z "$_sleep_overload_retry_sec" ]; then | |
2296 _sleep_overload_retry_sec=5 | |
2297 fi | |
2298 if [ $_sleep_overload_retry_sec -le 600 ]; then | |
2299 _info "It seems the CA server is currently overloaded, let's wait and retry. Sleeping for $_sleep_overload_retry_sec seconds." | |
2300 _sleep $_sleep_overload_retry_sec | |
2301 continue | |
2302 else | |
2303 _info "The retryafter=$_retryafter value is too large (> 600), will not retry anymore." | |
2304 fi | |
2305 fi | |
2102 if _contains "$_body" "JWS has invalid anti-replay nonce" || _contains "$_body" "JWS has an invalid anti-replay nonce"; then | 2306 if _contains "$_body" "JWS has invalid anti-replay nonce" || _contains "$_body" "JWS has an invalid anti-replay nonce"; then |
2103 _info "It seems the CA server is busy now, let's wait and retry. Sleeping $_sleep_retry_sec seconds." | 2307 _info "It seems the CA server is busy now, let's wait and retry. Sleeping for $_sleep_retry_sec seconds." |
2308 _CACHED_NONCE="" | |
2309 _sleep $_sleep_retry_sec | |
2310 continue | |
2311 fi | |
2312 if _contains "$_body" "The Replay Nonce is not recognized"; then | |
2313 _info "The replay nonce is not valid, let's get a new one. Sleeping for $_sleep_retry_sec seconds." | |
2104 _CACHED_NONCE="" | 2314 _CACHED_NONCE="" |
2105 _sleep $_sleep_retry_sec | 2315 _sleep $_sleep_retry_sec |
2106 continue | 2316 continue |
2107 fi | 2317 fi |
2108 fi | 2318 fi |
2125 return | 2335 return |
2126 fi | 2336 fi |
2127 if [ ! -f "$__conf" ]; then | 2337 if [ ! -f "$__conf" ]; then |
2128 touch "$__conf" | 2338 touch "$__conf" |
2129 fi | 2339 fi |
2340 if [ -n "$(_tail_c 1 <"$__conf")" ]; then | |
2341 echo >>"$__conf" | |
2342 fi | |
2130 | 2343 |
2131 if grep -n "^$__opt$__sep" "$__conf" >/dev/null; then | 2344 if grep -n "^$__opt$__sep" "$__conf" >/dev/null; then |
2132 _debug3 OK | 2345 _debug3 OK |
2133 if _contains "$__val" "&"; then | 2346 if _contains "$__val" "&"; then |
2134 __val="$(echo "$__val" | sed 's/&/\\&/g')" | 2347 __val="$(echo "$__val" | sed 's/&/\\&/g')" |
2135 fi | 2348 fi |
2349 if _contains "$__val" "|"; then | |
2350 __val="$(echo "$__val" | sed 's/|/\\|/g')" | |
2351 fi | |
2136 text="$(cat "$__conf")" | 2352 text="$(cat "$__conf")" |
2137 printf -- "%s\n" "$text" | sed "s|^$__opt$__sep.*$|$__opt$__sep$__val$__end|" >"$__conf" | 2353 printf -- "%s\n" "$text" | sed "s|^$__opt$__sep.*$|$__opt$__sep$__val$__end|" >"$__conf" |
2138 | 2354 |
2139 elif grep -n "^#$__opt$__sep" "$__conf" >/dev/null; then | 2355 elif grep -n "^#$__opt$__sep" "$__conf" >/dev/null; then |
2140 if _contains "$__val" "&"; then | 2356 if _contains "$__val" "&"; then |
2141 __val="$(echo "$__val" | sed 's/&/\\&/g')" | 2357 __val="$(echo "$__val" | sed 's/&/\\&/g')" |
2358 fi | |
2359 if _contains "$__val" "|"; then | |
2360 __val="$(echo "$__val" | sed 's/|/\\|/g')" | |
2142 fi | 2361 fi |
2143 text="$(cat "$__conf")" | 2362 text="$(cat "$__conf")" |
2144 printf -- "%s\n" "$text" | sed "s|^#$__opt$__sep.*$|$__opt$__sep$__val$__end|" >"$__conf" | 2363 printf -- "%s\n" "$text" | sed "s|^#$__opt$__sep.*$|$__opt$__sep$__val$__end|" >"$__conf" |
2145 | 2364 |
2146 else | 2365 else |
2161 _sdvalue="${B64CONF_START}$(printf "%s" "${_sdvalue}" | _base64)${B64CONF_END}" | 2380 _sdvalue="${B64CONF_START}$(printf "%s" "${_sdvalue}" | _base64)${B64CONF_END}" |
2162 fi | 2381 fi |
2163 if [ "$_s_c_f" ]; then | 2382 if [ "$_s_c_f" ]; then |
2164 _setopt "$_s_c_f" "$_sdkey" "=" "'$_sdvalue'" | 2383 _setopt "$_s_c_f" "$_sdkey" "=" "'$_sdvalue'" |
2165 else | 2384 else |
2166 _err "config file is empty, can not save $_sdkey=$_sdvalue" | 2385 _err "Config file is empty, cannot save $_sdkey=$_sdvalue" |
2167 fi | 2386 fi |
2168 } | 2387 } |
2169 | 2388 |
2170 #_clear_conf file key | 2389 #_clear_conf file key |
2171 _clear_conf() { | 2390 _clear_conf() { |
2172 _c_c_f="$1" | 2391 _c_c_f="$1" |
2173 _sdkey="$2" | 2392 _sdkey="$2" |
2174 if [ "$_c_c_f" ]; then | 2393 if [ "$_c_c_f" ]; then |
2175 _conf_data="$(cat "$_c_c_f")" | 2394 _conf_data="$(cat "$_c_c_f")" |
2176 echo "$_conf_data" | sed "s/^$_sdkey *=.*$//" >"$_c_c_f" | 2395 echo "$_conf_data" | sed "/^$_sdkey *=.*$/d" >"$_c_c_f" |
2177 else | 2396 else |
2178 _err "config file is empty, can not clear" | 2397 _err "Config file is empty, cannot clear" |
2179 fi | 2398 fi |
2180 } | 2399 } |
2181 | 2400 |
2182 #_read_conf file key | 2401 #_read_conf file key |
2183 _read_conf() { | 2402 _read_conf() { |
2191 if _startswith "$_sdv" "${B64CONF_START}" && _endswith "$_sdv" "${B64CONF_END}"; then | 2410 if _startswith "$_sdv" "${B64CONF_START}" && _endswith "$_sdv" "${B64CONF_END}"; then |
2192 _sdv="$(echo "$_sdv" | sed "s/${B64CONF_START}//" | sed "s/${B64CONF_END}//" | _dbase64)" | 2411 _sdv="$(echo "$_sdv" | sed "s/${B64CONF_START}//" | sed "s/${B64CONF_END}//" | _dbase64)" |
2193 fi | 2412 fi |
2194 printf "%s" "$_sdv" | 2413 printf "%s" "$_sdv" |
2195 else | 2414 else |
2196 _debug "config file is empty, can not read $_sdkey" | 2415 _debug "Config file is empty, cannot read $_sdkey" |
2197 fi | 2416 fi |
2198 } | 2417 } |
2199 | 2418 |
2200 #_savedomainconf key value base64encode | 2419 #_savedomainconf key value base64encode |
2201 #save to domain.conf | 2420 #save to domain.conf |
2209 } | 2428 } |
2210 | 2429 |
2211 #_readdomainconf key | 2430 #_readdomainconf key |
2212 _readdomainconf() { | 2431 _readdomainconf() { |
2213 _read_conf "$DOMAIN_CONF" "$1" | 2432 _read_conf "$DOMAIN_CONF" "$1" |
2433 } | |
2434 | |
2435 #_migratedomainconf oldkey newkey base64encode | |
2436 _migratedomainconf() { | |
2437 _old_key="$1" | |
2438 _new_key="$2" | |
2439 _b64encode="$3" | |
2440 _old_value=$(_readdomainconf "$_old_key") | |
2441 _cleardomainconf "$_old_key" | |
2442 if [ -z "$_old_value" ]; then | |
2443 return 1 # migrated failed: old value is empty | |
2444 fi | |
2445 _new_value=$(_readdomainconf "$_new_key") | |
2446 if [ -n "$_new_value" ]; then | |
2447 _debug "Domain config new key exists, old key $_old_key='$_old_value' has been removed." | |
2448 return 1 # migrated failed: old value replaced by new value | |
2449 fi | |
2450 _savedomainconf "$_new_key" "$_old_value" "$_b64encode" | |
2451 _debug "Domain config $_old_key has been migrated to $_new_key." | |
2452 } | |
2453 | |
2454 #_migratedeployconf oldkey newkey base64encode | |
2455 _migratedeployconf() { | |
2456 _migratedomainconf "$1" "SAVED_$2" "$3" || | |
2457 _migratedomainconf "SAVED_$1" "SAVED_$2" "$3" # try only when oldkey itself is not found | |
2214 } | 2458 } |
2215 | 2459 |
2216 #key value base64encode | 2460 #key value base64encode |
2217 _savedeployconf() { | 2461 _savedeployconf() { |
2218 _savedomainconf "SAVED_$1" "$2" "$3" | 2462 _savedomainconf "SAVED_$1" "$2" "$3" |
2225 _rac_key="$1" | 2469 _rac_key="$1" |
2226 _rac_value="$(eval echo \$"$_rac_key")" | 2470 _rac_value="$(eval echo \$"$_rac_key")" |
2227 if [ "$_rac_value" ]; then | 2471 if [ "$_rac_value" ]; then |
2228 if _startswith "$_rac_value" '"' && _endswith "$_rac_value" '"'; then | 2472 if _startswith "$_rac_value" '"' && _endswith "$_rac_value" '"'; then |
2229 _debug2 "trim quotation marks" | 2473 _debug2 "trim quotation marks" |
2230 eval "export $_rac_key=$_rac_value" | 2474 eval $_rac_key=$_rac_value |
2475 export $_rac_key | |
2231 fi | 2476 fi |
2232 return 0 # do nothing | 2477 return 0 # do nothing |
2233 fi | 2478 fi |
2234 _saved=$(_readdomainconf "SAVED_$_rac_key") | 2479 _saved="$(_readdomainconf "SAVED_$_rac_key")" |
2235 eval "export $_rac_key=\"$_saved\"" | 2480 eval $_rac_key=\$_saved |
2481 export $_rac_key | |
2236 } | 2482 } |
2237 | 2483 |
2238 #_saveaccountconf key value base64encode | 2484 #_saveaccountconf key value base64encode |
2239 _saveaccountconf() { | 2485 _saveaccountconf() { |
2240 _save_conf "$ACCOUNT_CONF_PATH" "$@" | 2486 _save_conf "$ACCOUNT_CONF_PATH" "$@" |
2259 } | 2505 } |
2260 | 2506 |
2261 #_clearaccountconf key | 2507 #_clearaccountconf key |
2262 _clearaccountconf() { | 2508 _clearaccountconf() { |
2263 _clear_conf "$ACCOUNT_CONF_PATH" "$1" | 2509 _clear_conf "$ACCOUNT_CONF_PATH" "$1" |
2510 } | |
2511 | |
2512 #key | |
2513 _clearaccountconf_mutable() { | |
2514 _clearaccountconf "SAVED_$1" | |
2515 #remove later | |
2516 _clearaccountconf "$1" | |
2264 } | 2517 } |
2265 | 2518 |
2266 #_savecaconf key value | 2519 #_savecaconf key value |
2267 _savecaconf() { | 2520 _savecaconf() { |
2268 _save_conf "$CA_CONF" "$1" "$2" | 2521 _save_conf "$CA_CONF" "$1" "$2" |
2290 _debug Le_HTTPPort "$Le_HTTPPort" | 2543 _debug Le_HTTPPort "$Le_HTTPPort" |
2291 _debug Le_Listen_V4 "$Le_Listen_V4" | 2544 _debug Le_Listen_V4 "$Le_Listen_V4" |
2292 _debug Le_Listen_V6 "$Le_Listen_V6" | 2545 _debug Le_Listen_V6 "$Le_Listen_V6" |
2293 | 2546 |
2294 _NC="socat" | 2547 _NC="socat" |
2295 if [ "$Le_Listen_V4" ]; then | 2548 if [ "$Le_Listen_V6" ]; then |
2549 _NC="$_NC -6" | |
2550 SOCAT_OPTIONS=TCP6-LISTEN | |
2551 elif [ "$Le_Listen_V4" ]; then | |
2296 _NC="$_NC -4" | 2552 _NC="$_NC -4" |
2297 elif [ "$Le_Listen_V6" ]; then | 2553 SOCAT_OPTIONS=TCP4-LISTEN |
2298 _NC="$_NC -6" | 2554 else |
2555 SOCAT_OPTIONS=TCP-LISTEN | |
2299 fi | 2556 fi |
2300 | 2557 |
2301 if [ "$DEBUG" ] && [ "$DEBUG" -gt "1" ]; then | 2558 if [ "$DEBUG" ] && [ "$DEBUG" -gt "1" ]; then |
2302 _NC="$_NC -d -d -v" | 2559 _NC="$_NC -d -d -v" |
2303 fi | 2560 fi |
2304 | 2561 |
2305 SOCAT_OPTIONS=TCP-LISTEN:$Le_HTTPPort,crlf,reuseaddr,fork | 2562 SOCAT_OPTIONS=$SOCAT_OPTIONS:$Le_HTTPPort,crlf,reuseaddr,fork |
2306 | 2563 |
2307 #Adding bind to local-address | 2564 #Adding bind to local-address |
2308 if [ "$ncaddr" ]; then | 2565 if [ "$ncaddr" ]; then |
2309 SOCAT_OPTIONS="$SOCAT_OPTIONS,bind=${ncaddr}" | 2566 SOCAT_OPTIONS="$SOCAT_OPTIONS,bind=${ncaddr}" |
2310 fi | 2567 fi |
2311 | 2568 |
2312 _content_len="$(printf "%s" "$content" | wc -c)" | 2569 _content_len="$(printf "%s" "$content" | wc -c)" |
2313 _debug _content_len "$_content_len" | 2570 _debug _content_len "$_content_len" |
2314 _debug "_NC" "$_NC $SOCAT_OPTIONS" | 2571 _debug "_NC" "$_NC $SOCAT_OPTIONS" |
2572 export _SOCAT_ERR="$(_mktemp)" | |
2315 $_NC $SOCAT_OPTIONS SYSTEM:"sleep 1; \ | 2573 $_NC $SOCAT_OPTIONS SYSTEM:"sleep 1; \ |
2316 echo 'HTTP/1.0 200 OK'; \ | 2574 echo 'HTTP/1.0 200 OK'; \ |
2317 echo 'Content-Length\: $_content_len'; \ | 2575 echo 'Content-Length\: $_content_len'; \ |
2318 echo ''; \ | 2576 echo ''; \ |
2319 printf -- '$content';" & | 2577 printf '%s' '$content';" 2>"$_SOCAT_ERR" & |
2320 serverproc="$!" | 2578 serverproc="$!" |
2579 if [ -f "$_SOCAT_ERR" ]; then | |
2580 if grep "Permission denied" "$_SOCAT_ERR" >/dev/null; then | |
2581 _err "socat: $(cat $_SOCAT_ERR)" | |
2582 _err "Can not listen for user: $(whoami)" | |
2583 _err "Maybe try with root again?" | |
2584 rm -f "$_SOCAT_ERR" | |
2585 return 1 | |
2586 fi | |
2587 fi | |
2321 } | 2588 } |
2322 | 2589 |
2323 _stopserver() { | 2590 _stopserver() { |
2324 pid="$1" | 2591 pid="$1" |
2325 _debug "pid" "$pid" | 2592 _debug "pid" "$pid" |
2326 if [ -z "$pid" ]; then | 2593 if [ -z "$pid" ]; then |
2594 rm -f "$_SOCAT_ERR" | |
2327 return | 2595 return |
2328 fi | 2596 fi |
2329 | 2597 |
2330 kill $pid | 2598 kill $pid |
2599 rm -f "$_SOCAT_ERR" | |
2331 | 2600 |
2332 } | 2601 } |
2333 | 2602 |
2334 # sleep sec | 2603 # sleep sec |
2335 _sleep() { | 2604 _sleep() { |
2363 _debug port "$port" | 2632 _debug port "$port" |
2364 _debug acmeValidationv1 "$acmeValidationv1" | 2633 _debug acmeValidationv1 "$acmeValidationv1" |
2365 | 2634 |
2366 #create key TLS_KEY | 2635 #create key TLS_KEY |
2367 if ! _createkey "2048" "$TLS_KEY"; then | 2636 if ! _createkey "2048" "$TLS_KEY"; then |
2368 _err "Create tls validation key error." | 2637 _err "Error creating TLS validation key." |
2369 return 1 | 2638 return 1 |
2370 fi | 2639 fi |
2371 | 2640 |
2372 #create csr | 2641 #create csr |
2373 alt="$san_a" | 2642 alt="$san_a" |
2374 if [ "$san_b" ]; then | 2643 if [ "$san_b" ]; then |
2375 alt="$alt,$san_b" | 2644 alt="$alt,$san_b" |
2376 fi | 2645 fi |
2377 if ! _createcsr "tls.acme.sh" "$alt" "$TLS_KEY" "$TLS_CSR" "$TLS_CONF" "$acmeValidationv1"; then | 2646 if ! _createcsr "tls.acme.sh" "$alt" "$TLS_KEY" "$TLS_CSR" "$TLS_CONF" "$acmeValidationv1"; then |
2378 _err "Create tls validation csr error." | 2647 _err "Error creating TLS validation CSR." |
2379 return 1 | 2648 return 1 |
2380 fi | 2649 fi |
2381 | 2650 |
2382 #self signed | 2651 #self signed |
2383 if ! _signcsr "$TLS_KEY" "$TLS_CSR" "$TLS_CONF" "$TLS_CERT"; then | 2652 if ! _signcsr "$TLS_KEY" "$TLS_CSR" "$TLS_CONF" "$TLS_CERT"; then |
2384 _err "Create tls validation cert error." | 2653 _err "Error creating TLS validation cert." |
2385 return 1 | 2654 return 1 |
2386 fi | 2655 fi |
2387 | 2656 |
2388 __S_OPENSSL="${ACME_OPENSSL_BIN:-openssl} s_server -www -cert $TLS_CERT -key $TLS_KEY " | 2657 __S_OPENSSL="${ACME_OPENSSL_BIN:-openssl} s_server -www -cert $TLS_CERT -key $TLS_KEY " |
2389 if [ "$opaddr" ]; then | 2658 if [ "$opaddr" ]; then |
2433 } | 2702 } |
2434 | 2703 |
2435 __initHome() { | 2704 __initHome() { |
2436 if [ -z "$_SCRIPT_HOME" ]; then | 2705 if [ -z "$_SCRIPT_HOME" ]; then |
2437 if _exists readlink && _exists dirname; then | 2706 if _exists readlink && _exists dirname; then |
2438 _debug "Lets find script dir." | 2707 _debug "Let's find the script directory." |
2439 _debug "_SCRIPT_" "$_SCRIPT_" | 2708 _debug "_SCRIPT_" "$_SCRIPT_" |
2440 _script="$(_readlink "$_SCRIPT_")" | 2709 _script="$(_readlink "$_SCRIPT_")" |
2441 _debug "_script" "$_script" | 2710 _debug "_script" "$_script" |
2442 _script_home="$(dirname "$_script")" | 2711 _script_home="$(dirname "$_script")" |
2443 _debug "_script_home" "$_script_home" | 2712 _debug "_script_home" "$_script_home" |
2444 if [ -d "$_script_home" ]; then | 2713 if [ -d "$_script_home" ]; then |
2445 _SCRIPT_HOME="$_script_home" | 2714 export _SCRIPT_HOME="$_script_home" |
2446 else | 2715 else |
2447 _err "It seems the script home is not correct:$_script_home" | 2716 _err "It seems the script home is not correct: $_script_home" |
2448 fi | 2717 fi |
2449 fi | 2718 fi |
2450 fi | 2719 fi |
2451 | 2720 |
2452 # if [ -z "$LE_WORKING_DIR" ]; then | 2721 # if [ -z "$LE_WORKING_DIR" ]; then |
2457 # LE_WORKING_DIR="$_SCRIPT_HOME" | 2726 # LE_WORKING_DIR="$_SCRIPT_HOME" |
2458 # fi | 2727 # fi |
2459 # fi | 2728 # fi |
2460 | 2729 |
2461 if [ -z "$LE_WORKING_DIR" ]; then | 2730 if [ -z "$LE_WORKING_DIR" ]; then |
2462 _debug "Using default home:$DEFAULT_INSTALL_HOME" | 2731 _debug "Using default home: $DEFAULT_INSTALL_HOME" |
2463 LE_WORKING_DIR="$DEFAULT_INSTALL_HOME" | 2732 LE_WORKING_DIR="$DEFAULT_INSTALL_HOME" |
2464 fi | 2733 fi |
2465 export LE_WORKING_DIR | 2734 export LE_WORKING_DIR |
2466 | 2735 |
2467 if [ -z "$LE_CONFIG_HOME" ]; then | 2736 if [ -z "$LE_CONFIG_HOME" ]; then |
2468 LE_CONFIG_HOME="$LE_WORKING_DIR" | 2737 LE_CONFIG_HOME="$LE_WORKING_DIR" |
2469 fi | 2738 fi |
2470 _debug "Using config home:$LE_CONFIG_HOME" | 2739 _debug "Using config home: $LE_CONFIG_HOME" |
2471 export LE_CONFIG_HOME | 2740 export LE_CONFIG_HOME |
2472 | 2741 |
2473 _DEFAULT_ACCOUNT_CONF_PATH="$LE_CONFIG_HOME/account.conf" | 2742 _DEFAULT_ACCOUNT_CONF_PATH="$LE_CONFIG_HOME/account.conf" |
2474 | 2743 |
2475 if [ -z "$ACCOUNT_CONF_PATH" ]; then | 2744 if [ -z "$ACCOUNT_CONF_PATH" ]; then |
2489 if [ -z "$LE_TEMP_DIR" ]; then | 2758 if [ -z "$LE_TEMP_DIR" ]; then |
2490 LE_TEMP_DIR="$LE_CONFIG_HOME/tmp" | 2759 LE_TEMP_DIR="$LE_CONFIG_HOME/tmp" |
2491 fi | 2760 fi |
2492 } | 2761 } |
2493 | 2762 |
2763 _clearAPI() { | |
2764 ACME_NEW_ACCOUNT="" | |
2765 ACME_KEY_CHANGE="" | |
2766 ACME_NEW_AUTHZ="" | |
2767 ACME_NEW_ORDER="" | |
2768 ACME_REVOKE_CERT="" | |
2769 ACME_NEW_NONCE="" | |
2770 ACME_AGREEMENT="" | |
2771 } | |
2772 | |
2494 #server | 2773 #server |
2495 _initAPI() { | 2774 _initAPI() { |
2496 _api_server="${1:-$ACME_DIRECTORY}" | 2775 _api_server="${1:-$ACME_DIRECTORY}" |
2497 _debug "_init api for server: $_api_server" | 2776 _debug "_init API for server: $_api_server" |
2498 | 2777 |
2499 if [ -z "$ACME_NEW_ACCOUNT" ]; then | 2778 MAX_API_RETRY_TIMES=10 |
2500 response=$(_get "$_api_server") | 2779 _sleep_retry_sec=10 |
2780 _request_retry_times=0 | |
2781 while [ -z "$ACME_NEW_ACCOUNT" ] && [ "${_request_retry_times}" -lt "$MAX_API_RETRY_TIMES" ]; do | |
2782 _request_retry_times=$(_math "$_request_retry_times" + 1) | |
2783 response=$(_get "$_api_server" "" 10) | |
2501 if [ "$?" != "0" ]; then | 2784 if [ "$?" != "0" ]; then |
2502 _debug2 "response" "$response" | 2785 _debug2 "response" "$response" |
2503 _err "Can not init api." | 2786 _info "Cannot init API for: $_api_server." |
2504 return 1 | 2787 _info "Sleeping for $_sleep_retry_sec seconds and retrying." |
2788 _sleep "$_sleep_retry_sec" | |
2789 continue | |
2505 fi | 2790 fi |
2506 response=$(echo "$response" | _json_decode) | 2791 response=$(echo "$response" | _json_decode) |
2507 _debug2 "response" "$response" | 2792 _debug2 "response" "$response" |
2508 | 2793 |
2509 ACME_KEY_CHANGE=$(echo "$response" | _egrep_o 'key-change" *: *"[^"]*"' | cut -d '"' -f 3) | 2794 ACME_KEY_CHANGE=$(echo "$response" | _egrep_o 'keyChange" *: *"[^"]*"' | cut -d '"' -f 3) |
2510 if [ -z "$ACME_KEY_CHANGE" ]; then | |
2511 ACME_KEY_CHANGE=$(echo "$response" | _egrep_o 'keyChange" *: *"[^"]*"' | cut -d '"' -f 3) | |
2512 fi | |
2513 export ACME_KEY_CHANGE | 2795 export ACME_KEY_CHANGE |
2514 | 2796 |
2515 ACME_NEW_AUTHZ=$(echo "$response" | _egrep_o 'new-authz" *: *"[^"]*"' | cut -d '"' -f 3) | 2797 ACME_NEW_AUTHZ=$(echo "$response" | _egrep_o 'newAuthz" *: *"[^"]*"' | cut -d '"' -f 3) |
2516 if [ -z "$ACME_NEW_AUTHZ" ]; then | |
2517 ACME_NEW_AUTHZ=$(echo "$response" | _egrep_o 'newAuthz" *: *"[^"]*"' | cut -d '"' -f 3) | |
2518 fi | |
2519 export ACME_NEW_AUTHZ | 2798 export ACME_NEW_AUTHZ |
2520 | 2799 |
2521 ACME_NEW_ORDER=$(echo "$response" | _egrep_o 'new-cert" *: *"[^"]*"' | cut -d '"' -f 3) | 2800 ACME_NEW_ORDER=$(echo "$response" | _egrep_o 'newOrder" *: *"[^"]*"' | cut -d '"' -f 3) |
2522 ACME_NEW_ORDER_RES="new-cert" | |
2523 if [ -z "$ACME_NEW_ORDER" ]; then | |
2524 ACME_NEW_ORDER=$(echo "$response" | _egrep_o 'new-order" *: *"[^"]*"' | cut -d '"' -f 3) | |
2525 ACME_NEW_ORDER_RES="new-order" | |
2526 if [ -z "$ACME_NEW_ORDER" ]; then | |
2527 ACME_NEW_ORDER=$(echo "$response" | _egrep_o 'newOrder" *: *"[^"]*"' | cut -d '"' -f 3) | |
2528 fi | |
2529 fi | |
2530 export ACME_NEW_ORDER | 2801 export ACME_NEW_ORDER |
2531 export ACME_NEW_ORDER_RES | 2802 |
2532 | 2803 ACME_NEW_ACCOUNT=$(echo "$response" | _egrep_o 'newAccount" *: *"[^"]*"' | cut -d '"' -f 3) |
2533 ACME_NEW_ACCOUNT=$(echo "$response" | _egrep_o 'new-reg" *: *"[^"]*"' | cut -d '"' -f 3) | |
2534 ACME_NEW_ACCOUNT_RES="new-reg" | |
2535 if [ -z "$ACME_NEW_ACCOUNT" ]; then | |
2536 ACME_NEW_ACCOUNT=$(echo "$response" | _egrep_o 'new-account" *: *"[^"]*"' | cut -d '"' -f 3) | |
2537 ACME_NEW_ACCOUNT_RES="new-account" | |
2538 if [ -z "$ACME_NEW_ACCOUNT" ]; then | |
2539 ACME_NEW_ACCOUNT=$(echo "$response" | _egrep_o 'newAccount" *: *"[^"]*"' | cut -d '"' -f 3) | |
2540 if [ "$ACME_NEW_ACCOUNT" ]; then | |
2541 export ACME_VERSION=2 | |
2542 fi | |
2543 fi | |
2544 fi | |
2545 export ACME_NEW_ACCOUNT | 2804 export ACME_NEW_ACCOUNT |
2546 export ACME_NEW_ACCOUNT_RES | 2805 |
2547 | 2806 ACME_REVOKE_CERT=$(echo "$response" | _egrep_o 'revokeCert" *: *"[^"]*"' | cut -d '"' -f 3) |
2548 ACME_REVOKE_CERT=$(echo "$response" | _egrep_o 'revoke-cert" *: *"[^"]*"' | cut -d '"' -f 3) | |
2549 if [ -z "$ACME_REVOKE_CERT" ]; then | |
2550 ACME_REVOKE_CERT=$(echo "$response" | _egrep_o 'revokeCert" *: *"[^"]*"' | cut -d '"' -f 3) | |
2551 fi | |
2552 export ACME_REVOKE_CERT | 2807 export ACME_REVOKE_CERT |
2553 | 2808 |
2554 ACME_NEW_NONCE=$(echo "$response" | _egrep_o 'new-nonce" *: *"[^"]*"' | cut -d '"' -f 3) | 2809 ACME_NEW_NONCE=$(echo "$response" | _egrep_o 'newNonce" *: *"[^"]*"' | cut -d '"' -f 3) |
2555 if [ -z "$ACME_NEW_NONCE" ]; then | |
2556 ACME_NEW_NONCE=$(echo "$response" | _egrep_o 'newNonce" *: *"[^"]*"' | cut -d '"' -f 3) | |
2557 fi | |
2558 export ACME_NEW_NONCE | 2810 export ACME_NEW_NONCE |
2559 | 2811 |
2560 ACME_AGREEMENT=$(echo "$response" | _egrep_o 'terms-of-service" *: *"[^"]*"' | cut -d '"' -f 3) | 2812 ACME_AGREEMENT=$(echo "$response" | _egrep_o 'termsOfService" *: *"[^"]*"' | cut -d '"' -f 3) |
2561 if [ -z "$ACME_AGREEMENT" ]; then | |
2562 ACME_AGREEMENT=$(echo "$response" | _egrep_o 'termsOfService" *: *"[^"]*"' | cut -d '"' -f 3) | |
2563 fi | |
2564 export ACME_AGREEMENT | 2813 export ACME_AGREEMENT |
2565 | 2814 |
2566 _debug "ACME_KEY_CHANGE" "$ACME_KEY_CHANGE" | 2815 _debug "ACME_KEY_CHANGE" "$ACME_KEY_CHANGE" |
2567 _debug "ACME_NEW_AUTHZ" "$ACME_NEW_AUTHZ" | 2816 _debug "ACME_NEW_AUTHZ" "$ACME_NEW_AUTHZ" |
2568 _debug "ACME_NEW_ORDER" "$ACME_NEW_ORDER" | 2817 _debug "ACME_NEW_ORDER" "$ACME_NEW_ORDER" |
2569 _debug "ACME_NEW_ACCOUNT" "$ACME_NEW_ACCOUNT" | 2818 _debug "ACME_NEW_ACCOUNT" "$ACME_NEW_ACCOUNT" |
2570 _debug "ACME_REVOKE_CERT" "$ACME_REVOKE_CERT" | 2819 _debug "ACME_REVOKE_CERT" "$ACME_REVOKE_CERT" |
2571 _debug "ACME_AGREEMENT" "$ACME_AGREEMENT" | 2820 _debug "ACME_AGREEMENT" "$ACME_AGREEMENT" |
2572 _debug "ACME_NEW_NONCE" "$ACME_NEW_NONCE" | 2821 _debug "ACME_NEW_NONCE" "$ACME_NEW_NONCE" |
2573 _debug "ACME_VERSION" "$ACME_VERSION" | 2822 if [ "$ACME_NEW_ACCOUNT" ] && [ "$ACME_NEW_ORDER" ]; then |
2574 | 2823 return 0 |
2575 fi | 2824 fi |
2825 _info "Sleeping for $_sleep_retry_sec seconds and retrying." | |
2826 _sleep "$_sleep_retry_sec" | |
2827 done | |
2828 if [ "$ACME_NEW_ACCOUNT" ] && [ "$ACME_NEW_ORDER" ]; then | |
2829 return 0 | |
2830 fi | |
2831 _err "Cannot init API for $_api_server" | |
2832 return 1 | |
2833 } | |
2834 | |
2835 _clearCA() { | |
2836 export CA_CONF= | |
2837 export ACCOUNT_KEY_PATH= | |
2838 export ACCOUNT_JSON_PATH= | |
2576 } | 2839 } |
2577 | 2840 |
2578 #[domain] [keylength or isEcc flag] | 2841 #[domain] [keylength or isEcc flag] |
2579 _initpath() { | 2842 _initpath() { |
2580 domain="$1" | 2843 domain="$1" |
2614 | 2877 |
2615 _debug ACME_DIRECTORY "$ACME_DIRECTORY" | 2878 _debug ACME_DIRECTORY "$ACME_DIRECTORY" |
2616 _ACME_SERVER_HOST="$(echo "$ACME_DIRECTORY" | cut -d : -f 2 | tr -s / | cut -d / -f 2)" | 2879 _ACME_SERVER_HOST="$(echo "$ACME_DIRECTORY" | cut -d : -f 2 | tr -s / | cut -d / -f 2)" |
2617 _debug2 "_ACME_SERVER_HOST" "$_ACME_SERVER_HOST" | 2880 _debug2 "_ACME_SERVER_HOST" "$_ACME_SERVER_HOST" |
2618 | 2881 |
2619 CA_DIR="$CA_HOME/$_ACME_SERVER_HOST" | 2882 _ACME_SERVER_PATH="$(echo "$ACME_DIRECTORY" | cut -d : -f 2- | tr -s / | cut -d / -f 3-)" |
2620 | 2883 _debug2 "_ACME_SERVER_PATH" "$_ACME_SERVER_PATH" |
2884 | |
2885 CA_DIR="$CA_HOME/$_ACME_SERVER_HOST/$_ACME_SERVER_PATH" | |
2621 _DEFAULT_CA_CONF="$CA_DIR/ca.conf" | 2886 _DEFAULT_CA_CONF="$CA_DIR/ca.conf" |
2622 | |
2623 if [ -z "$CA_CONF" ]; then | 2887 if [ -z "$CA_CONF" ]; then |
2624 CA_CONF="$_DEFAULT_CA_CONF" | 2888 CA_CONF="$_DEFAULT_CA_CONF" |
2625 fi | 2889 fi |
2626 _debug3 CA_CONF "$CA_CONF" | 2890 _debug3 CA_CONF "$CA_CONF" |
2627 | 2891 |
2628 if [ -f "$CA_CONF" ]; then | 2892 _OLD_CADIR="$CA_HOME/$_ACME_SERVER_HOST" |
2629 . "$CA_CONF" | 2893 _OLD_ACCOUNT_KEY="$_OLD_CADIR/account.key" |
2630 fi | 2894 _OLD_ACCOUNT_JSON="$_OLD_CADIR/account.json" |
2631 | 2895 _OLD_CA_CONF="$_OLD_CADIR/ca.conf" |
2632 if [ -z "$ACME_DIR" ]; then | |
2633 ACME_DIR="/home/.acme" | |
2634 fi | |
2635 | |
2636 if [ -z "$APACHE_CONF_BACKUP_DIR" ]; then | |
2637 APACHE_CONF_BACKUP_DIR="$LE_CONFIG_HOME" | |
2638 fi | |
2639 | |
2640 if [ -z "$USER_AGENT" ]; then | |
2641 USER_AGENT="$DEFAULT_USER_AGENT" | |
2642 fi | |
2643 | |
2644 if [ -z "$HTTP_HEADER" ]; then | |
2645 HTTP_HEADER="$LE_CONFIG_HOME/http.header" | |
2646 fi | |
2647 | |
2648 _OLD_ACCOUNT_KEY="$LE_WORKING_DIR/account.key" | |
2649 _OLD_ACCOUNT_JSON="$LE_WORKING_DIR/account.json" | |
2650 | 2896 |
2651 _DEFAULT_ACCOUNT_KEY_PATH="$CA_DIR/account.key" | 2897 _DEFAULT_ACCOUNT_KEY_PATH="$CA_DIR/account.key" |
2652 _DEFAULT_ACCOUNT_JSON_PATH="$CA_DIR/account.json" | 2898 _DEFAULT_ACCOUNT_JSON_PATH="$CA_DIR/account.json" |
2653 if [ -z "$ACCOUNT_KEY_PATH" ]; then | 2899 if [ -z "$ACCOUNT_KEY_PATH" ]; then |
2654 ACCOUNT_KEY_PATH="$_DEFAULT_ACCOUNT_KEY_PATH" | 2900 ACCOUNT_KEY_PATH="$_DEFAULT_ACCOUNT_KEY_PATH" |
2901 if [ -f "$_OLD_ACCOUNT_KEY" ] && ! [ -f "$ACCOUNT_KEY_PATH" ]; then | |
2902 mkdir -p "$CA_DIR" | |
2903 mv "$_OLD_ACCOUNT_KEY" "$ACCOUNT_KEY_PATH" | |
2904 fi | |
2655 fi | 2905 fi |
2656 | 2906 |
2657 if [ -z "$ACCOUNT_JSON_PATH" ]; then | 2907 if [ -z "$ACCOUNT_JSON_PATH" ]; then |
2658 ACCOUNT_JSON_PATH="$_DEFAULT_ACCOUNT_JSON_PATH" | 2908 ACCOUNT_JSON_PATH="$_DEFAULT_ACCOUNT_JSON_PATH" |
2909 if [ -f "$_OLD_ACCOUNT_JSON" ] && ! [ -f "$ACCOUNT_JSON_PATH" ]; then | |
2910 mkdir -p "$CA_DIR" | |
2911 mv "$_OLD_ACCOUNT_JSON" "$ACCOUNT_JSON_PATH" | |
2912 fi | |
2913 fi | |
2914 | |
2915 if [ -f "$_OLD_CA_CONF" ] && ! [ -f "$CA_CONF" ]; then | |
2916 mkdir -p "$CA_DIR" | |
2917 mv "$_OLD_CA_CONF" "$CA_CONF" | |
2918 fi | |
2919 | |
2920 if [ -f "$CA_CONF" ]; then | |
2921 . "$CA_CONF" | |
2922 fi | |
2923 | |
2924 if [ -z "$ACME_DIR" ]; then | |
2925 ACME_DIR="/home/.acme" | |
2926 fi | |
2927 | |
2928 if [ -z "$APACHE_CONF_BACKUP_DIR" ]; then | |
2929 APACHE_CONF_BACKUP_DIR="$LE_CONFIG_HOME" | |
2930 fi | |
2931 | |
2932 if [ -z "$USER_AGENT" ]; then | |
2933 USER_AGENT="$DEFAULT_USER_AGENT" | |
2934 fi | |
2935 | |
2936 if [ -z "$HTTP_HEADER" ]; then | |
2937 HTTP_HEADER="$LE_CONFIG_HOME/http.header" | |
2659 fi | 2938 fi |
2660 | 2939 |
2661 _DEFAULT_CERT_HOME="$LE_CONFIG_HOME" | 2940 _DEFAULT_CERT_HOME="$LE_CONFIG_HOME" |
2662 if [ -z "$CERT_HOME" ]; then | 2941 if [ -z "$CERT_HOME" ]; then |
2663 CERT_HOME="$_DEFAULT_CERT_HOME" | 2942 CERT_HOME="$_DEFAULT_CERT_HOME" |
2677 | 2956 |
2678 DOMAIN_PATH="$domainhome" | 2957 DOMAIN_PATH="$domainhome" |
2679 | 2958 |
2680 if _isEccKey "$_ilength"; then | 2959 if _isEccKey "$_ilength"; then |
2681 DOMAIN_PATH="$domainhomeecc" | 2960 DOMAIN_PATH="$domainhomeecc" |
2682 else | 2961 elif [ -z "$__SELECTED_RSA_KEY" ]; then |
2683 if [ ! -d "$domainhome" ] && [ -d "$domainhomeecc" ]; then | 2962 if [ ! -d "$domainhome" ] && [ -d "$domainhomeecc" ]; then |
2684 _info "The domain '$domain' seems to have a ECC cert already, please add '$(__red "--ecc")' parameter if you want to use that cert." | 2963 _info "The domain '$domain' seems to already have an ECC cert, let's use it." |
2964 DOMAIN_PATH="$domainhomeecc" | |
2685 fi | 2965 fi |
2686 fi | 2966 fi |
2687 _debug DOMAIN_PATH "$DOMAIN_PATH" | 2967 _debug DOMAIN_PATH "$DOMAIN_PATH" |
2968 export DOMAIN_PATH | |
2688 fi | 2969 fi |
2689 | 2970 |
2690 if [ -z "$DOMAIN_BACKUP_PATH" ]; then | 2971 if [ -z "$DOMAIN_BACKUP_PATH" ]; then |
2691 DOMAIN_BACKUP_PATH="$DOMAIN_PATH/backup" | 2972 DOMAIN_BACKUP_PATH="$DOMAIN_PATH/backup" |
2692 fi | 2973 fi |
2732 fi | 3013 fi |
2733 if [ -z "$TLS_CSR" ]; then | 3014 if [ -z "$TLS_CSR" ]; then |
2734 TLS_CSR="$DOMAIN_PATH/tls.validation.csr" | 3015 TLS_CSR="$DOMAIN_PATH/tls.validation.csr" |
2735 fi | 3016 fi |
2736 | 3017 |
2737 } | |
2738 | |
2739 _exec() { | |
2740 if [ -z "$_EXEC_TEMP_ERR" ]; then | |
2741 _EXEC_TEMP_ERR="$(_mktemp)" | |
2742 fi | |
2743 | |
2744 if [ "$_EXEC_TEMP_ERR" ]; then | |
2745 eval "$@ 2>>$_EXEC_TEMP_ERR" | |
2746 else | |
2747 eval "$@" | |
2748 fi | |
2749 } | |
2750 | |
2751 _exec_err() { | |
2752 [ "$_EXEC_TEMP_ERR" ] && _err "$(cat "$_EXEC_TEMP_ERR")" && echo "" >"$_EXEC_TEMP_ERR" | |
2753 } | 3018 } |
2754 | 3019 |
2755 _apachePath() { | 3020 _apachePath() { |
2756 _APACHECTL="apachectl" | 3021 _APACHECTL="apachectl" |
2757 if ! _exists apachectl; then | 3022 if ! _exists apachectl; then |
2758 if _exists apache2ctl; then | 3023 if _exists apache2ctl; then |
2759 _APACHECTL="apache2ctl" | 3024 _APACHECTL="apache2ctl" |
2760 else | 3025 else |
2761 _err "'apachectl not found. It seems that apache is not installed, or you are not root user.'" | 3026 _err "'apachectl not found. It seems that Apache is not installed or you are not root.'" |
2762 _err "Please use webroot mode to try again." | 3027 _err "Please use webroot mode to try again." |
2763 return 1 | 3028 return 1 |
2764 fi | 3029 fi |
2765 fi | 3030 fi |
2766 | 3031 |
2767 if ! _exec $_APACHECTL -V >/dev/null; then | 3032 if ! $_APACHECTL -V >/dev/null; then |
2768 _exec_err | |
2769 return 1 | 3033 return 1 |
2770 fi | 3034 fi |
2771 | 3035 |
2772 if [ "$APACHE_HTTPD_CONF" ]; then | 3036 if [ "$APACHE_HTTPD_CONF" ]; then |
2773 _saveaccountconf APACHE_HTTPD_CONF "$APACHE_HTTPD_CONF" | 3037 _saveaccountconf APACHE_HTTPD_CONF "$APACHE_HTTPD_CONF" |
2776 else | 3040 else |
2777 httpdconfname="$($_APACHECTL -V | grep SERVER_CONFIG_FILE= | cut -d = -f 2 | tr -d '"')" | 3041 httpdconfname="$($_APACHECTL -V | grep SERVER_CONFIG_FILE= | cut -d = -f 2 | tr -d '"')" |
2778 _debug httpdconfname "$httpdconfname" | 3042 _debug httpdconfname "$httpdconfname" |
2779 | 3043 |
2780 if [ -z "$httpdconfname" ]; then | 3044 if [ -z "$httpdconfname" ]; then |
2781 _err "Can not read apache config file." | 3045 _err "Cannot read Apache config file." |
2782 return 1 | 3046 return 1 |
2783 fi | 3047 fi |
2784 | 3048 |
2785 if _startswith "$httpdconfname" '/'; then | 3049 if _startswith "$httpdconfname" '/'; then |
2786 httpdconf="$httpdconfname" | 3050 httpdconf="$httpdconfname" |
2793 fi | 3057 fi |
2794 fi | 3058 fi |
2795 _debug httpdconf "$httpdconf" | 3059 _debug httpdconf "$httpdconf" |
2796 _debug httpdconfname "$httpdconfname" | 3060 _debug httpdconfname "$httpdconfname" |
2797 if [ ! -f "$httpdconf" ]; then | 3061 if [ ! -f "$httpdconf" ]; then |
2798 _err "Apache Config file not found" "$httpdconf" | 3062 _err "Apache config file not found" "$httpdconf" |
2799 return 1 | 3063 return 1 |
2800 fi | 3064 fi |
2801 return 0 | 3065 return 0 |
2802 } | 3066 } |
2803 | 3067 |
2815 return 0 | 3079 return 0 |
2816 fi | 3080 fi |
2817 | 3081 |
2818 cat "$APACHE_CONF_BACKUP_DIR/$httpdconfname" >"$httpdconf" | 3082 cat "$APACHE_CONF_BACKUP_DIR/$httpdconfname" >"$httpdconf" |
2819 _debug "Restored: $httpdconf." | 3083 _debug "Restored: $httpdconf." |
2820 if ! _exec $_APACHECTL -t; then | 3084 if ! $_APACHECTL -t; then |
2821 _exec_err | 3085 _err "Sorry, there's been an error restoring the Apache config. Please ask for support on $PROJECT." |
2822 _err "Sorry, restore apache config error, please contact me." | |
2823 return 1 | 3086 return 1 |
2824 fi | 3087 fi |
2825 _debug "Restored successfully." | 3088 _debug "Restored successfully." |
2826 rm -f "$APACHE_CONF_BACKUP_DIR/$httpdconfname" | 3089 rm -f "$APACHE_CONF_BACKUP_DIR/$httpdconfname" |
2827 return 0 | 3090 return 0 |
2832 if ! _apachePath; then | 3095 if ! _apachePath; then |
2833 return 1 | 3096 return 1 |
2834 fi | 3097 fi |
2835 | 3098 |
2836 #test the conf first | 3099 #test the conf first |
2837 _info "Checking if there is an error in the apache config file before starting." | 3100 _info "Checking if there is an error in the Apache config file before starting." |
2838 | 3101 |
2839 if ! _exec "$_APACHECTL" -t >/dev/null; then | 3102 if ! $_APACHECTL -t >/dev/null; then |
2840 _exec_err | 3103 _err "The Apache config file has errors, please fix them first then try again." |
2841 _err "The apache config file has error, please fix it first, then try again." | 3104 _err "Don't worry, no changes to your system have been made." |
2842 _err "Don't worry, there is nothing changed to your system." | |
2843 return 1 | 3105 return 1 |
2844 else | 3106 else |
2845 _info "OK" | 3107 _info "OK" |
2846 fi | 3108 fi |
2847 | 3109 |
2848 #backup the conf | 3110 #backup the conf |
2849 _debug "Backup apache config file" "$httpdconf" | 3111 _debug "Backing up Apache config file" "$httpdconf" |
2850 if ! cp "$httpdconf" "$APACHE_CONF_BACKUP_DIR/"; then | 3112 if ! cp "$httpdconf" "$APACHE_CONF_BACKUP_DIR/"; then |
2851 _err "Can not backup apache config file, so abort. Don't worry, the apache config is not changed." | 3113 _err "Cannot backup Apache config file, aborting. Don't worry, the Apache config has not been changed." |
2852 _err "This might be a bug of $PROJECT_NAME , please report issue: $PROJECT" | 3114 _err "This might be an $PROJECT_NAME bug, please open an issue on $PROJECT" |
2853 return 1 | 3115 return 1 |
2854 fi | 3116 fi |
2855 _info "JFYI, Config file $httpdconf is backuped to $APACHE_CONF_BACKUP_DIR/$httpdconfname" | 3117 _info "Config file $httpdconf has been backed up to $APACHE_CONF_BACKUP_DIR/$httpdconfname" |
2856 _info "In case there is an error that can not be restored automatically, you may try restore it yourself." | 3118 _info "In case an error causes it to not be restored automatically, you can restore it yourself." |
2857 _info "The backup file will be deleted on success, just forget it." | 3119 _info "You do not need to do anything on success, as the backup file will automatically be deleted." |
2858 | 3120 |
2859 #add alias | 3121 #add alias |
2860 | 3122 |
2861 apacheVer="$($_APACHECTL -V | grep "Server version:" | cut -d : -f 2 | cut -d " " -f 2 | cut -d '/' -f 2)" | 3123 apacheVer="$($_APACHECTL -V | grep "Server version:" | cut -d : -f 2 | cut -d " " -f 2 | cut -d '/' -f 2)" |
2862 _debug "apacheVer" "$apacheVer" | 3124 _debug "apacheVer" "$apacheVer" |
2864 apacheMinor="$(echo "$apacheVer" | cut -d . -f 2)" | 3126 apacheMinor="$(echo "$apacheVer" | cut -d . -f 2)" |
2865 | 3127 |
2866 if [ "$apacheVer" ] && [ "$apacheMajor$apacheMinor" -ge "24" ]; then | 3128 if [ "$apacheVer" ] && [ "$apacheMajor$apacheMinor" -ge "24" ]; then |
2867 echo " | 3129 echo " |
2868 Alias /.well-known/acme-challenge $ACME_DIR | 3130 Alias /.well-known/acme-challenge $ACME_DIR |
3131 | |
2869 <Directory $ACME_DIR > | 3132 <Directory $ACME_DIR > |
2870 Require all granted | 3133 Require all granted |
2871 </Directory> | 3134 </Directory> |
2872 " >>"$httpdconf" | 3135 " >>"$httpdconf" |
2873 else | 3136 else |
2874 echo " | 3137 echo " |
2875 Alias /.well-known/acme-challenge $ACME_DIR | 3138 Alias /.well-known/acme-challenge $ACME_DIR |
3139 | |
2876 <Directory $ACME_DIR > | 3140 <Directory $ACME_DIR > |
2877 Order allow,deny | 3141 Order allow,deny |
2878 Allow from all | 3142 Allow from all |
2879 </Directory> | 3143 </Directory> |
2880 " >>"$httpdconf" | 3144 " >>"$httpdconf" |
2881 fi | 3145 fi |
2882 | 3146 |
2883 _msg="$($_APACHECTL -t 2>&1)" | 3147 _msg="$($_APACHECTL -t 2>&1)" |
2884 if [ "$?" != "0" ]; then | 3148 if [ "$?" != "0" ]; then |
2885 _err "Sorry, apache config error" | 3149 _err "Sorry, an Apache config error has occurred" |
2886 if _restoreApache; then | 3150 if _restoreApache; then |
2887 _err "The apache config file is restored." | 3151 _err "The Apache config file has been restored." |
2888 else | 3152 else |
2889 _err "Sorry, the apache config file can not be restored, please report bug." | 3153 _err "Sorry, the Apache config file cannot be restored, please open an issue on $PROJECT." |
2890 fi | 3154 fi |
2891 return 1 | 3155 return 1 |
2892 fi | 3156 fi |
2893 | 3157 |
2894 if [ ! -d "$ACME_DIR" ]; then | 3158 if [ ! -d "$ACME_DIR" ]; then |
2895 mkdir -p "$ACME_DIR" | 3159 mkdir -p "$ACME_DIR" |
2896 chmod 755 "$ACME_DIR" | 3160 chmod 755 "$ACME_DIR" |
2897 fi | 3161 fi |
2898 | 3162 |
2899 if ! _exec "$_APACHECTL" graceful; then | 3163 if ! $_APACHECTL graceful; then |
2900 _exec_err | 3164 _err "$_APACHECTL graceful error, please open an issue on $PROJECT." |
2901 _err "$_APACHECTL graceful error, please contact me." | |
2902 _restoreApache | 3165 _restoreApache |
2903 return 1 | 3166 return 1 |
2904 fi | 3167 fi |
2905 usingApache="1" | 3168 usingApache="1" |
2906 return 0 | 3169 return 0 |
2920 BACKUP_NGINX_CONF="" | 3183 BACKUP_NGINX_CONF="" |
2921 _debug _croot "$_croot" | 3184 _debug _croot "$_croot" |
2922 _start_f="$(echo "$_croot" | cut -d : -f 2)" | 3185 _start_f="$(echo "$_croot" | cut -d : -f 2)" |
2923 _debug _start_f "$_start_f" | 3186 _debug _start_f "$_start_f" |
2924 if [ -z "$_start_f" ]; then | 3187 if [ -z "$_start_f" ]; then |
2925 _debug "find start conf from nginx command" | 3188 _debug "Finding config using the nginx command" |
2926 if [ -z "$NGINX_CONF" ]; then | 3189 if [ -z "$NGINX_CONF" ]; then |
2927 if ! _exists "nginx"; then | 3190 if ! _exists "nginx"; then |
2928 _err "nginx command is not found." | 3191 _err "nginx command not found." |
2929 return 1 | 3192 return 1 |
2930 fi | 3193 fi |
2931 NGINX_CONF="$(nginx -V 2>&1 | _egrep_o "--conf-path=[^ ]* " | tr -d " ")" | 3194 NGINX_CONF="$(nginx -V 2>&1 | _egrep_o "\-\-conf-path=[^ ]* " | tr -d " ")" |
2932 _debug NGINX_CONF "$NGINX_CONF" | 3195 _debug NGINX_CONF "$NGINX_CONF" |
2933 NGINX_CONF="$(echo "$NGINX_CONF" | cut -d = -f 2)" | 3196 NGINX_CONF="$(echo "$NGINX_CONF" | cut -d = -f 2)" |
2934 _debug NGINX_CONF "$NGINX_CONF" | 3197 _debug NGINX_CONF "$NGINX_CONF" |
2935 if [ -z "$NGINX_CONF" ]; then | 3198 if [ -z "$NGINX_CONF" ]; then |
2936 _err "Can not find nginx conf." | 3199 _err "Cannot find nginx config." |
2937 NGINX_CONF="" | 3200 NGINX_CONF="" |
2938 return 1 | 3201 return 1 |
2939 fi | 3202 fi |
2940 if [ ! -f "$NGINX_CONF" ]; then | 3203 if [ ! -f "$NGINX_CONF" ]; then |
2941 _err "'$NGINX_CONF' doesn't exist." | 3204 _err "'$NGINX_CONF' doesn't exist." |
2942 NGINX_CONF="" | 3205 NGINX_CONF="" |
2943 return 1 | 3206 return 1 |
2944 fi | 3207 fi |
2945 _debug "Found nginx conf file:$NGINX_CONF" | 3208 _debug "Found nginx config file: $NGINX_CONF" |
2946 fi | 3209 fi |
2947 _start_f="$NGINX_CONF" | 3210 _start_f="$NGINX_CONF" |
2948 fi | 3211 fi |
2949 _debug "Start detect nginx conf for $_d from:$_start_f" | 3212 _debug "Detecting nginx conf for $_d from: $_start_f" |
2950 if ! _checkConf "$_d" "$_start_f"; then | 3213 if ! _checkConf "$_d" "$_start_f"; then |
2951 _err "Can not find conf file for domain $d" | 3214 _err "Cannot find config file for domain $d" |
2952 return 1 | 3215 return 1 |
2953 fi | 3216 fi |
2954 _info "Found conf file: $FOUND_REAL_NGINX_CONF" | 3217 _info "Found config file: $FOUND_REAL_NGINX_CONF" |
2955 | 3218 |
2956 _ln=$FOUND_REAL_NGINX_CONF_LN | 3219 _ln=$FOUND_REAL_NGINX_CONF_LN |
2957 _debug "_ln" "$_ln" | 3220 _debug "_ln" "$_ln" |
2958 | 3221 |
2959 _lnn=$(_math $_ln + 1) | 3222 _lnn=$(_math $_ln + 1) |
2960 _debug _lnn "$_lnn" | 3223 _debug _lnn "$_lnn" |
2961 _start_tag="$(sed -n "$_lnn,${_lnn}p" "$FOUND_REAL_NGINX_CONF")" | 3224 _start_tag="$(sed -n "$_lnn,${_lnn}p" "$FOUND_REAL_NGINX_CONF")" |
2962 _debug "_start_tag" "$_start_tag" | 3225 _debug "_start_tag" "$_start_tag" |
2963 if [ "$_start_tag" = "$NGINX_START" ]; then | 3226 if [ "$_start_tag" = "$NGINX_START" ]; then |
2964 _info "The domain $_d is already configured, skip" | 3227 _info "The domain $_d is already configured, skipping" |
2965 FOUND_REAL_NGINX_CONF="" | 3228 FOUND_REAL_NGINX_CONF="" |
2966 return 0 | 3229 return 0 |
2967 fi | 3230 fi |
2968 | 3231 |
2969 mkdir -p "$DOMAIN_BACKUP_PATH" | 3232 mkdir -p "$DOMAIN_BACKUP_PATH" |
2970 _backup_conf="$DOMAIN_BACKUP_PATH/$_d.nginx.conf" | 3233 _backup_conf="$DOMAIN_BACKUP_PATH/$_d.nginx.conf" |
2971 _debug _backup_conf "$_backup_conf" | 3234 _debug _backup_conf "$_backup_conf" |
2972 BACKUP_NGINX_CONF="$_backup_conf" | 3235 BACKUP_NGINX_CONF="$_backup_conf" |
2973 _info "Backup $FOUND_REAL_NGINX_CONF to $_backup_conf" | 3236 _info "Backing $FOUND_REAL_NGINX_CONF up to $_backup_conf" |
2974 if ! cp "$FOUND_REAL_NGINX_CONF" "$_backup_conf"; then | 3237 if ! cp "$FOUND_REAL_NGINX_CONF" "$_backup_conf"; then |
2975 _err "backup error." | 3238 _err "Backup error." |
2976 FOUND_REAL_NGINX_CONF="" | 3239 FOUND_REAL_NGINX_CONF="" |
2977 return 1 | 3240 return 1 |
2978 fi | 3241 fi |
2979 | 3242 |
2980 if ! _exists "nginx"; then | 3243 if ! _exists "nginx"; then |
2981 _err "nginx command is not found." | 3244 _err "nginx command not found." |
2982 return 1 | 3245 return 1 |
2983 fi | 3246 fi |
2984 _info "Check the nginx conf before setting up." | 3247 _info "Checking the nginx config before setting up." |
2985 if ! _exec "nginx -t" >/dev/null; then | 3248 if ! nginx -t >/dev/null 2>&1; then |
2986 _exec_err | 3249 _err "It seems that the nginx config is not correct, cannot continue." |
2987 return 1 | 3250 return 1 |
2988 fi | 3251 fi |
2989 | 3252 |
2990 _info "OK, Set up nginx config file" | 3253 _info "OK, setting up the nginx config file" |
2991 | 3254 |
2992 if ! sed -n "1,${_ln}p" "$_backup_conf" >"$FOUND_REAL_NGINX_CONF"; then | 3255 if ! sed -n "1,${_ln}p" "$_backup_conf" >"$FOUND_REAL_NGINX_CONF"; then |
2993 cat "$_backup_conf" >"$FOUND_REAL_NGINX_CONF" | 3256 cat "$_backup_conf" >"$FOUND_REAL_NGINX_CONF" |
2994 _err "write nginx conf error, but don't worry, the file is restored to the original version." | 3257 _err "Error writing nginx config. Restoring it to its original version." |
2995 return 1 | 3258 return 1 |
2996 fi | 3259 fi |
2997 | 3260 |
2998 echo "$NGINX_START | 3261 echo "$NGINX_START |
2999 location ~ \"^/\.well-known/acme-challenge/([-_a-zA-Z0-9]+)\$\" { | 3262 location ~ \"^/\.well-known/acme-challenge/([-_a-zA-Z0-9]+)\$\" { |
3003 #NGINX_START | 3266 #NGINX_START |
3004 " >>"$FOUND_REAL_NGINX_CONF" | 3267 " >>"$FOUND_REAL_NGINX_CONF" |
3005 | 3268 |
3006 if ! sed -n "${_lnn},99999p" "$_backup_conf" >>"$FOUND_REAL_NGINX_CONF"; then | 3269 if ! sed -n "${_lnn},99999p" "$_backup_conf" >>"$FOUND_REAL_NGINX_CONF"; then |
3007 cat "$_backup_conf" >"$FOUND_REAL_NGINX_CONF" | 3270 cat "$_backup_conf" >"$FOUND_REAL_NGINX_CONF" |
3008 _err "write nginx conf error, but don't worry, the file is restored." | 3271 _err "Error writing nginx config. Restoring it to its original version." |
3009 return 1 | 3272 return 1 |
3010 fi | 3273 fi |
3011 _debug3 "Modified config:$(cat $FOUND_REAL_NGINX_CONF)" | 3274 _debug3 "Modified config:$(cat $FOUND_REAL_NGINX_CONF)" |
3012 _info "nginx conf is done, let's check it again." | 3275 _info "nginx config has been written, let's check it again." |
3013 if ! _exec "nginx -t" >/dev/null; then | 3276 if ! nginx -t >/dev/null 2>&1; then |
3014 _exec_err | 3277 _err "There seems to be a problem with the nginx config, let's restore it to its original version." |
3015 _err "It seems that nginx conf was broken, let's restore." | |
3016 cat "$_backup_conf" >"$FOUND_REAL_NGINX_CONF" | 3278 cat "$_backup_conf" >"$FOUND_REAL_NGINX_CONF" |
3017 return 1 | 3279 return 1 |
3018 fi | 3280 fi |
3019 | 3281 |
3020 _info "Reload nginx" | 3282 _info "Reloading nginx" |
3021 if ! _exec "nginx -s reload" >/dev/null; then | 3283 if ! nginx -s reload >/dev/null 2>&1; then |
3022 _exec_err | 3284 _err "There seems to be a problem with the nginx config, let's restore it to its original version." |
3023 _err "It seems that nginx reload error, let's restore." | |
3024 cat "$_backup_conf" >"$FOUND_REAL_NGINX_CONF" | 3285 cat "$_backup_conf" >"$FOUND_REAL_NGINX_CONF" |
3025 return 1 | 3286 return 1 |
3026 fi | 3287 fi |
3027 | 3288 |
3028 return 0 | 3289 return 0 |
3030 | 3291 |
3031 #d , conf | 3292 #d , conf |
3032 _checkConf() { | 3293 _checkConf() { |
3033 _d="$1" | 3294 _d="$1" |
3034 _c_file="$2" | 3295 _c_file="$2" |
3035 _debug "Start _checkConf from:$_c_file" | 3296 _debug "Starting _checkConf from: $_c_file" |
3036 if [ ! -f "$2" ] && ! echo "$2" | grep '*$' >/dev/null && echo "$2" | grep '*' >/dev/null; then | 3297 if [ ! -f "$2" ] && ! echo "$2" | grep '*$' >/dev/null && echo "$2" | grep '*' >/dev/null; then |
3037 _debug "wildcard" | 3298 _debug "wildcard" |
3038 for _w_f in $2; do | 3299 for _w_f in $2; do |
3039 if [ -f "$_w_f" ] && _checkConf "$1" "$_w_f"; then | 3300 if [ -f "$_w_f" ] && _checkConf "$1" "$_w_f"; then |
3040 return 0 | 3301 return 0 |
3043 #not found | 3304 #not found |
3044 return 1 | 3305 return 1 |
3045 elif [ -f "$2" ]; then | 3306 elif [ -f "$2" ]; then |
3046 _debug "single" | 3307 _debug "single" |
3047 if _isRealNginxConf "$1" "$2"; then | 3308 if _isRealNginxConf "$1" "$2"; then |
3048 _debug "$2 is found." | 3309 _debug "$2 found." |
3049 FOUND_REAL_NGINX_CONF="$2" | 3310 FOUND_REAL_NGINX_CONF="$2" |
3050 return 0 | 3311 return 0 |
3051 fi | 3312 fi |
3052 if cat "$2" | tr "\t" " " | grep "^ *include *.*;" >/dev/null; then | 3313 if cat "$2" | tr "\t" " " | grep "^ *include *.*;" >/dev/null; then |
3053 _debug "Try include files" | 3314 _debug "Trying include files" |
3054 for included in $(cat "$2" | tr "\t" " " | grep "^ *include *.*;" | sed "s/include //" | tr -d " ;"); do | 3315 for included in $(cat "$2" | tr "\t" " " | grep "^ *include *.*;" | sed "s/include //" | tr -d " ;"); do |
3055 _debug "check included $included" | 3316 _debug "Checking included $included" |
3317 if ! _startswith "$included" "/" && _exists dirname; then | |
3318 _relpath="$(dirname "$2")" | |
3319 _debug "_relpath" "$_relpath" | |
3320 included="$_relpath/$included" | |
3321 fi | |
3056 if _checkConf "$1" "$included"; then | 3322 if _checkConf "$1" "$included"; then |
3057 return 0 | 3323 return 0 |
3058 fi | 3324 fi |
3059 done | 3325 done |
3060 fi | 3326 fi |
3121 } | 3387 } |
3122 | 3388 |
3123 #restore all the nginx conf | 3389 #restore all the nginx conf |
3124 _restoreNginx() { | 3390 _restoreNginx() { |
3125 if [ -z "$NGINX_RESTORE_VLIST" ]; then | 3391 if [ -z "$NGINX_RESTORE_VLIST" ]; then |
3126 _debug "No need to restore nginx, skip." | 3392 _debug "No need to restore nginx config, skipping." |
3127 return | 3393 return |
3128 fi | 3394 fi |
3129 _debug "_restoreNginx" | 3395 _debug "_restoreNginx" |
3130 _debug "NGINX_RESTORE_VLIST" "$NGINX_RESTORE_VLIST" | 3396 _debug "NGINX_RESTORE_VLIST" "$NGINX_RESTORE_VLIST" |
3131 | 3397 |
3136 _ngbackupconf=$(echo "$ng_entry" | cut -d "$sep" -f 3) | 3402 _ngbackupconf=$(echo "$ng_entry" | cut -d "$sep" -f 3) |
3137 _info "Restoring from $_ngbackupconf to $_ngconf" | 3403 _info "Restoring from $_ngbackupconf to $_ngconf" |
3138 cat "$_ngbackupconf" >"$_ngconf" | 3404 cat "$_ngbackupconf" >"$_ngconf" |
3139 done | 3405 done |
3140 | 3406 |
3141 _info "Reload nginx" | 3407 _info "Reloading nginx" |
3142 if ! _exec "nginx -s reload" >/dev/null; then | 3408 if ! nginx -s reload >/dev/null; then |
3143 _exec_err | 3409 _err "An error occurred while reloading nginx, please open an issue on $PROJECT." |
3144 _err "It seems that nginx reload error, please report bug." | |
3145 return 1 | 3410 return 1 |
3146 fi | 3411 fi |
3147 return 0 | 3412 return 0 |
3148 } | 3413 } |
3149 | 3414 |
3164 _clearupdns() { | 3429 _clearupdns() { |
3165 _debug "_clearupdns" | 3430 _debug "_clearupdns" |
3166 _debug "dns_entries" "$dns_entries" | 3431 _debug "dns_entries" "$dns_entries" |
3167 | 3432 |
3168 if [ -z "$dns_entries" ]; then | 3433 if [ -z "$dns_entries" ]; then |
3169 _debug "skip dns." | 3434 _debug "Skipping dns." |
3170 return | 3435 return |
3171 fi | 3436 fi |
3172 _info "Removing DNS records." | 3437 _info "Removing DNS records." |
3173 | 3438 |
3174 for entry in $dns_entries; do | 3439 for entry in $dns_entries; do |
3187 if [ "$d_api" = "$txt" ]; then | 3452 if [ "$d_api" = "$txt" ]; then |
3188 d_api="" | 3453 d_api="" |
3189 fi | 3454 fi |
3190 | 3455 |
3191 if [ -z "$d_api" ]; then | 3456 if [ -z "$d_api" ]; then |
3192 _info "Not Found domain api file: $d_api" | 3457 _info "Domain API file was not found: $d_api" |
3193 continue | 3458 continue |
3194 fi | 3459 fi |
3195 | 3460 |
3196 if [ "$aliasDomain" ]; then | 3461 if [ "$aliasDomain" ]; then |
3197 txtdomain="$aliasDomain" | 3462 txtdomain="$aliasDomain" |
3198 fi | 3463 fi |
3199 | 3464 |
3200 ( | 3465 ( |
3201 if ! . "$d_api"; then | 3466 if ! . "$d_api"; then |
3202 _err "Load file $d_api error. Please check your api file and try again." | 3467 _err "Error loading file $d_api. Please check your API file and try again." |
3203 return 1 | 3468 return 1 |
3204 fi | 3469 fi |
3205 | 3470 |
3206 rmcommand="${_currentRoot}_rm" | 3471 rmcommand="${_currentRoot}_rm" |
3207 if ! _exists "$rmcommand"; then | 3472 if ! _exists "$rmcommand"; then |
3208 _err "It seems that your api file doesn't define $rmcommand" | 3473 _err "It seems that your API file doesn't define $rmcommand" |
3209 return 1 | 3474 return 1 |
3210 fi | 3475 fi |
3211 _info "Removing txt: $txt for domain: $txtdomain" | 3476 _info "Removing txt: $txt for domain: $txtdomain" |
3212 if ! $rmcommand "$txtdomain" "$txt"; then | 3477 if ! $rmcommand "$txtdomain" "$txt"; then |
3213 _err "Error removing txt for domain:$txtdomain" | 3478 _err "Error removing txt for domain: $txtdomain" |
3214 return 1 | 3479 return 1 |
3215 fi | 3480 fi |
3216 _info "Removed: Success" | 3481 _info "Successfully removed" |
3217 ) | 3482 ) |
3218 | 3483 |
3219 done | 3484 done |
3220 } | 3485 } |
3221 | 3486 |
3222 # webroot removelevel tokenfile | 3487 # webroot removelevel tokenfile |
3223 _clearupwebbroot() { | 3488 _clearupwebbroot() { |
3224 __webroot="$1" | 3489 __webroot="$1" |
3225 if [ -z "$__webroot" ]; then | 3490 if [ -z "$__webroot" ]; then |
3226 _debug "no webroot specified, skip" | 3491 _debug "No webroot specified, skipping" |
3227 return 0 | 3492 return 0 |
3228 fi | 3493 fi |
3229 | 3494 |
3230 _rmpath="" | 3495 _rmpath="" |
3231 if [ "$2" = '1' ]; then | 3496 if [ "$2" = '1' ]; then |
3233 elif [ "$2" = '2' ]; then | 3498 elif [ "$2" = '2' ]; then |
3234 _rmpath="$__webroot/.well-known/acme-challenge" | 3499 _rmpath="$__webroot/.well-known/acme-challenge" |
3235 elif [ "$2" = '3' ]; then | 3500 elif [ "$2" = '3' ]; then |
3236 _rmpath="$__webroot/.well-known/acme-challenge/$3" | 3501 _rmpath="$__webroot/.well-known/acme-challenge/$3" |
3237 else | 3502 else |
3238 _debug "Skip for removelevel:$2" | 3503 _debug "Skipping for removelevel: $2" |
3239 fi | 3504 fi |
3240 | 3505 |
3241 if [ "$_rmpath" ]; then | 3506 if [ "$_rmpath" ]; then |
3242 if [ "$DEBUG" ]; then | 3507 if [ "$DEBUG" ]; then |
3243 _debug "Debugging, skip removing: $_rmpath" | 3508 _debug "Debugging, not removing: $_rmpath" |
3244 else | 3509 else |
3245 rm -rf "$_rmpath" | 3510 rm -rf "$_rmpath" |
3246 fi | 3511 fi |
3247 fi | 3512 fi |
3248 | 3513 |
3259 _debug _on_before_issue | 3524 _debug _on_before_issue |
3260 _debug _chk_main_domain "$_chk_main_domain" | 3525 _debug _chk_main_domain "$_chk_main_domain" |
3261 _debug _chk_alt_domains "$_chk_alt_domains" | 3526 _debug _chk_alt_domains "$_chk_alt_domains" |
3262 #run pre hook | 3527 #run pre hook |
3263 if [ "$_chk_pre_hook" ]; then | 3528 if [ "$_chk_pre_hook" ]; then |
3264 _info "Run pre hook:'$_chk_pre_hook'" | 3529 _info "Running pre hook:'$_chk_pre_hook'" |
3265 if ! ( | 3530 if ! ( |
3531 export Le_Domain="$_chk_main_domain" | |
3532 export Le_Alt="$_chk_alt_domains" | |
3266 cd "$DOMAIN_PATH" && eval "$_chk_pre_hook" | 3533 cd "$DOMAIN_PATH" && eval "$_chk_pre_hook" |
3267 ); then | 3534 ); then |
3268 _err "Error when run pre hook." | 3535 _err "Error occurred when running pre hook." |
3269 return 1 | 3536 return 1 |
3270 fi | 3537 fi |
3271 fi | 3538 fi |
3272 | 3539 |
3273 if _hasfield "$_chk_web_roots" "$NO_VALUE"; then | 3540 if _hasfield "$_chk_web_roots" "$NO_VALUE"; then |
3288 _w_index="$(_math "$_w_index" + 1)" | 3555 _w_index="$(_math "$_w_index" + 1)" |
3289 _debug d "$d" | 3556 _debug d "$d" |
3290 if [ -z "$d" ]; then | 3557 if [ -z "$d" ]; then |
3291 break | 3558 break |
3292 fi | 3559 fi |
3293 _debug "Check for domain" "$d" | 3560 _debug "Checking for domain" "$d" |
3294 _currentRoot="$(_getfield "$_chk_web_roots" $_index)" | 3561 _currentRoot="$(_getfield "$_chk_web_roots" $_index)" |
3295 _debug "_currentRoot" "$_currentRoot" | 3562 _debug "_currentRoot" "$_currentRoot" |
3296 _index=$(_math $_index + 1) | 3563 _index=$(_math $_index + 1) |
3297 _checkport="" | 3564 _checkport="" |
3298 if [ "$_currentRoot" = "$NO_VALUE" ]; then | 3565 if [ "$_currentRoot" = "$NO_VALUE" ]; then |
3322 _addrIndex="$(_math $_addrIndex + 1)" | 3589 _addrIndex="$(_math $_addrIndex + 1)" |
3323 | 3590 |
3324 _netprc="$(_ss "$_checkport" | grep "$_checkport")" | 3591 _netprc="$(_ss "$_checkport" | grep "$_checkport")" |
3325 netprc="$(echo "$_netprc" | grep "$_checkaddr")" | 3592 netprc="$(echo "$_netprc" | grep "$_checkaddr")" |
3326 if [ -z "$netprc" ]; then | 3593 if [ -z "$netprc" ]; then |
3327 netprc="$(echo "$_netprc" | grep "$LOCAL_ANY_ADDRESS")" | 3594 netprc="$(echo "$_netprc" | grep "$LOCAL_ANY_ADDRESS:$_checkport")" |
3328 fi | 3595 fi |
3329 if [ "$netprc" ]; then | 3596 if [ "$netprc" ]; then |
3330 _err "$netprc" | 3597 _err "$netprc" |
3331 _err "tcp port $_checkport is already used by $(echo "$netprc" | cut -d : -f 4)" | 3598 _err "tcp port $_checkport is already used by $(echo "$netprc" | cut -d : -f 4)" |
3332 _err "Please stop it first" | 3599 _err "Please stop it first" |
3335 fi | 3602 fi |
3336 done | 3603 done |
3337 | 3604 |
3338 if _hasfield "$_chk_web_roots" "apache"; then | 3605 if _hasfield "$_chk_web_roots" "apache"; then |
3339 if ! _setApache; then | 3606 if ! _setApache; then |
3340 _err "set up apache error. Report error to me." | 3607 _err "Error setting up Apache. Please open an issue on $PROJECT." |
3341 return 1 | 3608 return 1 |
3342 fi | 3609 fi |
3343 else | 3610 else |
3344 usingApache="" | 3611 usingApache="" |
3345 fi | 3612 fi |
3352 _debug _on_issue_err | 3619 _debug _on_issue_err |
3353 | 3620 |
3354 if [ "$LOG_FILE" ]; then | 3621 if [ "$LOG_FILE" ]; then |
3355 _err "Please check log file for more details: $LOG_FILE" | 3622 _err "Please check log file for more details: $LOG_FILE" |
3356 else | 3623 else |
3357 _err "Please add '--debug' or '--log' to check more details." | 3624 _err "Please add '--debug' or '--log' to see more information." |
3358 _err "See: $_DEBUG_WIKI" | 3625 _err "See: $_DEBUG_WIKI" |
3359 fi | 3626 fi |
3360 | 3627 |
3361 #run the post hook | 3628 #run the post hook |
3362 if [ "$_chk_post_hook" ]; then | 3629 if [ "$_chk_post_hook" ]; then |
3363 _info "Run post hook:'$_chk_post_hook'" | 3630 _info "Running post hook: '$_chk_post_hook'" |
3364 if ! ( | 3631 if ! ( |
3365 cd "$DOMAIN_PATH" && eval "$_chk_post_hook" | 3632 cd "$DOMAIN_PATH" && eval "$_chk_post_hook" |
3366 ); then | 3633 ); then |
3367 _err "Error when run post hook." | 3634 _err "Error encountered while running post hook." |
3368 return 1 | 3635 return 1 |
3369 fi | 3636 fi |
3370 fi | 3637 fi |
3371 | 3638 |
3372 #trigger the validation to flush the pending authz | 3639 #trigger the validation to flush the pending authz |
3401 _chk_renew_hook="$2" | 3668 _chk_renew_hook="$2" |
3402 _debug _on_issue_success | 3669 _debug _on_issue_success |
3403 | 3670 |
3404 #run the post hook | 3671 #run the post hook |
3405 if [ "$_chk_post_hook" ]; then | 3672 if [ "$_chk_post_hook" ]; then |
3406 _info "Run post hook:'$_chk_post_hook'" | 3673 _info "Running post hook:'$_chk_post_hook'" |
3407 if ! ( | 3674 if ! ( |
3408 export CERT_PATH | 3675 export CERT_PATH |
3409 export CERT_KEY_PATH | 3676 export CERT_KEY_PATH |
3410 export CA_CERT_PATH | 3677 export CA_CERT_PATH |
3411 export CERT_FULLCHAIN_PATH | 3678 export CERT_FULLCHAIN_PATH |
3412 export Le_Domain="$_main_domain" | 3679 export Le_Domain="$_main_domain" |
3413 cd "$DOMAIN_PATH" && eval "$_chk_post_hook" | 3680 cd "$DOMAIN_PATH" && eval "$_chk_post_hook" |
3414 ); then | 3681 ); then |
3415 _err "Error when run post hook." | 3682 _err "Error encountered while running post hook." |
3416 return 1 | 3683 return 1 |
3417 fi | 3684 fi |
3418 fi | 3685 fi |
3419 | 3686 |
3420 #run renew hook | 3687 #run renew hook |
3421 if [ "$_ACME_IS_RENEW" ] && [ "$_chk_renew_hook" ]; then | 3688 if [ "$_ACME_IS_RENEW" ] && [ "$_chk_renew_hook" ]; then |
3422 _info "Run renew hook:'$_chk_renew_hook'" | 3689 _info "Running renew hook: '$_chk_renew_hook'" |
3423 if ! ( | 3690 if ! ( |
3424 export CERT_PATH | 3691 export CERT_PATH |
3425 export CERT_KEY_PATH | 3692 export CERT_KEY_PATH |
3426 export CA_CERT_PATH | 3693 export CA_CERT_PATH |
3427 export CERT_FULLCHAIN_PATH | 3694 export CERT_FULLCHAIN_PATH |
3428 export Le_Domain="$_main_domain" | 3695 export Le_Domain="$_main_domain" |
3429 cd "$DOMAIN_PATH" && eval "$_chk_renew_hook" | 3696 cd "$DOMAIN_PATH" && eval "$_chk_renew_hook" |
3430 ); then | 3697 ); then |
3431 _err "Error when run renew hook." | 3698 _err "Error encountered while running renew hook." |
3432 return 1 | 3699 return 1 |
3433 fi | 3700 fi |
3434 fi | 3701 fi |
3435 | 3702 |
3436 if _hasfield "$Le_Webroot" "$W_DNS" && [ -z "$FORCE_DNS_MANUAL" ]; then | 3703 if _hasfield "$Le_Webroot" "$W_DNS" && [ -z "$FORCE_DNS_MANUAL" ]; then |
3479 _eab_hmac_key="$3" | 3746 _eab_hmac_key="$3" |
3480 _debug3 _regAccount "$_regAccount" | 3747 _debug3 _regAccount "$_regAccount" |
3481 _initAPI | 3748 _initAPI |
3482 | 3749 |
3483 mkdir -p "$CA_DIR" | 3750 mkdir -p "$CA_DIR" |
3484 if [ ! -f "$ACCOUNT_KEY_PATH" ] && [ -f "$_OLD_ACCOUNT_KEY" ]; then | |
3485 _info "mv $_OLD_ACCOUNT_KEY to $ACCOUNT_KEY_PATH" | |
3486 mv "$_OLD_ACCOUNT_KEY" "$ACCOUNT_KEY_PATH" | |
3487 fi | |
3488 | |
3489 if [ ! -f "$ACCOUNT_JSON_PATH" ] && [ -f "$_OLD_ACCOUNT_JSON" ]; then | |
3490 _info "mv $_OLD_ACCOUNT_JSON to $ACCOUNT_JSON_PATH" | |
3491 mv "$_OLD_ACCOUNT_JSON" "$ACCOUNT_JSON_PATH" | |
3492 fi | |
3493 | 3751 |
3494 if [ ! -f "$ACCOUNT_KEY_PATH" ]; then | 3752 if [ ! -f "$ACCOUNT_KEY_PATH" ]; then |
3495 if ! _create_account_key "$_reg_length"; then | 3753 if ! _create_account_key "$_reg_length"; then |
3496 _err "Create account key error." | 3754 _err "Error creating account key." |
3497 return 1 | 3755 return 1 |
3498 fi | 3756 fi |
3499 fi | 3757 fi |
3500 | 3758 |
3501 if ! _calcjwk "$ACCOUNT_KEY_PATH"; then | 3759 if ! _calcjwk "$ACCOUNT_KEY_PATH"; then |
3511 _secure_debug3 _eab_hmac_key "$_eab_hmac_key" | 3769 _secure_debug3 _eab_hmac_key "$_eab_hmac_key" |
3512 _email="$(_getAccountEmail)" | 3770 _email="$(_getAccountEmail)" |
3513 if [ "$_email" ]; then | 3771 if [ "$_email" ]; then |
3514 _savecaconf "CA_EMAIL" "$_email" | 3772 _savecaconf "CA_EMAIL" "$_email" |
3515 fi | 3773 fi |
3516 if [ "$ACME_VERSION" = "2" ]; then | 3774 |
3517 if [ "$ACME_DIRECTORY" = "$CA_ZEROSSL" ]; then | 3775 if [ "$ACME_DIRECTORY" = "$CA_ZEROSSL" ]; then |
3518 if [ -z "$_eab_id" ] || [ -z "$_eab_hmac_key" ]; then | 3776 if [ -z "$_eab_id" ] || [ -z "$_eab_hmac_key" ]; then |
3519 _info "No EAB credentials found for ZeroSSL, let's get one" | 3777 _info "No EAB credentials found for ZeroSSL, let's obtain them" |
3520 if [ -z "$_email" ]; then | 3778 if [ -z "$_email" ]; then |
3521 _err "Please provide a email address for ZeroSSL account." | 3779 _info "$(__green "$PROJECT_NAME is using ZeroSSL as default CA now.")" |
3522 _err "See ZeroSSL usage: $_ZEROSSL_WIKI" | 3780 _info "$(__green "Please update your account with an email address first.")" |
3523 return 1 | 3781 _info "$(__green "$PROJECT_ENTRY --register-account -m my@example.com")" |
3524 fi | 3782 _info "See: $(__green "$_ZEROSSL_WIKI")" |
3525 _eabresp=$(_post "email=$_email" $_ZERO_EAB_ENDPOINT) | 3783 return 1 |
3526 if [ "$?" != "0" ]; then | 3784 fi |
3527 _debug2 "$_eabresp" | 3785 _eabresp=$(_post "email=$_email" $_ZERO_EAB_ENDPOINT) |
3528 _err "Can not get EAB credentials from ZeroSSL." | 3786 if [ "$?" != "0" ]; then |
3529 return 1 | 3787 _debug2 "$_eabresp" |
3530 fi | 3788 _err "Cannot get EAB credentials from ZeroSSL." |
3531 _eab_id="$(echo "$_eabresp" | tr ',}' '\n' | grep '"eab_kid"' | cut -d : -f 2 | tr -d '"')" | 3789 return 1 |
3532 if [ -z "$_eab_id" ]; then | 3790 fi |
3533 _err "Can not resolve _eab_id" | 3791 _secure_debug2 _eabresp "$_eabresp" |
3534 return 1 | 3792 _eab_id="$(echo "$_eabresp" | tr ',}' '\n\n' | grep '"eab_kid"' | cut -d : -f 2 | tr -d '"')" |
3535 fi | 3793 _secure_debug2 _eab_id "$_eab_id" |
3536 _eab_hmac_key="$(echo "$_eabresp" | tr ',}' '\n' | grep '"eab_hmac_key"' | cut -d : -f 2 | tr -d '"')" | 3794 if [ -z "$_eab_id" ]; then |
3537 if [ -z "$_eab_hmac_key" ]; then | 3795 _err "Cannot resolve _eab_id" |
3538 _err "Can not resolve _eab_hmac_key" | 3796 return 1 |
3539 return 1 | 3797 fi |
3540 fi | 3798 _eab_hmac_key="$(echo "$_eabresp" | tr ',}' '\n\n' | grep '"eab_hmac_key"' | cut -d : -f 2 | tr -d '"')" |
3541 _savecaconf CA_EAB_KEY_ID "$_eab_id" | 3799 _secure_debug2 _eab_hmac_key "$_eab_hmac_key" |
3542 _savecaconf CA_EAB_HMAC_KEY "$_eab_hmac_key" | 3800 if [ -z "$_eab_hmac_key" ]; then |
3543 fi | 3801 _err "Cannot resolve _eab_hmac_key" |
3544 fi | 3802 return 1 |
3545 if [ "$_eab_id" ] && [ "$_eab_hmac_key" ]; then | 3803 fi |
3546 eab_protected="{\"alg\":\"HS256\",\"kid\":\"$_eab_id\",\"url\":\"${ACME_NEW_ACCOUNT}\"}" | 3804 _savecaconf CA_EAB_KEY_ID "$_eab_id" |
3547 _debug3 eab_protected "$eab_protected" | 3805 _savecaconf CA_EAB_HMAC_KEY "$_eab_hmac_key" |
3548 | 3806 fi |
3549 eab_protected64=$(printf "%s" "$eab_protected" | _base64 | _url_replace) | 3807 fi |
3550 _debug3 eab_protected64 "$eab_protected64" | 3808 if [ "$_eab_id" ] && [ "$_eab_hmac_key" ]; then |
3551 | 3809 eab_protected="{\"alg\":\"HS256\",\"kid\":\"$_eab_id\",\"url\":\"${ACME_NEW_ACCOUNT}\"}" |
3552 eab_payload64=$(printf "%s" "$jwk" | _base64 | _url_replace) | 3810 _debug3 eab_protected "$eab_protected" |
3553 _debug3 eab_payload64 "$eab_payload64" | 3811 |
3554 | 3812 eab_protected64=$(printf "%s" "$eab_protected" | _base64 | _url_replace) |
3555 eab_sign_t="$eab_protected64.$eab_payload64" | 3813 _debug3 eab_protected64 "$eab_protected64" |
3556 _debug3 eab_sign_t "$eab_sign_t" | 3814 |
3557 | 3815 eab_payload64=$(printf "%s" "$jwk" | _base64 | _url_replace) |
3558 key_hex="$(_durl_replace_base64 "$_eab_hmac_key" | _dbase64 | _hex_dump | tr -d ' ')" | 3816 _debug3 eab_payload64 "$eab_payload64" |
3559 _debug3 key_hex "$key_hex" | 3817 |
3560 | 3818 eab_sign_t="$eab_protected64.$eab_payload64" |
3561 eab_signature=$(printf "%s" "$eab_sign_t" | _hmac sha256 $key_hex | _base64 | _url_replace) | 3819 _debug3 eab_sign_t "$eab_sign_t" |
3562 _debug3 eab_signature "$eab_signature" | 3820 |
3563 | 3821 key_hex="$(_durl_replace_base64 "$_eab_hmac_key" | _dbase64 | _hex_dump | tr -d ' ')" |
3564 externalBinding=",\"externalAccountBinding\":{\"protected\":\"$eab_protected64\", \"payload\":\"$eab_payload64\", \"signature\":\"$eab_signature\"}" | 3822 _debug3 key_hex "$key_hex" |
3565 _debug3 externalBinding "$externalBinding" | 3823 |
3566 fi | 3824 eab_signature=$(printf "%s" "$eab_sign_t" | _hmac sha256 $key_hex | _base64 | _url_replace) |
3567 if [ "$_email" ]; then | 3825 _debug3 eab_signature "$eab_signature" |
3568 email_sg="\"contact\": [\"mailto:$_email\"], " | 3826 |
3569 fi | 3827 externalBinding=",\"externalAccountBinding\":{\"protected\":\"$eab_protected64\", \"payload\":\"$eab_payload64\", \"signature\":\"$eab_signature\"}" |
3570 regjson="{$email_sg\"termsOfServiceAgreed\": true$externalBinding}" | 3828 _debug3 externalBinding "$externalBinding" |
3571 else | 3829 fi |
3572 _reg_res="$ACME_NEW_ACCOUNT_RES" | 3830 if [ "$_email" ]; then |
3573 regjson='{"resource": "'$_reg_res'", "terms-of-service-agreed": true, "agreement": "'$ACME_AGREEMENT'"}' | 3831 email_sg="\"contact\": [\"mailto:$_email\"], " |
3574 if [ "$_email" ]; then | 3832 fi |
3575 regjson='{"resource": "'$_reg_res'", "contact": ["mailto:'$_email'"], "terms-of-service-agreed": true, "agreement": "'$ACME_AGREEMENT'"}' | 3833 regjson="{$email_sg\"termsOfServiceAgreed\": true$externalBinding}" |
3576 fi | |
3577 fi | |
3578 | 3834 |
3579 _info "Registering account: $ACME_DIRECTORY" | 3835 _info "Registering account: $ACME_DIRECTORY" |
3580 | 3836 |
3581 if ! _send_signed_request "${ACME_NEW_ACCOUNT}" "$regjson"; then | 3837 if ! _send_signed_request "${ACME_NEW_ACCOUNT}" "$regjson"; then |
3582 _err "Register account Error: $response" | 3838 _err "Error registering account: $response" |
3583 return 1 | 3839 return 1 |
3584 fi | 3840 fi |
3585 | 3841 |
3586 _eabAlreadyBound="" | 3842 _eabAlreadyBound="" |
3587 if [ "$code" = "" ] || [ "$code" = '201' ]; then | 3843 if [ "$code" = "" ] || [ "$code" = '201' ]; then |
3588 echo "$response" >"$ACCOUNT_JSON_PATH" | 3844 echo "$response" >"$ACCOUNT_JSON_PATH" |
3589 _info "Registered" | 3845 _info "Registered" |
3590 elif [ "$code" = '409' ] || [ "$code" = '200' ]; then | 3846 elif [ "$code" = '409' ] || [ "$code" = '200' ]; then |
3591 _info "Already registered" | 3847 _info "Already registered" |
3592 elif [ "$code" = '400' ] && _contains "$response" 'The account is not awaiting external account binding'; then | 3848 elif [ "$code" = '400' ] && _contains "$response" 'The account is not awaiting external account binding'; then |
3593 _info "Already register EAB." | 3849 _info "EAB already registered" |
3594 _eabAlreadyBound=1 | 3850 _eabAlreadyBound=1 |
3595 else | 3851 else |
3596 _err "Register account Error: $response" | 3852 _err "Account registration error: $response" |
3597 return 1 | 3853 return 1 |
3598 fi | 3854 fi |
3599 | 3855 |
3600 if [ -z "$_eabAlreadyBound" ]; then | 3856 if [ -z "$_eabAlreadyBound" ]; then |
3601 _debug2 responseHeaders "$responseHeaders" | 3857 _debug2 responseHeaders "$responseHeaders" |
3602 _accUri="$(echo "$responseHeaders" | grep -i "^Location:" | _head_n 1 | cut -d ':' -f 2- | tr -d "\r\n ")" | 3858 _accUri="$(echo "$responseHeaders" | grep -i "^Location:" | _head_n 1 | cut -d ':' -f 2- | tr -d "\r\n ")" |
3603 _debug "_accUri" "$_accUri" | 3859 _debug "_accUri" "$_accUri" |
3604 if [ -z "$_accUri" ]; then | 3860 if [ -z "$_accUri" ]; then |
3605 _err "Can not find account id url." | 3861 _err "Cannot find account id url." |
3606 _err "$responseHeaders" | 3862 _err "$responseHeaders" |
3607 return 1 | 3863 return 1 |
3608 fi | 3864 fi |
3609 _savecaconf "ACCOUNT_URL" "$_accUri" | 3865 _savecaconf "ACCOUNT_URL" "$_accUri" |
3610 else | 3866 else |
3615 CA_KEY_HASH="$(__calcAccountKeyHash)" | 3871 CA_KEY_HASH="$(__calcAccountKeyHash)" |
3616 _debug "Calc CA_KEY_HASH" "$CA_KEY_HASH" | 3872 _debug "Calc CA_KEY_HASH" "$CA_KEY_HASH" |
3617 _savecaconf CA_KEY_HASH "$CA_KEY_HASH" | 3873 _savecaconf CA_KEY_HASH "$CA_KEY_HASH" |
3618 | 3874 |
3619 if [ "$code" = '403' ]; then | 3875 if [ "$code" = '403' ]; then |
3620 _err "It seems that the account key is already deactivated, please use a new account key." | 3876 _err "It seems that the account key has been deactivated, please use a new account key." |
3621 return 1 | 3877 return 1 |
3622 fi | 3878 fi |
3623 | 3879 |
3624 ACCOUNT_THUMBPRINT="$(__calc_account_thumbprint)" | 3880 ACCOUNT_THUMBPRINT="$(__calc_account_thumbprint)" |
3625 _info "ACCOUNT_THUMBPRINT" "$ACCOUNT_THUMBPRINT" | 3881 _info "ACCOUNT_THUMBPRINT" "$ACCOUNT_THUMBPRINT" |
3627 | 3883 |
3628 #implement updateaccount | 3884 #implement updateaccount |
3629 updateaccount() { | 3885 updateaccount() { |
3630 _initpath | 3886 _initpath |
3631 | 3887 |
3632 if [ ! -f "$ACCOUNT_KEY_PATH" ] && [ -f "$_OLD_ACCOUNT_KEY" ]; then | |
3633 _info "mv $_OLD_ACCOUNT_KEY to $ACCOUNT_KEY_PATH" | |
3634 mv "$_OLD_ACCOUNT_KEY" "$ACCOUNT_KEY_PATH" | |
3635 fi | |
3636 | |
3637 if [ ! -f "$ACCOUNT_JSON_PATH" ] && [ -f "$_OLD_ACCOUNT_JSON" ]; then | |
3638 _info "mv $_OLD_ACCOUNT_JSON to $ACCOUNT_JSON_PATH" | |
3639 mv "$_OLD_ACCOUNT_JSON" "$ACCOUNT_JSON_PATH" | |
3640 fi | |
3641 | |
3642 if [ ! -f "$ACCOUNT_KEY_PATH" ]; then | 3888 if [ ! -f "$ACCOUNT_KEY_PATH" ]; then |
3643 _err "Account key is not found at: $ACCOUNT_KEY_PATH" | 3889 _err "Account key not found at: $ACCOUNT_KEY_PATH" |
3644 return 1 | 3890 return 1 |
3645 fi | 3891 fi |
3646 | 3892 |
3647 _accUri=$(_readcaconf "ACCOUNT_URL") | 3893 _accUri=$(_readcaconf "ACCOUNT_URL") |
3648 _debug _accUri "$_accUri" | 3894 _debug _accUri "$_accUri" |
3649 | 3895 |
3650 if [ -z "$_accUri" ]; then | 3896 if [ -z "$_accUri" ]; then |
3651 _err "The account url is empty, please run '--update-account' first to update the account info first," | 3897 _err "The account URL is empty, please run '--update-account' first to update the account info, then try again." |
3652 _err "Then try again." | |
3653 return 1 | 3898 return 1 |
3654 fi | 3899 fi |
3655 | 3900 |
3656 if ! _calcjwk "$ACCOUNT_KEY_PATH"; then | 3901 if ! _calcjwk "$ACCOUNT_KEY_PATH"; then |
3657 return 1 | 3902 return 1 |
3658 fi | 3903 fi |
3659 _initAPI | 3904 _initAPI |
3660 | 3905 |
3661 _email="$(_getAccountEmail)" | 3906 _email="$(_getAccountEmail)" |
3662 if [ "$ACME_VERSION" = "2" ]; then | 3907 |
3663 if [ "$ACCOUNT_EMAIL" ]; then | 3908 if [ "$_email" ]; then |
3664 updjson='{"contact": ["mailto:'$_email'"]}' | 3909 updjson='{"contact": ["mailto:'$_email'"]}' |
3665 else | 3910 else |
3666 updjson='{"contact": []}' | 3911 updjson='{"contact": []}' |
3667 fi | 3912 fi |
3668 else | 3913 |
3669 # ACMEv1: Updates happen the same way a registration is done. | |
3670 # https://tools.ietf.org/html/draft-ietf-acme-acme-01#section-6.3 | |
3671 _regAccount | |
3672 return | |
3673 fi | |
3674 | |
3675 # this part handles ACMEv2 account updates. | |
3676 _send_signed_request "$_accUri" "$updjson" | 3914 _send_signed_request "$_accUri" "$updjson" |
3677 | 3915 |
3678 if [ "$code" = '200' ]; then | 3916 if [ "$code" = '200' ]; then |
3679 echo "$response" >"$ACCOUNT_JSON_PATH" | 3917 echo "$response" >"$ACCOUNT_JSON_PATH" |
3680 _info "account update success for $_accUri." | 3918 _info "Account update success for $_accUri." |
3681 else | 3919 |
3682 _info "Error. The account was not updated." | 3920 ACCOUNT_THUMBPRINT="$(__calc_account_thumbprint)" |
3921 _info "ACCOUNT_THUMBPRINT" "$ACCOUNT_THUMBPRINT" | |
3922 else | |
3923 _info "An error occurred and the account was not updated." | |
3683 return 1 | 3924 return 1 |
3684 fi | 3925 fi |
3685 } | 3926 } |
3686 | 3927 |
3687 #Implement deactivate account | 3928 #Implement deactivate account |
3688 deactivateaccount() { | 3929 deactivateaccount() { |
3689 _initpath | 3930 _initpath |
3690 | 3931 |
3691 if [ ! -f "$ACCOUNT_KEY_PATH" ] && [ -f "$_OLD_ACCOUNT_KEY" ]; then | |
3692 _info "mv $_OLD_ACCOUNT_KEY to $ACCOUNT_KEY_PATH" | |
3693 mv "$_OLD_ACCOUNT_KEY" "$ACCOUNT_KEY_PATH" | |
3694 fi | |
3695 | |
3696 if [ ! -f "$ACCOUNT_JSON_PATH" ] && [ -f "$_OLD_ACCOUNT_JSON" ]; then | |
3697 _info "mv $_OLD_ACCOUNT_JSON to $ACCOUNT_JSON_PATH" | |
3698 mv "$_OLD_ACCOUNT_JSON" "$ACCOUNT_JSON_PATH" | |
3699 fi | |
3700 | |
3701 if [ ! -f "$ACCOUNT_KEY_PATH" ]; then | 3932 if [ ! -f "$ACCOUNT_KEY_PATH" ]; then |
3702 _err "Account key is not found at: $ACCOUNT_KEY_PATH" | 3933 _err "Account key not found at: $ACCOUNT_KEY_PATH" |
3703 return 1 | 3934 return 1 |
3704 fi | 3935 fi |
3705 | 3936 |
3706 _accUri=$(_readcaconf "ACCOUNT_URL") | 3937 _accUri=$(_readcaconf "ACCOUNT_URL") |
3707 _debug _accUri "$_accUri" | 3938 _debug _accUri "$_accUri" |
3708 | 3939 |
3709 if [ -z "$_accUri" ]; then | 3940 if [ -z "$_accUri" ]; then |
3710 _err "The account url is empty, please run '--update-account' first to update the account info first," | 3941 _err "The account URL is empty, please run '--update-account' first to update the account info, then try again." |
3711 _err "Then try again." | |
3712 return 1 | 3942 return 1 |
3713 fi | 3943 fi |
3714 | 3944 |
3715 if ! _calcjwk "$ACCOUNT_KEY_PATH"; then | 3945 if ! _calcjwk "$ACCOUNT_KEY_PATH"; then |
3716 return 1 | 3946 return 1 |
3717 fi | 3947 fi |
3718 _initAPI | 3948 _initAPI |
3719 | 3949 |
3720 if [ "$ACME_VERSION" = "2" ]; then | 3950 _djson="{\"status\":\"deactivated\"}" |
3721 _djson="{\"status\":\"deactivated\"}" | 3951 |
3722 else | |
3723 _djson="{\"resource\": \"reg\", \"status\":\"deactivated\"}" | |
3724 fi | |
3725 if _send_signed_request "$_accUri" "$_djson" && _contains "$response" '"deactivated"'; then | 3952 if _send_signed_request "$_accUri" "$_djson" && _contains "$response" '"deactivated"'; then |
3726 _info "Deactivate account success for $_accUri." | 3953 _info "Successfully deactivated account $_accUri." |
3727 _accid=$(echo "$response" | _egrep_o "\"id\" *: *[^,]*," | cut -d : -f 2 | tr -d ' ,') | 3954 _accid=$(echo "$response" | _egrep_o "\"id\" *: *[^,]*," | cut -d : -f 2 | tr -d ' ,') |
3728 elif [ "$code" = "403" ]; then | 3955 elif [ "$code" = "403" ]; then |
3729 _info "The account is already deactivated." | 3956 _info "The account is already deactivated." |
3730 _accid=$(_getfield "$_accUri" "999" "/") | 3957 _accid=$(_getfield "$_accUri" "999" "/") |
3731 else | 3958 else |
3732 _err "Deactivate: account failed for $_accUri." | 3959 _err "Account deactivation failed for $_accUri." |
3733 return 1 | 3960 return 1 |
3734 fi | 3961 fi |
3735 | 3962 |
3736 _debug "Account id: $_accid" | 3963 _debug "Account id: $_accid" |
3737 if [ "$_accid" ]; then | 3964 if [ "$_accid" ]; then |
3741 _info "Moving deactivated account info to $_deactivated_account_path/" | 3968 _info "Moving deactivated account info to $_deactivated_account_path/" |
3742 mv "$CA_CONF" "$_deactivated_account_path/" | 3969 mv "$CA_CONF" "$_deactivated_account_path/" |
3743 mv "$ACCOUNT_JSON_PATH" "$_deactivated_account_path/" | 3970 mv "$ACCOUNT_JSON_PATH" "$_deactivated_account_path/" |
3744 mv "$ACCOUNT_KEY_PATH" "$_deactivated_account_path/" | 3971 mv "$ACCOUNT_KEY_PATH" "$_deactivated_account_path/" |
3745 else | 3972 else |
3746 _err "Can not create dir: $_deactivated_account_path, try to remove the deactivated account key." | 3973 _err "Cannot create dir: $_deactivated_account_path, try to remove the deactivated account key." |
3747 rm -f "$CA_CONF" | 3974 rm -f "$CA_CONF" |
3748 rm -f "$ACCOUNT_JSON_PATH" | 3975 rm -f "$ACCOUNT_JSON_PATH" |
3749 rm -f "$ACCOUNT_KEY_PATH" | 3976 rm -f "$ACCOUNT_KEY_PATH" |
3750 fi | 3977 fi |
3751 fi | 3978 fi |
3784 _info "Getting new-authz for domain" "$_gdnd" | 4011 _info "Getting new-authz for domain" "$_gdnd" |
3785 _initAPI | 4012 _initAPI |
3786 _Max_new_authz_retry_times=5 | 4013 _Max_new_authz_retry_times=5 |
3787 _authz_i=0 | 4014 _authz_i=0 |
3788 while [ "$_authz_i" -lt "$_Max_new_authz_retry_times" ]; do | 4015 while [ "$_authz_i" -lt "$_Max_new_authz_retry_times" ]; do |
3789 _debug "Try new-authz for the $_authz_i time." | 4016 _debug "Trying new-authz, attempt number $_authz_i." |
3790 if ! _send_signed_request "${ACME_NEW_AUTHZ}" "{\"resource\": \"new-authz\", \"identifier\": {\"type\": \"dns\", \"value\": \"$(_idn "$_gdnd")\"}}"; then | 4017 if ! _send_signed_request "${ACME_NEW_AUTHZ}" "{\"resource\": \"new-authz\", \"identifier\": {\"type\": \"dns\", \"value\": \"$(_idn "$_gdnd")\"}}"; then |
3791 _err "Can not get domain new authz." | 4018 _err "Cannot get new authz for domain." |
3792 return 1 | 4019 return 1 |
3793 fi | 4020 fi |
3794 if _contains "$response" "No registration exists matching provided key"; then | 4021 if _contains "$response" "No registration exists matching provided key"; then |
3795 _err "It seems there is an error, but it's recovered now, please try again." | 4022 _err "There has been an error, but it might now be resolved, please try again." |
3796 _err "If you see this message for a second time, please report bug: $(__green "$PROJECT")" | 4023 _err "If you see this message for a second time, please report this as a bug: $(__green "$PROJECT")" |
3797 _clearcaconf "CA_KEY_HASH" | 4024 _clearcaconf "CA_KEY_HASH" |
3798 break | 4025 break |
3799 fi | 4026 fi |
3800 if ! _contains "$response" "An error occurred while processing your request"; then | 4027 if ! _contains "$response" "An error occurred while processing your request"; then |
3801 _info "The new-authz request is ok." | 4028 _info "new-authz request successful." |
3802 break | 4029 break |
3803 fi | 4030 fi |
3804 _authz_i="$(_math "$_authz_i" + 1)" | 4031 _authz_i="$(_math "$_authz_i" + 1)" |
3805 _info "The server is busy, Sleep $_authz_i to retry." | 4032 _info "The server is busy, sleeping for $_authz_i seconds and retrying." |
3806 _sleep "$_authz_i" | 4033 _sleep "$_authz_i" |
3807 done | 4034 done |
3808 | 4035 |
3809 if [ "$_authz_i" = "$_Max_new_authz_retry_times" ]; then | 4036 if [ "$_authz_i" = "$_Max_new_authz_retry_times" ]; then |
3810 _err "new-authz retry reach the max $_Max_new_authz_retry_times times." | 4037 _err "new-authz has been retried $_Max_new_authz_retry_times times, stopping." |
3811 fi | 4038 fi |
3812 | 4039 |
3813 if [ "$code" ] && [ "$code" != '201' ]; then | 4040 if [ "$code" ] && [ "$code" != '201' ]; then |
3814 _err "new-authz error: $response" | 4041 _err "new-authz error: $response" |
3815 return 1 | 4042 return 1 |
3824 _debug2 _t_url "$_t_url" | 4051 _debug2 _t_url "$_t_url" |
3825 _t_key_authz="$2" | 4052 _t_key_authz="$2" |
3826 _debug2 _t_key_authz "$_t_key_authz" | 4053 _debug2 _t_key_authz "$_t_key_authz" |
3827 _t_vtype="$3" | 4054 _t_vtype="$3" |
3828 _debug2 _t_vtype "$_t_vtype" | 4055 _debug2 _t_vtype "$_t_vtype" |
3829 if [ "$ACME_VERSION" = "2" ]; then | 4056 |
3830 _send_signed_request "$_t_url" "{}" | 4057 _send_signed_request "$_t_url" "{}" |
3831 else | 4058 |
3832 _send_signed_request "$_t_url" "{\"resource\": \"challenge\", \"type\": \"$_t_vtype\", \"keyAuthorization\": \"$_t_key_authz\"}" | |
3833 fi | |
3834 } | 4059 } |
3835 | 4060 |
3836 #endpoint domain type | 4061 #endpoint domain type |
3837 _ns_lookup_impl() { | 4062 _ns_lookup_impl() { |
3838 _ns_ep="$1" | 4063 _ns_ep="$1" |
3863 | 4088 |
3864 #domain, type | 4089 #domain, type |
3865 _ns_purge_cf() { | 4090 _ns_purge_cf() { |
3866 _cf_d="$1" | 4091 _cf_d="$1" |
3867 _cf_d_type="$2" | 4092 _cf_d_type="$2" |
3868 _debug "Cloudflare purge $_cf_d_type record for domain $_cf_d" | 4093 _debug "Purging Cloudflare $_cf_d_type record for domain $_cf_d" |
3869 _cf_purl="https://cloudflare-dns.com/api/v1/purge?domain=$_cf_d&type=$_cf_d_type" | 4094 _cf_purl="https://cloudflare-dns.com/api/v1/purge?domain=$_cf_d&type=$_cf_d_type" |
3870 response="$(_post "" "$_cf_purl")" | 4095 response="$(_post "" "$_cf_purl")" |
3871 _debug2 response "$response" | 4096 _debug2 response "$response" |
3872 } | 4097 } |
3873 | 4098 |
3874 #checks if cf server is available | 4099 #checks if cf server is available |
3875 _ns_is_available_cf() { | 4100 _ns_is_available_cf() { |
3876 if _get "https://cloudflare-dns.com" >/dev/null 2>&1; then | 4101 if _get "https://cloudflare-dns.com" "" 10 >/dev/null; then |
4102 return 0 | |
4103 else | |
4104 return 1 | |
4105 fi | |
4106 } | |
4107 | |
4108 _ns_is_available_google() { | |
4109 if _get "https://dns.google" "" 10 >/dev/null; then | |
3877 return 0 | 4110 return 0 |
3878 else | 4111 else |
3879 return 1 | 4112 return 1 |
3880 fi | 4113 fi |
3881 } | 4114 } |
3886 _cf_ld_type="$2" | 4119 _cf_ld_type="$2" |
3887 _cf_ep="https://dns.google/resolve" | 4120 _cf_ep="https://dns.google/resolve" |
3888 _ns_lookup_impl "$_cf_ep" "$_cf_ld" "$_cf_ld_type" | 4121 _ns_lookup_impl "$_cf_ep" "$_cf_ld" "$_cf_ld_type" |
3889 } | 4122 } |
3890 | 4123 |
4124 _ns_is_available_ali() { | |
4125 if _get "https://dns.alidns.com" "" 10 >/dev/null; then | |
4126 return 0 | |
4127 else | |
4128 return 1 | |
4129 fi | |
4130 } | |
4131 | |
4132 #domain, type | |
4133 _ns_lookup_ali() { | |
4134 _cf_ld="$1" | |
4135 _cf_ld_type="$2" | |
4136 _cf_ep="https://dns.alidns.com/resolve" | |
4137 _ns_lookup_impl "$_cf_ep" "$_cf_ld" "$_cf_ld_type" | |
4138 } | |
4139 | |
4140 _ns_is_available_dp() { | |
4141 if _get "https://doh.pub" "" 10 >/dev/null; then | |
4142 return 0 | |
4143 else | |
4144 return 1 | |
4145 fi | |
4146 } | |
4147 | |
4148 #dnspod | |
4149 _ns_lookup_dp() { | |
4150 _cf_ld="$1" | |
4151 _cf_ld_type="$2" | |
4152 _cf_ep="https://doh.pub/dns-query" | |
4153 _ns_lookup_impl "$_cf_ep" "$_cf_ld" "$_cf_ld_type" | |
4154 } | |
4155 | |
4156 _ns_select_doh() { | |
4157 if [ -z "$DOH_USE" ]; then | |
4158 _debug "Detecting DNS server first." | |
4159 if _ns_is_available_cf; then | |
4160 _debug "Using Cloudflare doh server" | |
4161 export DOH_USE=$DOH_CLOUDFLARE | |
4162 elif _ns_is_available_google; then | |
4163 _debug "Using Google DOH server" | |
4164 export DOH_USE=$DOH_GOOGLE | |
4165 elif _ns_is_available_ali; then | |
4166 _debug "Using Aliyun DOH server" | |
4167 export DOH_USE=$DOH_ALI | |
4168 elif _ns_is_available_dp; then | |
4169 _debug "Using DNS POD DOH server" | |
4170 export DOH_USE=$DOH_DP | |
4171 else | |
4172 _err "No DOH" | |
4173 fi | |
4174 fi | |
4175 } | |
4176 | |
3891 #domain, type | 4177 #domain, type |
3892 _ns_lookup() { | 4178 _ns_lookup() { |
3893 if [ -z "$DOH_USE" ]; then | 4179 _ns_select_doh |
3894 _debug "Detect dns server first." | |
3895 if _ns_is_available_cf; then | |
3896 _debug "Use cloudflare doh server" | |
3897 export DOH_USE=$DOH_CLOUDFLARE | |
3898 else | |
3899 _debug "Use google doh server" | |
3900 export DOH_USE=$DOH_GOOGLE | |
3901 fi | |
3902 fi | |
3903 | |
3904 if [ "$DOH_USE" = "$DOH_CLOUDFLARE" ] || [ -z "$DOH_USE" ]; then | 4180 if [ "$DOH_USE" = "$DOH_CLOUDFLARE" ] || [ -z "$DOH_USE" ]; then |
3905 _ns_lookup_cf "$@" | 4181 _ns_lookup_cf "$@" |
3906 else | 4182 elif [ "$DOH_USE" = "$DOH_GOOGLE" ]; then |
3907 _ns_lookup_google "$@" | 4183 _ns_lookup_google "$@" |
4184 elif [ "$DOH_USE" = "$DOH_ALI" ]; then | |
4185 _ns_lookup_ali "$@" | |
4186 elif [ "$DOH_USE" = "$DOH_DP" ]; then | |
4187 _ns_lookup_dp "$@" | |
4188 else | |
4189 _err "Unknown DOH provider: DOH_USE=$DOH_USE" | |
3908 fi | 4190 fi |
3909 | 4191 |
3910 } | 4192 } |
3911 | 4193 |
3912 #txtdomain, alias, txt | 4194 #txtdomain, alias, txt |
3915 _c_aliasdomain="$2" | 4197 _c_aliasdomain="$2" |
3916 _c_txt="$3" | 4198 _c_txt="$3" |
3917 _debug "_c_txtdomain" "$_c_txtdomain" | 4199 _debug "_c_txtdomain" "$_c_txtdomain" |
3918 _debug "_c_aliasdomain" "$_c_aliasdomain" | 4200 _debug "_c_aliasdomain" "$_c_aliasdomain" |
3919 _debug "_c_txt" "$_c_txt" | 4201 _debug "_c_txt" "$_c_txt" |
4202 _ns_select_doh | |
3920 _answers="$(_ns_lookup "$_c_aliasdomain" TXT)" | 4203 _answers="$(_ns_lookup "$_c_aliasdomain" TXT)" |
3921 _contains "$_answers" "$_c_txt" | 4204 _contains "$_answers" "$_c_txt" |
3922 | 4205 |
3923 } | 4206 } |
3924 | 4207 |
3927 _p_txtdomain="$1" | 4210 _p_txtdomain="$1" |
3928 _debug _p_txtdomain "$_p_txtdomain" | 4211 _debug _p_txtdomain "$_p_txtdomain" |
3929 if [ "$DOH_USE" = "$DOH_CLOUDFLARE" ] || [ -z "$DOH_USE" ]; then | 4212 if [ "$DOH_USE" = "$DOH_CLOUDFLARE" ] || [ -z "$DOH_USE" ]; then |
3930 _ns_purge_cf "$_p_txtdomain" "TXT" | 4213 _ns_purge_cf "$_p_txtdomain" "TXT" |
3931 else | 4214 else |
3932 _debug "no purge api for google dns api, just sleep 5 secs" | 4215 _debug "No purge API for this DOH API, just sleeping for 5 seconds" |
3933 _sleep 5 | 4216 _sleep 5 |
3934 fi | 4217 fi |
3935 | 4218 |
3936 } | 4219 } |
3937 | 4220 |
3940 _success_txt="," | 4223 _success_txt="," |
3941 _end_time="$(_time)" | 4224 _end_time="$(_time)" |
3942 _end_time="$(_math "$_end_time" + 1200)" #let's check no more than 20 minutes. | 4225 _end_time="$(_math "$_end_time" + 1200)" #let's check no more than 20 minutes. |
3943 | 4226 |
3944 while [ "$(_time)" -le "$_end_time" ]; do | 4227 while [ "$(_time)" -le "$_end_time" ]; do |
4228 _info "You can use '--dnssleep' to disable public dns checks." | |
4229 _info "See: $_DNSCHECK_WIKI" | |
3945 _left="" | 4230 _left="" |
3946 for entry in $dns_entries; do | 4231 for entry in $dns_entries; do |
3947 d=$(_getfield "$entry" 1) | 4232 d=$(_getfield "$entry" 1) |
3948 txtdomain=$(_getfield "$entry" 2) | 4233 txtdomain=$(_getfield "$entry" 2) |
3949 txtdomain=$(_idn "$txtdomain") | 4234 txtdomain=$(_idn "$txtdomain") |
3956 _debug "aliasDomain" "$aliasDomain" | 4241 _debug "aliasDomain" "$aliasDomain" |
3957 _debug "txt" "$txt" | 4242 _debug "txt" "$txt" |
3958 _debug "d_api" "$d_api" | 4243 _debug "d_api" "$d_api" |
3959 _info "Checking $d for $aliasDomain" | 4244 _info "Checking $d for $aliasDomain" |
3960 if _contains "$_success_txt" ",$txt,"; then | 4245 if _contains "$_success_txt" ",$txt,"; then |
3961 _info "Already success, continue next one." | 4246 _info "Already succeeded, continuing." |
3962 continue | 4247 continue |
3963 fi | 4248 fi |
3964 | 4249 |
3965 if __check_txt "$txtdomain" "$aliasDomain" "$txt"; then | 4250 if __check_txt "$txtdomain" "$aliasDomain" "$txt"; then |
3966 _info "Domain $d '$aliasDomain' success." | 4251 _info "Success for domain $d '$aliasDomain'." |
3967 _success_txt="$_success_txt,$txt," | 4252 _success_txt="$_success_txt,$txt," |
3968 continue | 4253 continue |
3969 fi | 4254 fi |
3970 _left=1 | 4255 _left=1 |
3971 _info "Not valid yet, let's wait 10 seconds and check next one." | 4256 _info "Not valid yet, let's wait for 10 seconds then check the next one." |
3972 __purge_txt "$txtdomain" | 4257 __purge_txt "$txtdomain" |
3973 if [ "$txtdomain" != "$aliasDomain" ]; then | 4258 if [ "$txtdomain" != "$aliasDomain" ]; then |
3974 __purge_txt "$aliasDomain" | 4259 __purge_txt "$aliasDomain" |
3975 fi | 4260 fi |
3976 _sleep 10 | 4261 _sleep 10 |
3977 done | 4262 done |
3978 if [ "$_left" ]; then | 4263 if [ "$_left" ]; then |
3979 _info "Let's wait 10 seconds and check again". | 4264 _info "Let's wait for 10 seconds and check again". |
3980 _sleep 10 | 4265 _sleep 10 |
3981 else | 4266 else |
3982 _info "All success, let's return" | 4267 _info "All checks succeeded" |
3983 return 0 | 4268 return 0 |
3984 fi | 4269 fi |
3985 done | 4270 done |
3986 _info "Timed out waiting for DNS." | 4271 _info "Timed out waiting for DNS." |
3987 return 1 | 4272 return 1 |
3988 | 4273 |
3989 } | 4274 } |
3990 | 4275 |
3991 #file | 4276 #file |
3992 _get_cert_issuers() { | 4277 _get_chain_issuers() { |
3993 _cfile="$1" | 4278 _cfile="$1" |
3994 if _contains "$(${ACME_OPENSSL_BIN:-openssl} help crl2pkcs7 2>&1)" "Usage: crl2pkcs7"; then | 4279 if _contains "$(${ACME_OPENSSL_BIN:-openssl} help crl2pkcs7 2>&1)" "Usage: crl2pkcs7" || _contains "$(${ACME_OPENSSL_BIN:-openssl} crl2pkcs7 -help 2>&1)" "Usage: crl2pkcs7" || _contains "$(${ACME_OPENSSL_BIN:-openssl} crl2pkcs7 help 2>&1)" "unknown option help"; then |
3995 ${ACME_OPENSSL_BIN:-openssl} crl2pkcs7 -nocrl -certfile $_cfile | ${ACME_OPENSSL_BIN:-openssl} pkcs7 -print_certs -text -noout | grep 'Issuer:' | _egrep_o "CN *=[^,]*" | cut -d = -f 2 | 4280 ${ACME_OPENSSL_BIN:-openssl} crl2pkcs7 -nocrl -certfile $_cfile | ${ACME_OPENSSL_BIN:-openssl} pkcs7 -print_certs -text -noout | grep -i 'Issuer:' | _egrep_o "CN *=[^,]*" | cut -d = -f 2 |
3996 else | 4281 else |
3997 ${ACME_OPENSSL_BIN:-openssl} x509 -in $_cfile -text -noout | grep 'Issuer:' | _egrep_o "CN *=[^,]*" | cut -d = -f 2 | 4282 _cindex=1 |
4283 for _startn in $(grep -n -- "$BEGIN_CERT" "$_cfile" | cut -d : -f 1); do | |
4284 _endn="$(grep -n -- "$END_CERT" "$_cfile" | cut -d : -f 1 | _head_n $_cindex | _tail_n 1)" | |
4285 _debug2 "_startn" "$_startn" | |
4286 _debug2 "_endn" "$_endn" | |
4287 if [ "$DEBUG" ]; then | |
4288 _debug2 "cert$_cindex" "$(sed -n "$_startn,${_endn}p" "$_cfile")" | |
4289 fi | |
4290 sed -n "$_startn,${_endn}p" "$_cfile" | ${ACME_OPENSSL_BIN:-openssl} x509 -text -noout | grep 'Issuer:' | _egrep_o "CN *=[^,]*" | cut -d = -f 2 | sed "s/ *\(.*\)/\1/" | |
4291 _cindex=$(_math $_cindex + 1) | |
4292 done | |
4293 fi | |
4294 } | |
4295 | |
4296 # | |
4297 _get_chain_subjects() { | |
4298 _cfile="$1" | |
4299 if _contains "$(${ACME_OPENSSL_BIN:-openssl} help crl2pkcs7 2>&1)" "Usage: crl2pkcs7" || _contains "$(${ACME_OPENSSL_BIN:-openssl} crl2pkcs7 -help 2>&1)" "Usage: crl2pkcs7" || _contains "$(${ACME_OPENSSL_BIN:-openssl} crl2pkcs7 help 2>&1)" "unknown option help"; then | |
4300 ${ACME_OPENSSL_BIN:-openssl} crl2pkcs7 -nocrl -certfile $_cfile | ${ACME_OPENSSL_BIN:-openssl} pkcs7 -print_certs -text -noout | grep -i 'Subject:' | _egrep_o "CN *=[^,]*" | cut -d = -f 2 | |
4301 else | |
4302 _cindex=1 | |
4303 for _startn in $(grep -n -- "$BEGIN_CERT" "$_cfile" | cut -d : -f 1); do | |
4304 _endn="$(grep -n -- "$END_CERT" "$_cfile" | cut -d : -f 1 | _head_n $_cindex | _tail_n 1)" | |
4305 _debug2 "_startn" "$_startn" | |
4306 _debug2 "_endn" "$_endn" | |
4307 if [ "$DEBUG" ]; then | |
4308 _debug2 "cert$_cindex" "$(sed -n "$_startn,${_endn}p" "$_cfile")" | |
4309 fi | |
4310 sed -n "$_startn,${_endn}p" "$_cfile" | ${ACME_OPENSSL_BIN:-openssl} x509 -text -noout | grep -i 'Subject:' | _egrep_o "CN *=[^,]*" | cut -d = -f 2 | sed "s/ *\(.*\)/\1/" | |
4311 _cindex=$(_math $_cindex + 1) | |
4312 done | |
3998 fi | 4313 fi |
3999 } | 4314 } |
4000 | 4315 |
4001 #cert issuer | 4316 #cert issuer |
4002 _match_issuer() { | 4317 _match_issuer() { |
4003 _cfile="$1" | 4318 _cfile="$1" |
4004 _missuer="$2" | 4319 _missuer="$2" |
4005 _fissuers="$(_get_cert_issuers $_cfile)" | 4320 _fissuers="$(_get_chain_issuers $_cfile)" |
4006 _debug2 _fissuers "$_fissuers" | 4321 _debug2 _fissuers "$_fissuers" |
4007 if _contains "$_fissuers" "$_missuer"; then | 4322 _rootissuer="$(echo "$_fissuers" | _lower_case | _tail_n 1)" |
4008 return 0 | 4323 _debug2 _rootissuer "$_rootissuer" |
4009 fi | |
4010 _fissuers="$(echo "$_fissuers" | _lower_case)" | |
4011 _missuer="$(echo "$_missuer" | _lower_case)" | 4324 _missuer="$(echo "$_missuer" | _lower_case)" |
4012 _contains "$_fissuers" "$_missuer" | 4325 _contains "$_rootissuer" "$_missuer" |
4326 } | |
4327 | |
4328 #ip | |
4329 _isIPv4() { | |
4330 for seg in $(echo "$1" | tr '.' ' '); do | |
4331 _debug2 seg "$seg" | |
4332 if [ "$(echo "$seg" | tr -d '[0-9]')" ]; then | |
4333 #not all number | |
4334 return 1 | |
4335 fi | |
4336 if [ $seg -ge 0 ] && [ $seg -lt 256 ]; then | |
4337 continue | |
4338 fi | |
4339 return 1 | |
4340 done | |
4341 return 0 | |
4342 } | |
4343 | |
4344 #ip6 | |
4345 _isIPv6() { | |
4346 _contains "$1" ":" | |
4347 } | |
4348 | |
4349 #ip | |
4350 _isIP() { | |
4351 _isIPv4 "$1" || _isIPv6 "$1" | |
4352 } | |
4353 | |
4354 #identifier | |
4355 _getIdType() { | |
4356 if _isIP "$1"; then | |
4357 echo "$ID_TYPE_IP" | |
4358 else | |
4359 echo "$ID_TYPE_DNS" | |
4360 fi | |
4361 } | |
4362 | |
4363 # beginTime dateTo | |
4364 # beginTime is full string format("2022-04-01T08:10:33Z"), beginTime can be empty, to use current time | |
4365 # dateTo can be ether in full string format("2022-04-01T08:10:33Z") or in delta format(+5d or +20h) | |
4366 _convertValidaty() { | |
4367 _beginTime="$1" | |
4368 _dateTo="$2" | |
4369 _debug2 "_beginTime" "$_beginTime" | |
4370 _debug2 "_dateTo" "$_dateTo" | |
4371 | |
4372 if _startswith "$_dateTo" "+"; then | |
4373 _v_begin=$(_time) | |
4374 if [ "$_beginTime" ]; then | |
4375 _v_begin="$(_date2time "$_beginTime")" | |
4376 fi | |
4377 _debug2 "_v_begin" "$_v_begin" | |
4378 if _endswith "$_dateTo" "h"; then | |
4379 _v_end=$(_math "$_v_begin + 60 * 60 * $(echo "$_dateTo" | tr -d '+h')") | |
4380 elif _endswith "$_dateTo" "d"; then | |
4381 _v_end=$(_math "$_v_begin + 60 * 60 * 24 * $(echo "$_dateTo" | tr -d '+d')") | |
4382 else | |
4383 _err "Unrecognized format for _dateTo: $_dateTo" | |
4384 return 1 | |
4385 fi | |
4386 _debug2 "_v_end" "$_v_end" | |
4387 _time2str "$_v_end" | |
4388 else | |
4389 if [ "$(_time)" -gt "$(_date2time "$_dateTo")" ]; then | |
4390 _err "The validity end date is in the past: _dateTo = $_dateTo" | |
4391 return 1 | |
4392 fi | |
4393 echo "$_dateTo" | |
4394 fi | |
4013 } | 4395 } |
4014 | 4396 |
4015 #webroot, domain domainlist keylength | 4397 #webroot, domain domainlist keylength |
4016 issue() { | 4398 issue() { |
4017 if [ -z "$2" ]; then | 4399 if [ -z "$2" ]; then |
4043 _post_hook="${11}" | 4425 _post_hook="${11}" |
4044 _renew_hook="${12}" | 4426 _renew_hook="${12}" |
4045 _local_addr="${13}" | 4427 _local_addr="${13}" |
4046 _challenge_alias="${14}" | 4428 _challenge_alias="${14}" |
4047 _preferred_chain="${15}" | 4429 _preferred_chain="${15}" |
4430 _valid_from="${16}" | |
4431 _valid_to="${17}" | |
4048 | 4432 |
4049 if [ -z "$_ACME_IS_RENEW" ]; then | 4433 if [ -z "$_ACME_IS_RENEW" ]; then |
4050 _initpath "$_main_domain" "$_key_length" | 4434 _initpath "$_main_domain" "$_key_length" |
4051 mkdir -p "$DOMAIN_PATH" | 4435 mkdir -p "$DOMAIN_PATH" |
4436 elif ! _hasfield "$_web_roots" "$W_DNS"; then | |
4437 Le_OrderFinalize="" | |
4438 Le_LinkOrder="" | |
4439 Le_LinkCert="" | |
4052 fi | 4440 fi |
4053 | 4441 |
4054 if _hasfield "$_web_roots" "$W_DNS" && [ -z "$FORCE_DNS_MANUAL" ]; then | 4442 if _hasfield "$_web_roots" "$W_DNS" && [ -z "$FORCE_DNS_MANUAL" ]; then |
4055 _err "$_DNS_MANUAL_ERROR" | 4443 _err "$_DNS_MANUAL_ERROR" |
4056 return 1 | 4444 return 1 |
4057 fi | 4445 fi |
4058 | |
4059 _debug "Using ACME_DIRECTORY: $ACME_DIRECTORY" | |
4060 | |
4061 _initAPI | |
4062 | 4446 |
4063 if [ -f "$DOMAIN_CONF" ]; then | 4447 if [ -f "$DOMAIN_CONF" ]; then |
4064 Le_NextRenewTime=$(_readdomainconf Le_NextRenewTime) | 4448 Le_NextRenewTime=$(_readdomainconf Le_NextRenewTime) |
4065 _debug Le_NextRenewTime "$Le_NextRenewTime" | 4449 _debug Le_NextRenewTime "$Le_NextRenewTime" |
4066 if [ -z "$FORCE" ] && [ "$Le_NextRenewTime" ] && [ "$(_time)" -lt "$Le_NextRenewTime" ]; then | 4450 if [ -z "$FORCE" ] && [ "$Le_NextRenewTime" ] && [ "$(_time)" -lt "$Le_NextRenewTime" ]; then |
4451 _valid_to_saved=$(_readdomainconf Le_Valid_to) | |
4452 if [ "$_valid_to_saved" ] && ! _startswith "$_valid_to_saved" "+"; then | |
4453 _info "The domain is set to be valid to: $_valid_to_saved" | |
4454 _info "It cannot be renewed automatically" | |
4455 _info "See: $_VALIDITY_WIKI" | |
4456 return $RENEW_SKIP | |
4457 fi | |
4067 _saved_domain=$(_readdomainconf Le_Domain) | 4458 _saved_domain=$(_readdomainconf Le_Domain) |
4068 _debug _saved_domain "$_saved_domain" | 4459 _debug _saved_domain "$_saved_domain" |
4069 _saved_alt=$(_readdomainconf Le_Alt) | 4460 _saved_alt=$(_readdomainconf Le_Alt) |
4070 _debug _saved_alt "$_saved_alt" | 4461 _debug _saved_alt "$_saved_alt" |
4071 if [ "$_saved_domain,$_saved_alt" = "$_main_domain,$_alt_domains" ]; then | 4462 _normized_saved_domains="$(echo "$_saved_domain,$_saved_alt" | tr "," "\n" | sort | tr '\n' ',')" |
4463 _debug _normized_saved_domains "$_normized_saved_domains" | |
4464 | |
4465 _normized_domains="$(echo "$_main_domain,$_alt_domains" | tr "," "\n" | sort | tr '\n' ',')" | |
4466 _debug _normized_domains "$_normized_domains" | |
4467 | |
4468 if [ "$_normized_saved_domains" = "$_normized_domains" ]; then | |
4072 _info "Domains not changed." | 4469 _info "Domains not changed." |
4073 _info "Skip, Next renewal time is: $(__green "$(_readdomainconf Le_NextRenewTimeStr)")" | 4470 _info "Skipping. Next renewal time is: $(__green "$(_readdomainconf Le_NextRenewTimeStr)")" |
4074 _info "Add '$(__red '--force')' to force to renew." | 4471 _info "Add '$(__red '--force')' to force renewal." |
4075 return $RENEW_SKIP | 4472 return $RENEW_SKIP |
4076 else | 4473 else |
4077 _info "Domains have changed." | 4474 _info "Domains have changed." |
4078 fi | 4475 fi |
4079 fi | 4476 fi |
4080 fi | 4477 fi |
4081 | 4478 |
4479 _debug "Using ACME_DIRECTORY: $ACME_DIRECTORY" | |
4480 if ! _initAPI; then | |
4481 return 1 | |
4482 fi | |
4483 | |
4082 _savedomainconf "Le_Domain" "$_main_domain" | 4484 _savedomainconf "Le_Domain" "$_main_domain" |
4083 _savedomainconf "Le_Alt" "$_alt_domains" | 4485 _savedomainconf "Le_Alt" "$_alt_domains" |
4084 _savedomainconf "Le_Webroot" "$_web_roots" | 4486 _savedomainconf "Le_Webroot" "$_web_roots" |
4085 | 4487 |
4086 _savedomainconf "Le_PreHook" "$_pre_hook" "base64" | 4488 _savedomainconf "Le_PreHook" "$_pre_hook" "base64" |
4109 _info "Using CA: $ACME_DIRECTORY" | 4511 _info "Using CA: $ACME_DIRECTORY" |
4110 if [ "$_alt_domains" = "$NO_VALUE" ]; then | 4512 if [ "$_alt_domains" = "$NO_VALUE" ]; then |
4111 _alt_domains="" | 4513 _alt_domains="" |
4112 fi | 4514 fi |
4113 | 4515 |
4114 if [ "$_key_length" = "$NO_VALUE" ]; then | |
4115 _key_length="" | |
4116 fi | |
4117 | |
4118 if ! _on_before_issue "$_web_roots" "$_main_domain" "$_alt_domains" "$_pre_hook" "$_local_addr"; then | 4516 if ! _on_before_issue "$_web_roots" "$_main_domain" "$_alt_domains" "$_pre_hook" "$_local_addr"; then |
4119 _err "_on_before_issue." | 4517 _err "_on_before_issue." |
4518 _on_issue_err "$_post_hook" | |
4120 return 1 | 4519 return 1 |
4121 fi | 4520 fi |
4122 | 4521 |
4123 _saved_account_key_hash="$(_readcaconf "CA_KEY_HASH")" | 4522 _saved_account_key_hash="$(_readcaconf "CA_KEY_HASH")" |
4124 _debug2 _saved_account_key_hash "$_saved_account_key_hash" | 4523 _debug2 _saved_account_key_hash "$_saved_account_key_hash" |
4127 if ! _regAccount "$_accountkeylength"; then | 4526 if ! _regAccount "$_accountkeylength"; then |
4128 _on_issue_err "$_post_hook" | 4527 _on_issue_err "$_post_hook" |
4129 return 1 | 4528 return 1 |
4130 fi | 4529 fi |
4131 else | 4530 else |
4132 _debug "_saved_account_key_hash is not changed, skip register account." | 4531 _debug "_saved_account_key_hash was not changed, skipping account registration." |
4133 fi | 4532 fi |
4134 | 4533 |
4534 export Le_Next_Domain_Key="$CERT_KEY_PATH.next" | |
4135 if [ -f "$CSR_PATH" ] && [ ! -f "$CERT_KEY_PATH" ]; then | 4535 if [ -f "$CSR_PATH" ] && [ ! -f "$CERT_KEY_PATH" ]; then |
4136 _info "Signing from existing CSR." | 4536 _info "Signing from existing CSR." |
4137 else | 4537 else |
4538 # When renewing from an old version, the empty Le_Keylength means 2048. | |
4539 # Note, do not use DEFAULT_DOMAIN_KEY_LENGTH as that value may change over | |
4540 # time but an empty value implies 2048 specifically. | |
4138 _key=$(_readdomainconf Le_Keylength) | 4541 _key=$(_readdomainconf Le_Keylength) |
4139 _debug "Read key length:$_key" | 4542 if [ -z "$_key" ]; then |
4543 _key=2048 | |
4544 fi | |
4545 _debug "Read key length: $_key" | |
4140 if [ ! -f "$CERT_KEY_PATH" ] || [ "$_key_length" != "$_key" ] || [ "$Le_ForceNewDomainKey" = "1" ]; then | 4546 if [ ! -f "$CERT_KEY_PATH" ] || [ "$_key_length" != "$_key" ] || [ "$Le_ForceNewDomainKey" = "1" ]; then |
4141 if ! createDomainKey "$_main_domain" "$_key_length"; then | 4547 if [ "$Le_ForceNewDomainKey" = "1" ] && [ -f "$Le_Next_Domain_Key" ]; then |
4142 _err "Create domain key error." | 4548 _info "Using pre-generated key: $Le_Next_Domain_Key" |
4143 _clearup | 4549 cat "$Le_Next_Domain_Key" >"$CERT_KEY_PATH" |
4144 _on_issue_err "$_post_hook" | 4550 echo "" >"$Le_Next_Domain_Key" |
4145 return 1 | 4551 else |
4146 fi | 4552 if ! createDomainKey "$_main_domain" "$_key_length"; then |
4147 fi | 4553 _err "Error creating domain key." |
4148 | |
4149 if ! _createcsr "$_main_domain" "$_alt_domains" "$CERT_KEY_PATH" "$CSR_PATH" "$DOMAIN_SSL_CONF"; then | |
4150 _err "Create CSR error." | |
4151 _clearup | |
4152 _on_issue_err "$_post_hook" | |
4153 return 1 | |
4154 fi | |
4155 fi | |
4156 | |
4157 _savedomainconf "Le_Keylength" "$_key_length" | |
4158 | |
4159 vlist="$Le_Vlist" | |
4160 _cleardomainconf "Le_Vlist" | |
4161 _info "Getting domain auth token for each domain" | |
4162 sep='#' | |
4163 dvsep=',' | |
4164 if [ -z "$vlist" ]; then | |
4165 if [ "$ACME_VERSION" = "2" ]; then | |
4166 #make new order request | |
4167 _identifiers="{\"type\":\"dns\",\"value\":\"$(_idn "$_main_domain")\"}" | |
4168 _w_index=1 | |
4169 while true; do | |
4170 d="$(echo "$_alt_domains," | cut -d , -f "$_w_index")" | |
4171 _w_index="$(_math "$_w_index" + 1)" | |
4172 _debug d "$d" | |
4173 if [ -z "$d" ]; then | |
4174 break | |
4175 fi | |
4176 _identifiers="$_identifiers,{\"type\":\"dns\",\"value\":\"$(_idn "$d")\"}" | |
4177 done | |
4178 _debug2 _identifiers "$_identifiers" | |
4179 if ! _send_signed_request "$ACME_NEW_ORDER" "{\"identifiers\": [$_identifiers]}"; then | |
4180 _err "Create new order error." | |
4181 _clearup | |
4182 _on_issue_err "$_post_hook" | |
4183 return 1 | |
4184 fi | |
4185 Le_LinkOrder="$(echo "$responseHeaders" | grep -i '^Location.*$' | _tail_n 1 | tr -d "\r\n " | cut -d ":" -f 2-)" | |
4186 _debug Le_LinkOrder "$Le_LinkOrder" | |
4187 Le_OrderFinalize="$(echo "$response" | _egrep_o '"finalize" *: *"[^"]*"' | cut -d '"' -f 4)" | |
4188 _debug Le_OrderFinalize "$Le_OrderFinalize" | |
4189 if [ -z "$Le_OrderFinalize" ]; then | |
4190 _err "Create new order error. Le_OrderFinalize not found. $response" | |
4191 _clearup | |
4192 _on_issue_err "$_post_hook" | |
4193 return 1 | |
4194 fi | |
4195 | |
4196 #for dns manual mode | |
4197 _savedomainconf "Le_OrderFinalize" "$Le_OrderFinalize" | |
4198 | |
4199 _authorizations_seg="$(echo "$response" | _json_decode | _egrep_o '"authorizations" *: *\[[^\[]*\]' | cut -d '[' -f 2 | tr -d ']' | tr -d '"')" | |
4200 _debug2 _authorizations_seg "$_authorizations_seg" | |
4201 if [ -z "$_authorizations_seg" ]; then | |
4202 _err "_authorizations_seg not found." | |
4203 _clearup | |
4204 _on_issue_err "$_post_hook" | |
4205 return 1 | |
4206 fi | |
4207 | |
4208 #domain and authz map | |
4209 _authorizations_map="" | |
4210 for _authz_url in $(echo "$_authorizations_seg" | tr ',' ' '); do | |
4211 _debug2 "_authz_url" "$_authz_url" | |
4212 if ! _send_signed_request "$_authz_url"; then | |
4213 _err "get to authz error." | |
4214 _err "_authorizations_seg" "$_authorizations_seg" | |
4215 _err "_authz_url" "$_authz_url" | |
4216 _clearup | 4554 _clearup |
4217 _on_issue_err "$_post_hook" | 4555 _on_issue_err "$_post_hook" |
4218 return 1 | 4556 return 1 |
4219 fi | 4557 fi |
4220 | 4558 fi |
4221 response="$(echo "$response" | _normalizeJson)" | 4559 fi |
4222 _debug2 response "$response" | 4560 if [ "$Le_ForceNewDomainKey" ]; then |
4223 _d="$(echo "$response" | _egrep_o '"value" *: *"[^"]*"' | cut -d : -f 2 | tr -d ' "')" | 4561 _info "Generating next pre-generate key." |
4224 if _contains "$response" "\"wildcard\" *: *true"; then | 4562 if [ ! -e "$Le_Next_Domain_Key" ]; then |
4225 _d="*.$_d" | 4563 touch "$Le_Next_Domain_Key" |
4226 fi | 4564 chmod 600 "$Le_Next_Domain_Key" |
4227 _debug2 _d "$_d" | 4565 fi |
4228 _authorizations_map="$_d,$response | 4566 if ! _createkey "$_key_length" "$Le_Next_Domain_Key"; then |
4567 _err "Cannot pre-generate domain key" | |
4568 return 1 | |
4569 fi | |
4570 fi | |
4571 if ! _createcsr "$_main_domain" "$_alt_domains" "$CERT_KEY_PATH" "$CSR_PATH" "$DOMAIN_SSL_CONF"; then | |
4572 _err "Error creating CSR." | |
4573 _clearup | |
4574 _on_issue_err "$_post_hook" | |
4575 return 1 | |
4576 fi | |
4577 fi | |
4578 | |
4579 _savedomainconf "Le_Keylength" "$_key_length" | |
4580 | |
4581 vlist="$Le_Vlist" | |
4582 _cleardomainconf "Le_Vlist" | |
4583 _debug "Getting domain auth token for each domain" | |
4584 sep='#' | |
4585 dvsep=',' | |
4586 if [ -z "$vlist" ]; then | |
4587 #make new order request | |
4588 _identifiers="{\"type\":\"$(_getIdType "$_main_domain")\",\"value\":\"$(_idn "$_main_domain")\"}" | |
4589 _w_index=1 | |
4590 while true; do | |
4591 d="$(echo "$_alt_domains," | cut -d , -f "$_w_index")" | |
4592 _w_index="$(_math "$_w_index" + 1)" | |
4593 _debug d "$d" | |
4594 if [ -z "$d" ]; then | |
4595 break | |
4596 fi | |
4597 _identifiers="$_identifiers,{\"type\":\"$(_getIdType "$d")\",\"value\":\"$(_idn "$d")\"}" | |
4598 done | |
4599 _debug2 _identifiers "$_identifiers" | |
4600 _notBefore="" | |
4601 _notAfter="" | |
4602 | |
4603 if [ "$_valid_from" ]; then | |
4604 _savedomainconf "Le_Valid_From" "$_valid_from" | |
4605 _debug2 "_valid_from" "$_valid_from" | |
4606 _notBefore="$(_convertValidaty "" "$_valid_from")" | |
4607 if [ "$?" != "0" ]; then | |
4608 _err "Cannot parse _valid_from: $_valid_from" | |
4609 return 1 | |
4610 fi | |
4611 if [ "$(_time)" -gt "$(_date2time "$_notBefore")" ]; then | |
4612 _notBefore="" | |
4613 fi | |
4614 else | |
4615 _cleardomainconf "Le_Valid_From" | |
4616 fi | |
4617 _debug2 _notBefore "$_notBefore" | |
4618 | |
4619 if [ "$_valid_to" ]; then | |
4620 _debug2 "_valid_to" "$_valid_to" | |
4621 _savedomainconf "Le_Valid_To" "$_valid_to" | |
4622 _notAfter="$(_convertValidaty "$_notBefore" "$_valid_to")" | |
4623 if [ "$?" != "0" ]; then | |
4624 _err "Cannot parse _valid_to: $_valid_to" | |
4625 return 1 | |
4626 fi | |
4627 else | |
4628 _cleardomainconf "Le_Valid_To" | |
4629 fi | |
4630 _debug2 "_notAfter" "$_notAfter" | |
4631 | |
4632 _newOrderObj="{\"identifiers\": [$_identifiers]" | |
4633 if [ "$_notBefore" ]; then | |
4634 _newOrderObj="$_newOrderObj,\"notBefore\": \"$_notBefore\"" | |
4635 fi | |
4636 if [ "$_notAfter" ]; then | |
4637 _newOrderObj="$_newOrderObj,\"notAfter\": \"$_notAfter\"" | |
4638 fi | |
4639 _debug "STEP 1, Ordering a Certificate" | |
4640 if ! _send_signed_request "$ACME_NEW_ORDER" "$_newOrderObj}"; then | |
4641 _err "Error creating new order." | |
4642 _clearup | |
4643 _on_issue_err "$_post_hook" | |
4644 return 1 | |
4645 fi | |
4646 if _contains "$response" "invalid"; then | |
4647 if echo "$response" | _normalizeJson | grep '"status":"invalid"' >/dev/null 2>&1; then | |
4648 _err "Create new order with invalid status." | |
4649 _err "$response" | |
4650 _clearup | |
4651 _on_issue_err "$_post_hook" | |
4652 return 1 | |
4653 fi | |
4654 fi | |
4655 | |
4656 Le_LinkOrder="$(echo "$responseHeaders" | grep -i '^Location.*$' | _tail_n 1 | tr -d "\r\n " | cut -d ":" -f 2-)" | |
4657 _debug Le_LinkOrder "$Le_LinkOrder" | |
4658 Le_OrderFinalize="$(echo "$response" | _egrep_o '"finalize" *: *"[^"]*"' | cut -d '"' -f 4)" | |
4659 _debug Le_OrderFinalize "$Le_OrderFinalize" | |
4660 if [ -z "$Le_OrderFinalize" ]; then | |
4661 _err "Error creating new order. Le_OrderFinalize not found. $response" | |
4662 _clearup | |
4663 _on_issue_err "$_post_hook" | |
4664 return 1 | |
4665 fi | |
4666 | |
4667 #for dns manual mode | |
4668 _savedomainconf "Le_OrderFinalize" "$Le_OrderFinalize" | |
4669 | |
4670 _authorizations_seg="$(echo "$response" | _json_decode | _egrep_o '"authorizations" *: *\[[^\[]*\]' | cut -d '[' -f 2 | tr -d ']' | tr -d '"')" | |
4671 _debug2 _authorizations_seg "$_authorizations_seg" | |
4672 if [ -z "$_authorizations_seg" ]; then | |
4673 _err "_authorizations_seg not found." | |
4674 _clearup | |
4675 _on_issue_err "$_post_hook" | |
4676 return 1 | |
4677 fi | |
4678 | |
4679 _debug "STEP 2, Get the authorizations of each domain" | |
4680 #domain and authz map | |
4681 _authorizations_map="" | |
4682 for _authz_url in $(echo "$_authorizations_seg" | tr ',' ' '); do | |
4683 _debug2 "_authz_url" "$_authz_url" | |
4684 if ! _send_signed_request "$_authz_url"; then | |
4685 _err "Error getting authz." | |
4686 _err "_authorizations_seg" "$_authorizations_seg" | |
4687 _err "_authz_url" "$_authz_url" | |
4688 _err "$response" | |
4689 _clearup | |
4690 _on_issue_err "$_post_hook" | |
4691 return 1 | |
4692 fi | |
4693 | |
4694 response="$(echo "$response" | _normalizeJson)" | |
4695 _debug2 response "$response" | |
4696 if echo "$response" | grep '"status":"invalid"' >/dev/null 2>&1; then | |
4697 _err "get authz objec with invalid status, please try again later." | |
4698 _err "_authorizations_seg" "$_authorizations_seg" | |
4699 _err "$response" | |
4700 _clearup | |
4701 _on_issue_err "$_post_hook" | |
4702 return 1 | |
4703 fi | |
4704 _d="$(echo "$response" | _egrep_o '"value" *: *"[^"]*"' | cut -d : -f 2- | tr -d ' "')" | |
4705 if _contains "$response" "\"wildcard\" *: *true"; then | |
4706 _d="*.$_d" | |
4707 fi | |
4708 _debug2 _d "$_d" | |
4709 _authorizations_map="$_d,$response#$_authz_url | |
4229 $_authorizations_map" | 4710 $_authorizations_map" |
4230 done | 4711 done |
4231 _debug2 _authorizations_map "$_authorizations_map" | 4712 |
4232 fi | 4713 _debug2 _authorizations_map "$_authorizations_map" |
4233 | 4714 |
4234 _index=0 | 4715 _index=0 |
4235 _currentRoot="" | 4716 _currentRoot="" |
4236 _w_index=1 | 4717 _w_index=1 |
4237 while true; do | 4718 while true; do |
4258 | 4739 |
4259 if [ "$_currentRoot" = "$W_ALPN" ]; then | 4740 if [ "$_currentRoot" = "$W_ALPN" ]; then |
4260 vtype="$VTYPE_ALPN" | 4741 vtype="$VTYPE_ALPN" |
4261 fi | 4742 fi |
4262 | 4743 |
4263 if [ "$ACME_VERSION" = "2" ]; then | 4744 _idn_d="$(_idn "$d")" |
4264 _idn_d="$(_idn "$d")" | 4745 _candidates="$(echo "$_authorizations_map" | grep -i "^$_idn_d,")" |
4265 _candidates="$(echo "$_authorizations_map" | grep -i "^$_idn_d,")" | 4746 _debug2 _candidates "$_candidates" |
4266 _debug2 _candidates "$_candidates" | 4747 if [ "$(echo "$_candidates" | wc -l)" -gt 1 ]; then |
4267 if [ "$(echo "$_candidates" | wc -l)" -gt 1 ]; then | 4748 for _can in $_candidates; do |
4268 for _can in $_candidates; do | 4749 if _startswith "$(echo "$_can" | tr '.' '|')" "$(echo "$_idn_d" | tr '.' '|'),"; then |
4269 if _startswith "$(echo "$_can" | tr '.' '|')" "$(echo "$_idn_d" | tr '.' '|'),"; then | 4750 _candidates="$_can" |
4270 _candidates="$_can" | 4751 break |
4271 break | 4752 fi |
4272 fi | 4753 done |
4273 done | 4754 fi |
4755 response="$(echo "$_candidates" | sed "s/$_idn_d,//")" | |
4756 _debug2 "response" "$response" | |
4757 if [ -z "$response" ]; then | |
4758 _err "Error getting authz." | |
4759 _err "_authorizations_map" "$_authorizations_map" | |
4760 _clearup | |
4761 _on_issue_err "$_post_hook" | |
4762 return 1 | |
4763 fi | |
4764 _authz_url="$(echo "$_candidates" | sed "s/$_idn_d,//" | _egrep_o "#.*" | sed "s/^#//")" | |
4765 _debug _authz_url "$_authz_url" | |
4766 if [ -z "$thumbprint" ]; then | |
4767 thumbprint="$(__calc_account_thumbprint)" | |
4768 fi | |
4769 | |
4770 keyauthorization="" | |
4771 | |
4772 if echo "$response" | grep '"status":"valid"' >/dev/null 2>&1; then | |
4773 _debug "$d is already valid." | |
4774 keyauthorization="$STATE_VERIFIED" | |
4775 _debug keyauthorization "$keyauthorization" | |
4776 fi | |
4777 | |
4778 # Fix for empty error objects in response which mess up the original code, adapted from fix suggested here: https://github.com/acmesh-official/acme.sh/issues/4933#issuecomment-1870499018 | |
4779 entry="$(echo "$response" | sed s/'"error":{}'/'"error":null'/ | _egrep_o '[^\{]*"type":"'$vtype'"[^\}]*')" | |
4780 _debug entry "$entry" | |
4781 | |
4782 if [ -z "$keyauthorization" -a -z "$entry" ]; then | |
4783 _err "Cannot get domain token entry $d for $vtype" | |
4784 _supported_vtypes="$(echo "$response" | _egrep_o "\"challenges\":\[[^]]*]" | tr '{' "\n" | grep type | cut -d '"' -f 4 | tr "\n" ' ')" | |
4785 if [ "$_supported_vtypes" ]; then | |
4786 _err "Supported validation types are: $_supported_vtypes, but you specified: $vtype" | |
4274 fi | 4787 fi |
4275 response="$(echo "$_candidates" | sed "s/$_idn_d,//")" | 4788 _clearup |
4276 _debug2 "response" "$response" | 4789 _on_issue_err "$_post_hook" |
4277 if [ -z "$response" ]; then | 4790 return 1 |
4278 _err "get to authz error." | 4791 fi |
4279 _err "_authorizations_map" "$_authorizations_map" | 4792 |
4793 if [ -z "$keyauthorization" ]; then | |
4794 token="$(echo "$entry" | _egrep_o '"token":"[^"]*' | cut -d : -f 2 | tr -d '"')" | |
4795 _debug token "$token" | |
4796 | |
4797 if [ -z "$token" ]; then | |
4798 _err "Cannot get domain token $entry" | |
4280 _clearup | 4799 _clearup |
4281 _on_issue_err "$_post_hook" | 4800 _on_issue_err "$_post_hook" |
4282 return 1 | 4801 return 1 |
4283 fi | 4802 fi |
4284 else | 4803 |
4285 if ! __get_domain_new_authz "$d"; then | 4804 uri="$(echo "$entry" | _egrep_o '"url":"[^"]*' | cut -d '"' -f 4 | _head_n 1)" |
4286 _clearup | 4805 |
4287 _on_issue_err "$_post_hook" | |
4288 return 1 | |
4289 fi | |
4290 fi | |
4291 | |
4292 if [ -z "$thumbprint" ]; then | |
4293 thumbprint="$(__calc_account_thumbprint)" | |
4294 fi | |
4295 | |
4296 entry="$(echo "$response" | _egrep_o '[^\{]*"type":"'$vtype'"[^\}]*')" | |
4297 _debug entry "$entry" | |
4298 keyauthorization="" | |
4299 if [ -z "$entry" ]; then | |
4300 if ! _startswith "$d" '*.'; then | |
4301 _debug "Not a wildcard domain, lets check whether the validation is already valid." | |
4302 if echo "$response" | grep '"status":"valid"' >/dev/null 2>&1; then | |
4303 _debug "$d is already valid." | |
4304 keyauthorization="$STATE_VERIFIED" | |
4305 _debug keyauthorization "$keyauthorization" | |
4306 fi | |
4307 fi | |
4308 if [ -z "$keyauthorization" ]; then | |
4309 _err "Error, can not get domain token entry $d for $vtype" | |
4310 _supported_vtypes="$(echo "$response" | _egrep_o "\"challenges\":\[[^]]*]" | tr '{' "\n" | grep type | cut -d '"' -f 4 | tr "\n" ' ')" | |
4311 if [ "$_supported_vtypes" ]; then | |
4312 _err "The supported validation types are: $_supported_vtypes, but you specified: $vtype" | |
4313 fi | |
4314 _clearup | |
4315 _on_issue_err "$_post_hook" | |
4316 return 1 | |
4317 fi | |
4318 fi | |
4319 | |
4320 if [ -z "$keyauthorization" ]; then | |
4321 token="$(echo "$entry" | _egrep_o '"token":"[^"]*' | cut -d : -f 2 | tr -d '"')" | |
4322 _debug token "$token" | |
4323 | |
4324 if [ -z "$token" ]; then | |
4325 _err "Error, can not get domain token $entry" | |
4326 _clearup | |
4327 _on_issue_err "$_post_hook" | |
4328 return 1 | |
4329 fi | |
4330 if [ "$ACME_VERSION" = "2" ]; then | |
4331 uri="$(echo "$entry" | _egrep_o '"url":"[^"]*' | cut -d '"' -f 4 | _head_n 1)" | |
4332 else | |
4333 uri="$(echo "$entry" | _egrep_o '"uri":"[^"]*' | cut -d '"' -f 4)" | |
4334 fi | |
4335 _debug uri "$uri" | 4806 _debug uri "$uri" |
4336 | 4807 |
4337 if [ -z "$uri" ]; then | 4808 if [ -z "$uri" ]; then |
4338 _err "Error, can not get domain uri. $entry" | 4809 _err "Cannot get domain URI $entry" |
4339 _clearup | 4810 _clearup |
4340 _on_issue_err "$_post_hook" | 4811 _on_issue_err "$_post_hook" |
4341 return 1 | 4812 return 1 |
4342 fi | 4813 fi |
4343 keyauthorization="$token.$thumbprint" | 4814 keyauthorization="$token.$thumbprint" |
4344 _debug keyauthorization "$keyauthorization" | 4815 _debug keyauthorization "$keyauthorization" |
4345 | 4816 fi |
4346 if printf "%s" "$response" | grep '"status":"valid"' >/dev/null 2>&1; then | 4817 |
4347 _debug "$d is already verified." | 4818 dvlist="$d$sep$keyauthorization$sep$uri$sep$vtype$sep$_currentRoot$sep$_authz_url" |
4348 keyauthorization="$STATE_VERIFIED" | |
4349 _debug keyauthorization "$keyauthorization" | |
4350 fi | |
4351 fi | |
4352 | |
4353 dvlist="$d$sep$keyauthorization$sep$uri$sep$vtype$sep$_currentRoot" | |
4354 _debug dvlist "$dvlist" | 4819 _debug dvlist "$dvlist" |
4355 | 4820 |
4356 vlist="$vlist$dvlist$dvsep" | 4821 vlist="$vlist$dvlist$dvsep" |
4357 | 4822 |
4358 done | 4823 done |
4365 for ventry in $ventries; do | 4830 for ventry in $ventries; do |
4366 d=$(echo "$ventry" | cut -d "$sep" -f 1) | 4831 d=$(echo "$ventry" | cut -d "$sep" -f 1) |
4367 keyauthorization=$(echo "$ventry" | cut -d "$sep" -f 2) | 4832 keyauthorization=$(echo "$ventry" | cut -d "$sep" -f 2) |
4368 vtype=$(echo "$ventry" | cut -d "$sep" -f 4) | 4833 vtype=$(echo "$ventry" | cut -d "$sep" -f 4) |
4369 _currentRoot=$(echo "$ventry" | cut -d "$sep" -f 5) | 4834 _currentRoot=$(echo "$ventry" | cut -d "$sep" -f 5) |
4835 _authz_url=$(echo "$ventry" | cut -d "$sep" -f 6) | |
4370 _debug d "$d" | 4836 _debug d "$d" |
4371 if [ "$keyauthorization" = "$STATE_VERIFIED" ]; then | 4837 if [ "$keyauthorization" = "$STATE_VERIFIED" ]; then |
4372 _debug "$d is already verified, skip $vtype." | 4838 _debug "$d has already been verified, skipping $vtype." |
4373 _alias_index="$(_math "$_alias_index" + 1)" | 4839 _alias_index="$(_math "$_alias_index" + 1)" |
4374 continue | 4840 continue |
4375 fi | 4841 fi |
4376 | 4842 |
4377 if [ "$vtype" = "$VTYPE_DNS" ]; then | 4843 if [ "$vtype" = "$VTYPE_DNS" ]; then |
4379 _dns_root_d="$d" | 4845 _dns_root_d="$d" |
4380 if _startswith "$_dns_root_d" "*."; then | 4846 if _startswith "$_dns_root_d" "*."; then |
4381 _dns_root_d="$(echo "$_dns_root_d" | sed 's/*.//')" | 4847 _dns_root_d="$(echo "$_dns_root_d" | sed 's/*.//')" |
4382 fi | 4848 fi |
4383 _d_alias="$(_getfield "$_challenge_alias" "$_alias_index")" | 4849 _d_alias="$(_getfield "$_challenge_alias" "$_alias_index")" |
4850 test "$_d_alias" = "$NO_VALUE" && _d_alias="" | |
4384 _alias_index="$(_math "$_alias_index" + 1)" | 4851 _alias_index="$(_math "$_alias_index" + 1)" |
4385 _debug "_d_alias" "$_d_alias" | 4852 _debug "_d_alias" "$_d_alias" |
4386 if [ "$_d_alias" ]; then | 4853 if [ "$_d_alias" ]; then |
4387 if _startswith "$_d_alias" "$DNS_ALIAS_PREFIX"; then | 4854 if _startswith "$_d_alias" "$DNS_ALIAS_PREFIX"; then |
4388 txtdomain="$(echo "$_d_alias" | sed "s/$DNS_ALIAS_PREFIX//")" | 4855 txtdomain="$(echo "$_d_alias" | sed "s/$DNS_ALIAS_PREFIX//")" |
4403 _debug d_api "$d_api" | 4870 _debug d_api "$d_api" |
4404 | 4871 |
4405 dns_entry="$dns_entry$dvsep$txt${dvsep}$d_api" | 4872 dns_entry="$dns_entry$dvsep$txt${dvsep}$d_api" |
4406 _debug2 dns_entry "$dns_entry" | 4873 _debug2 dns_entry "$dns_entry" |
4407 if [ "$d_api" ]; then | 4874 if [ "$d_api" ]; then |
4408 _debug "Found domain api file: $d_api" | 4875 _debug "Found domain API file: $d_api" |
4409 else | 4876 else |
4410 if [ "$_currentRoot" != "$W_DNS" ]; then | 4877 if [ "$_currentRoot" != "$W_DNS" ]; then |
4411 _err "Can not find dns api hook for: $_currentRoot" | 4878 _err "Cannot find DNS API hook for: $_currentRoot" |
4412 _info "You need to add the txt record manually." | 4879 _info "You need to add the TXT record manually." |
4413 fi | 4880 fi |
4414 _info "$(__red "Add the following TXT record:")" | 4881 _info "$(__red "Add the following TXT record:")" |
4415 _info "$(__red "Domain: '$(__green "$txtdomain")'")" | 4882 _info "$(__red "Domain: '$(__green "$txtdomain")'")" |
4416 _info "$(__red "TXT value: '$(__green "$txt")'")" | 4883 _info "$(__red "TXT value: '$(__green "$txt")'")" |
4417 _info "$(__red "Please be aware that you prepend _acme-challenge. before your domain")" | 4884 _info "$(__red "Please make sure to prepend '_acme-challenge.' to your domain")" |
4418 _info "$(__red "so the resulting subdomain will be: $txtdomain")" | 4885 _info "$(__red "so that the resulting subdomain is: $txtdomain")" |
4419 continue | 4886 continue |
4420 fi | 4887 fi |
4421 | 4888 |
4422 ( | 4889 ( |
4423 if ! . "$d_api"; then | 4890 if ! . "$d_api"; then |
4424 _err "Load file $d_api error. Please check your api file and try again." | 4891 _err "Error loading file $d_api. Please check your API file and try again." |
4425 return 1 | 4892 return 1 |
4426 fi | 4893 fi |
4427 | 4894 |
4428 addcommand="${_currentRoot}_add" | 4895 addcommand="${_currentRoot}_add" |
4429 if ! _exists "$addcommand"; then | 4896 if ! _exists "$addcommand"; then |
4430 _err "It seems that your api file is not correct, it must have a function named: $addcommand" | 4897 _err "It seems that your API file is incorrect. Make sure it has a function named: $addcommand" |
4431 return 1 | 4898 return 1 |
4432 fi | 4899 fi |
4433 _info "Adding txt value: $txt for domain: $txtdomain" | 4900 _info "Adding TXT value: $txt for domain: $txtdomain" |
4434 if ! $addcommand "$txtdomain" "$txt"; then | 4901 if ! $addcommand "$txtdomain" "$txt"; then |
4435 _err "Error add txt for domain:$txtdomain" | 4902 _err "Error adding TXT record to domain: $txtdomain" |
4436 return 1 | 4903 return 1 |
4437 fi | 4904 fi |
4438 _info "The txt record is added: Success." | 4905 _info "The TXT record has been successfully added." |
4439 ) | 4906 ) |
4440 | 4907 |
4441 if [ "$?" != "0" ]; then | 4908 if [ "$?" != "0" ]; then |
4442 _on_issue_err "$_post_hook" "$vlist" | 4909 _on_issue_err "$_post_hook" "$vlist" |
4443 _clearup | 4910 _clearup |
4450 fi | 4917 fi |
4451 done | 4918 done |
4452 | 4919 |
4453 if [ "$dnsadded" = '0' ]; then | 4920 if [ "$dnsadded" = '0' ]; then |
4454 _savedomainconf "Le_Vlist" "$vlist" | 4921 _savedomainconf "Le_Vlist" "$vlist" |
4455 _debug "Dns record not added yet, so, save to $DOMAIN_CONF and exit." | 4922 _debug "DNS record not yet added. Will save to $DOMAIN_CONF and exit." |
4456 _err "Please add the TXT records to the domains, and re-run with --renew." | 4923 _err "Please add the TXT records to the domains, and re-run with --renew." |
4457 _on_issue_err "$_post_hook" | 4924 _on_issue_err "$_post_hook" |
4458 _clearup | 4925 _clearup |
4459 return 1 | 4926 # If asked to be in manual DNS mode, flag this exit with a separate |
4927 # error so it can be distinguished from other failures. | |
4928 return $CODE_DNS_MANUAL | |
4460 fi | 4929 fi |
4461 | 4930 |
4462 fi | 4931 fi |
4463 | 4932 |
4464 if [ "$dns_entries" ]; then | 4933 if [ "$dns_entries" ]; then |
4465 if [ -z "$Le_DNSSleep" ]; then | 4934 if [ -z "$Le_DNSSleep" ]; then |
4466 _info "Let's check each DNS record now. Sleep 20 seconds first." | 4935 _info "Let's check each DNS record now. Sleeping for 20 seconds first." |
4467 _sleep 20 | 4936 _sleep 20 |
4468 if ! _check_dns_entries; then | 4937 if ! _check_dns_entries; then |
4469 _err "check dns error." | 4938 _err "Error checking DNS." |
4470 _on_issue_err "$_post_hook" | 4939 _on_issue_err "$_post_hook" |
4471 _clearup | 4940 _clearup |
4472 return 1 | 4941 return 1 |
4473 fi | 4942 fi |
4474 else | 4943 else |
4475 _savedomainconf "Le_DNSSleep" "$Le_DNSSleep" | 4944 _savedomainconf "Le_DNSSleep" "$Le_DNSSleep" |
4476 _info "Sleep $(__green $Le_DNSSleep) seconds for the txt records to take effect" | 4945 _info "Sleeping for $(__green $Le_DNSSleep) seconds to wait for the the TXT records to take effect" |
4477 _sleep "$Le_DNSSleep" | 4946 _sleep "$Le_DNSSleep" |
4478 fi | 4947 fi |
4479 fi | 4948 fi |
4480 | 4949 |
4481 NGINX_RESTORE_VLIST="" | 4950 NGINX_RESTORE_VLIST="" |
4482 _debug "ok, let's start to verify" | 4951 _debug "OK, let's start verification" |
4483 | 4952 |
4484 _ncIndex=1 | 4953 _ncIndex=1 |
4485 ventries=$(echo "$vlist" | tr "$dvsep" ' ') | 4954 ventries=$(echo "$vlist" | tr "$dvsep" ' ') |
4486 for ventry in $ventries; do | 4955 for ventry in $ventries; do |
4487 d=$(echo "$ventry" | cut -d "$sep" -f 1) | 4956 d=$(echo "$ventry" | cut -d "$sep" -f 1) |
4488 keyauthorization=$(echo "$ventry" | cut -d "$sep" -f 2) | 4957 keyauthorization=$(echo "$ventry" | cut -d "$sep" -f 2) |
4489 uri=$(echo "$ventry" | cut -d "$sep" -f 3) | 4958 uri=$(echo "$ventry" | cut -d "$sep" -f 3) |
4490 vtype=$(echo "$ventry" | cut -d "$sep" -f 4) | 4959 vtype=$(echo "$ventry" | cut -d "$sep" -f 4) |
4491 _currentRoot=$(echo "$ventry" | cut -d "$sep" -f 5) | 4960 _currentRoot=$(echo "$ventry" | cut -d "$sep" -f 5) |
4492 | 4961 _authz_url=$(echo "$ventry" | cut -d "$sep" -f 6) |
4493 if [ "$keyauthorization" = "$STATE_VERIFIED" ]; then | 4962 if [ "$keyauthorization" = "$STATE_VERIFIED" ]; then |
4494 _info "$d is already verified, skip $vtype." | 4963 _info "$d is already verified, skipping $vtype." |
4495 continue | 4964 continue |
4496 fi | 4965 fi |
4497 | 4966 |
4498 _info "Verifying: $d" | 4967 _info "Verifying: $d" |
4499 _debug "d" "$d" | 4968 _debug "d" "$d" |
4500 _debug "keyauthorization" "$keyauthorization" | 4969 _debug "keyauthorization" "$keyauthorization" |
4501 _debug "uri" "$uri" | 4970 _debug "uri" "$uri" |
4971 _debug "_authz_url" "$_authz_url" | |
4502 removelevel="" | 4972 removelevel="" |
4503 token="$(printf "%s" "$keyauthorization" | cut -d '.' -f 1)" | 4973 token="$(printf "%s" "$keyauthorization" | cut -d '.' -f 1)" |
4504 | 4974 |
4505 _debug "_currentRoot" "$_currentRoot" | 4975 _debug "_currentRoot" "$_currentRoot" |
4506 | 4976 |
4516 return 1 | 4986 return 1 |
4517 fi | 4987 fi |
4518 sleep 1 | 4988 sleep 1 |
4519 _debug serverproc "$serverproc" | 4989 _debug serverproc "$serverproc" |
4520 elif [ "$_currentRoot" = "$MODE_STATELESS" ]; then | 4990 elif [ "$_currentRoot" = "$MODE_STATELESS" ]; then |
4521 _info "Stateless mode for domain:$d" | 4991 _info "Stateless mode for domain: $d" |
4522 _sleep 1 | 4992 _sleep 1 |
4523 elif _startswith "$_currentRoot" "$NGINX"; then | 4993 elif _startswith "$_currentRoot" "$NGINX"; then |
4524 _info "Nginx mode for domain:$d" | 4994 _info "Nginx mode for domain: $d" |
4525 #set up nginx server | 4995 #set up nginx server |
4526 FOUND_REAL_NGINX_CONF="" | 4996 FOUND_REAL_NGINX_CONF="" |
4527 BACKUP_NGINX_CONF="" | 4997 BACKUP_NGINX_CONF="" |
4528 if ! _setNginx "$d" "$_currentRoot" "$thumbprint"; then | 4998 if ! _setNginx "$d" "$_currentRoot" "$thumbprint"; then |
4529 _clearup | 4999 _clearup |
4552 fi | 5022 fi |
4553 fi | 5023 fi |
4554 | 5024 |
4555 _debug wellknown_path "$wellknown_path" | 5025 _debug wellknown_path "$wellknown_path" |
4556 | 5026 |
4557 _debug "writing token:$token to $wellknown_path/$token" | 5027 _debug "Writing token: $token to $wellknown_path/$token" |
4558 | 5028 |
4559 mkdir -p "$wellknown_path" | 5029 # Ensure .well-known is visible to web server user/group |
4560 | 5030 # https://github.com/Neilpang/acme.sh/pull/32 |
4561 if ! printf "%s" "$keyauthorization" >"$wellknown_path/$token"; then | 5031 if ! (umask ugo+rx && |
4562 _err "$d:Can not write token to file : $wellknown_path/$token" | 5032 mkdir -p "$wellknown_path" && |
5033 printf "%s" "$keyauthorization" >"$wellknown_path/$token"); then | |
5034 _err "$d: Cannot write token to file: $wellknown_path/$token" | |
4563 _clearupwebbroot "$_currentRoot" "$removelevel" "$token" | 5035 _clearupwebbroot "$_currentRoot" "$removelevel" "$token" |
4564 _clearup | 5036 _clearup |
4565 _on_issue_err "$_post_hook" "$vlist" | 5037 _on_issue_err "$_post_hook" "$vlist" |
4566 return 1 | 5038 return 1 |
4567 fi | 5039 fi |
4568 | 5040 if ! chmod a+r "$wellknown_path/$token"; then |
4569 if [ ! "$usingApache" ]; then | 5041 _debug "chmod failed, will just continue." |
4570 if webroot_owner=$(_stat "$_currentRoot"); then | |
4571 _debug "Changing owner/group of .well-known to $webroot_owner" | |
4572 if ! _exec "chown -R \"$webroot_owner\" \"$_currentRoot/.well-known\""; then | |
4573 _debug "$(cat "$_EXEC_TEMP_ERR")" | |
4574 _exec_err >/dev/null 2>&1 | |
4575 fi | |
4576 else | |
4577 _debug "not changing owner/group of webroot" | |
4578 fi | |
4579 fi | 5042 fi |
4580 | |
4581 fi | 5043 fi |
4582 elif [ "$vtype" = "$VTYPE_ALPN" ]; then | 5044 elif [ "$vtype" = "$VTYPE_ALPN" ]; then |
4583 acmevalidationv1="$(printf "%s" "$keyauthorization" | _digest "sha256" "hex")" | 5045 acmevalidationv1="$(printf "%s" "$keyauthorization" | _digest "sha256" "hex")" |
4584 _debug acmevalidationv1 "$acmevalidationv1" | 5046 _debug acmevalidationv1 "$acmevalidationv1" |
4585 if ! _starttlsserver "$d" "" "$Le_TLSPort" "$keyauthorization" "$_ncaddr" "$acmevalidationv1"; then | 5047 if ! _starttlsserver "$d" "" "$Le_TLSPort" "$keyauthorization" "$_ncaddr" "$acmevalidationv1"; then |
4586 _err "Start tls server error." | 5048 _err "Error starting TLS server." |
4587 _clearupwebbroot "$_currentRoot" "$removelevel" "$token" | 5049 _clearupwebbroot "$_currentRoot" "$removelevel" "$token" |
4588 _clearup | 5050 _clearup |
4589 _on_issue_err "$_post_hook" "$vlist" | 5051 _on_issue_err "$_post_hook" "$vlist" |
4590 return 1 | 5052 return 1 |
4591 fi | 5053 fi |
4592 fi | 5054 fi |
4593 | 5055 |
4594 if ! __trigger_validation "$uri" "$keyauthorization" "$vtype"; then | 5056 if ! __trigger_validation "$uri" "$keyauthorization" "$vtype"; then |
4595 _err "$d:Can not get challenge: $response" | 5057 _err "$d: Cannot get challenge: $response" |
4596 _clearupwebbroot "$_currentRoot" "$removelevel" "$token" | 5058 _clearupwebbroot "$_currentRoot" "$removelevel" "$token" |
4597 _clearup | 5059 _clearup |
4598 _on_issue_err "$_post_hook" "$vlist" | 5060 _on_issue_err "$_post_hook" "$vlist" |
4599 return 1 | 5061 return 1 |
4600 fi | 5062 fi |
4601 | 5063 |
4602 if [ "$code" ] && [ "$code" != '202' ]; then | 5064 if [ "$code" ] && [ "$code" != '202' ]; then |
4603 if [ "$code" = '200' ]; then | 5065 if [ "$code" = '200' ]; then |
4604 _debug "trigger validation code: $code" | 5066 _debug "Trigger validation code: $code" |
4605 else | 5067 else |
4606 _err "$d:Challenge error: $response" | 5068 _err "$d: Challenge error: $response" |
4607 _clearupwebbroot "$_currentRoot" "$removelevel" "$token" | 5069 _clearupwebbroot "$_currentRoot" "$removelevel" "$token" |
4608 _clearup | 5070 _clearup |
4609 _on_issue_err "$_post_hook" "$vlist" | 5071 _on_issue_err "$_post_hook" "$vlist" |
4610 return 1 | 5072 return 1 |
4611 fi | 5073 fi |
4614 waittimes=0 | 5076 waittimes=0 |
4615 if [ -z "$MAX_RETRY_TIMES" ]; then | 5077 if [ -z "$MAX_RETRY_TIMES" ]; then |
4616 MAX_RETRY_TIMES=30 | 5078 MAX_RETRY_TIMES=30 |
4617 fi | 5079 fi |
4618 | 5080 |
5081 _debug "Let's check the authz status" | |
4619 while true; do | 5082 while true; do |
4620 waittimes=$(_math "$waittimes" + 1) | 5083 waittimes=$(_math "$waittimes" + 1) |
4621 if [ "$waittimes" -ge "$MAX_RETRY_TIMES" ]; then | 5084 if [ "$waittimes" -ge "$MAX_RETRY_TIMES" ]; then |
4622 _err "$d:Timeout" | 5085 _err "$d: Timeout" |
4623 _clearupwebbroot "$_currentRoot" "$removelevel" "$token" | 5086 _clearupwebbroot "$_currentRoot" "$removelevel" "$token" |
4624 _clearup | 5087 _clearup |
4625 _on_issue_err "$_post_hook" "$vlist" | 5088 _on_issue_err "$_post_hook" "$vlist" |
4626 return 1 | 5089 return 1 |
4627 fi | 5090 fi |
4628 | 5091 |
4629 _debug "sleep 2 secs to verify" | |
4630 sleep 2 | |
4631 _debug "checking" | |
4632 if [ "$ACME_VERSION" = "2" ]; then | |
4633 _send_signed_request "$uri" | |
4634 else | |
4635 response="$(_get "$uri")" | |
4636 fi | |
4637 if [ "$?" != "0" ]; then | |
4638 _err "$d:Verify error:$response" | |
4639 _clearupwebbroot "$_currentRoot" "$removelevel" "$token" | |
4640 _clearup | |
4641 _on_issue_err "$_post_hook" "$vlist" | |
4642 return 1 | |
4643 fi | |
4644 _debug2 original "$response" | 5092 _debug2 original "$response" |
4645 | 5093 |
4646 response="$(echo "$response" | _normalizeJson)" | 5094 response="$(echo "$response" | _normalizeJson)" |
4647 _debug2 response "$response" | 5095 _debug2 response "$response" |
4648 | 5096 |
4649 status=$(echo "$response" | _egrep_o '"status":"[^"]*' | cut -d : -f 2 | tr -d '"') | 5097 status=$(echo "$response" | _egrep_o '"status":"[^"]*' | cut -d : -f 2 | tr -d '"') |
4650 if [ "$status" = "valid" ]; then | 5098 _debug2 status "$status" |
4651 _info "$(__green Success)" | 5099 if _contains "$status" "invalid"; then |
4652 _stopserver "$serverproc" | |
4653 serverproc="" | |
4654 _clearupwebbroot "$_currentRoot" "$removelevel" "$token" | |
4655 break | |
4656 fi | |
4657 | |
4658 if [ "$status" = "invalid" ]; then | |
4659 error="$(echo "$response" | _egrep_o '"error":\{[^\}]*')" | 5100 error="$(echo "$response" | _egrep_o '"error":\{[^\}]*')" |
4660 _debug2 error "$error" | 5101 _debug2 error "$error" |
4661 errordetail="$(echo "$error" | _egrep_o '"detail": *"[^"]*' | cut -d '"' -f 4)" | 5102 errordetail="$(echo "$error" | _egrep_o '"detail": *"[^"]*' | cut -d '"' -f 4)" |
4662 _debug2 errordetail "$errordetail" | 5103 _debug2 errordetail "$errordetail" |
4663 if [ "$errordetail" ]; then | 5104 if [ "$errordetail" ]; then |
4664 _err "$d:Verify error:$errordetail" | 5105 _err "$d: Invalid status. Verification error details: $errordetail" |
4665 else | 5106 else |
4666 _err "$d:Verify error:$error" | 5107 _err "$d: Invalid status, Verification error: $error" |
4667 fi | 5108 fi |
4668 if [ "$DEBUG" ]; then | 5109 if [ "$DEBUG" ]; then |
4669 if [ "$vtype" = "$VTYPE_HTTP" ]; then | 5110 if [ "$vtype" = "$VTYPE_HTTP" ]; then |
4670 _debug "Debug: get token url." | 5111 _debug "Debug: GET token URL." |
4671 _get "http://$d/.well-known/acme-challenge/$token" "" 1 | 5112 _get "http://$d/.well-known/acme-challenge/$token" "" 1 |
4672 fi | 5113 fi |
4673 fi | 5114 fi |
4674 _clearupwebbroot "$_currentRoot" "$removelevel" "$token" | 5115 _clearupwebbroot "$_currentRoot" "$removelevel" "$token" |
4675 _clearup | 5116 _clearup |
4676 _on_issue_err "$_post_hook" "$vlist" | 5117 _on_issue_err "$_post_hook" "$vlist" |
4677 return 1 | 5118 return 1 |
4678 fi | 5119 fi |
4679 | 5120 |
4680 if [ "$status" = "pending" ]; then | 5121 if _contains "$status" "valid"; then |
4681 _info "Pending" | 5122 _info "$(__green Success)" |
4682 elif [ "$status" = "processing" ]; then | 5123 _stopserver "$serverproc" |
4683 _info "Processing" | 5124 serverproc="" |
5125 _clearupwebbroot "$_currentRoot" "$removelevel" "$token" | |
5126 break | |
5127 fi | |
5128 | |
5129 if _contains "$status" "pending"; then | |
5130 _info "Pending. The CA is processing your order, please wait. ($waittimes/$MAX_RETRY_TIMES)" | |
5131 elif _contains "$status" "processing"; then | |
5132 _info "Processing. The CA is processing your order, please wait. ($waittimes/$MAX_RETRY_TIMES)" | |
4684 else | 5133 else |
4685 _err "$d:Verify error:$response" | 5134 _err "$d: Unknown status: $status. Verification error: $response" |
4686 _clearupwebbroot "$_currentRoot" "$removelevel" "$token" | 5135 _clearupwebbroot "$_currentRoot" "$removelevel" "$token" |
4687 _clearup | 5136 _clearup |
4688 _on_issue_err "$_post_hook" "$vlist" | 5137 _on_issue_err "$_post_hook" "$vlist" |
4689 return 1 | 5138 return 1 |
4690 fi | 5139 fi |
4691 | 5140 _debug "Sleep 2 seconds before verifying again" |
5141 _sleep 2 | |
5142 _debug "Checking" | |
5143 | |
5144 _send_signed_request "$_authz_url" | |
5145 | |
5146 if [ "$?" != "0" ]; then | |
5147 _err "$d: Invalid code. Verification error: $response" | |
5148 _clearupwebbroot "$_currentRoot" "$removelevel" "$token" | |
5149 _clearup | |
5150 _on_issue_err "$_post_hook" "$vlist" | |
5151 return 1 | |
5152 fi | |
5153 _retryafter=$(echo "$responseHeaders" | grep -i "^Retry-After *: *[0-9]\+ *" | cut -d : -f 2 | tr -d ' ' | tr -d '\r') | |
5154 _sleep_overload_retry_sec=$_retryafter | |
5155 if [ "$_sleep_overload_retry_sec" ]; then | |
5156 if [ $_sleep_overload_retry_sec -le 600 ]; then | |
5157 _sleep $_sleep_overload_retry_sec | |
5158 else | |
5159 _info "The retryafter=$_retryafter value is too large (> 600), will not retry anymore." | |
5160 _clearupwebbroot "$_currentRoot" "$removelevel" "$token" | |
5161 _clearup | |
5162 _on_issue_err "$_post_hook" "$vlist" | |
5163 return 1 | |
5164 fi | |
5165 fi | |
4692 done | 5166 done |
4693 | 5167 |
4694 done | 5168 done |
4695 | 5169 |
4696 _clearup | 5170 _clearup |
4697 _info "Verify finished, start to sign." | 5171 _info "Verification finished, beginning signing." |
4698 der="$(_getfile "${CSR_PATH}" "${BEGIN_CSR}" "${END_CSR}" | tr -d "\r\n" | _url_replace)" | 5172 der="$(_getfile "${CSR_PATH}" "${BEGIN_CSR}" "${END_CSR}" | tr -d "\r\n" | _url_replace)" |
4699 | 5173 |
4700 if [ "$ACME_VERSION" = "2" ]; then | 5174 _info "Let's finalize the order." |
4701 _info "Lets finalize the order." | 5175 _info "Le_OrderFinalize" "$Le_OrderFinalize" |
4702 _info "Le_OrderFinalize" "$Le_OrderFinalize" | 5176 if ! _send_signed_request "${Le_OrderFinalize}" "{\"csr\": \"$der\"}"; then |
4703 if ! _send_signed_request "${Le_OrderFinalize}" "{\"csr\": \"$der\"}"; then | 5177 _err "Signing failed." |
4704 _err "Sign failed." | 5178 _on_issue_err "$_post_hook" |
4705 _on_issue_err "$_post_hook" | 5179 return 1 |
4706 return 1 | 5180 fi |
4707 fi | 5181 if [ "$code" != "200" ]; then |
4708 if [ "$code" != "200" ]; then | 5182 _err "Signing failed. Finalize code was not 200." |
4709 _err "Sign failed, finalize code is not 200." | 5183 _err "$response" |
5184 _on_issue_err "$_post_hook" | |
5185 return 1 | |
5186 fi | |
5187 if [ -z "$Le_LinkOrder" ]; then | |
5188 Le_LinkOrder="$(echo "$responseHeaders" | grep -i '^Location.*$' | _tail_n 1 | tr -d "\r\n \t" | cut -d ":" -f 2-)" | |
5189 fi | |
5190 | |
5191 _savedomainconf "Le_LinkOrder" "$Le_LinkOrder" | |
5192 | |
5193 _link_cert_retry=0 | |
5194 _MAX_CERT_RETRY=30 | |
5195 while [ "$_link_cert_retry" -lt "$_MAX_CERT_RETRY" ]; do | |
5196 if _contains "$response" "\"status\":\"valid\""; then | |
5197 _debug "Order status is valid." | |
5198 Le_LinkCert="$(echo "$response" | _egrep_o '"certificate" *: *"[^"]*"' | cut -d '"' -f 4)" | |
5199 _debug Le_LinkCert "$Le_LinkCert" | |
5200 if [ -z "$Le_LinkCert" ]; then | |
5201 _err "A signing error occurred: could not find Le_LinkCert" | |
5202 _err "$response" | |
5203 _on_issue_err "$_post_hook" | |
5204 return 1 | |
5205 fi | |
5206 break | |
5207 elif _contains "$response" "\"processing\""; then | |
5208 _info "Order status is 'processing', let's sleep and retry." | |
5209 _retryafter=$(echo "$responseHeaders" | grep -i "^Retry-After *:" | cut -d : -f 2 | tr -d ' ' | tr -d '\r') | |
5210 _debug "_retryafter" "$_retryafter" | |
5211 if [ "$_retryafter" ]; then | |
5212 _info "Sleeping for $_retryafter seconds then retrying" | |
5213 _sleep $_retryafter | |
5214 else | |
5215 _sleep 2 | |
5216 fi | |
5217 else | |
5218 _err "Signing error: wrong status" | |
4710 _err "$response" | 5219 _err "$response" |
4711 _on_issue_err "$_post_hook" | 5220 _on_issue_err "$_post_hook" |
4712 return 1 | 5221 return 1 |
4713 fi | 5222 fi |
5223 #the order is processing, so we are going to poll order status | |
4714 if [ -z "$Le_LinkOrder" ]; then | 5224 if [ -z "$Le_LinkOrder" ]; then |
4715 Le_LinkOrder="$(echo "$responseHeaders" | grep -i '^Location.*$' | _tail_n 1 | tr -d "\r\n \t" | cut -d ":" -f 2-)" | 5225 _err "Signing error: could not get order link location header" |
4716 fi | 5226 _err "responseHeaders" "$responseHeaders" |
4717 | 5227 _on_issue_err "$_post_hook" |
4718 _savedomainconf "Le_LinkOrder" "$Le_LinkOrder" | 5228 return 1 |
4719 | 5229 fi |
4720 _link_cert_retry=0 | 5230 _info "Polling order status: $Le_LinkOrder" |
4721 _MAX_CERT_RETRY=30 | 5231 if ! _send_signed_request "$Le_LinkOrder"; then |
4722 while [ "$_link_cert_retry" -lt "$_MAX_CERT_RETRY" ]; do | 5232 _err "Signing failed. Could not make POST request to Le_LinkOrder for cert: $Le_LinkOrder." |
4723 if _contains "$response" "\"status\":\"valid\""; then | |
4724 _debug "Order status is valid." | |
4725 Le_LinkCert="$(echo "$response" | _egrep_o '"certificate" *: *"[^"]*"' | cut -d '"' -f 4)" | |
4726 _debug Le_LinkCert "$Le_LinkCert" | |
4727 if [ -z "$Le_LinkCert" ]; then | |
4728 _err "Sign error, can not find Le_LinkCert" | |
4729 _err "$response" | |
4730 _on_issue_err "$_post_hook" | |
4731 return 1 | |
4732 fi | |
4733 break | |
4734 elif _contains "$response" "\"processing\""; then | |
4735 _info "Order status is processing, lets sleep and retry." | |
4736 _retryafter=$(echo "$responseHeaders" | grep -i "^Retry-After *:" | cut -d : -f 2 | tr -d ' ' | tr -d '\r') | |
4737 _debug "_retryafter" "$_retryafter" | |
4738 if [ "$_retryafter" ]; then | |
4739 _info "Retry after: $_retryafter" | |
4740 _sleep $_retryafter | |
4741 else | |
4742 _sleep 2 | |
4743 fi | |
4744 else | |
4745 _err "Sign error, wrong status" | |
4746 _err "$response" | |
4747 _on_issue_err "$_post_hook" | |
4748 return 1 | |
4749 fi | |
4750 #the order is processing, so we are going to poll order status | |
4751 if [ -z "$Le_LinkOrder" ]; then | |
4752 _err "Sign error, can not get order link location header" | |
4753 _err "responseHeaders" "$responseHeaders" | |
4754 _on_issue_err "$_post_hook" | |
4755 return 1 | |
4756 fi | |
4757 _info "Polling order status: $Le_LinkOrder" | |
4758 if ! _send_signed_request "$Le_LinkOrder"; then | |
4759 _err "Sign failed, can not post to Le_LinkOrder cert:$Le_LinkOrder." | |
4760 _err "$response" | |
4761 _on_issue_err "$_post_hook" | |
4762 return 1 | |
4763 fi | |
4764 _link_cert_retry="$(_math $_link_cert_retry + 1)" | |
4765 done | |
4766 | |
4767 if [ -z "$Le_LinkCert" ]; then | |
4768 _err "Sign failed, can not get Le_LinkCert, retry time limit." | |
4769 _err "$response" | 5233 _err "$response" |
4770 _on_issue_err "$_post_hook" | 5234 _on_issue_err "$_post_hook" |
4771 return 1 | 5235 return 1 |
4772 fi | 5236 fi |
4773 _info "Downloading cert." | 5237 _link_cert_retry="$(_math $_link_cert_retry + 1)" |
4774 _info "Le_LinkCert" "$Le_LinkCert" | 5238 done |
4775 if ! _send_signed_request "$Le_LinkCert"; then | 5239 |
4776 _err "Sign failed, can not download cert:$Le_LinkCert." | 5240 if [ -z "$Le_LinkCert" ]; then |
4777 _err "$response" | 5241 _err "Signing failed. Could not get Le_LinkCert, and stopped retrying after reaching the retry limit." |
4778 _on_issue_err "$_post_hook" | 5242 _err "$response" |
4779 return 1 | 5243 _on_issue_err "$_post_hook" |
4780 fi | 5244 return 1 |
4781 | 5245 fi |
4782 echo "$response" >"$CERT_PATH" | 5246 _info "Downloading cert." |
4783 _split_cert_chain "$CERT_PATH" "$CERT_FULLCHAIN_PATH" "$CA_CERT_PATH" | 5247 _info "Le_LinkCert" "$Le_LinkCert" |
4784 | 5248 if ! _send_signed_request "$Le_LinkCert"; then |
4785 if [ "$_preferred_chain" ] && [ -f "$CERT_FULLCHAIN_PATH" ]; then | 5249 _err "Signing failed. Could not download cert: $Le_LinkCert." |
4786 if ! _match_issuer "$CERT_FULLCHAIN_PATH" "$_preferred_chain"; then | 5250 _err "$response" |
4787 rels="$(echo "$responseHeaders" | tr -d ' <>' | grep -i "^link:" | grep -i 'rel="alternate"' | cut -d : -f 2- | cut -d ';' -f 1)" | 5251 _on_issue_err "$_post_hook" |
4788 _debug2 "rels" "$rels" | 5252 return 1 |
4789 for rel in $rels; do | 5253 fi |
4790 _info "Try rel: $rel" | 5254 |
4791 if ! _send_signed_request "$rel"; then | 5255 echo "$response" >"$CERT_PATH" |
4792 _err "Sign failed, can not download cert:$rel" | 5256 _split_cert_chain "$CERT_PATH" "$CERT_FULLCHAIN_PATH" "$CA_CERT_PATH" |
4793 _err "$response" | 5257 if [ -z "$_preferred_chain" ]; then |
4794 continue | 5258 _preferred_chain=$(_readcaconf DEFAULT_PREFERRED_CHAIN) |
4795 fi | 5259 fi |
4796 _relcert="$CERT_PATH.alt" | 5260 if [ "$_preferred_chain" ] && [ -f "$CERT_FULLCHAIN_PATH" ]; then |
4797 _relfullchain="$CERT_FULLCHAIN_PATH.alt" | 5261 if [ "$DEBUG" ]; then |
4798 _relca="$CA_CERT_PATH.alt" | 5262 _debug "Default chain issuers: " "$(_get_chain_issuers "$CERT_FULLCHAIN_PATH")" |
4799 echo "$response" >"$_relcert" | 5263 fi |
4800 _split_cert_chain "$_relcert" "$_relfullchain" "$_relca" | 5264 if ! _match_issuer "$CERT_FULLCHAIN_PATH" "$_preferred_chain"; then |
4801 if _match_issuer "$_relfullchain" "$_preferred_chain"; then | 5265 rels="$(echo "$responseHeaders" | tr -d ' <>' | grep -i "^link:" | grep -i 'rel="alternate"' | cut -d : -f 2- | cut -d ';' -f 1)" |
4802 _info "Matched issuer in: $rel" | 5266 _debug2 "rels" "$rels" |
4803 cat $_relcert >"$CERT_PATH" | 5267 for rel in $rels; do |
4804 cat $_relfullchain >"$CERT_FULLCHAIN_PATH" | 5268 _info "Trying rel: $rel" |
4805 cat $_relca >"$CA_CERT_PATH" | 5269 if ! _send_signed_request "$rel"; then |
4806 break | 5270 _err "Signing failed, could not download cert: $rel" |
4807 fi | 5271 _err "$response" |
4808 done | 5272 continue |
4809 fi | 5273 fi |
4810 fi | 5274 _relcert="$CERT_PATH.alt" |
4811 else | 5275 _relfullchain="$CERT_FULLCHAIN_PATH.alt" |
4812 if ! _send_signed_request "${ACME_NEW_ORDER}" "{\"resource\": \"$ACME_NEW_ORDER_RES\", \"csr\": \"$der\"}" "needbase64"; then | 5276 _relca="$CA_CERT_PATH.alt" |
4813 _err "Sign failed. $response" | 5277 echo "$response" >"$_relcert" |
4814 _on_issue_err "$_post_hook" | 5278 _split_cert_chain "$_relcert" "$_relfullchain" "$_relca" |
4815 return 1 | 5279 if [ "$DEBUG" ]; then |
4816 fi | 5280 _debug "rel chain issuers: " "$(_get_chain_issuers "$_relfullchain")" |
4817 _rcert="$response" | 5281 fi |
4818 Le_LinkCert="$(grep -i '^Location.*$' "$HTTP_HEADER" | _tail_n 1 | tr -d "\r\n" | cut -d " " -f 2)" | 5282 if _match_issuer "$_relfullchain" "$_preferred_chain"; then |
4819 echo "$BEGIN_CERT" >"$CERT_PATH" | 5283 _info "Matched issuer in: $rel" |
4820 | 5284 cat $_relcert >"$CERT_PATH" |
4821 #if ! _get "$Le_LinkCert" | _base64 "multiline" >> "$CERT_PATH" ; then | 5285 cat $_relfullchain >"$CERT_FULLCHAIN_PATH" |
4822 # _debug "Get cert failed. Let's try last response." | 5286 cat $_relca >"$CA_CERT_PATH" |
4823 # printf -- "%s" "$_rcert" | _dbase64 "multiline" | _base64 "multiline" >> "$CERT_PATH" | 5287 rm -f "$_relcert" |
4824 #fi | 5288 rm -f "$_relfullchain" |
4825 | 5289 rm -f "$_relca" |
4826 if ! printf -- "%s" "$_rcert" | _dbase64 "multiline" | _base64 "multiline" >>"$CERT_PATH"; then | 5290 break |
4827 _debug "Try cert link." | 5291 fi |
4828 _get "$Le_LinkCert" | _base64 "multiline" >>"$CERT_PATH" | 5292 rm -f "$_relcert" |
4829 fi | 5293 rm -f "$_relfullchain" |
4830 | 5294 rm -f "$_relca" |
4831 echo "$END_CERT" >>"$CERT_PATH" | 5295 done |
5296 fi | |
4832 fi | 5297 fi |
4833 | 5298 |
4834 _debug "Le_LinkCert" "$Le_LinkCert" | 5299 _debug "Le_LinkCert" "$Le_LinkCert" |
4835 _savedomainconf "Le_LinkCert" "$Le_LinkCert" | 5300 _savedomainconf "Le_LinkCert" "$Le_LinkCert" |
4836 | 5301 |
4837 if [ -z "$Le_LinkCert" ] || ! _checkcert "$CERT_PATH"; then | 5302 if [ -z "$Le_LinkCert" ] || ! _checkcert "$CERT_PATH"; then |
4838 response="$(echo "$response" | _dbase64 "multiline" | tr -d '\0' | _normalizeJson)" | 5303 response="$(echo "$response" | _dbase64 "multiline" | tr -d '\0' | _normalizeJson)" |
4839 _err "Sign failed: $(echo "$response" | _egrep_o '"detail":"[^"]*"')" | 5304 _err "Signing failed: $(echo "$response" | _egrep_o '"detail":"[^"]*"')" |
4840 _on_issue_err "$_post_hook" | 5305 _on_issue_err "$_post_hook" |
4841 return 1 | 5306 return 1 |
4842 fi | 5307 fi |
4843 | 5308 |
4844 if [ "$Le_LinkCert" ]; then | 5309 if [ "$Le_LinkCert" ]; then |
4845 _info "$(__green "Cert success.")" | 5310 _info "$(__green "Cert success.")" |
4846 cat "$CERT_PATH" | 5311 cat "$CERT_PATH" |
4847 | 5312 |
4848 _info "Your cert is in $(__green " $CERT_PATH ")" | 5313 _info "Your cert is in: $(__green "$CERT_PATH")" |
4849 | 5314 |
4850 if [ -f "$CERT_KEY_PATH" ]; then | 5315 if [ -f "$CERT_KEY_PATH" ]; then |
4851 _info "Your cert key is in $(__green " $CERT_KEY_PATH ")" | 5316 _info "Your cert key is in: $(__green "$CERT_KEY_PATH")" |
4852 fi | 5317 fi |
4853 | 5318 |
4854 if [ ! "$USER_PATH" ] || [ ! "$_ACME_IN_CRON" ]; then | 5319 if [ ! "$USER_PATH" ] || [ ! "$_ACME_IN_CRON" ]; then |
4855 USER_PATH="$PATH" | 5320 USER_PATH="$PATH" |
4856 _saveaccountconf "USER_PATH" "$USER_PATH" | 5321 _saveaccountconf "USER_PATH" "$USER_PATH" |
4857 fi | 5322 fi |
4858 fi | 5323 fi |
4859 | 5324 |
4860 if [ "$ACME_VERSION" = "2" ]; then | 5325 [ -f "$CA_CERT_PATH" ] && _info "The intermediate CA cert is in: $(__green "$CA_CERT_PATH")" |
4861 _debug "v2 chain." | 5326 [ -f "$CERT_FULLCHAIN_PATH" ] && _info "And the full-chain cert is in: $(__green "$CERT_FULLCHAIN_PATH")" |
4862 else | 5327 if [ "$Le_ForceNewDomainKey" ] && [ -e "$Le_Next_Domain_Key" ]; then |
4863 cp "$CERT_PATH" "$CERT_FULLCHAIN_PATH" | 5328 _info "Your pre-generated key for future cert key changes is in: $(__green "$Le_Next_Domain_Key")" |
4864 Le_LinkIssuer=$(grep -i '^Link' "$HTTP_HEADER" | _head_n 1 | cut -d " " -f 2 | cut -d ';' -f 1 | tr -d '<>') | 5329 fi |
4865 | |
4866 if [ "$Le_LinkIssuer" ]; then | |
4867 if ! _contains "$Le_LinkIssuer" ":"; then | |
4868 _info "$(__red "Relative issuer link found.")" | |
4869 Le_LinkIssuer="$_ACME_SERVER_HOST$Le_LinkIssuer" | |
4870 fi | |
4871 _debug Le_LinkIssuer "$Le_LinkIssuer" | |
4872 _savedomainconf "Le_LinkIssuer" "$Le_LinkIssuer" | |
4873 | |
4874 _link_issuer_retry=0 | |
4875 _MAX_ISSUER_RETRY=5 | |
4876 while [ "$_link_issuer_retry" -lt "$_MAX_ISSUER_RETRY" ]; do | |
4877 _debug _link_issuer_retry "$_link_issuer_retry" | |
4878 if [ "$ACME_VERSION" = "2" ]; then | |
4879 if _send_signed_request "$Le_LinkIssuer"; then | |
4880 echo "$response" >"$CA_CERT_PATH" | |
4881 break | |
4882 fi | |
4883 else | |
4884 if _get "$Le_LinkIssuer" >"$CA_CERT_PATH.der"; then | |
4885 echo "$BEGIN_CERT" >"$CA_CERT_PATH" | |
4886 _base64 "multiline" <"$CA_CERT_PATH.der" >>"$CA_CERT_PATH" | |
4887 echo "$END_CERT" >>"$CA_CERT_PATH" | |
4888 if ! _checkcert "$CA_CERT_PATH"; then | |
4889 _err "Can not get the ca cert." | |
4890 break | |
4891 fi | |
4892 cat "$CA_CERT_PATH" >>"$CERT_FULLCHAIN_PATH" | |
4893 rm -f "$CA_CERT_PATH.der" | |
4894 break | |
4895 fi | |
4896 fi | |
4897 _link_issuer_retry=$(_math $_link_issuer_retry + 1) | |
4898 _sleep "$_link_issuer_retry" | |
4899 done | |
4900 if [ "$_link_issuer_retry" = "$_MAX_ISSUER_RETRY" ]; then | |
4901 _err "Max retry for issuer ca cert is reached." | |
4902 fi | |
4903 else | |
4904 _debug "No Le_LinkIssuer header found." | |
4905 fi | |
4906 fi | |
4907 [ -f "$CA_CERT_PATH" ] && _info "The intermediate CA cert is in $(__green " $CA_CERT_PATH ")" | |
4908 [ -f "$CERT_FULLCHAIN_PATH" ] && _info "And the full chain certs is there: $(__green " $CERT_FULLCHAIN_PATH ")" | |
4909 | 5330 |
4910 Le_CertCreateTime=$(_time) | 5331 Le_CertCreateTime=$(_time) |
4911 _savedomainconf "Le_CertCreateTime" "$Le_CertCreateTime" | 5332 _savedomainconf "Le_CertCreateTime" "$Le_CertCreateTime" |
4912 | 5333 |
4913 Le_CertCreateTimeStr=$(date -u) | 5334 Le_CertCreateTimeStr=$(_time2str "$Le_CertCreateTime") |
4914 _savedomainconf "Le_CertCreateTimeStr" "$Le_CertCreateTimeStr" | 5335 _savedomainconf "Le_CertCreateTimeStr" "$Le_CertCreateTimeStr" |
4915 | 5336 |
4916 if [ -z "$Le_RenewalDays" ] || [ "$Le_RenewalDays" -lt "0" ]; then | 5337 if [ -z "$Le_RenewalDays" ] || [ "$Le_RenewalDays" -lt "0" ]; then |
4917 Le_RenewalDays="$DEFAULT_RENEW" | 5338 Le_RenewalDays="$DEFAULT_RENEW" |
4918 else | 5339 else |
4948 if [ "$Le_ForceNewDomainKey" = "1" ]; then | 5369 if [ "$Le_ForceNewDomainKey" = "1" ]; then |
4949 _savedomainconf "Le_ForceNewDomainKey" "$Le_ForceNewDomainKey" | 5370 _savedomainconf "Le_ForceNewDomainKey" "$Le_ForceNewDomainKey" |
4950 else | 5371 else |
4951 _cleardomainconf Le_ForceNewDomainKey | 5372 _cleardomainconf Le_ForceNewDomainKey |
4952 fi | 5373 fi |
4953 | 5374 if [ "$_notAfter" ]; then |
4954 Le_NextRenewTime=$(_math "$Le_CertCreateTime" + "$Le_RenewalDays" \* 24 \* 60 \* 60) | 5375 Le_NextRenewTime=$(_date2time "$_notAfter") |
4955 | 5376 Le_NextRenewTimeStr="$_notAfter" |
4956 Le_NextRenewTimeStr=$(_time2str "$Le_NextRenewTime") | 5377 if [ "$_valid_to" ] && ! _startswith "$_valid_to" "+"; then |
5378 _info "The domain is set to be valid until: $_valid_to" | |
5379 _info "It cannot be renewed automatically" | |
5380 _info "See: $_VALIDITY_WIKI" | |
5381 else | |
5382 _now=$(_time) | |
5383 _debug2 "_now" "$_now" | |
5384 _lifetime=$(_math $Le_NextRenewTime - $_now) | |
5385 _debug2 "_lifetime" "$_lifetime" | |
5386 if [ $_lifetime -gt 86400 ]; then | |
5387 #if lifetime is logner than one day, it will renew one day before | |
5388 Le_NextRenewTime=$(_math $Le_NextRenewTime - 86400) | |
5389 Le_NextRenewTimeStr=$(_time2str "$Le_NextRenewTime") | |
5390 else | |
5391 #if lifetime is less than 24 hours, it will renew one hour before | |
5392 Le_NextRenewTime=$(_math $Le_NextRenewTime - 3600) | |
5393 Le_NextRenewTimeStr=$(_time2str "$Le_NextRenewTime") | |
5394 fi | |
5395 fi | |
5396 else | |
5397 Le_NextRenewTime=$(_math "$Le_CertCreateTime" + "$Le_RenewalDays" \* 24 \* 60 \* 60) | |
5398 Le_NextRenewTime=$(_math "$Le_NextRenewTime" - 86400) | |
5399 Le_NextRenewTimeStr=$(_time2str "$Le_NextRenewTime") | |
5400 fi | |
4957 _savedomainconf "Le_NextRenewTimeStr" "$Le_NextRenewTimeStr" | 5401 _savedomainconf "Le_NextRenewTimeStr" "$Le_NextRenewTimeStr" |
4958 | |
4959 Le_NextRenewTime=$(_math "$Le_NextRenewTime" - 86400) | |
4960 _savedomainconf "Le_NextRenewTime" "$Le_NextRenewTime" | 5402 _savedomainconf "Le_NextRenewTime" "$Le_NextRenewTime" |
5403 | |
5404 #convert to pkcs12 | |
5405 if [ "$Le_PFXPassword" ]; then | |
5406 _toPkcs "$CERT_PFX_PATH" "$CERT_KEY_PATH" "$CERT_PATH" "$CA_CERT_PATH" "$Le_PFXPassword" | |
5407 fi | |
5408 export CERT_PFX_PATH | |
4961 | 5409 |
4962 if [ "$_real_cert$_real_key$_real_ca$_reload_cmd$_real_fullchain" ]; then | 5410 if [ "$_real_cert$_real_key$_real_ca$_reload_cmd$_real_fullchain" ]; then |
4963 _savedomainconf "Le_RealCertPath" "$_real_cert" | 5411 _savedomainconf "Le_RealCertPath" "$_real_cert" |
4964 _savedomainconf "Le_RealCACertPath" "$_real_ca" | 5412 _savedomainconf "Le_RealCACertPath" "$_real_ca" |
4965 _savedomainconf "Le_RealKeyPath" "$_real_key" | 5413 _savedomainconf "Le_RealKeyPath" "$_real_key" |
4969 return 1 | 5417 return 1 |
4970 fi | 5418 fi |
4971 fi | 5419 fi |
4972 | 5420 |
4973 if ! _on_issue_success "$_post_hook" "$_renew_hook"; then | 5421 if ! _on_issue_success "$_post_hook" "$_renew_hook"; then |
4974 _err "Call hook error." | 5422 _err "Error calling hook." |
4975 return 1 | 5423 return 1 |
4976 fi | 5424 fi |
4977 } | 5425 } |
4978 | 5426 |
4979 #in_out_cert out_fullchain out_ca | 5427 #in_out_cert out_fullchain out_ca |
4990 _end_n="$(_math $_end_n + 1)" | 5438 _end_n="$(_math $_end_n + 1)" |
4991 sed -n "${_end_n},9999p" "$_fullchainf" >"$_caf" | 5439 sed -n "${_end_n},9999p" "$_fullchainf" >"$_caf" |
4992 fi | 5440 fi |
4993 } | 5441 } |
4994 | 5442 |
4995 #domain [isEcc] | 5443 #domain [isEcc] [server] |
4996 renew() { | 5444 renew() { |
4997 Le_Domain="$1" | 5445 Le_Domain="$1" |
4998 if [ -z "$Le_Domain" ]; then | 5446 if [ -z "$Le_Domain" ]; then |
4999 _usage "Usage: $PROJECT_ENTRY --renew --domain <domain.tld> [--ecc]" | 5447 _usage "Usage: $PROJECT_ENTRY --renew --domain <domain.tld> [--ecc] [--server server]" |
5000 return 1 | 5448 return 1 |
5001 fi | 5449 fi |
5002 | 5450 |
5003 _isEcc="$2" | 5451 _isEcc="$2" |
5452 _renewServer="$3" | |
5453 _debug "_renewServer" "$_renewServer" | |
5004 | 5454 |
5005 _initpath "$Le_Domain" "$_isEcc" | 5455 _initpath "$Le_Domain" "$_isEcc" |
5006 | 5456 |
5007 _info "$(__green "Renew: '$Le_Domain'")" | 5457 _set_level=${NOTIFY_LEVEL:-$NOTIFY_LEVEL_DEFAULT} |
5458 _info "$(__green "Renewing: '$Le_Domain'")" | |
5008 if [ ! -f "$DOMAIN_CONF" ]; then | 5459 if [ ! -f "$DOMAIN_CONF" ]; then |
5009 _info "'$Le_Domain' is not an issued domain, skip." | 5460 _info "'$Le_Domain' is not an issued domain, skipping." |
5010 return $RENEW_SKIP | 5461 return $RENEW_SKIP |
5011 fi | 5462 fi |
5012 | 5463 |
5013 if [ "$Le_RenewalDays" ]; then | 5464 if [ "$Le_RenewalDays" ]; then |
5014 _savedomainconf Le_RenewalDays "$Le_RenewalDays" | 5465 _savedomainconf Le_RenewalDays "$Le_RenewalDays" |
5015 fi | 5466 fi |
5016 | 5467 |
5017 . "$DOMAIN_CONF" | 5468 . "$DOMAIN_CONF" |
5018 _debug Le_API "$Le_API" | 5469 _debug Le_API "$Le_API" |
5019 | 5470 |
5020 if [ "$Le_API" = "$LETSENCRYPT_CA_V1" ]; then | 5471 case "$Le_API" in |
5021 _cleardomainconf Le_API | 5472 "$CA_LETSENCRYPT_V2_TEST") |
5022 Le_API="$DEFAULT_CA" | 5473 _info "Switching back to $CA_LETSENCRYPT_V2" |
5023 fi | 5474 Le_API="$CA_LETSENCRYPT_V2" |
5024 if [ "$Le_API" = "$LETSENCRYPT_STAGING_CA_V1" ]; then | 5475 ;; |
5025 _cleardomainconf Le_API | 5476 "$CA_GOOGLE_TEST") |
5026 Le_API="$DEFAULT_STAGING_CA" | 5477 _info "Switching back to $CA_GOOGLE" |
5027 fi | 5478 Le_API="$CA_GOOGLE" |
5028 | 5479 ;; |
5029 if [ "$Le_API" ]; then | 5480 esac |
5030 export ACME_DIRECTORY="$Le_API" | 5481 |
5031 #reload ca configs | 5482 if [ "$_server" ]; then |
5032 ACCOUNT_KEY_PATH="" | 5483 Le_API="$_server" |
5033 ACCOUNT_JSON_PATH="" | 5484 fi |
5034 CA_CONF="" | 5485 _info "Renewing using Le_API=$Le_API" |
5035 _debug3 "initpath again." | 5486 |
5036 _initpath "$Le_Domain" "$_isEcc" | 5487 _clearAPI |
5037 fi | 5488 _clearCA |
5489 export ACME_DIRECTORY="$Le_API" | |
5490 | |
5491 #reload ca configs | |
5492 _debug2 "initpath again." | |
5493 _initpath "$Le_Domain" "$_isEcc" | |
5038 | 5494 |
5039 if [ -z "$FORCE" ] && [ "$Le_NextRenewTime" ] && [ "$(_time)" -lt "$Le_NextRenewTime" ]; then | 5495 if [ -z "$FORCE" ] && [ "$Le_NextRenewTime" ] && [ "$(_time)" -lt "$Le_NextRenewTime" ]; then |
5040 _info "Skip, Next renewal time is: $(__green "$Le_NextRenewTimeStr")" | 5496 _info "Skipping. Next renewal time is: $(__green "$Le_NextRenewTimeStr")" |
5041 _info "Add '$(__red '--force')' to force to renew." | 5497 _info "Add '$(__red '--force')' to force renewal." |
5498 if [ -z "$_ACME_IN_RENEWALL" ]; then | |
5499 if [ $_set_level -ge $NOTIFY_LEVEL_SKIP ]; then | |
5500 _send_notify "Renew $Le_Domain skipped" "Good, the cert is skipped." "$NOTIFY_HOOK" "$RENEW_SKIP" | |
5501 fi | |
5502 fi | |
5042 return "$RENEW_SKIP" | 5503 return "$RENEW_SKIP" |
5043 fi | 5504 fi |
5044 | 5505 |
5045 if [ "$_ACME_IN_CRON" = "1" ] && [ -z "$Le_CertCreateTime" ]; then | 5506 if [ "$_ACME_IN_CRON" = "1" ] && [ -z "$Le_CertCreateTime" ]; then |
5046 _info "Skip invalid cert for: $Le_Domain" | 5507 _info "Skipping invalid cert for: $Le_Domain" |
5047 return $RENEW_SKIP | 5508 return $RENEW_SKIP |
5048 fi | 5509 fi |
5049 | 5510 |
5050 _ACME_IS_RENEW="1" | 5511 _ACME_IS_RENEW="1" |
5051 Le_ReloadCmd="$(_readdomainconf Le_ReloadCmd)" | 5512 Le_ReloadCmd="$(_readdomainconf Le_ReloadCmd)" |
5052 Le_PreHook="$(_readdomainconf Le_PreHook)" | 5513 Le_PreHook="$(_readdomainconf Le_PreHook)" |
5053 Le_PostHook="$(_readdomainconf Le_PostHook)" | 5514 Le_PostHook="$(_readdomainconf Le_PostHook)" |
5054 Le_RenewHook="$(_readdomainconf Le_RenewHook)" | 5515 Le_RenewHook="$(_readdomainconf Le_RenewHook)" |
5055 Le_Preferred_Chain="$(_readdomainconf Le_Preferred_Chain)" | 5516 Le_Preferred_Chain="$(_readdomainconf Le_Preferred_Chain)" |
5056 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" "$Le_ChallengeAlias" "$Le_Preferred_Chain" | 5517 # When renewing from an old version, the empty Le_Keylength means 2048. |
5518 # Note, do not use DEFAULT_DOMAIN_KEY_LENGTH as that value may change over | |
5519 # time but an empty value implies 2048 specifically. | |
5520 Le_Keylength="$(_readdomainconf Le_Keylength)" | |
5521 if [ -z "$Le_Keylength" ]; then | |
5522 Le_Keylength=2048 | |
5523 fi | |
5524 if [ "$CA_LETSENCRYPT_V2" = "$Le_API" ]; then | |
5525 #letsencrypt doesn't support ocsp anymore | |
5526 if [ "$Le_OCSP_Staple" ]; then | |
5527 export Le_OCSP_Staple="" | |
5528 _cleardomainconf Le_OCSP_Staple | |
5529 fi | |
5530 fi | |
5531 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" "$Le_ChallengeAlias" "$Le_Preferred_Chain" "$Le_Valid_From" "$Le_Valid_To" | |
5057 res="$?" | 5532 res="$?" |
5058 if [ "$res" != "0" ]; then | 5533 if [ "$res" != "0" ]; then |
5059 return "$res" | 5534 return "$res" |
5060 fi | 5535 fi |
5061 | 5536 |
5063 _deploy "$Le_Domain" "$Le_DeployHook" | 5538 _deploy "$Le_Domain" "$Le_DeployHook" |
5064 res="$?" | 5539 res="$?" |
5065 fi | 5540 fi |
5066 | 5541 |
5067 _ACME_IS_RENEW="" | 5542 _ACME_IS_RENEW="" |
5543 if [ -z "$_ACME_IN_RENEWALL" ]; then | |
5544 if [ "$res" = "0" ]; then | |
5545 if [ $_set_level -ge $NOTIFY_LEVEL_RENEW ]; then | |
5546 _send_notify "Renew $d success" "Good, the cert is renewed." "$NOTIFY_HOOK" 0 | |
5547 fi | |
5548 else | |
5549 if [ $_set_level -ge $NOTIFY_LEVEL_ERROR ]; then | |
5550 _send_notify "Renew $d error" "There is an error." "$NOTIFY_HOOK" 1 | |
5551 fi | |
5552 fi | |
5553 fi | |
5068 | 5554 |
5069 return "$res" | 5555 return "$res" |
5070 } | 5556 } |
5071 | 5557 |
5072 #renewAll [stopRenewOnError] | 5558 #renewAll [stopRenewOnError] [server] |
5073 renewAll() { | 5559 renewAll() { |
5074 _initpath | 5560 _initpath |
5561 _clearCA | |
5075 _stopRenewOnError="$1" | 5562 _stopRenewOnError="$1" |
5076 _debug "_stopRenewOnError" "$_stopRenewOnError" | 5563 _debug "_stopRenewOnError" "$_stopRenewOnError" |
5564 | |
5565 _server="$2" | |
5566 _debug "_server" "$_server" | |
5567 | |
5077 _ret="0" | 5568 _ret="0" |
5078 _success_msg="" | 5569 _success_msg="" |
5079 _error_msg="" | 5570 _error_msg="" |
5080 _skipped_msg="" | 5571 _skipped_msg="" |
5081 _error_level=$NOTIFY_LEVEL_SKIP | 5572 _error_level=$NOTIFY_LEVEL_SKIP |
5082 _notify_code=$RENEW_SKIP | 5573 _notify_code=$RENEW_SKIP |
5083 _set_level=${NOTIFY_LEVEL:-$NOTIFY_LEVEL_DEFAULT} | 5574 _set_level=${NOTIFY_LEVEL:-$NOTIFY_LEVEL_DEFAULT} |
5084 _debug "_set_level" "$_set_level" | 5575 _debug "_set_level" "$_set_level" |
5576 export _ACME_IN_RENEWALL=1 | |
5085 for di in "${CERT_HOME}"/*.*/; do | 5577 for di in "${CERT_HOME}"/*.*/; do |
5086 _debug di "$di" | 5578 _debug di "$di" |
5087 if ! [ -d "$di" ]; then | 5579 if ! [ -d "$di" ]; then |
5088 _debug "Not a directory, skip: $di" | 5580 _debug "Not a directory, skipping: $di" |
5089 continue | 5581 continue |
5090 fi | 5582 fi |
5091 d=$(basename "$di") | 5583 d=$(basename "$di") |
5092 _debug d "$d" | 5584 _debug d "$d" |
5093 ( | 5585 ( |
5094 if _endswith "$d" "$ECC_SUFFIX"; then | 5586 if _endswith "$d" "$ECC_SUFFIX"; then |
5095 _isEcc=$(echo "$d" | cut -d "$ECC_SEP" -f 2) | 5587 _isEcc=$(echo "$d" | cut -d "$ECC_SEP" -f 2) |
5096 d=$(echo "$d" | cut -d "$ECC_SEP" -f 1) | 5588 d=$(echo "$d" | cut -d "$ECC_SEP" -f 1) |
5097 fi | 5589 fi |
5098 renew "$d" "$_isEcc" | 5590 renew "$d" "$_isEcc" "$_server" |
5099 ) | 5591 ) |
5100 rc="$?" | 5592 rc="$?" |
5101 _debug "Return code: $rc" | 5593 _debug "Return code: $rc" |
5102 if [ "$rc" = "0" ]; then | 5594 if [ "$rc" = "0" ]; then |
5103 if [ $_error_level -gt $NOTIFY_LEVEL_RENEW ]; then | 5595 if [ $_error_level -gt $NOTIFY_LEVEL_RENEW ]; then |
5104 _error_level="$NOTIFY_LEVEL_RENEW" | 5596 _error_level="$NOTIFY_LEVEL_RENEW" |
5105 _notify_code=0 | 5597 _notify_code=0 |
5106 fi | 5598 fi |
5107 if [ "$_ACME_IN_CRON" ]; then | 5599 |
5108 if [ $_set_level -ge $NOTIFY_LEVEL_RENEW ]; then | 5600 if [ $_set_level -ge $NOTIFY_LEVEL_RENEW ]; then |
5109 if [ "$NOTIFY_MODE" = "$NOTIFY_MODE_CERT" ]; then | 5601 if [ "$NOTIFY_MODE" = "$NOTIFY_MODE_CERT" ]; then |
5110 _send_notify "Renew $d success" "Good, the cert is renewed." "$NOTIFY_HOOK" 0 | 5602 _send_notify "Renew $d success" "Good, the cert is renewed." "$NOTIFY_HOOK" 0 |
5111 fi | |
5112 fi | 5603 fi |
5113 fi | 5604 fi |
5605 | |
5114 _success_msg="${_success_msg} $d | 5606 _success_msg="${_success_msg} $d |
5115 " | 5607 " |
5116 elif [ "$rc" = "$RENEW_SKIP" ]; then | 5608 elif [ "$rc" = "$RENEW_SKIP" ]; then |
5117 if [ $_error_level -gt $NOTIFY_LEVEL_SKIP ]; then | 5609 if [ $_error_level -gt $NOTIFY_LEVEL_SKIP ]; then |
5118 _error_level="$NOTIFY_LEVEL_SKIP" | 5610 _error_level="$NOTIFY_LEVEL_SKIP" |
5119 _notify_code=$RENEW_SKIP | 5611 _notify_code=$RENEW_SKIP |
5120 fi | 5612 fi |
5121 if [ "$_ACME_IN_CRON" ]; then | 5613 |
5122 if [ $_set_level -ge $NOTIFY_LEVEL_SKIP ]; then | 5614 if [ $_set_level -ge $NOTIFY_LEVEL_SKIP ]; then |
5123 if [ "$NOTIFY_MODE" = "$NOTIFY_MODE_CERT" ]; then | 5615 if [ "$NOTIFY_MODE" = "$NOTIFY_MODE_CERT" ]; then |
5124 _send_notify "Renew $d skipped" "Good, the cert is skipped." "$NOTIFY_HOOK" "$RENEW_SKIP" | 5616 _send_notify "Renew $d skipped" "Good, the cert is skipped." "$NOTIFY_HOOK" "$RENEW_SKIP" |
5125 fi | |
5126 fi | 5617 fi |
5127 fi | 5618 fi |
5619 | |
5128 _info "Skipped $d" | 5620 _info "Skipped $d" |
5129 _skipped_msg="${_skipped_msg} $d | 5621 _skipped_msg="${_skipped_msg} $d |
5130 " | 5622 " |
5131 else | 5623 else |
5132 if [ $_error_level -gt $NOTIFY_LEVEL_ERROR ]; then | 5624 if [ $_error_level -gt $NOTIFY_LEVEL_ERROR ]; then |
5133 _error_level="$NOTIFY_LEVEL_ERROR" | 5625 _error_level="$NOTIFY_LEVEL_ERROR" |
5134 _notify_code=1 | 5626 _notify_code=1 |
5135 fi | 5627 fi |
5136 if [ "$_ACME_IN_CRON" ]; then | 5628 |
5137 if [ $_set_level -ge $NOTIFY_LEVEL_ERROR ]; then | 5629 if [ $_set_level -ge $NOTIFY_LEVEL_ERROR ]; then |
5138 if [ "$NOTIFY_MODE" = "$NOTIFY_MODE_CERT" ]; then | 5630 if [ "$NOTIFY_MODE" = "$NOTIFY_MODE_CERT" ]; then |
5139 _send_notify "Renew $d error" "There is an error." "$NOTIFY_HOOK" 1 | 5631 _send_notify "Renew $d error" "There is an error." "$NOTIFY_HOOK" 1 |
5140 fi | |
5141 fi | 5632 fi |
5142 fi | 5633 fi |
5634 | |
5143 _error_msg="${_error_msg} $d | 5635 _error_msg="${_error_msg} $d |
5144 " | 5636 " |
5145 if [ "$_stopRenewOnError" ]; then | 5637 if [ "$_stopRenewOnError" ]; then |
5146 _err "Error renew $d, stop now." | 5638 _err "Error renewing $d, stopping." |
5147 _ret="$rc" | 5639 _ret="$rc" |
5148 break | 5640 break |
5149 else | 5641 else |
5150 _ret="$rc" | 5642 _ret="$rc" |
5151 _err "Error renew $d." | 5643 _err "Error renewing $d." |
5152 fi | 5644 fi |
5153 fi | 5645 fi |
5154 done | 5646 done |
5155 _debug _error_level "$_error_level" | 5647 _debug _error_level "$_error_level" |
5156 _debug _set_level "$_set_level" | 5648 _debug _set_level "$_set_level" |
5157 if [ "$_ACME_IN_CRON" ] && [ $_error_level -le $_set_level ]; then | 5649 if [ $_error_level -le $_set_level ]; then |
5158 if [ -z "$NOTIFY_MODE" ] || [ "$NOTIFY_MODE" = "$NOTIFY_MODE_BULK" ]; then | 5650 if [ -z "$NOTIFY_MODE" ] || [ "$NOTIFY_MODE" = "$NOTIFY_MODE_BULK" ]; then |
5159 _msg_subject="Renew" | 5651 _msg_subject="Renew" |
5160 if [ "$_error_msg" ]; then | 5652 if [ "$_error_msg" ]; then |
5161 _msg_subject="${_msg_subject} Error" | 5653 _msg_subject="${_msg_subject} Error" |
5162 _msg_data="Error certs: | 5654 _msg_data="Errored certs: |
5163 ${_error_msg} | 5655 ${_error_msg} |
5164 " | 5656 " |
5165 fi | 5657 fi |
5166 if [ "$_success_msg" ]; then | 5658 if [ "$_success_msg" ]; then |
5167 _msg_subject="${_msg_subject} Success" | 5659 _msg_subject="${_msg_subject} Success" |
5168 _msg_data="${_msg_data}Success certs: | 5660 _msg_data="${_msg_data}Successful certs: |
5169 ${_success_msg} | 5661 ${_success_msg} |
5170 " | 5662 " |
5171 fi | 5663 fi |
5172 if [ "$_skipped_msg" ]; then | 5664 if [ "$_skipped_msg" ]; then |
5173 _msg_subject="${_msg_subject} Skipped" | 5665 _msg_subject="${_msg_subject} Skipped" |
5200 _pre_hook="${8}" | 5692 _pre_hook="${8}" |
5201 _post_hook="${9}" | 5693 _post_hook="${9}" |
5202 _renew_hook="${10}" | 5694 _renew_hook="${10}" |
5203 _local_addr="${11}" | 5695 _local_addr="${11}" |
5204 _challenge_alias="${12}" | 5696 _challenge_alias="${12}" |
5697 _preferred_chain="${13}" | |
5205 | 5698 |
5206 _csrsubj=$(_readSubjectFromCSR "$_csrfile") | 5699 _csrsubj=$(_readSubjectFromCSR "$_csrfile") |
5207 if [ "$?" != "0" ]; then | 5700 if [ "$?" != "0" ]; then |
5208 _err "Can not read subject from csr: $_csrfile" | 5701 _err "Cannot read subject from CSR: $_csrfile" |
5209 return 1 | 5702 return 1 |
5210 fi | 5703 fi |
5211 _debug _csrsubj "$_csrsubj" | 5704 _debug _csrsubj "$_csrsubj" |
5212 if _contains "$_csrsubj" ' ' || ! _contains "$_csrsubj" '.'; then | 5705 if _contains "$_csrsubj" ' ' || ! _contains "$_csrsubj" '.'; then |
5213 _info "It seems that the subject: $_csrsubj is not a valid domain name. Drop it." | 5706 _info "It seems that the subject $_csrsubj is not a valid domain name. Dropping it." |
5214 _csrsubj="" | 5707 _csrsubj="" |
5215 fi | 5708 fi |
5216 | 5709 |
5217 _csrdomainlist=$(_readSubjectAltNamesFromCSR "$_csrfile") | 5710 _csrdomainlist=$(_readSubjectAltNamesFromCSR "$_csrfile") |
5218 if [ "$?" != "0" ]; then | 5711 if [ "$?" != "0" ]; then |
5219 _err "Can not read domain list from csr: $_csrfile" | 5712 _err "Cannot read domain list from CSR: $_csrfile" |
5220 return 1 | 5713 return 1 |
5221 fi | 5714 fi |
5222 _debug "_csrdomainlist" "$_csrdomainlist" | 5715 _debug "_csrdomainlist" "$_csrdomainlist" |
5223 | 5716 |
5224 if [ -z "$_csrsubj" ]; then | 5717 if [ -z "$_csrsubj" ]; then |
5227 _csrdomainlist="$(echo "$_csrdomainlist" | cut -d , -f 2-)" | 5720 _csrdomainlist="$(echo "$_csrdomainlist" | cut -d , -f 2-)" |
5228 _debug "_csrdomainlist" "$_csrdomainlist" | 5721 _debug "_csrdomainlist" "$_csrdomainlist" |
5229 fi | 5722 fi |
5230 | 5723 |
5231 if [ -z "$_csrsubj" ]; then | 5724 if [ -z "$_csrsubj" ]; then |
5232 _err "Can not read subject from csr: $_csrfile" | 5725 _err "Cannot read subject from CSR: $_csrfile" |
5233 return 1 | 5726 return 1 |
5234 fi | 5727 fi |
5235 | 5728 |
5236 _csrkeylength=$(_readKeyLengthFromCSR "$_csrfile") | 5729 _csrkeylength=$(_readKeyLengthFromCSR "$_csrfile") |
5237 if [ "$?" != "0" ] || [ -z "$_csrkeylength" ]; then | 5730 if [ "$?" != "0" ] || [ -z "$_csrkeylength" ]; then |
5238 _err "Can not read key length from csr: $_csrfile" | 5731 _err "Cannot read key length from CSR: $_csrfile" |
5239 return 1 | 5732 return 1 |
5240 fi | 5733 fi |
5241 | 5734 |
5242 if [ -z "$ACME_VERSION" ] && _contains "$_csrsubj,$_csrdomainlist" "*."; then | |
5243 export ACME_VERSION=2 | |
5244 fi | |
5245 _initpath "$_csrsubj" "$_csrkeylength" | 5735 _initpath "$_csrsubj" "$_csrkeylength" |
5246 mkdir -p "$DOMAIN_PATH" | 5736 mkdir -p "$DOMAIN_PATH" |
5247 | 5737 |
5248 _info "Copy csr to: $CSR_PATH" | 5738 _info "Copying CSR to: $CSR_PATH" |
5249 cp "$_csrfile" "$CSR_PATH" | 5739 cp "$_csrfile" "$CSR_PATH" |
5250 | 5740 |
5251 issue "$_csrW" "$_csrsubj" "$_csrdomainlist" "$_csrkeylength" "$_real_cert" "$_real_key" "$_real_ca" "$_reload_cmd" "$_real_fullchain" "$_pre_hook" "$_post_hook" "$_renew_hook" "$_local_addr" "$_challenge_alias" | 5741 issue "$_csrW" "$_csrsubj" "$_csrdomainlist" "$_csrkeylength" "$_real_cert" "$_real_key" "$_real_ca" "$_reload_cmd" "$_real_fullchain" "$_pre_hook" "$_post_hook" "$_renew_hook" "$_local_addr" "$_challenge_alias" "$_preferred_chain" |
5252 | 5742 |
5253 } | 5743 } |
5254 | 5744 |
5255 showcsr() { | 5745 showcsr() { |
5256 _csrfile="$1" | 5746 _csrfile="$1" |
5261 fi | 5751 fi |
5262 | 5752 |
5263 _initpath | 5753 _initpath |
5264 | 5754 |
5265 _csrsubj=$(_readSubjectFromCSR "$_csrfile") | 5755 _csrsubj=$(_readSubjectFromCSR "$_csrfile") |
5266 if [ "$?" != "0" ] || [ -z "$_csrsubj" ]; then | 5756 if [ "$?" != "0" ]; then |
5267 _err "Can not read subject from csr: $_csrfile" | 5757 _err "Cannot read subject from CSR: $_csrfile" |
5268 return 1 | 5758 return 1 |
5759 fi | |
5760 if [ -z "$_csrsubj" ]; then | |
5761 _info "The subject is empty" | |
5269 fi | 5762 fi |
5270 | 5763 |
5271 _info "Subject=$_csrsubj" | 5764 _info "Subject=$_csrsubj" |
5272 | 5765 |
5273 _csrdomainlist=$(_readSubjectAltNamesFromCSR "$_csrfile") | 5766 _csrdomainlist=$(_readSubjectAltNamesFromCSR "$_csrfile") |
5274 if [ "$?" != "0" ]; then | 5767 if [ "$?" != "0" ]; then |
5275 _err "Can not read domain list from csr: $_csrfile" | 5768 _err "Cannot read domain list from CSR: $_csrfile" |
5276 return 1 | 5769 return 1 |
5277 fi | 5770 fi |
5278 _debug "_csrdomainlist" "$_csrdomainlist" | 5771 _debug "_csrdomainlist" "$_csrdomainlist" |
5279 | 5772 |
5280 _info "SubjectAltNames=$_csrdomainlist" | 5773 _info "SubjectAltNames=$_csrdomainlist" |
5281 | 5774 |
5282 _csrkeylength=$(_readKeyLengthFromCSR "$_csrfile") | 5775 _csrkeylength=$(_readKeyLengthFromCSR "$_csrfile") |
5283 if [ "$?" != "0" ] || [ -z "$_csrkeylength" ]; then | 5776 if [ "$?" != "0" ] || [ -z "$_csrkeylength" ]; then |
5284 _err "Can not read key length from csr: $_csrfile" | 5777 _err "Cannot read key length from CSR: $_csrfile" |
5285 return 1 | 5778 return 1 |
5286 fi | 5779 fi |
5287 _info "KeyLength=$_csrkeylength" | 5780 _info "KeyLength=$_csrkeylength" |
5288 } | 5781 } |
5289 | 5782 |
5335 _hooks="$2" | 5828 _hooks="$2" |
5336 | 5829 |
5337 for _d_api in $(echo "$_hooks" | tr ',' " "); do | 5830 for _d_api in $(echo "$_hooks" | tr ',' " "); do |
5338 _deployApi="$(_findHook "$_d" $_SUB_FOLDER_DEPLOY "$_d_api")" | 5831 _deployApi="$(_findHook "$_d" $_SUB_FOLDER_DEPLOY "$_d_api")" |
5339 if [ -z "$_deployApi" ]; then | 5832 if [ -z "$_deployApi" ]; then |
5340 _err "The deploy hook $_d_api is not found." | 5833 _err "The deploy hook $_d_api was not found." |
5341 return 1 | 5834 return 1 |
5342 fi | 5835 fi |
5343 _debug _deployApi "$_deployApi" | 5836 _debug _deployApi "$_deployApi" |
5344 | 5837 |
5345 if ! ( | 5838 if ! ( |
5346 if ! . "$_deployApi"; then | 5839 if ! . "$_deployApi"; then |
5347 _err "Load file $_deployApi error. Please check your api file and try again." | 5840 _err "Error loading file $_deployApi. Please check your API file and try again." |
5348 return 1 | 5841 return 1 |
5349 fi | 5842 fi |
5350 | 5843 |
5351 d_command="${_d_api}_deploy" | 5844 d_command="${_d_api}_deploy" |
5352 if ! _exists "$d_command"; then | 5845 if ! _exists "$d_command"; then |
5353 _err "It seems that your api file is not correct, it must have a function named: $d_command" | 5846 _err "It seems that your API file is not correct. Make sure it has a function named: $d_command" |
5354 return 1 | 5847 return 1 |
5355 fi | 5848 fi |
5356 | 5849 |
5357 if ! $d_command "$_d" "$CERT_KEY_PATH" "$CERT_PATH" "$CA_CERT_PATH" "$CERT_FULLCHAIN_PATH"; then | 5850 if ! $d_command "$_d" "$CERT_KEY_PATH" "$CERT_PATH" "$CA_CERT_PATH" "$CERT_FULLCHAIN_PATH" "$CERT_PFX_PATH"; then |
5358 _err "Error deploy for domain:$_d" | 5851 _err "Error deploying for domain: $_d" |
5359 return 1 | 5852 return 1 |
5360 fi | 5853 fi |
5361 ); then | 5854 ); then |
5362 _err "Deploy error." | 5855 _err "Error encountered while deploying." |
5363 return 1 | 5856 return 1 |
5364 else | 5857 else |
5365 _info "$(__green Success)" | 5858 _info "$(__green Success)" |
5366 fi | 5859 fi |
5367 done | 5860 done |
5378 fi | 5871 fi |
5379 | 5872 |
5380 _initpath "$_d" "$_isEcc" | 5873 _initpath "$_d" "$_isEcc" |
5381 if [ ! -d "$DOMAIN_PATH" ]; then | 5874 if [ ! -d "$DOMAIN_PATH" ]; then |
5382 _err "The domain '$_d' is not a cert name. You must use the cert name to specify the cert to install." | 5875 _err "The domain '$_d' is not a cert name. You must use the cert name to specify the cert to install." |
5383 _err "Can not find path:'$DOMAIN_PATH'" | 5876 _err "Cannot find path: '$DOMAIN_PATH'" |
5384 return 1 | 5877 return 1 |
5385 fi | 5878 fi |
5386 | 5879 |
5880 _debug2 DOMAIN_CONF "$DOMAIN_CONF" | |
5387 . "$DOMAIN_CONF" | 5881 . "$DOMAIN_CONF" |
5388 | 5882 |
5389 _savedomainconf Le_DeployHook "$_hooks" | 5883 _savedomainconf Le_DeployHook "$_hooks" |
5390 | 5884 |
5391 _deploy "$_d" "$_hooks" | 5885 _deploy "$_d" "$_hooks" |
5406 _isEcc="$7" | 5900 _isEcc="$7" |
5407 | 5901 |
5408 _initpath "$_main_domain" "$_isEcc" | 5902 _initpath "$_main_domain" "$_isEcc" |
5409 if [ ! -d "$DOMAIN_PATH" ]; then | 5903 if [ ! -d "$DOMAIN_PATH" ]; then |
5410 _err "The domain '$_main_domain' is not a cert name. You must use the cert name to specify the cert to install." | 5904 _err "The domain '$_main_domain' is not a cert name. You must use the cert name to specify the cert to install." |
5411 _err "Can not find path:'$DOMAIN_PATH'" | 5905 _err "Cannot find path: '$DOMAIN_PATH'" |
5412 return 1 | 5906 return 1 |
5413 fi | 5907 fi |
5414 | 5908 |
5415 _savedomainconf "Le_RealCertPath" "$_real_cert" | 5909 _savedomainconf "Le_RealCertPath" "$_real_cert" |
5416 _savedomainconf "Le_RealCACertPath" "$_real_ca" | 5910 _savedomainconf "Le_RealCACertPath" "$_real_ca" |
5417 _savedomainconf "Le_RealKeyPath" "$_real_key" | 5911 _savedomainconf "Le_RealKeyPath" "$_real_key" |
5418 _savedomainconf "Le_ReloadCmd" "$_reload_cmd" "base64" | 5912 _savedomainconf "Le_ReloadCmd" "$_reload_cmd" "base64" |
5419 _savedomainconf "Le_RealFullChainPath" "$_real_fullchain" | 5913 _savedomainconf "Le_RealFullChainPath" "$_real_fullchain" |
5420 | 5914 export Le_ForceNewDomainKey="$(_readdomainconf Le_ForceNewDomainKey)" |
5915 export Le_Next_Domain_Key | |
5421 _installcert "$_main_domain" "$_real_cert" "$_real_key" "$_real_ca" "$_real_fullchain" "$_reload_cmd" | 5916 _installcert "$_main_domain" "$_real_cert" "$_real_key" "$_real_ca" "$_real_fullchain" "$_reload_cmd" |
5422 } | 5917 } |
5423 | 5918 |
5424 #domain cert key ca fullchain reloadcmd backup-prefix | 5919 #domain cert key ca fullchain reloadcmd backup-prefix |
5425 _installcert() { | 5920 _installcert() { |
5449 | 5944 |
5450 _backup_path="$DOMAIN_BACKUP_PATH/$_backup_prefix" | 5945 _backup_path="$DOMAIN_BACKUP_PATH/$_backup_prefix" |
5451 mkdir -p "$_backup_path" | 5946 mkdir -p "$_backup_path" |
5452 | 5947 |
5453 if [ "$_real_cert" ]; then | 5948 if [ "$_real_cert" ]; then |
5454 _info "Installing cert to:$_real_cert" | 5949 _info "Installing cert to: $_real_cert" |
5455 if [ -f "$_real_cert" ] && [ ! "$_ACME_IS_RENEW" ]; then | 5950 if [ -f "$_real_cert" ] && [ ! "$_ACME_IS_RENEW" ]; then |
5456 cp "$_real_cert" "$_backup_path/cert.bak" | 5951 cp "$_real_cert" "$_backup_path/cert.bak" |
5457 fi | 5952 fi |
5458 cat "$CERT_PATH" >"$_real_cert" || return 1 | 5953 if [ "$CERT_PATH" != "$_real_cert" ]; then |
5954 cat "$CERT_PATH" >"$_real_cert" || return 1 | |
5955 fi | |
5459 fi | 5956 fi |
5460 | 5957 |
5461 if [ "$_real_ca" ]; then | 5958 if [ "$_real_ca" ]; then |
5462 _info "Installing CA to:$_real_ca" | 5959 _info "Installing CA to: $_real_ca" |
5463 if [ "$_real_ca" = "$_real_cert" ]; then | 5960 if [ "$_real_ca" = "$_real_cert" ]; then |
5464 echo "" >>"$_real_ca" | 5961 echo "" >>"$_real_ca" |
5465 cat "$CA_CERT_PATH" >>"$_real_ca" || return 1 | 5962 cat "$CA_CERT_PATH" >>"$_real_ca" || return 1 |
5466 else | 5963 else |
5467 if [ -f "$_real_ca" ] && [ ! "$_ACME_IS_RENEW" ]; then | 5964 if [ -f "$_real_ca" ] && [ ! "$_ACME_IS_RENEW" ]; then |
5468 cp "$_real_ca" "$_backup_path/ca.bak" | 5965 cp "$_real_ca" "$_backup_path/ca.bak" |
5469 fi | 5966 fi |
5470 cat "$CA_CERT_PATH" >"$_real_ca" || return 1 | 5967 if [ "$CA_CERT_PATH" != "$_real_ca" ]; then |
5968 cat "$CA_CERT_PATH" >"$_real_ca" || return 1 | |
5969 fi | |
5471 fi | 5970 fi |
5472 fi | 5971 fi |
5473 | 5972 |
5474 if [ "$_real_key" ]; then | 5973 if [ "$_real_key" ]; then |
5475 _info "Installing key to:$_real_key" | 5974 _info "Installing key to: $_real_key" |
5476 if [ -f "$_real_key" ] && [ ! "$_ACME_IS_RENEW" ]; then | 5975 if [ -f "$_real_key" ] && [ ! "$_ACME_IS_RENEW" ]; then |
5477 cp "$_real_key" "$_backup_path/key.bak" | 5976 cp "$_real_key" "$_backup_path/key.bak" |
5478 fi | 5977 fi |
5479 if [ -f "$_real_key" ]; then | 5978 if [ "$CERT_KEY_PATH" != "$_real_key" ]; then |
5480 cat "$CERT_KEY_PATH" >"$_real_key" || return 1 | 5979 if [ -f "$_real_key" ]; then |
5481 else | 5980 cat "$CERT_KEY_PATH" >"$_real_key" || return 1 |
5482 cat "$CERT_KEY_PATH" >"$_real_key" || return 1 | 5981 else |
5483 chmod 600 "$_real_key" | 5982 touch "$_real_key" || return 1 |
5983 chmod 600 "$_real_key" | |
5984 cat "$CERT_KEY_PATH" >"$_real_key" || return 1 | |
5985 fi | |
5484 fi | 5986 fi |
5485 fi | 5987 fi |
5486 | 5988 |
5487 if [ "$_real_fullchain" ]; then | 5989 if [ "$_real_fullchain" ]; then |
5488 _info "Installing full chain to:$_real_fullchain" | 5990 _info "Installing full chain to: $_real_fullchain" |
5489 if [ -f "$_real_fullchain" ] && [ ! "$_ACME_IS_RENEW" ]; then | 5991 if [ -f "$_real_fullchain" ] && [ ! "$_ACME_IS_RENEW" ]; then |
5490 cp "$_real_fullchain" "$_backup_path/fullchain.bak" | 5992 cp "$_real_fullchain" "$_backup_path/fullchain.bak" |
5491 fi | 5993 fi |
5492 cat "$CERT_FULLCHAIN_PATH" >"$_real_fullchain" || return 1 | 5994 if [ "$_real_fullchain" != "$CERT_FULLCHAIN_PATH" ]; then |
5995 cat "$CERT_FULLCHAIN_PATH" >"$_real_fullchain" || return 1 | |
5996 fi | |
5493 fi | 5997 fi |
5494 | 5998 |
5495 if [ "$_reload_cmd" ]; then | 5999 if [ "$_reload_cmd" ]; then |
5496 _info "Run reload cmd: $_reload_cmd" | 6000 _info "Running reload cmd: $_reload_cmd" |
5497 if ( | 6001 if ( |
5498 export CERT_PATH | 6002 export CERT_PATH |
5499 export CERT_KEY_PATH | 6003 export CERT_KEY_PATH |
5500 export CA_CERT_PATH | 6004 export CA_CERT_PATH |
5501 export CERT_FULLCHAIN_PATH | 6005 export CERT_FULLCHAIN_PATH |
5502 export Le_Domain="$_main_domain" | 6006 export Le_Domain="$_main_domain" |
6007 export Le_ForceNewDomainKey | |
6008 export Le_Next_Domain_Key | |
5503 cd "$DOMAIN_PATH" && eval "$_reload_cmd" | 6009 cd "$DOMAIN_PATH" && eval "$_reload_cmd" |
5504 ); then | 6010 ); then |
5505 _info "$(__green "Reload success")" | 6011 _info "$(__green "Reload successful")" |
5506 else | 6012 else |
5507 _err "Reload error for :$Le_Domain" | 6013 _err "Reload error for: $_main_domain" |
5508 fi | 6014 fi |
5509 fi | 6015 fi |
5510 | 6016 |
5511 } | 6017 } |
5512 | 6018 |
5530 if ! _exists cygpath; then | 6036 if ! _exists cygpath; then |
5531 _err "cygpath not found" | 6037 _err "cygpath not found" |
5532 return 1 | 6038 return 1 |
5533 fi | 6039 fi |
5534 if ! _exists schtasks; then | 6040 if ! _exists schtasks; then |
5535 _err "schtasks.exe is not found, are you on Windows?" | 6041 _err "schtasks.exe was not found, are you on Windows?" |
5536 return 1 | 6042 return 1 |
5537 fi | 6043 fi |
5538 _winbash="$(cygpath -w $(which bash))" | 6044 _winbash="$(cygpath -w $(which bash))" |
5539 _debug _winbash "$_winbash" | 6045 _debug _winbash "$_winbash" |
5540 if [ -z "$_winbash" ]; then | 6046 if [ -z "$_winbash" ]; then |
5541 _err "can not find bash path" | 6047 _err "Cannot find bash path" |
5542 return 1 | 6048 return 1 |
5543 fi | 6049 fi |
5544 _myname="$(whoami)" | 6050 _myname="$(whoami)" |
5545 _debug "_myname" "$_myname" | 6051 _debug "_myname" "$_myname" |
5546 if [ -z "$_myname" ]; then | 6052 if [ -z "$_myname" ]; then |
5547 _err "can not find my user name" | 6053 _err "Can not find own username" |
5548 return 1 | 6054 return 1 |
5549 fi | 6055 fi |
5550 _debug "_lesh" "$_lesh" | 6056 _debug "_lesh" "$_lesh" |
5551 | 6057 |
5552 _info "To install scheduler task in your Windows account, you must input your windows password." | 6058 _info "To install the scheduler task to your Windows account, you must input your Windows password." |
5553 _info "$PROJECT_NAME doesn't save your password." | 6059 _info "$PROJECT_NAME will not save your password." |
5554 _info "Please input your Windows password for: $(__green "$_myname")" | 6060 _info "Please input your Windows password for: $(__green "$_myname")" |
5555 _password="$(__read_password)" | 6061 _password="$(__read_password)" |
5556 #SCHTASKS.exe '/create' '/SC' 'DAILY' '/TN' "$_WINDOWS_SCHEDULER_NAME" '/F' '/ST' "00:$_randomminute" '/RU' "$_myname" '/RP' "$_password" '/TR' "$_winbash -l -c '$_lesh --cron --home \"$LE_WORKING_DIR\" $_centry'" >/dev/null | 6062 #SCHTASKS.exe '/create' '/SC' 'DAILY' '/TN' "$_WINDOWS_SCHEDULER_NAME" '/F' '/ST' "00:$_randomminute" '/RU' "$_myname" '/RP' "$_password" '/TR' "$_winbash -l -c '$_lesh --cron --home \"$LE_WORKING_DIR\" $_centry'" >/dev/null |
5557 echo SCHTASKS.exe '/create' '/SC' 'DAILY' '/TN' "$_WINDOWS_SCHEDULER_NAME" '/F' '/ST' "00:$_randomminute" '/RU' "$_myname" '/RP' "$_password" '/TR' "\"$_winbash -l -c '$_lesh --cron --home \"$LE_WORKING_DIR\" $_centry'\"" | cmd.exe >/dev/null | 6063 echo SCHTASKS.exe '/create' '/SC' 'DAILY' '/TN' "$_WINDOWS_SCHEDULER_NAME" '/F' '/ST' "00:$_randomminute" '/RU' "$_myname" '/RP' "$_password" '/TR' "\"$_winbash -l -c '$_lesh --cron --home \"$LE_WORKING_DIR\" $_centry'\"" | cmd.exe >/dev/null |
5558 echo | 6064 echo |
5559 | 6065 |
5560 } | 6066 } |
5561 | 6067 |
5562 _uninstall_win_taskscheduler() { | 6068 _uninstall_win_taskscheduler() { |
5563 if ! _exists schtasks; then | 6069 if ! _exists schtasks; then |
5564 _err "schtasks.exe is not found, are you on Windows?" | 6070 _err "schtasks.exe was not found, are you on Windows?" |
5565 return 1 | 6071 return 1 |
5566 fi | 6072 fi |
5567 if ! echo SCHTASKS /query /tn "$_WINDOWS_SCHEDULER_NAME" | cmd.exe >/dev/null; then | 6073 if ! echo SCHTASKS /query /tn "$_WINDOWS_SCHEDULER_NAME" | cmd.exe >/dev/null; then |
5568 _debug "scheduler $_WINDOWS_SCHEDULER_NAME is not found." | 6074 _debug "scheduler $_WINDOWS_SCHEDULER_NAME was not found." |
5569 else | 6075 else |
5570 _info "Removing $_WINDOWS_SCHEDULER_NAME" | 6076 _info "Removing $_WINDOWS_SCHEDULER_NAME" |
5571 echo SCHTASKS /delete /f /tn "$_WINDOWS_SCHEDULER_NAME" | cmd.exe >/dev/null | 6077 echo SCHTASKS /delete /f /tn "$_WINDOWS_SCHEDULER_NAME" | cmd.exe >/dev/null |
5572 fi | 6078 fi |
5573 } | 6079 } |
5578 _initpath | 6084 _initpath |
5579 _CRONTAB="crontab" | 6085 _CRONTAB="crontab" |
5580 if [ -f "$LE_WORKING_DIR/$PROJECT_ENTRY" ]; then | 6086 if [ -f "$LE_WORKING_DIR/$PROJECT_ENTRY" ]; then |
5581 lesh="\"$LE_WORKING_DIR\"/$PROJECT_ENTRY" | 6087 lesh="\"$LE_WORKING_DIR\"/$PROJECT_ENTRY" |
5582 else | 6088 else |
5583 _err "Can not install cronjob, $PROJECT_ENTRY not found." | 6089 _debug "_SCRIPT_" "$_SCRIPT_" |
5584 return 1 | 6090 _script="$(_readlink "$_SCRIPT_")" |
6091 _debug _script "$_script" | |
6092 if [ -f "$_script" ]; then | |
6093 _info "Using the current script from: $_script" | |
6094 lesh="$_script" | |
6095 else | |
6096 _err "Cannot install cronjob, $PROJECT_ENTRY not found." | |
6097 return 1 | |
6098 fi | |
5585 fi | 6099 fi |
5586 if [ "$_c_home" ]; then | 6100 if [ "$_c_home" ]; then |
5587 _c_entry="--config-home \"$_c_home\" " | 6101 _c_entry="--config-home \"$_c_home\" " |
5588 fi | 6102 fi |
5589 _t=$(_time) | 6103 _t=$(_time) |
5590 random_minute=$(_math $_t % 60) | 6104 random_minute=$(_math $_t % 60) |
6105 random_hour=$(_math $_t / 60 % 24) | |
5591 | 6106 |
5592 if ! _exists "$_CRONTAB" && _exists "fcrontab"; then | 6107 if ! _exists "$_CRONTAB" && _exists "fcrontab"; then |
5593 _CRONTAB="fcrontab" | 6108 _CRONTAB="fcrontab" |
5594 fi | 6109 fi |
5595 | 6110 |
5596 if ! _exists "$_CRONTAB"; then | 6111 if ! _exists "$_CRONTAB"; then |
5597 if _exists cygpath && _exists schtasks.exe; then | 6112 if _exists cygpath && _exists schtasks.exe; then |
5598 _info "It seems you are on Windows, let's install Windows scheduler task." | 6113 _info "It seems you are on Windows, let's install the Windows scheduler task." |
5599 if _install_win_taskscheduler "$lesh" "$_c_entry" "$random_minute"; then | 6114 if _install_win_taskscheduler "$lesh" "$_c_entry" "$random_minute"; then |
5600 _info "Install Windows scheduler task success." | 6115 _info "Successfully installed Windows scheduler task." |
5601 return 0 | 6116 return 0 |
5602 else | 6117 else |
5603 _err "Install Windows scheduler task failed." | 6118 _err "Failed to install Windows scheduler task." |
5604 return 1 | 6119 return 1 |
5605 fi | 6120 fi |
5606 fi | 6121 fi |
5607 _err "crontab/fcrontab doesn't exist, so, we can not install cron jobs." | 6122 _err "crontab/fcrontab doesn't exist, so we cannot install cron jobs." |
5608 _err "All your certs will not be renewed automatically." | 6123 _err "Your certs will not be renewed automatically." |
5609 _err "You must add your own cron job to call '$PROJECT_ENTRY --cron' everyday." | 6124 _err "You must add your own cron job to call '$PROJECT_ENTRY --cron' every day." |
5610 return 1 | 6125 return 1 |
5611 fi | 6126 fi |
5612 _info "Installing cron job" | 6127 _info "Installing cron job" |
5613 if ! $_CRONTAB -l | grep "$PROJECT_ENTRY --cron"; then | 6128 if ! $_CRONTAB -l | grep "$PROJECT_ENTRY --cron"; then |
5614 if _exists uname && uname -a | grep SunOS >/dev/null; then | 6129 if _exists uname && uname -a | grep SunOS >/dev/null; then |
5615 $_CRONTAB -l | { | 6130 _CRONTAB_STDIN="$_CRONTAB --" |
5616 cat | |
5617 echo "$random_minute 0 * * * $lesh --cron --home \"$LE_WORKING_DIR\" $_c_entry> /dev/null" | |
5618 } | $_CRONTAB -- | |
5619 else | 6131 else |
5620 $_CRONTAB -l | { | 6132 _CRONTAB_STDIN="$_CRONTAB -" |
5621 cat | 6133 fi |
5622 echo "$random_minute 0 * * * $lesh --cron --home \"$LE_WORKING_DIR\" $_c_entry> /dev/null" | 6134 $_CRONTAB -l | { |
5623 } | $_CRONTAB - | 6135 cat |
5624 fi | 6136 echo "$random_minute $random_hour * * * $lesh --cron --home \"$LE_WORKING_DIR\" $_c_entry> /dev/null" |
6137 } | $_CRONTAB_STDIN | |
5625 fi | 6138 fi |
5626 if [ "$?" != "0" ]; then | 6139 if [ "$?" != "0" ]; then |
5627 _err "Install cron job failed. You need to manually renew your certs." | 6140 _err "Failed to install cron job. You need to manually renew your certs." |
5628 _err "Or you can add cronjob by yourself:" | 6141 _err "Alternatively, you can add a cron job by yourself:" |
5629 _err "$lesh --cron --home \"$LE_WORKING_DIR\" > /dev/null" | 6142 _err "$lesh --cron --home \"$LE_WORKING_DIR\" > /dev/null" |
5630 return 1 | 6143 return 1 |
5631 fi | 6144 fi |
5632 } | 6145 } |
5633 | 6146 |
5637 _CRONTAB="fcrontab" | 6150 _CRONTAB="fcrontab" |
5638 fi | 6151 fi |
5639 | 6152 |
5640 if ! _exists "$_CRONTAB"; then | 6153 if ! _exists "$_CRONTAB"; then |
5641 if _exists cygpath && _exists schtasks.exe; then | 6154 if _exists cygpath && _exists schtasks.exe; then |
5642 _info "It seems you are on Windows, let's uninstall Windows scheduler task." | 6155 _info "It seems you are on Windows, let's uninstall the Windows scheduler task." |
5643 if _uninstall_win_taskscheduler; then | 6156 if _uninstall_win_taskscheduler; then |
5644 _info "Uninstall Windows scheduler task success." | 6157 _info "Successfully uninstalled Windows scheduler task." |
5645 return 0 | 6158 return 0 |
5646 else | 6159 else |
5647 _err "Uninstall Windows scheduler task failed." | 6160 _err "Failed to uninstall Windows scheduler task." |
5648 return 1 | 6161 return 1 |
5649 fi | 6162 fi |
5650 fi | 6163 fi |
5651 return | 6164 return |
5652 fi | 6165 fi |
5653 _info "Removing cron job" | 6166 _info "Removing cron job" |
5654 cr="$($_CRONTAB -l | grep "$PROJECT_ENTRY --cron")" | 6167 cr="$($_CRONTAB -l | grep "$PROJECT_ENTRY --cron")" |
5655 if [ "$cr" ]; then | 6168 if [ "$cr" ]; then |
5656 if _exists uname && uname -a | grep solaris >/dev/null; then | 6169 if _exists uname && uname -a | grep SunOS >/dev/null; then |
5657 $_CRONTAB -l | sed "/$PROJECT_ENTRY --cron/d" | $_CRONTAB -- | 6170 $_CRONTAB -l | sed "/$PROJECT_ENTRY --cron/d" | $_CRONTAB -- |
5658 else | 6171 else |
5659 $_CRONTAB -l | sed "/$PROJECT_ENTRY --cron/d" | $_CRONTAB - | 6172 $_CRONTAB -l | sed "/$PROJECT_ENTRY --cron/d" | $_CRONTAB - |
5660 fi | 6173 fi |
5661 LE_WORKING_DIR="$(echo "$cr" | cut -d ' ' -f 9 | tr -d '"')" | 6174 LE_WORKING_DIR="$(echo "$cr" | cut -d ' ' -f 9 | tr -d '"')" |
5682 if [ -z "$_reason" ]; then | 6195 if [ -z "$_reason" ]; then |
5683 _reason="0" | 6196 _reason="0" |
5684 fi | 6197 fi |
5685 _initpath "$Le_Domain" "$_isEcc" | 6198 _initpath "$Le_Domain" "$_isEcc" |
5686 if [ ! -f "$DOMAIN_CONF" ]; then | 6199 if [ ! -f "$DOMAIN_CONF" ]; then |
5687 _err "$Le_Domain is not a issued domain, skip." | 6200 _err "$Le_Domain is not an issued domain, skipping." |
5688 return 1 | 6201 return 1 |
5689 fi | 6202 fi |
5690 | 6203 |
5691 if [ ! -f "$CERT_PATH" ]; then | 6204 if [ ! -f "$CERT_PATH" ]; then |
5692 _err "Cert for $Le_Domain $CERT_PATH is not found, skip." | 6205 _err "Cert for $Le_Domain $CERT_PATH was not found, skipping." |
5693 return 1 | 6206 return 1 |
6207 fi | |
6208 | |
6209 . "$DOMAIN_CONF" | |
6210 _debug Le_API "$Le_API" | |
6211 | |
6212 if [ "$Le_API" ]; then | |
6213 if [ "$Le_API" != "$ACME_DIRECTORY" ]; then | |
6214 _clearAPI | |
6215 fi | |
6216 export ACME_DIRECTORY="$Le_API" | |
6217 #reload ca configs | |
6218 ACCOUNT_KEY_PATH="" | |
6219 ACCOUNT_JSON_PATH="" | |
6220 CA_CONF="" | |
6221 _debug3 "initpath again." | |
6222 _initpath "$Le_Domain" "$_isEcc" | |
6223 _initAPI | |
5694 fi | 6224 fi |
5695 | 6225 |
5696 cert="$(_getfile "${CERT_PATH}" "${BEGIN_CERT}" "${END_CERT}" | tr -d "\r\n" | _url_replace)" | 6226 cert="$(_getfile "${CERT_PATH}" "${BEGIN_CERT}" "${END_CERT}" | tr -d "\r\n" | _url_replace)" |
5697 | 6227 |
5698 if [ -z "$cert" ]; then | 6228 if [ -z "$cert" ]; then |
5699 _err "Cert for $Le_Domain is empty found, skip." | 6229 _err "Cert for $Le_Domain is empty, skipping." |
5700 return 1 | 6230 return 1 |
5701 fi | 6231 fi |
5702 | 6232 |
5703 _initAPI | 6233 _initAPI |
5704 | 6234 |
5705 if [ "$ACME_VERSION" = "2" ]; then | 6235 data="{\"certificate\": \"$cert\",\"reason\":$_reason}" |
5706 data="{\"certificate\": \"$cert\",\"reason\":$_reason}" | 6236 |
5707 else | |
5708 data="{\"resource\": \"revoke-cert\", \"certificate\": \"$cert\"}" | |
5709 fi | |
5710 uri="${ACME_REVOKE_CERT}" | 6237 uri="${ACME_REVOKE_CERT}" |
5711 | 6238 |
6239 _info "Trying account key first." | |
6240 if _send_signed_request "$uri" "$data" "" "$ACCOUNT_KEY_PATH"; then | |
6241 if [ -z "$response" ]; then | |
6242 _info "Successfully revoked." | |
6243 rm -f "$CERT_PATH" | |
6244 cat "$CERT_KEY_PATH" >"$CERT_KEY_PATH.revoked" | |
6245 cat "$CSR_PATH" >"$CSR_PATH.revoked" | |
6246 return 0 | |
6247 else | |
6248 _err "Error revoking." | |
6249 _debug "$response" | |
6250 fi | |
6251 fi | |
6252 | |
5712 if [ -f "$CERT_KEY_PATH" ]; then | 6253 if [ -f "$CERT_KEY_PATH" ]; then |
5713 _info "Try domain key first." | 6254 _info "Trying domain key." |
5714 if _send_signed_request "$uri" "$data" "" "$CERT_KEY_PATH"; then | 6255 if _send_signed_request "$uri" "$data" "" "$CERT_KEY_PATH"; then |
5715 if [ -z "$response" ]; then | 6256 if [ -z "$response" ]; then |
5716 _info "Revoke success." | 6257 _info "Successfully revoked." |
5717 rm -f "$CERT_PATH" | 6258 rm -f "$CERT_PATH" |
6259 cat "$CERT_KEY_PATH" >"$CERT_KEY_PATH.revoked" | |
6260 cat "$CSR_PATH" >"$CSR_PATH.revoked" | |
5718 return 0 | 6261 return 0 |
5719 else | 6262 else |
5720 _err "Revoke error by domain key." | 6263 _err "Error revoking using domain key." |
5721 _err "$response" | 6264 _err "$response" |
5722 fi | 6265 fi |
5723 fi | 6266 fi |
5724 else | 6267 else |
5725 _info "Domain key file doesn't exist." | 6268 _info "Domain key file doesn't exist." |
5726 fi | |
5727 | |
5728 _info "Try account key." | |
5729 | |
5730 if _send_signed_request "$uri" "$data" "" "$ACCOUNT_KEY_PATH"; then | |
5731 if [ -z "$response" ]; then | |
5732 _info "Revoke success." | |
5733 rm -f "$CERT_PATH" | |
5734 return 0 | |
5735 else | |
5736 _err "Revoke error." | |
5737 _debug "$response" | |
5738 fi | |
5739 fi | 6269 fi |
5740 return 1 | 6270 return 1 |
5741 } | 6271 } |
5742 | 6272 |
5743 #domain ecc | 6273 #domain ecc |
5752 | 6282 |
5753 _initpath "$Le_Domain" "$_isEcc" | 6283 _initpath "$Le_Domain" "$_isEcc" |
5754 _removed_conf="$DOMAIN_CONF.removed" | 6284 _removed_conf="$DOMAIN_CONF.removed" |
5755 if [ ! -f "$DOMAIN_CONF" ]; then | 6285 if [ ! -f "$DOMAIN_CONF" ]; then |
5756 if [ -f "$_removed_conf" ]; then | 6286 if [ -f "$_removed_conf" ]; then |
5757 _err "$Le_Domain is already removed, You can remove the folder by yourself: $DOMAIN_PATH" | 6287 _err "$Le_Domain has already been removed. You can remove the folder by yourself: $DOMAIN_PATH" |
5758 else | 6288 else |
5759 _err "$Le_Domain is not a issued domain, skip." | 6289 _err "$Le_Domain is not an issued domain, skipping." |
5760 fi | 6290 fi |
5761 return 1 | 6291 return 1 |
5762 fi | 6292 fi |
5763 | 6293 |
5764 if mv "$DOMAIN_CONF" "$_removed_conf"; then | 6294 if mv "$DOMAIN_CONF" "$_removed_conf"; then |
5765 _info "$Le_Domain is removed, the key and cert files are in $(__green $DOMAIN_PATH)" | 6295 _info "$Le_Domain has been removed. The key and cert files are in $(__green $DOMAIN_PATH)" |
5766 _info "You can remove them by yourself." | 6296 _info "You can remove them by yourself." |
5767 return 0 | 6297 return 0 |
5768 else | 6298 else |
5769 _err "Remove $Le_Domain failed." | 6299 _err "Failed to remove $Le_Domain." |
5770 return 1 | 6300 return 1 |
5771 fi | 6301 fi |
5772 } | 6302 } |
5773 | 6303 |
5774 #domain vtype | 6304 #domain vtype |
5775 _deactivate() { | 6305 _deactivate() { |
5776 _d_domain="$1" | 6306 _d_domain="$1" |
5777 _d_type="$2" | 6307 _d_type="$2" |
5778 _initpath | 6308 _initpath "$_d_domain" "$_d_type" |
5779 | 6309 |
5780 if [ "$ACME_VERSION" = "2" ]; then | 6310 . "$DOMAIN_CONF" |
5781 _identifiers="{\"type\":\"dns\",\"value\":\"$_d_domain\"}" | 6311 _debug Le_API "$Le_API" |
5782 if ! _send_signed_request "$ACME_NEW_ORDER" "{\"identifiers\": [$_identifiers]}"; then | 6312 |
5783 _err "Can not get domain new order." | 6313 if [ "$Le_API" ]; then |
5784 return 1 | 6314 if [ "$Le_API" != "$ACME_DIRECTORY" ]; then |
5785 fi | 6315 _clearAPI |
5786 _authorizations_seg="$(echo "$response" | _egrep_o '"authorizations" *: *\[[^\]*\]' | cut -d '[' -f 2 | tr -d ']' | tr -d '"')" | 6316 fi |
5787 _debug2 _authorizations_seg "$_authorizations_seg" | 6317 export ACME_DIRECTORY="$Le_API" |
5788 if [ -z "$_authorizations_seg" ]; then | 6318 #reload ca configs |
5789 _err "_authorizations_seg not found." | 6319 ACCOUNT_KEY_PATH="" |
5790 _clearup | 6320 ACCOUNT_JSON_PATH="" |
5791 _on_issue_err "$_post_hook" | 6321 CA_CONF="" |
5792 return 1 | 6322 _debug3 "initpath again." |
5793 fi | 6323 _initpath "$Le_Domain" "$_d_type" |
5794 | 6324 _initAPI |
5795 authzUri="$_authorizations_seg" | 6325 fi |
5796 _debug2 "authzUri" "$authzUri" | 6326 |
5797 if ! _send_signed_request "$authzUri"; then | 6327 _identifiers="{\"type\":\"$(_getIdType "$_d_domain")\",\"value\":\"$_d_domain\"}" |
5798 _err "get to authz error." | 6328 if ! _send_signed_request "$ACME_NEW_ORDER" "{\"identifiers\": [$_identifiers]}"; then |
5799 _err "_authorizations_seg" "$_authorizations_seg" | 6329 _err "Cannot get new order for domain." |
5800 _err "authzUri" "$authzUri" | 6330 return 1 |
5801 _clearup | 6331 fi |
5802 _on_issue_err "$_post_hook" | 6332 _authorizations_seg="$(echo "$response" | _egrep_o '"authorizations" *: *\[[^\]*\]' | cut -d '[' -f 2 | tr -d ']' | tr -d '"')" |
5803 return 1 | 6333 _debug2 _authorizations_seg "$_authorizations_seg" |
5804 fi | 6334 if [ -z "$_authorizations_seg" ]; then |
5805 | 6335 _err "_authorizations_seg not found." |
5806 response="$(echo "$response" | _normalizeJson)" | 6336 _clearup |
5807 _debug2 response "$response" | 6337 _on_issue_err "$_post_hook" |
5808 _URL_NAME="url" | 6338 return 1 |
5809 else | 6339 fi |
5810 if ! __get_domain_new_authz "$_d_domain"; then | 6340 |
5811 _err "Can not get domain new authz token." | 6341 authzUri="$_authorizations_seg" |
5812 return 1 | 6342 _debug2 "authzUri" "$authzUri" |
5813 fi | 6343 if ! _send_signed_request "$authzUri"; then |
5814 | 6344 _err "Error making GET request for authz." |
5815 authzUri="$(echo "$responseHeaders" | grep "^Location:" | _head_n 1 | cut -d ':' -f 2- | tr -d "\r\n")" | 6345 _err "_authorizations_seg" "$_authorizations_seg" |
5816 _debug "authzUri" "$authzUri" | 6346 _err "authzUri" "$authzUri" |
5817 if [ "$code" ] && [ ! "$code" = '201' ]; then | 6347 _clearup |
5818 _err "new-authz error: $response" | 6348 _on_issue_err "$_post_hook" |
5819 return 1 | 6349 return 1 |
5820 fi | 6350 fi |
5821 _URL_NAME="uri" | 6351 |
5822 fi | 6352 response="$(echo "$response" | _normalizeJson)" |
5823 | 6353 _debug2 response "$response" |
5824 entries="$(echo "$response" | _egrep_o "[^{]*\"type\":\"[^\"]*\", *\"status\": *\"valid\", *\"$_URL_NAME\"[^}]*")" | 6354 _URL_NAME="url" |
6355 | |
6356 entries="$(echo "$response" | tr '][' '==' | _egrep_o "challenges\": *=[^=]*=" | tr '}{' '\n\n' | grep "\"status\": *\"valid\"")" | |
5825 if [ -z "$entries" ]; then | 6357 if [ -z "$entries" ]; then |
5826 _info "No valid entries found." | 6358 _info "No valid entries found." |
5827 if [ -z "$thumbprint" ]; then | 6359 if [ -z "$thumbprint" ]; then |
5828 thumbprint="$(__calc_account_thumbprint)" | 6360 thumbprint="$(__calc_account_thumbprint)" |
5829 fi | 6361 fi |
5830 _debug "Trigger validation." | 6362 _debug "Trigger validation." |
5831 vtype="$VTYPE_DNS" | 6363 vtype="$(_getIdType "$_d_domain")" |
5832 entry="$(echo "$response" | _egrep_o '[^\{]*"type":"'$vtype'"[^\}]*')" | 6364 # Fix for empty error objects in response which mess up the original code, adapted from fix suggested here: https://github.com/acmesh-official/acme.sh/issues/4933#issuecomment-1870499018 |
6365 entry="$(echo "$response" | sed s/'"error":{}'/'"error":null'/ | _egrep_o '[^\{]*"type":"'$vtype'"[^\}]*')" | |
5833 _debug entry "$entry" | 6366 _debug entry "$entry" |
5834 if [ -z "$entry" ]; then | 6367 if [ -z "$entry" ]; then |
5835 _err "Error, can not get domain token $d" | 6368 _err "$d: Cannot get domain token" |
5836 return 1 | 6369 return 1 |
5837 fi | 6370 fi |
5838 token="$(echo "$entry" | _egrep_o '"token":"[^"]*' | cut -d : -f 2 | tr -d '"')" | 6371 token="$(echo "$entry" | _egrep_o '"token":"[^"]*' | cut -d : -f 2 | tr -d '"')" |
5839 _debug token "$token" | 6372 _debug token "$token" |
5840 | 6373 |
5848 fi | 6381 fi |
5849 | 6382 |
5850 _d_i=0 | 6383 _d_i=0 |
5851 _d_max_retry=$(echo "$entries" | wc -l) | 6384 _d_max_retry=$(echo "$entries" | wc -l) |
5852 while [ "$_d_i" -lt "$_d_max_retry" ]; do | 6385 while [ "$_d_i" -lt "$_d_max_retry" ]; do |
5853 _info "Deactivate: $_d_domain" | 6386 _info "Deactivating $_d_domain" |
5854 _d_i="$(_math $_d_i + 1)" | 6387 _d_i="$(_math $_d_i + 1)" |
5855 entry="$(echo "$entries" | sed -n "${_d_i}p")" | 6388 entry="$(echo "$entries" | sed -n "${_d_i}p")" |
5856 _debug entry "$entry" | 6389 _debug entry "$entry" |
5857 | 6390 |
5858 if [ -z "$entry" ]; then | 6391 if [ -z "$entry" ]; then |
5859 _info "No more valid entry found." | 6392 _info "No more valid entries found." |
5860 break | 6393 break |
5861 fi | 6394 fi |
5862 | 6395 |
5863 _vtype="$(echo "$entry" | _egrep_o '"type": *"[^"]*"' | cut -d : -f 2 | tr -d '"')" | 6396 _vtype="$(echo "$entry" | _egrep_o '"type": *"[^"]*"' | cut -d : -f 2 | tr -d '"')" |
5864 _debug _vtype "$_vtype" | 6397 _debug _vtype "$_vtype" |
5865 _info "Found $_vtype" | 6398 _info "Found $_vtype" |
5866 | 6399 |
5867 uri="$(echo "$entry" | _egrep_o "\"$_URL_NAME\":\"[^\"]*" | cut -d : -f 2,3 | tr -d '"')" | 6400 uri="$(echo "$entry" | _egrep_o "\"$_URL_NAME\":\"[^\"]*\"" | tr -d '" ' | cut -d : -f 2-)" |
5868 _debug uri "$uri" | 6401 _debug uri "$uri" |
5869 | 6402 |
5870 if [ "$_d_type" ] && [ "$_d_type" != "$_vtype" ]; then | 6403 if [ "$_d_type" ] && [ "$_d_type" != "$_vtype" ]; then |
5871 _info "Skip $_vtype" | 6404 _info "Skipping $_vtype" |
5872 continue | 6405 continue |
5873 fi | 6406 fi |
5874 | 6407 |
5875 _info "Deactivate: $_vtype" | 6408 _info "Deactivating $_vtype" |
5876 | 6409 |
5877 if [ "$ACME_VERSION" = "2" ]; then | 6410 _djson="{\"status\":\"deactivated\"}" |
5878 _djson="{\"status\":\"deactivated\"}" | 6411 |
6412 if _send_signed_request "$authzUri" "$_djson" && _contains "$response" '"deactivated"'; then | |
6413 _info "Successfully deactivated $_vtype." | |
5879 else | 6414 else |
5880 _djson="{\"resource\": \"authz\", \"status\":\"deactivated\"}" | 6415 _err "Could not deactivate $_vtype." |
5881 fi | |
5882 | |
5883 if _send_signed_request "$authzUri" "$_djson" && _contains "$response" '"deactivated"'; then | |
5884 _info "Deactivate: $_vtype success." | |
5885 else | |
5886 _err "Can not deactivate $_vtype." | |
5887 break | 6416 break |
5888 fi | 6417 fi |
5889 | 6418 |
5890 done | 6419 done |
5891 _debug "$_d_i" | 6420 _debug "$_d_i" |
5892 if [ "$_d_i" -eq "$_d_max_retry" ]; then | 6421 if [ "$_d_i" -eq "$_d_max_retry" ]; then |
5893 _info "Deactivated success!" | 6422 _info "Successfully deactivated!" |
5894 else | 6423 else |
5895 _err "Deactivate failed." | 6424 _err "Deactivation failed." |
5896 fi | 6425 fi |
5897 | 6426 |
5898 } | 6427 } |
5899 | 6428 |
5900 deactivate() { | 6429 deactivate() { |
5954 | 6483 |
5955 _initconf() { | 6484 _initconf() { |
5956 _initpath | 6485 _initpath |
5957 if [ ! -f "$ACCOUNT_CONF_PATH" ]; then | 6486 if [ ! -f "$ACCOUNT_CONF_PATH" ]; then |
5958 echo " | 6487 echo " |
6488 | |
5959 #LOG_FILE=\"$DEFAULT_LOG_FILE\" | 6489 #LOG_FILE=\"$DEFAULT_LOG_FILE\" |
5960 #LOG_LEVEL=1 | 6490 #LOG_LEVEL=1 |
6491 | |
5961 #AUTO_UPGRADE=\"1\" | 6492 #AUTO_UPGRADE=\"1\" |
6493 | |
5962 #NO_TIMESTAMP=1 | 6494 #NO_TIMESTAMP=1 |
6495 | |
5963 " >"$ACCOUNT_CONF_PATH" | 6496 " >"$ACCOUNT_CONF_PATH" |
5964 fi | 6497 fi |
5965 } | 6498 } |
5966 | 6499 |
5967 # nocron | 6500 # nocron |
5968 _precheck() { | 6501 _precheck() { |
5969 _nocron="$1" | 6502 _nocron="$1" |
5970 | 6503 |
5971 if ! _exists "curl" && ! _exists "wget"; then | 6504 if ! _exists "curl" && ! _exists "wget"; then |
5972 _err "Please install curl or wget first, we need to access http resources." | 6505 _err "Please install curl or wget first to enable access to HTTP resources." |
5973 return 1 | 6506 return 1 |
5974 fi | 6507 fi |
5975 | 6508 |
5976 if [ -z "$_nocron" ]; then | 6509 if [ -z "$_nocron" ]; then |
5977 if ! _exists "crontab" && ! _exists "fcrontab"; then | 6510 if ! _exists "crontab" && ! _exists "fcrontab"; then |
5978 if _exists cygpath && _exists schtasks.exe; then | 6511 if _exists cygpath && _exists schtasks.exe; then |
5979 _info "It seems you are on Windows, we will install Windows scheduler task." | 6512 _info "It seems you are on Windows, we will install the Windows scheduler task." |
5980 else | 6513 else |
5981 _err "It is recommended to install crontab first. try to install 'cron, crontab, crontabs or vixie-cron'." | 6514 _err "It is recommended to install crontab first. Try to install 'cron', 'crontab', 'crontabs' or 'vixie-cron'." |
5982 _err "We need to set cron job to renew the certs automatically." | 6515 _err "We need to set a cron job to renew the certs automatically." |
5983 _err "Otherwise, your certs will not be able to be renewed automatically." | 6516 _err "Otherwise, your certs will not be able to be renewed automatically." |
5984 if [ -z "$FORCE" ]; then | 6517 if [ -z "$FORCE" ]; then |
5985 _err "Please add '--force' and try install again to go without crontab." | 6518 _err "Please add '--force' and try install again to go without crontab." |
5986 _err "./$PROJECT_ENTRY --install --force" | 6519 _err "./$PROJECT_ENTRY --install --force" |
5987 return 1 | 6520 return 1 |
5996 return 1 | 6529 return 1 |
5997 fi | 6530 fi |
5998 | 6531 |
5999 if ! _exists "socat"; then | 6532 if ! _exists "socat"; then |
6000 _err "It is recommended to install socat first." | 6533 _err "It is recommended to install socat first." |
6001 _err "We use socat for standalone server if you use standalone mode." | 6534 _err "We use socat for the standalone server, which is used for standalone mode." |
6002 _err "If you don't use standalone mode, just ignore this warning." | 6535 _err "If you don't want to use standalone mode, you may ignore this warning." |
6003 fi | 6536 fi |
6004 | 6537 |
6005 return 0 | 6538 return 0 |
6006 } | 6539 } |
6007 | 6540 |
6045 _profile="$(_detect_profile)" | 6578 _profile="$(_detect_profile)" |
6046 if [ "$_profile" ]; then | 6579 if [ "$_profile" ]; then |
6047 _debug "Found profile: $_profile" | 6580 _debug "Found profile: $_profile" |
6048 _info "Installing alias to '$_profile'" | 6581 _info "Installing alias to '$_profile'" |
6049 _setopt "$_profile" ". \"$_envfile\"" | 6582 _setopt "$_profile" ". \"$_envfile\"" |
6050 _info "OK, Close and reopen your terminal to start using $PROJECT_NAME" | 6583 _info "Close and reopen your terminal to start using $PROJECT_NAME" |
6051 else | 6584 else |
6052 _info "No profile is found, you will need to go into $LE_WORKING_DIR to use $PROJECT_NAME" | 6585 _info "No profile has been found, you will need to change your working directory to $LE_WORKING_DIR to use $PROJECT_NAME" |
6053 fi | 6586 fi |
6054 | 6587 |
6055 #for csh | 6588 #for csh |
6056 _cshfile="$LE_WORKING_DIR/$PROJECT_ENTRY.csh" | 6589 _cshfile="$LE_WORKING_DIR/$PROJECT_ENTRY.csh" |
6057 _csh_profile="$HOME/.cshrc" | 6590 _csh_profile="$HOME/.cshrc" |
6079 _setopt "$_tcsh_profile" "source \"$_cshfile\"" | 6612 _setopt "$_tcsh_profile" "source \"$_cshfile\"" |
6080 fi | 6613 fi |
6081 | 6614 |
6082 } | 6615 } |
6083 | 6616 |
6084 # nocron confighome noprofile | 6617 # nocron confighome noprofile accountemail |
6085 install() { | 6618 install() { |
6086 | 6619 |
6087 if [ -z "$LE_WORKING_DIR" ]; then | 6620 if [ -z "$LE_WORKING_DIR" ]; then |
6088 LE_WORKING_DIR="$DEFAULT_INSTALL_HOME" | 6621 LE_WORKING_DIR="$DEFAULT_INSTALL_HOME" |
6089 fi | 6622 fi |
6090 | 6623 |
6091 _nocron="$1" | 6624 _nocron="$1" |
6092 _c_home="$2" | 6625 _c_home="$2" |
6093 _noprofile="$3" | 6626 _noprofile="$3" |
6627 _accountemail="$4" | |
6628 | |
6094 if ! _initpath; then | 6629 if ! _initpath; then |
6095 _err "Install failed." | 6630 _err "Install failed." |
6096 return 1 | 6631 return 1 |
6097 fi | 6632 fi |
6098 if [ "$_nocron" ]; then | 6633 if [ "$_nocron" ]; then |
6099 _debug "Skip install cron job" | 6634 _debug "Skipping cron job installation" |
6100 fi | 6635 fi |
6101 | 6636 |
6102 if [ "$_ACME_IN_CRON" != "1" ]; then | 6637 if [ "$_ACME_IN_CRON" != "1" ]; then |
6103 if ! _precheck "$_nocron"; then | 6638 if ! _precheck "$_nocron"; then |
6104 _err "Pre-check failed, can not install." | 6639 _err "Pre-check failed, cannot install." |
6105 return 1 | 6640 return 1 |
6106 fi | 6641 fi |
6107 fi | 6642 fi |
6108 | 6643 |
6109 if [ -z "$_c_home" ] && [ "$LE_CONFIG_HOME" != "$LE_WORKING_DIR" ]; then | 6644 if [ -z "$_c_home" ] && [ "$LE_CONFIG_HOME" != "$LE_WORKING_DIR" ]; then |
6129 | 6664 |
6130 _info "Installing to $LE_WORKING_DIR" | 6665 _info "Installing to $LE_WORKING_DIR" |
6131 | 6666 |
6132 if [ ! -d "$LE_WORKING_DIR" ]; then | 6667 if [ ! -d "$LE_WORKING_DIR" ]; then |
6133 if ! mkdir -p "$LE_WORKING_DIR"; then | 6668 if ! mkdir -p "$LE_WORKING_DIR"; then |
6134 _err "Can not create working dir: $LE_WORKING_DIR" | 6669 _err "Cannot create working dir: $LE_WORKING_DIR" |
6135 return 1 | 6670 return 1 |
6136 fi | 6671 fi |
6137 | 6672 |
6138 chmod 700 "$LE_WORKING_DIR" | 6673 chmod 700 "$LE_WORKING_DIR" |
6139 fi | 6674 fi |
6140 | 6675 |
6141 if [ ! -d "$LE_CONFIG_HOME" ]; then | 6676 if [ ! -d "$LE_CONFIG_HOME" ]; then |
6142 if ! mkdir -p "$LE_CONFIG_HOME"; then | 6677 if ! mkdir -p "$LE_CONFIG_HOME"; then |
6143 _err "Can not create config dir: $LE_CONFIG_HOME" | 6678 _err "Cannot create config dir: $LE_CONFIG_HOME" |
6144 return 1 | 6679 return 1 |
6145 fi | 6680 fi |
6146 | 6681 |
6147 chmod 700 "$LE_CONFIG_HOME" | 6682 chmod 700 "$LE_CONFIG_HOME" |
6148 fi | 6683 fi |
6149 | 6684 |
6150 cp "$PROJECT_ENTRY" "$LE_WORKING_DIR/" && chmod +x "$LE_WORKING_DIR/$PROJECT_ENTRY" | 6685 cp "$PROJECT_ENTRY" "$LE_WORKING_DIR/" && chmod +x "$LE_WORKING_DIR/$PROJECT_ENTRY" |
6151 | 6686 |
6152 if [ "$?" != "0" ]; then | 6687 if [ "$?" != "0" ]; then |
6153 _err "Install failed, can not copy $PROJECT_ENTRY" | 6688 _err "Installation failed, cannot copy $PROJECT_ENTRY" |
6154 return 1 | 6689 return 1 |
6155 fi | 6690 fi |
6156 | 6691 |
6157 _info "Installed to $LE_WORKING_DIR/$PROJECT_ENTRY" | 6692 _info "Installed to $LE_WORKING_DIR/$PROJECT_ENTRY" |
6158 | 6693 |
6194 if [ -z "$_bash_path" ]; then | 6729 if [ -z "$_bash_path" ]; then |
6195 _bash_path="$(bash -c 'echo $SHELL')" | 6730 _bash_path="$(bash -c 'echo $SHELL')" |
6196 fi | 6731 fi |
6197 fi | 6732 fi |
6198 if [ "$_bash_path" ]; then | 6733 if [ "$_bash_path" ]; then |
6199 _info "Good, bash is found, so change the shebang to use bash as preferred." | 6734 _info "bash has been found. Changing the shebang to use bash as preferred." |
6200 _shebang='#!'"$_bash_path" | 6735 _shebang='#!'"$_bash_path" |
6201 _setShebang "$LE_WORKING_DIR/$PROJECT_ENTRY" "$_shebang" | 6736 _setShebang "$LE_WORKING_DIR/$PROJECT_ENTRY" "$_shebang" |
6202 for subf in $_SUB_FOLDERS; do | 6737 for subf in $_SUB_FOLDERS; do |
6203 if [ -d "$LE_WORKING_DIR/$subf" ]; then | 6738 if [ -d "$LE_WORKING_DIR/$subf" ]; then |
6204 for _apifile in "$LE_WORKING_DIR/$subf/"*.sh; do | 6739 for _apifile in "$LE_WORKING_DIR/$subf/"*.sh; do |
6207 fi | 6742 fi |
6208 done | 6743 done |
6209 fi | 6744 fi |
6210 fi | 6745 fi |
6211 | 6746 |
6747 if [ "$_accountemail" ]; then | |
6748 _saveaccountconf "ACCOUNT_EMAIL" "$_accountemail" | |
6749 fi | |
6750 _saveaccountconf "UPGRADE_HASH" "$(_getUpgradeHash)" | |
6212 _info OK | 6751 _info OK |
6213 } | 6752 } |
6214 | 6753 |
6215 # nocron | 6754 # nocron |
6216 uninstall() { | 6755 uninstall() { |
6221 _initpath | 6760 _initpath |
6222 | 6761 |
6223 _uninstallalias | 6762 _uninstallalias |
6224 | 6763 |
6225 rm -f "$LE_WORKING_DIR/$PROJECT_ENTRY" | 6764 rm -f "$LE_WORKING_DIR/$PROJECT_ENTRY" |
6226 _info "The keys and certs are in \"$(__green "$LE_CONFIG_HOME")\", you can remove them by yourself." | 6765 _info "The keys and certs are in \"$(__green "$LE_CONFIG_HOME")\". You can remove them by yourself." |
6227 | 6766 |
6228 } | 6767 } |
6229 | 6768 |
6230 _uninstallalias() { | 6769 _uninstallalias() { |
6231 _initpath | 6770 _initpath |
6259 _info "$(__green "===Starting cron===")" | 6798 _info "$(__green "===Starting cron===")" |
6260 if [ "$AUTO_UPGRADE" = "1" ]; then | 6799 if [ "$AUTO_UPGRADE" = "1" ]; then |
6261 export LE_WORKING_DIR | 6800 export LE_WORKING_DIR |
6262 ( | 6801 ( |
6263 if ! upgrade; then | 6802 if ! upgrade; then |
6264 _err "Cron:Upgrade failed!" | 6803 _err "Cron: Upgrade failed!" |
6265 return 1 | 6804 return 1 |
6266 fi | 6805 fi |
6267 ) | 6806 ) |
6268 . "$LE_WORKING_DIR/$PROJECT_ENTRY" >/dev/null | 6807 . "$LE_WORKING_DIR/$PROJECT_ENTRY" >/dev/null |
6269 | 6808 |
6270 if [ -t 1 ]; then | 6809 if [ -t 1 ]; then |
6271 __INTERACTIVE="1" | 6810 __INTERACTIVE="1" |
6272 fi | 6811 fi |
6273 | 6812 |
6274 _info "Auto upgraded to: $VER" | 6813 _info "Automatically upgraded to: $VER" |
6275 fi | 6814 fi |
6276 renewAll | 6815 renewAll |
6277 _ret="$?" | 6816 _ret="$?" |
6278 _ACME_IN_CRON="" | 6817 _ACME_IN_CRON="" |
6279 _info "$(__green "===End cron===")" | 6818 _info "$(__green "===End cron===")" |
6291 _ncontent="$2" | 6830 _ncontent="$2" |
6292 _nhooks="$3" | 6831 _nhooks="$3" |
6293 _nerror="$4" | 6832 _nerror="$4" |
6294 | 6833 |
6295 if [ "$NOTIFY_LEVEL" = "$NOTIFY_LEVEL_DISABLE" ]; then | 6834 if [ "$NOTIFY_LEVEL" = "$NOTIFY_LEVEL_DISABLE" ]; then |
6296 _debug "The NOTIFY_LEVEL is $NOTIFY_LEVEL, disabled, just return." | 6835 _debug "The NOTIFY_LEVEL is $NOTIFY_LEVEL, which means it's disabled, so will just return." |
6297 return 0 | 6836 return 0 |
6298 fi | 6837 fi |
6299 | 6838 |
6300 if [ -z "$_nhooks" ]; then | 6839 if [ -z "$_nhooks" ]; then |
6301 _debug "The NOTIFY_HOOK is empty, just return." | 6840 _debug "The NOTIFY_HOOK is empty, will just return." |
6302 return 0 | 6841 return 0 |
6303 fi | 6842 fi |
6843 | |
6844 _nsource="$NOTIFY_SOURCE" | |
6845 if [ -z "$_nsource" ]; then | |
6846 _nsource="$(uname -n)" | |
6847 fi | |
6848 | |
6849 _nsubject="$_nsubject by $_nsource" | |
6304 | 6850 |
6305 _send_err=0 | 6851 _send_err=0 |
6306 for _n_hook in $(echo "$_nhooks" | tr ',' " "); do | 6852 for _n_hook in $(echo "$_nhooks" | tr ',' " "); do |
6307 _n_hook_file="$(_findHook "" $_SUB_FOLDER_NOTIFY "$_n_hook")" | 6853 _n_hook_file="$(_findHook "" $_SUB_FOLDER_NOTIFY "$_n_hook")" |
6308 _info "Sending via: $_n_hook" | 6854 _info "Sending via: $_n_hook" |
6309 _debug "Found $_n_hook_file for $_n_hook" | 6855 _debug "Found $_n_hook_file for $_n_hook" |
6310 if [ -z "$_n_hook_file" ]; then | 6856 if [ -z "$_n_hook_file" ]; then |
6311 _err "Can not find the hook file for $_n_hook" | 6857 _err "Cannot find the hook file for $_n_hook" |
6312 continue | 6858 continue |
6313 fi | 6859 fi |
6314 if ! ( | 6860 if ! ( |
6315 if ! . "$_n_hook_file"; then | 6861 if ! . "$_n_hook_file"; then |
6316 _err "Load file $_n_hook_file error. Please check your api file and try again." | 6862 _err "Error loading file $_n_hook_file. Please check your API file and try again." |
6317 return 1 | 6863 return 1 |
6318 fi | 6864 fi |
6319 | 6865 |
6320 d_command="${_n_hook}_send" | 6866 d_command="${_n_hook}_send" |
6321 if ! _exists "$d_command"; then | 6867 if ! _exists "$d_command"; then |
6322 _err "It seems that your api file is not correct, it must have a function named: $d_command" | 6868 _err "It seems that your API file is not correct. Make sure it has a function named: $d_command" |
6323 return 1 | 6869 return 1 |
6324 fi | 6870 fi |
6325 | 6871 |
6326 if ! $d_command "$_nsubject" "$_ncontent" "$_nerror"; then | 6872 if ! $d_command "$_nsubject" "$_ncontent" "$_nerror"; then |
6327 _err "Error send message by $d_command" | 6873 _err "Error sending message using $d_command" |
6328 return 1 | 6874 return 1 |
6329 fi | 6875 fi |
6330 | 6876 |
6331 return 0 | 6877 return 0 |
6332 ); then | 6878 ); then |
6333 _err "Set $_n_hook_file error." | 6879 _err "Error setting $_n_hook_file." |
6334 _send_err=1 | 6880 _send_err=1 |
6335 else | 6881 else |
6336 _info "$_n_hook $(__green Success)" | 6882 _info "$_n_hook $(__green Success)" |
6337 fi | 6883 fi |
6338 done | 6884 done |
6354 #[hook] [level] [mode] | 6900 #[hook] [level] [mode] |
6355 setnotify() { | 6901 setnotify() { |
6356 _nhook="$1" | 6902 _nhook="$1" |
6357 _nlevel="$2" | 6903 _nlevel="$2" |
6358 _nmode="$3" | 6904 _nmode="$3" |
6905 _nsource="$4" | |
6359 | 6906 |
6360 _initpath | 6907 _initpath |
6361 | 6908 |
6362 if [ -z "$_nhook$_nlevel$_nmode" ]; then | 6909 if [ -z "$_nhook$_nlevel$_nmode$_nsource" ]; then |
6363 _usage "Usage: $PROJECT_ENTRY --set-notify [--notify-hook <hookname>] [--notify-level <0|1|2|3>] [--notify-mode <0|1>]" | 6910 _usage "Usage: $PROJECT_ENTRY --set-notify [--notify-hook <hookname>] [--notify-level <0|1|2|3>] [--notify-mode <0|1>] [--notify-source <hostname>]" |
6364 _usage "$_NOTIFY_WIKI" | 6911 _usage "$_NOTIFY_WIKI" |
6365 return 1 | 6912 return 1 |
6366 fi | 6913 fi |
6367 | 6914 |
6368 if [ "$_nlevel" ]; then | 6915 if [ "$_nlevel" ]; then |
6375 _info "Set notify mode to: $_nmode" | 6922 _info "Set notify mode to: $_nmode" |
6376 export "NOTIFY_MODE=$_nmode" | 6923 export "NOTIFY_MODE=$_nmode" |
6377 _saveaccountconf "NOTIFY_MODE" "$NOTIFY_MODE" | 6924 _saveaccountconf "NOTIFY_MODE" "$NOTIFY_MODE" |
6378 fi | 6925 fi |
6379 | 6926 |
6927 if [ "$_nsource" ]; then | |
6928 _info "Set notify source to: $_nsource" | |
6929 export "NOTIFY_SOURCE=$_nsource" | |
6930 _saveaccountconf "NOTIFY_SOURCE" "$NOTIFY_SOURCE" | |
6931 fi | |
6932 | |
6380 if [ "$_nhook" ]; then | 6933 if [ "$_nhook" ]; then |
6381 _info "Set notify hook to: $_nhook" | 6934 _info "Set notify hook to: $_nhook" |
6382 if [ "$_nhook" = "$NO_VALUE" ]; then | 6935 if [ "$_nhook" = "$NO_VALUE" ]; then |
6383 _info "Clear notify hook" | 6936 _info "Clearing notify hook" |
6384 _clearaccountconf "NOTIFY_HOOK" | 6937 _clearaccountconf "NOTIFY_HOOK" |
6385 else | 6938 else |
6386 if _set_notify_hook "$_nhook"; then | 6939 if _set_notify_hook "$_nhook"; then |
6387 export NOTIFY_HOOK="$_nhook" | 6940 export NOTIFY_HOOK="$_nhook" |
6388 _saveaccountconf "NOTIFY_HOOK" "$NOTIFY_HOOK" | 6941 _saveaccountconf "NOTIFY_HOOK" "$NOTIFY_HOOK" |
6389 return 0 | 6942 return 0 |
6390 else | 6943 else |
6391 _err "Can not set notify hook to: $_nhook" | 6944 _err "Cannot set notify hook to: $_nhook" |
6392 return 1 | 6945 return 1 |
6393 fi | 6946 fi |
6394 fi | 6947 fi |
6395 fi | 6948 fi |
6396 | 6949 |
6406 --install Install $PROJECT_NAME to your system. | 6959 --install Install $PROJECT_NAME to your system. |
6407 --uninstall Uninstall $PROJECT_NAME, and uninstall the cron job. | 6960 --uninstall Uninstall $PROJECT_NAME, and uninstall the cron job. |
6408 --upgrade Upgrade $PROJECT_NAME to the latest code from $PROJECT. | 6961 --upgrade Upgrade $PROJECT_NAME to the latest code from $PROJECT. |
6409 --issue Issue a cert. | 6962 --issue Issue a cert. |
6410 --deploy Deploy the cert to your server. | 6963 --deploy Deploy the cert to your server. |
6411 -i, --install-cert Install the issued cert to apache/nginx or any other server. | 6964 -i, --install-cert Install the issued cert to Apache/nginx or any other server. |
6412 -r, --renew Renew a cert. | 6965 -r, --renew Renew a cert. |
6413 --renew-all Renew all the certs. | 6966 --renew-all Renew all the certs. |
6414 --revoke Revoke a cert. | 6967 --revoke Revoke a cert. |
6415 --remove Remove the cert from list of certs known to $PROJECT_NAME. | 6968 --remove Remove the cert from list of certs known to $PROJECT_NAME. |
6416 --list List all the certs. | 6969 --list List all the certs. |
6970 --info Show the $PROJECT_NAME configs, or the configs for a domain with [-d domain] parameter. | |
6417 --to-pkcs12 Export the certificate and key to a pfx file. | 6971 --to-pkcs12 Export the certificate and key to a pfx file. |
6418 --to-pkcs8 Convert to pkcs8 format. | 6972 --to-pkcs8 Convert to pkcs8 format. |
6419 --sign-csr Issue a cert from an existing csr. | 6973 --sign-csr Issue a cert from an existing csr. |
6420 --show-csr Show the content of a csr. | 6974 --show-csr Show the content of a csr. |
6421 -ccr, --create-csr Create CSR, professional use. | 6975 -ccr, --create-csr Create CSR, professional use. |
6429 --cron Run cron job to renew all the certs. | 6983 --cron Run cron job to renew all the certs. |
6430 --set-notify Set the cron notification hook, level or mode. | 6984 --set-notify Set the cron notification hook, level or mode. |
6431 --deactivate Deactivate the domain authz, professional use. | 6985 --deactivate Deactivate the domain authz, professional use. |
6432 --set-default-ca Used with '--server', Set the default CA to use. | 6986 --set-default-ca Used with '--server', Set the default CA to use. |
6433 See: $_SERVER_WIKI | 6987 See: $_SERVER_WIKI |
6988 --set-default-chain Set the default preferred chain for a CA. | |
6989 See: $_PREFERRED_CHAIN_WIKI | |
6990 | |
6991 | |
6434 Parameters: | 6992 Parameters: |
6435 -d, --domain <domain.tld> Specifies a domain, used to issue, renew or revoke etc. | 6993 -d, --domain <domain.tld> Specifies a domain, used to issue, renew or revoke etc. |
6436 --challenge-alias <domain.tld> The challenge domain alias for DNS alias mode. | 6994 --challenge-alias <domain.tld> The challenge domain alias for DNS alias mode. |
6437 See: $_DNS_ALIAS_WIKI | 6995 See: $_DNS_ALIAS_WIKI |
6996 | |
6438 --domain-alias <domain.tld> The domain alias for DNS alias mode. | 6997 --domain-alias <domain.tld> The domain alias for DNS alias mode. |
6439 See: $_DNS_ALIAS_WIKI | 6998 See: $_DNS_ALIAS_WIKI |
6999 | |
6440 --preferred-chain <chain> If the CA offers multiple certificate chains, prefer the chain with an issuer matching this Subject Common Name. | 7000 --preferred-chain <chain> If the CA offers multiple certificate chains, prefer the chain with an issuer matching this Subject Common Name. |
6441 If no match, the default offered chain will be used. (default: empty) | 7001 If no match, the default offered chain will be used. (default: empty) |
6442 See: $_PREFERRED_CHAIN_WIKI | 7002 See: $_PREFERRED_CHAIN_WIKI |
7003 | |
7004 --valid-to <date-time> Request the NotAfter field of the cert. | |
7005 See: $_VALIDITY_WIKI | |
7006 --valid-from <date-time> Request the NotBefore field of the cert. | |
7007 See: $_VALIDITY_WIKI | |
7008 | |
6443 -f, --force Force install, force cert renewal or override sudo restrictions. | 7009 -f, --force Force install, force cert renewal or override sudo restrictions. |
6444 --staging, --test Use staging server, for testing. | 7010 --staging, --test Use staging server, for testing. |
6445 --debug [0|1|2|3] Output debug info. Defaults to 1 if argument is omitted. | 7011 --debug [0|1|2|3] Output debug info. Defaults to $DEBUG_LEVEL_DEFAULT if argument is omitted. |
6446 --output-insecure Output all the sensitive messages. | 7012 --output-insecure Output all the sensitive messages. |
6447 By default all the credentials/sensitive messages are hidden from the output/debug/log for security. | 7013 By default all the credentials/sensitive messages are hidden from the output/debug/log for security. |
6448 -w, --webroot <directory> Specifies the web root folder for web root mode. | 7014 -w, --webroot <directory> Specifies the web root folder for web root mode. |
6449 --standalone Use standalone mode. | 7015 --standalone Use standalone mode. |
6450 --alpn Use standalone alpn mode. | 7016 --alpn Use standalone alpn mode. |
6451 --stateless Use stateless mode. | 7017 --stateless Use stateless mode. |
6452 See: $_STATELESS_WIKI | 7018 See: $_STATELESS_WIKI |
6453 --apache Use apache mode. | 7019 |
7020 --apache Use Apache mode. | |
6454 --dns [dns_hook] Use dns manual mode or dns api. Defaults to manual mode when argument is omitted. | 7021 --dns [dns_hook] Use dns manual mode or dns api. Defaults to manual mode when argument is omitted. |
6455 See: $_DNS_API_WIKI | 7022 See: $_DNS_API_WIKI |
7023 | |
6456 --dnssleep <seconds> The time in seconds to wait for all the txt records to propagate in dns api mode. | 7024 --dnssleep <seconds> The time in seconds to wait for all the txt records to propagate in dns api mode. |
6457 It's not necessary to use this by default, $PROJECT_NAME polls dns status by DOH automatically. | 7025 It's not necessary to use this by default, $PROJECT_NAME polls dns status by DOH automatically. |
6458 -k, --keylength <bits> Specifies the domain key length: 2048, 3072, 4096, 8192 or ec-256, ec-384, ec-521. | 7026 -k, --keylength <bits> Specifies the domain key length: 2048, 3072, 4096, 8192 or ec-256, ec-384, ec-521. |
6459 -ak, --accountkeylength <bits> Specifies the account key length: 2048, 3072, 4096 | 7027 -ak, --accountkeylength <bits> Specifies the account key length: 2048, 3072, 4096 |
6460 --log [file] Specifies the log file. Defaults to \"$DEFAULT_LOG_FILE\" if argument is omitted. | 7028 --log [file] Specifies the log file. Defaults to \"$DEFAULT_LOG_FILE\" if argument is omitted. |
6461 --log-level <1|2> Specifies the log level, default is 1. | 7029 --log-level <1|2> Specifies the log level, default is $DEFAULT_LOG_LEVEL. |
6462 --syslog <0|3|6|7> Syslog level, 0: disable syslog, 3: error, 6: info, 7: debug. | 7030 --syslog <0|3|6|7> Syslog level, 0: disable syslog, 3: error, 6: info, 7: debug. |
6463 --eab-kid <eab_key_id> Key Identifier for External Account Binding. | 7031 --eab-kid <eab_key_id> Key Identifier for External Account Binding. |
6464 --eab-hmac-key <eab_hmac_key> HMAC key for External Account Binding. | 7032 --eab-hmac-key <eab_hmac_key> HMAC key for External Account Binding. |
6465 These parameters are to install the cert to nginx/apache or any other server after issue/renew a cert: | 7033 |
6466 --cert-file <file> Path to copy the cert file to after issue/renew.. | 7034 |
7035 These parameters are to install the cert to nginx/Apache or any other server after issue/renew a cert: | |
7036 | |
7037 --cert-file <file> Path to copy the cert file to after issue/renew. | |
6467 --key-file <file> Path to copy the key file to after issue/renew. | 7038 --key-file <file> Path to copy the key file to after issue/renew. |
6468 --ca-file <file> Path to copy the intermediate cert file to after issue/renew. | 7039 --ca-file <file> Path to copy the intermediate cert file to after issue/renew. |
6469 --fullchain-file <file> Path to copy the fullchain cert file to after issue/renew. | 7040 --fullchain-file <file> Path to copy the fullchain cert file to after issue/renew. |
6470 --reloadcmd <command> Command to execute after issue/renew to reload the server. | 7041 --reloadcmd <command> Command to execute after issue/renew to reload the server. |
7042 | |
6471 --server <server_uri> ACME Directory Resource URI. (default: $DEFAULT_CA) | 7043 --server <server_uri> ACME Directory Resource URI. (default: $DEFAULT_CA) |
6472 See: $_SERVER_WIKI | 7044 See: $_SERVER_WIKI |
7045 | |
6473 --accountconf <file> Specifies a customized account config file. | 7046 --accountconf <file> Specifies a customized account config file. |
6474 --home <directory> Specifies the home dir for $PROJECT_NAME. | 7047 --home <directory> Specifies the home dir for $PROJECT_NAME. |
6475 --cert-home <directory> Specifies the home dir to save all the certs, only valid for '--install' command. | 7048 --cert-home <directory> Specifies the home dir to save all the certs. |
6476 --config-home <directory> Specifies the home dir to save all the configurations. | 7049 --config-home <directory> Specifies the home dir to save all the configurations. |
6477 --useragent <string> Specifies the user agent string. it will be saved for future use too. | 7050 --useragent <string> Specifies the user agent string. it will be saved for future use too. |
6478 -m, --accountemail <email> Specifies the account email, only valid for the '--install' and '--update-account' command. | 7051 -m, --email <email> Specifies the account email, only valid for the '--install' and '--update-account' command. |
6479 --accountkey <file> Specifies the account key path, only valid for the '--install' command. | 7052 --accountkey <file> Specifies the account key path, only valid for the '--install' command. |
6480 --days <ndays> Specifies the days to renew the cert when using '--issue' command. The default value is $DEFAULT_RENEW days. | 7053 --days <ndays> Specifies the days to renew the cert when using '--issue' command. The default value is $DEFAULT_RENEW days. |
6481 --httpport <port> Specifies the standalone listening port. Only valid if the server is behind a reverse proxy or load balancer. | 7054 --httpport <port> Specifies the standalone listening port. Only valid if the server is behind a reverse proxy or load balancer. |
6482 --tlsport <port> Specifies the standalone tls listening port. Only valid if the server is behind a reverse proxy or load balancer. | 7055 --tlsport <port> Specifies the standalone tls listening port. Only valid if the server is behind a reverse proxy or load balancer. |
6483 --local-address <ip> Specifies the standalone/tls server listening address, in case you have multiple ip addresses. | 7056 --local-address <ip> Specifies the standalone/tls server listening address, in case you have multiple ip addresses. |
6484 --listraw Only used for '--list' command, list the certs in raw format. | 7057 --listraw Only used for '--list' command, list the certs in raw format. |
6485 -se, --stop-renew-on-error Only valid for '--renew-all' command. Stop if one cert has error in renewal. | 7058 -se, --stop-renew-on-error Only valid for '--renew-all' command. Stop if one cert has error in renewal. |
6486 --insecure Do not check the server certificate, in some devices, the api server's certificate may not be trusted. | 7059 --insecure Do not check the server certificate, in some devices, the api server's certificate may not be trusted. |
6487 --ca-bundle <file> Specifies the path to the CA certificate bundle to verify api server's certificate. | 7060 --ca-bundle <file> Specifies the path to the CA certificate bundle to verify api server's certificate. |
6488 --ca-path <directory> Specifies directory containing CA certificates in PEM format, used by wget or curl. | 7061 --ca-path <directory> Specifies directory containing CA certificates in PEM format, used by wget or curl. |
6489 --nocron Only valid for '--install' command, which means: do not install the default cron job. | 7062 --no-cron Only valid for '--install' command, which means: do not install the default cron job. |
6490 In this case, the certs will not be renewed automatically. | 7063 In this case, the certs will not be renewed automatically. |
6491 --noprofile Only valid for '--install' command, which means: do not install aliases to user profile. | 7064 --no-profile Only valid for '--install' command, which means: do not install aliases to user profile. |
6492 --no-color Do not output color text. | 7065 --no-color Do not output color text. |
6493 --force-color Force output of color text. Useful for non-interactive use with the aha tool for HTML E-Mails. | 7066 --force-color Force output of color text. Useful for non-interactive use with the aha tool for HTML E-Mails. |
6494 --ecc Specifies to use the ECC cert. Valid for '--install-cert', '--renew', '--revoke', '--to-pkcs12' and '--create-csr' | 7067 --ecc Specifies use of the ECC cert. Only valid for '--install-cert', '--renew', '--remove ', '--revoke', |
7068 '--deploy', '--to-pkcs8', '--to-pkcs12' and '--create-csr'. | |
6495 --csr <file> Specifies the input csr. | 7069 --csr <file> Specifies the input csr. |
6496 --pre-hook <command> Command to be run before obtaining any certificates. | 7070 --pre-hook <command> Command to be run before obtaining any certificates. |
6497 --post-hook <command> Command to be run after attempting to obtain/renew certificates. Runs regardless of whether obtain/renew succeeded or failed. | 7071 --post-hook <command> Command to be run after attempting to obtain/renew certificates. Runs regardless of whether obtain/renew succeeded or failed. |
6498 --renew-hook <command> Command to be run after each successfully renewed certificate. | 7072 --renew-hook <command> Command to be run after each successfully renewed certificate. |
6499 --deploy-hook <hookname> The hook file to deploy cert | 7073 --deploy-hook <hookname> The hook file to deploy cert |
7074 --extended-key-usage <string> Manually define the CSR extended key usage value. The default is serverAuth,clientAuth. | |
6500 --ocsp, --ocsp-must-staple Generate OCSP-Must-Staple extension. | 7075 --ocsp, --ocsp-must-staple Generate OCSP-Must-Staple extension. |
6501 --always-force-new-domain-key Generate new domain key on renewal. Otherwise, the domain key is not changed by default. | 7076 --always-force-new-domain-key Generate new domain key on renewal. Otherwise, the domain key is not changed by default. |
6502 --auto-upgrade [0|1] Valid for '--upgrade' command, indicating whether to upgrade automatically in future. Defaults to 1 if argument is omitted. | 7077 --auto-upgrade [0|1] Valid for '--upgrade' command, indicating whether to upgrade automatically in future. Defaults to 1 if argument is omitted. |
6503 --listen-v4 Force standalone/tls server to listen at ipv4. | 7078 --listen-v4 Force standalone/tls server to listen at ipv4. |
6504 --listen-v6 Force standalone/tls server to listen at ipv6. | 7079 --listen-v6 Force standalone/tls server to listen at ipv6. |
6505 --openssl-bin <file> Specifies a custom openssl bin location. | 7080 --openssl-bin <file> Specifies a custom openssl bin location. |
6506 --use-wget Force to use wget, if you have both curl and wget installed. | 7081 --use-wget Force to use wget, if you have both curl and wget installed. |
6507 --yes-I-know-dns-manual-mode-enough-go-ahead-please Force use of dns manual mode. | 7082 --yes-I-know-dns-manual-mode-enough-go-ahead-please Force use of dns manual mode. |
6508 See: $_DNS_MANUAL_WIKI | 7083 See: $_DNS_MANUAL_WIKI |
7084 | |
6509 -b, --branch <branch> Only valid for '--upgrade' command, specifies the branch name to upgrade to. | 7085 -b, --branch <branch> Only valid for '--upgrade' command, specifies the branch name to upgrade to. |
6510 --notify-level <0|1|2|3> Set the notification level: Default value is $NOTIFY_LEVEL_DEFAULT. | 7086 --notify-level <0|1|2|3> Set the notification level: Default value is $NOTIFY_LEVEL_DEFAULT. |
6511 0: disabled, no notification will be sent. | 7087 0: disabled, no notification will be sent. |
6512 1: send notifications only when there is an error. | 7088 1: send notifications only when there is an error. |
6513 2: send notifications when a cert is successfully renewed, or there is an error. | 7089 2: send notifications when a cert is successfully renewed, or there is an error. |
6514 3: send notifications when a cert is skipped, renewed, or error. | 7090 3: send notifications when a cert is skipped, renewed, or error. |
6515 --notify-mode <0|1> Set notification mode. Default value is $NOTIFY_MODE_DEFAULT. | 7091 --notify-mode <0|1> Set notification mode. Default value is $NOTIFY_MODE_DEFAULT. |
6516 0: Bulk mode. Send all the domain's notifications in one message(mail). | 7092 0: Bulk mode. Send all the domain's notifications in one message(mail). |
6517 1: Cert mode. Send a message for every single cert. | 7093 1: Cert mode. Send a message for every single cert. |
6518 --notify-hook <hookname> Set the notify hook | 7094 --notify-hook <hookname> Set the notify hook |
7095 --notify-source <server name> Set the server name in the notification message | |
6519 --revoke-reason <0-10> The reason for revocation, can be used in conjunction with the '--revoke' command. | 7096 --revoke-reason <0-10> The reason for revocation, can be used in conjunction with the '--revoke' command. |
6520 See: $_REVOKE_WIKI | 7097 See: $_REVOKE_WIKI |
7098 | |
6521 --password <password> Add a password to exported pfx file. Use with --to-pkcs12. | 7099 --password <password> Add a password to exported pfx file. Use with --to-pkcs12. |
7100 | |
7101 | |
6522 " | 7102 " |
6523 } | 7103 } |
6524 | 7104 |
6525 # nocron noprofile | 7105 installOnline() { |
6526 _installOnline() { | |
6527 _info "Installing from online archive." | 7106 _info "Installing from online archive." |
6528 _nocron="$1" | 7107 |
6529 _noprofile="$2" | 7108 _branch="$BRANCH" |
6530 if [ ! "$BRANCH" ]; then | 7109 if [ -z "$_branch" ]; then |
6531 BRANCH="master" | 7110 _branch="master" |
6532 fi | 7111 fi |
6533 | 7112 |
6534 target="$PROJECT/archive/$BRANCH.tar.gz" | 7113 target="$PROJECT/archive/$_branch.tar.gz" |
6535 _info "Downloading $target" | 7114 _info "Downloading $target" |
6536 localname="$BRANCH.tar.gz" | 7115 localname="$_branch.tar.gz" |
6537 if ! _get "$target" >$localname; then | 7116 if ! _get "$target" >$localname; then |
6538 _err "Download error." | 7117 _err "Download error." |
6539 return 1 | 7118 return 1 |
6540 fi | 7119 fi |
6541 ( | 7120 ( |
6543 if ! (tar xzf $localname || gtar xzf $localname); then | 7122 if ! (tar xzf $localname || gtar xzf $localname); then |
6544 _err "Extraction error." | 7123 _err "Extraction error." |
6545 exit 1 | 7124 exit 1 |
6546 fi | 7125 fi |
6547 | 7126 |
6548 cd "$PROJECT_NAME-$BRANCH" | 7127 cd "$PROJECT_NAME-$_branch" |
6549 chmod +x $PROJECT_ENTRY | 7128 chmod +x $PROJECT_ENTRY |
6550 if ./$PROJECT_ENTRY install "$_nocron" "" "$_noprofile"; then | 7129 if ./$PROJECT_ENTRY --install "$@"; then |
6551 _info "Install success!" | 7130 _info "Install success!" |
6552 _initpath | |
6553 _saveaccountconf "UPGRADE_HASH" "$(_getUpgradeHash)" | |
6554 fi | 7131 fi |
6555 | 7132 |
6556 cd .. | 7133 cd .. |
6557 | 7134 |
6558 rm -rf "$PROJECT_NAME-$BRANCH" | 7135 rm -rf "$PROJECT_NAME-$_branch" |
6559 rm -f "$localname" | 7136 rm -f "$localname" |
6560 ) | 7137 ) |
6561 } | 7138 } |
6562 | 7139 |
6563 _getRepoHash() { | 7140 _getRepoHash() { |
6564 _hash_path=$1 | 7141 _hash_path=$1 |
6565 shift | 7142 shift |
6566 _hash_url="https://api.github.com/repos/acmesh-official/$PROJECT_NAME/git/refs/$_hash_path" | 7143 _hash_url="${PROJECT_API:-https://api.github.com/repos/acmesh-official}/$PROJECT_NAME/git/refs/$_hash_path" |
6567 _get $_hash_url | tr -d "\r\n" | tr '{},' '\n' | grep '"sha":' | cut -d '"' -f 4 | 7144 _get "$_hash_url" "" 30 | tr -d "\r\n" | tr '{},' '\n\n\n' | grep '"sha":' | cut -d '"' -f 4 |
6568 } | 7145 } |
6569 | 7146 |
6570 _getUpgradeHash() { | 7147 _getUpgradeHash() { |
6571 _b="$BRANCH" | 7148 _b="$BRANCH" |
6572 if [ -z "$_b" ]; then | 7149 if [ -z "$_b" ]; then |
6578 } | 7155 } |
6579 | 7156 |
6580 upgrade() { | 7157 upgrade() { |
6581 if ( | 7158 if ( |
6582 _initpath | 7159 _initpath |
6583 [ -z "$FORCE" ] && [ "$(_getUpgradeHash)" = "$(_readaccountconf "UPGRADE_HASH")" ] && _info "Already uptodate!" && exit 0 | 7160 [ -z "$FORCE" ] && [ "$(_getUpgradeHash)" = "$(_readaccountconf "UPGRADE_HASH")" ] && _info "Already up to date!" && exit 0 |
6584 export LE_WORKING_DIR | 7161 export LE_WORKING_DIR |
6585 cd "$LE_WORKING_DIR" | 7162 cd "$LE_WORKING_DIR" |
6586 _installOnline "nocron" "noprofile" | 7163 installOnline "--nocron" "--noprofile" |
6587 ); then | 7164 ); then |
6588 _info "Upgrade success!" | 7165 _info "Upgrade successful!" |
6589 exit 0 | 7166 exit 0 |
6590 else | 7167 else |
6591 _err "Upgrade failed!" | 7168 _err "Upgrade failed!" |
6592 exit 1 | 7169 exit 1 |
6593 fi | 7170 fi |
6619 fi | 7196 fi |
6620 | 7197 |
6621 } | 7198 } |
6622 | 7199 |
6623 _checkSudo() { | 7200 _checkSudo() { |
7201 if [ -z "$__INTERACTIVE" ]; then | |
7202 #don't check if it's not in an interactive shell | |
7203 return 0 | |
7204 fi | |
6624 if [ "$SUDO_GID" ] && [ "$SUDO_COMMAND" ] && [ "$SUDO_USER" ] && [ "$SUDO_UID" ]; then | 7205 if [ "$SUDO_GID" ] && [ "$SUDO_COMMAND" ] && [ "$SUDO_USER" ] && [ "$SUDO_UID" ]; then |
6625 if [ "$SUDO_USER" = "root" ] && [ "$SUDO_UID" = "0" ]; then | 7206 if [ "$SUDO_USER" = "root" ] && [ "$SUDO_UID" = "0" ]; then |
6626 #it's root using sudo, no matter it's using sudo or not, just fine | 7207 #it's root using sudo, no matter it's using sudo or not, just fine |
6627 return 0 | 7208 return 0 |
6628 fi | 7209 fi |
6629 if [ -n "$SUDO_COMMAND" ]; then | 7210 if [ -n "$SUDO_COMMAND" ]; then |
6630 #it's a normal user doing "sudo su", or `sudo -i` or `sudo -s` | 7211 #it's a normal user doing "sudo su", or `sudo -i` or `sudo -s`, or `sudo su acmeuser1` |
6631 _endswith "$SUDO_COMMAND" /bin/su || grep "^$SUDO_COMMAND\$" /etc/shells >/dev/null 2>&1 | 7212 _endswith "$SUDO_COMMAND" /bin/su || _contains "$SUDO_COMMAND" "/bin/su " || grep "^$SUDO_COMMAND\$" /etc/shells >/dev/null 2>&1 |
6632 return $? | 7213 return $? |
6633 fi | 7214 fi |
6634 #otherwise | 7215 #otherwise |
6635 return 1 | 7216 return 1 |
6636 fi | 7217 fi |
6637 return 0 | 7218 return 0 |
6638 } | 7219 } |
6639 | 7220 |
6640 #server | 7221 #server #keylength |
6641 _selectServer() { | 7222 _selectServer() { |
6642 _server="$1" | 7223 _server="$1" |
7224 _skeylength="$2" | |
6643 _server_lower="$(echo "$_server" | _lower_case)" | 7225 _server_lower="$(echo "$_server" | _lower_case)" |
6644 _sindex=0 | 7226 _sindex=0 |
6645 for snames in $CA_NAMES; do | 7227 for snames in $CA_NAMES; do |
6646 snames="$(echo "$snames" | _lower_case)" | 7228 snames="$(echo "$snames" | _lower_case)" |
6647 _sindex="$(_math $_sindex + 1)" | 7229 _sindex="$(_math $_sindex + 1)" |
6648 _debug2 "_selectServer try snames" "$snames" | 7230 _debug2 "_selectServer try snames" "$snames" |
6649 for sname in $(echo "$snames" | tr ',' ' '); do | 7231 for sname in $(echo "$snames" | tr ',' ' '); do |
6650 if [ "$_server_lower" = "$sname" ]; then | 7232 if [ "$_server_lower" = "$sname" ]; then |
6651 _debug2 "_selectServer match $sname" | 7233 _debug2 "_selectServer match $sname" |
6652 _serverdir="$(_getfield "$CA_SERVERS" $_sindex)" | 7234 _serverdir="$(_getfield "$CA_SERVERS" $_sindex)" |
7235 if [ "$_serverdir" = "$CA_SSLCOM_RSA" ] && _isEccKey "$_skeylength"; then | |
7236 _serverdir="$CA_SSLCOM_ECC" | |
7237 fi | |
6653 _debug "Selected server: $_serverdir" | 7238 _debug "Selected server: $_serverdir" |
6654 ACME_DIRECTORY="$_serverdir" | 7239 ACME_DIRECTORY="$_serverdir" |
6655 export ACME_DIRECTORY | 7240 export ACME_DIRECTORY |
6656 return | 7241 return |
6657 fi | 7242 fi |
6663 | 7248 |
6664 #url | 7249 #url |
6665 _getCAShortName() { | 7250 _getCAShortName() { |
6666 caurl="$1" | 7251 caurl="$1" |
6667 if [ -z "$caurl" ]; then | 7252 if [ -z "$caurl" ]; then |
6668 caurl="$DEFAULT_CA" | 7253 #use letsencrypt as default value if the Le_API is empty |
7254 #this case can only come from the old upgrading. | |
7255 caurl="$CA_LETSENCRYPT_V2" | |
7256 fi | |
7257 if [ "$CA_SSLCOM_ECC" = "$caurl" ]; then | |
7258 caurl="$CA_SSLCOM_RSA" #just hack to get the short name | |
6669 fi | 7259 fi |
6670 caurl_lower="$(echo $caurl | _lower_case)" | 7260 caurl_lower="$(echo $caurl | _lower_case)" |
6671 _sindex=0 | 7261 _sindex=0 |
6672 for surl in $(echo "$CA_SERVERS" | _lower_case | tr , ' '); do | 7262 for surl in $(echo "$CA_SERVERS" | _lower_case | tr , ' '); do |
6673 _sindex="$(_math $_sindex + 1)" | 7263 _sindex="$(_math $_sindex + 1)" |
6686 } | 7276 } |
6687 | 7277 |
6688 #set default ca to $ACME_DIRECTORY | 7278 #set default ca to $ACME_DIRECTORY |
6689 setdefaultca() { | 7279 setdefaultca() { |
6690 if [ -z "$ACME_DIRECTORY" ]; then | 7280 if [ -z "$ACME_DIRECTORY" ]; then |
6691 _err "Please give a --server parameter." | 7281 _err "Please provide a --server parameter." |
6692 return 1 | 7282 return 1 |
6693 fi | 7283 fi |
6694 _saveaccountconf "DEFAULT_ACME_SERVER" "$ACME_DIRECTORY" | 7284 _saveaccountconf "DEFAULT_ACME_SERVER" "$ACME_DIRECTORY" |
6695 _info "Changed default CA to: $(__green "$ACME_DIRECTORY")" | 7285 _info "Changed default CA to: $(__green "$ACME_DIRECTORY")" |
7286 } | |
7287 | |
7288 #preferred-chain | |
7289 setdefaultchain() { | |
7290 _initpath | |
7291 _preferred_chain="$1" | |
7292 if [ -z "$_preferred_chain" ]; then | |
7293 _err "Please provide a value for '--preferred-chain'." | |
7294 return 1 | |
7295 fi | |
7296 mkdir -p "$CA_DIR" | |
7297 _savecaconf "DEFAULT_PREFERRED_CHAIN" "$_preferred_chain" | |
7298 } | |
7299 | |
7300 #domain ecc | |
7301 info() { | |
7302 _domain="$1" | |
7303 _ecc="$2" | |
7304 _initpath | |
7305 if [ -z "$_domain" ]; then | |
7306 _debug "Show global configs" | |
7307 echo "LE_WORKING_DIR=$LE_WORKING_DIR" | |
7308 echo "LE_CONFIG_HOME=$LE_CONFIG_HOME" | |
7309 cat "$ACCOUNT_CONF_PATH" | |
7310 else | |
7311 _debug "Show domain configs" | |
7312 ( | |
7313 _initpath "$_domain" "$_ecc" | |
7314 echo "DOMAIN_CONF=$DOMAIN_CONF" | |
7315 for seg in $(cat $DOMAIN_CONF | cut -d = -f 1); do | |
7316 echo "$seg=$(_readdomainconf "$seg")" | |
7317 done | |
7318 ) | |
7319 fi | |
6696 } | 7320 } |
6697 | 7321 |
6698 _process() { | 7322 _process() { |
6699 _CMD="" | 7323 _CMD="" |
6700 _domain="" | 7324 _domain="" |
6701 _altdomains="$NO_VALUE" | 7325 _altdomains="$NO_VALUE" |
6702 _webroot="" | 7326 _webroot="" |
6703 _challenge_alias="" | 7327 _challenge_alias="" |
6704 _keylength="" | 7328 _keylength="$DEFAULT_DOMAIN_KEY_LENGTH" |
6705 _accountkeylength="" | 7329 _accountkeylength="$DEFAULT_ACCOUNT_KEY_LENGTH" |
6706 _cert_file="" | 7330 _cert_file="" |
6707 _key_file="" | 7331 _key_file="" |
6708 _ca_file="" | 7332 _ca_file="" |
6709 _fullchain_file="" | 7333 _fullchain_file="" |
6710 _reloadcmd="" | 7334 _reloadcmd="" |
6743 _use_wget="" | 7367 _use_wget="" |
6744 _server="" | 7368 _server="" |
6745 _notify_hook="" | 7369 _notify_hook="" |
6746 _notify_level="" | 7370 _notify_level="" |
6747 _notify_mode="" | 7371 _notify_mode="" |
7372 _notify_source="" | |
6748 _revoke_reason="" | 7373 _revoke_reason="" |
6749 _eab_kid="" | 7374 _eab_kid="" |
6750 _eab_hmac_key="" | 7375 _eab_hmac_key="" |
6751 _preferred_chain="" | 7376 _preferred_chain="" |
7377 _valid_from="" | |
7378 _valid_to="" | |
6752 while [ ${#} -gt 0 ]; do | 7379 while [ ${#} -gt 0 ]; do |
6753 case "${1}" in | 7380 case "${1}" in |
6754 | 7381 |
6755 --help | -h) | 7382 --help | -h) |
6756 showhelp | 7383 showhelp |
6761 return | 7388 return |
6762 ;; | 7389 ;; |
6763 --install) | 7390 --install) |
6764 _CMD="install" | 7391 _CMD="install" |
6765 ;; | 7392 ;; |
7393 --install-online) | |
7394 shift | |
7395 installOnline "$@" | |
7396 return | |
7397 ;; | |
6766 --uninstall) | 7398 --uninstall) |
6767 _CMD="uninstall" | 7399 _CMD="uninstall" |
6768 ;; | 7400 ;; |
6769 --upgrade) | 7401 --upgrade) |
6770 _CMD="upgrade" | 7402 _CMD="upgrade" |
6797 _CMD="remove" | 7429 _CMD="remove" |
6798 ;; | 7430 ;; |
6799 --list) | 7431 --list) |
6800 _CMD="list" | 7432 _CMD="list" |
6801 ;; | 7433 ;; |
7434 --info) | |
7435 _CMD="info" | |
7436 ;; | |
6802 --install-cronjob | --installcronjob) | 7437 --install-cronjob | --installcronjob) |
6803 _CMD="installcronjob" | 7438 _CMD="installcronjob" |
6804 ;; | 7439 ;; |
6805 --uninstall-cronjob | --uninstallcronjob) | 7440 --uninstall-cronjob | --uninstallcronjob) |
6806 _CMD="uninstallcronjob" | 7441 _CMD="uninstallcronjob" |
6838 --set-notify) | 7473 --set-notify) |
6839 _CMD="setnotify" | 7474 _CMD="setnotify" |
6840 ;; | 7475 ;; |
6841 --set-default-ca) | 7476 --set-default-ca) |
6842 _CMD="setdefaultca" | 7477 _CMD="setdefaultca" |
7478 ;; | |
7479 --set-default-chain) | |
7480 _CMD="setdefaultchain" | |
6843 ;; | 7481 ;; |
6844 -d | --domain) | 7482 -d | --domain) |
6845 _dvalue="$2" | 7483 _dvalue="$2" |
6846 | 7484 |
6847 if [ "$_dvalue" ]; then | 7485 if [ "$_dvalue" ]; then |
6848 if _startswith "$_dvalue" "-"; then | 7486 if _startswith "$_dvalue" "-"; then |
6849 _err "'$_dvalue' is not a valid domain for parameter '$1'" | 7487 _err "'$_dvalue' is not a valid domain for parameter '$1'" |
6850 return 1 | 7488 return 1 |
6851 fi | 7489 fi |
6852 if _is_idn "$_dvalue" && ! _exists idn; then | 7490 if _is_idn "$_dvalue" && ! _exists idn; then |
6853 _err "It seems that $_dvalue is an IDN( Internationalized Domain Names), please install 'idn' command first." | 7491 _err "It seems that $_dvalue is an IDN (Internationalized Domain Names), please install the 'idn' command first." |
6854 return 1 | 7492 return 1 |
6855 fi | 7493 fi |
6856 | 7494 |
6857 if _startswith "$_dvalue" "*."; then | |
6858 _debug "Wildcard domain" | |
6859 export ACME_VERSION=2 | |
6860 fi | |
6861 if [ -z "$_domain" ]; then | 7495 if [ -z "$_domain" ]; then |
6862 _domain="$_dvalue" | 7496 _domain="$_dvalue" |
6863 else | 7497 else |
6864 if [ "$_altdomains" = "$NO_VALUE" ]; then | 7498 if [ "$_altdomains" = "$NO_VALUE" ]; then |
6865 _altdomains="$_dvalue" | 7499 _altdomains="$_dvalue" |
6878 --staging | --test) | 7512 --staging | --test) |
6879 STAGE="1" | 7513 STAGE="1" |
6880 ;; | 7514 ;; |
6881 --server) | 7515 --server) |
6882 _server="$2" | 7516 _server="$2" |
6883 _selectServer "$_server" | |
6884 shift | 7517 shift |
6885 ;; | 7518 ;; |
6886 --debug) | 7519 --debug) |
6887 if [ -z "$2" ] || _startswith "$2" "-"; then | 7520 if [ -z "$2" ] || _startswith "$2" "-"; then |
6888 DEBUG="$DEBUG_LEVEL_DEFAULT" | 7521 DEBUG="$DEBUG_LEVEL_DEFAULT" |
6977 --dnssleep) | 7610 --dnssleep) |
6978 _dnssleep="$2" | 7611 _dnssleep="$2" |
6979 Le_DNSSleep="$_dnssleep" | 7612 Le_DNSSleep="$_dnssleep" |
6980 shift | 7613 shift |
6981 ;; | 7614 ;; |
6982 | |
6983 --keylength | -k) | 7615 --keylength | -k) |
6984 _keylength="$2" | 7616 _keylength="$2" |
6985 shift | 7617 shift |
7618 if [ "$_keylength" ] && ! _isEccKey "$_keylength"; then | |
7619 export __SELECTED_RSA_KEY=1 | |
7620 fi | |
6986 ;; | 7621 ;; |
6987 -ak | --accountkeylength) | 7622 -ak | --accountkeylength) |
6988 _accountkeylength="$2" | 7623 _accountkeylength="$2" |
6989 shift | 7624 shift |
6990 ;; | 7625 ;; |
6991 | |
6992 --cert-file | --certpath) | 7626 --cert-file | --certpath) |
6993 _cert_file="$2" | 7627 _cert_file="$2" |
6994 shift | 7628 shift |
6995 ;; | 7629 ;; |
6996 --key-file | --keypath) | 7630 --key-file | --keypath) |
7017 _accountconf="$2" | 7651 _accountconf="$2" |
7018 ACCOUNT_CONF_PATH="$_accountconf" | 7652 ACCOUNT_CONF_PATH="$_accountconf" |
7019 shift | 7653 shift |
7020 ;; | 7654 ;; |
7021 --home) | 7655 --home) |
7022 LE_WORKING_DIR="$2" | 7656 export LE_WORKING_DIR="$(echo "$2" | sed 's|/$||')" |
7023 shift | 7657 shift |
7024 ;; | 7658 ;; |
7025 --cert-home | --certhome) | 7659 --cert-home | --certhome) |
7026 _certhome="$2" | 7660 _certhome="$2" |
7027 CERT_HOME="$_certhome" | 7661 export CERT_HOME="$_certhome" |
7028 shift | 7662 shift |
7029 ;; | 7663 ;; |
7030 --config-home) | 7664 --config-home) |
7031 _confighome="$2" | 7665 _confighome="$2" |
7032 LE_CONFIG_HOME="$_confighome" | 7666 export LE_CONFIG_HOME="$_confighome" |
7033 shift | 7667 shift |
7034 ;; | 7668 ;; |
7035 --useragent) | 7669 --useragent) |
7036 _useragent="$2" | 7670 _useragent="$2" |
7037 USER_AGENT="$_useragent" | 7671 USER_AGENT="$_useragent" |
7038 shift | 7672 shift |
7039 ;; | 7673 ;; |
7040 -m | --accountemail) | 7674 -m | --email | --accountemail) |
7041 _accountemail="$2" | 7675 _accountemail="$2" |
7042 ACCOUNT_EMAIL="$_accountemail" | 7676 export ACCOUNT_EMAIL="$_accountemail" |
7043 shift | 7677 shift |
7044 ;; | 7678 ;; |
7045 --accountkey) | 7679 --accountkey) |
7046 _accountkey="$2" | 7680 _accountkey="$2" |
7047 ACCOUNT_KEY_PATH="$_accountkey" | 7681 ACCOUNT_KEY_PATH="$_accountkey" |
7050 --days) | 7684 --days) |
7051 _days="$2" | 7685 _days="$2" |
7052 Le_RenewalDays="$_days" | 7686 Le_RenewalDays="$_days" |
7053 shift | 7687 shift |
7054 ;; | 7688 ;; |
7689 --valid-from) | |
7690 _valid_from="$2" | |
7691 shift | |
7692 ;; | |
7693 --valid-to) | |
7694 _valid_to="$2" | |
7695 shift | |
7696 ;; | |
7055 --httpport) | 7697 --httpport) |
7056 _httpport="$2" | 7698 _httpport="$2" |
7057 Le_HTTPPort="$_httpport" | 7699 Le_HTTPPort="$_httpport" |
7058 shift | 7700 shift |
7059 ;; | 7701 ;; |
7080 --ca-path) | 7722 --ca-path) |
7081 _ca_path="$2" | 7723 _ca_path="$2" |
7082 CA_PATH="$_ca_path" | 7724 CA_PATH="$_ca_path" |
7083 shift | 7725 shift |
7084 ;; | 7726 ;; |
7085 --nocron) | 7727 --no-cron | --nocron) |
7086 _nocron="1" | 7728 _nocron="1" |
7087 ;; | 7729 ;; |
7088 --noprofile) | 7730 --no-profile | --noprofile) |
7089 _noprofile="1" | 7731 _noprofile="1" |
7090 ;; | 7732 ;; |
7091 --no-color) | 7733 --no-color) |
7092 export ACME_NO_COLOR=1 | 7734 export ACME_NO_COLOR=1 |
7093 ;; | 7735 ;; |
7117 if [ -z "$2" ] || _startswith "$2" "-"; then | 7759 if [ -z "$2" ] || _startswith "$2" "-"; then |
7118 _usage "Please specify a value for '--deploy-hook'" | 7760 _usage "Please specify a value for '--deploy-hook'" |
7119 return 1 | 7761 return 1 |
7120 fi | 7762 fi |
7121 _deploy_hook="$_deploy_hook$2," | 7763 _deploy_hook="$_deploy_hook$2," |
7764 shift | |
7765 ;; | |
7766 --extended-key-usage) | |
7767 Le_ExtKeyUse="$2" | |
7122 shift | 7768 shift |
7123 ;; | 7769 ;; |
7124 --ocsp-must-staple | --ocsp) | 7770 --ocsp-must-staple | --ocsp) |
7125 Le_OCSP_Staple="1" | 7771 Le_OCSP_Staple="1" |
7126 ;; | 7772 ;; |
7206 shift | 7852 shift |
7207 ;; | 7853 ;; |
7208 --notify-level) | 7854 --notify-level) |
7209 _nlevel="$2" | 7855 _nlevel="$2" |
7210 if _startswith "$_nlevel" "-"; then | 7856 if _startswith "$_nlevel" "-"; then |
7211 _err "'$_nlevel' is not a integer for '$1'" | 7857 _err "'$_nlevel' is not an integer for '$1'" |
7212 return 1 | 7858 return 1 |
7213 fi | 7859 fi |
7214 _notify_level="$_nlevel" | 7860 _notify_level="$_nlevel" |
7215 shift | 7861 shift |
7216 ;; | 7862 ;; |
7217 --notify-mode) | 7863 --notify-mode) |
7218 _nmode="$2" | 7864 _nmode="$2" |
7219 if _startswith "$_nmode" "-"; then | 7865 if _startswith "$_nmode" "-"; then |
7220 _err "'$_nmode' is not a integer for '$1'" | 7866 _err "'$_nmode' is not an integer for '$1'" |
7221 return 1 | 7867 return 1 |
7222 fi | 7868 fi |
7223 _notify_mode="$_nmode" | 7869 _notify_mode="$_nmode" |
7870 shift | |
7871 ;; | |
7872 --notify-source) | |
7873 _nsource="$2" | |
7874 if _startswith "$_nsource" "-"; then | |
7875 _err "'$_nsource' is not a valid host name for '$1'" | |
7876 return 1 | |
7877 fi | |
7878 _notify_source="$_nsource" | |
7224 shift | 7879 shift |
7225 ;; | 7880 ;; |
7226 --revoke-reason) | 7881 --revoke-reason) |
7227 _revoke_reason="$2" | 7882 _revoke_reason="$2" |
7228 if _startswith "$_revoke_reason" "-"; then | 7883 if _startswith "$_revoke_reason" "-"; then |
7229 _err "'$_revoke_reason' is not a integer for '$1'" | 7884 _err "'$_revoke_reason' is not an integer for '$1'" |
7230 return 1 | 7885 return 1 |
7231 fi | 7886 fi |
7232 shift | 7887 shift |
7233 ;; | 7888 ;; |
7234 --eab-kid) | 7889 --eab-kid) |
7242 --preferred-chain) | 7897 --preferred-chain) |
7243 _preferred_chain="$2" | 7898 _preferred_chain="$2" |
7244 shift | 7899 shift |
7245 ;; | 7900 ;; |
7246 *) | 7901 *) |
7247 _err "Unknown parameter : $1" | 7902 _err "Unknown parameter: $1" |
7248 return 1 | 7903 return 1 |
7249 ;; | 7904 ;; |
7250 esac | 7905 esac |
7251 | 7906 |
7252 shift 1 | 7907 shift 1 |
7253 done | 7908 done |
7909 | |
7910 if [ "$_server" ]; then | |
7911 _selectServer "$_server" "${_ecc:-$_keylength}" | |
7912 _server="$ACME_DIRECTORY" | |
7913 fi | |
7254 | 7914 |
7255 if [ "${_CMD}" != "install" ]; then | 7915 if [ "${_CMD}" != "install" ]; then |
7256 if [ "$__INTERACTIVE" ] && ! _checkSudo; then | 7916 if [ "$__INTERACTIVE" ] && ! _checkSudo; then |
7257 if [ -z "$FORCE" ]; then | 7917 if [ -z "$FORCE" ]; then |
7258 #Use "echo" here, instead of _info. it's too early | 7918 #Use "echo" here, instead of _info. it's too early |
7259 echo "It seems that you are using sudo, please read this link first:" | 7919 echo "It seems that you are using sudo, please read this page first:" |
7260 echo "$_SUDO_WIKI" | 7920 echo "$_SUDO_WIKI" |
7261 return 1 | 7921 return 1 |
7262 fi | 7922 fi |
7263 fi | 7923 fi |
7264 __initHome | 7924 __initHome |
7284 else | 7944 else |
7285 _saveaccountconf "SYS_LOG" "$_syslog" | 7945 _saveaccountconf "SYS_LOG" "$_syslog" |
7286 fi | 7946 fi |
7287 SYS_LOG="$_syslog" | 7947 SYS_LOG="$_syslog" |
7288 else | 7948 else |
7289 _err "The 'logger' command is not found, can not enable syslog." | 7949 _err "The 'logger' command was not found, cannot enable syslog." |
7290 _clearaccountconf "SYS_LOG" | 7950 _clearaccountconf "SYS_LOG" |
7291 SYS_LOG="" | 7951 SYS_LOG="" |
7292 fi | 7952 fi |
7293 fi | 7953 fi |
7294 | 7954 |
7303 _debug "Using server: $_server" | 7963 _debug "Using server: $_server" |
7304 fi | 7964 fi |
7305 fi | 7965 fi |
7306 _debug "Running cmd: ${_CMD}" | 7966 _debug "Running cmd: ${_CMD}" |
7307 case "${_CMD}" in | 7967 case "${_CMD}" in |
7308 install) install "$_nocron" "$_confighome" "$_noprofile" ;; | 7968 install) install "$_nocron" "$_confighome" "$_noprofile" "$_accountemail" ;; |
7309 uninstall) uninstall "$_nocron" ;; | 7969 uninstall) uninstall "$_nocron" ;; |
7310 upgrade) upgrade ;; | 7970 upgrade) upgrade ;; |
7311 issue) | 7971 issue) |
7312 issue "$_webroot" "$_domain" "$_altdomains" "$_keylength" "$_cert_file" "$_key_file" "$_ca_file" "$_reloadcmd" "$_fullchain_file" "$_pre_hook" "$_post_hook" "$_renew_hook" "$_local_address" "$_challenge_alias" "$_preferred_chain" | 7972 issue "$_webroot" "$_domain" "$_altdomains" "$_keylength" "$_cert_file" "$_key_file" "$_ca_file" "$_reloadcmd" "$_fullchain_file" "$_pre_hook" "$_post_hook" "$_renew_hook" "$_local_address" "$_challenge_alias" "$_preferred_chain" "$_valid_from" "$_valid_to" |
7313 ;; | 7973 ;; |
7314 deploy) | 7974 deploy) |
7315 deploy "$_domain" "$_deploy_hook" "$_ecc" | 7975 deploy "$_domain" "$_deploy_hook" "$_ecc" |
7316 ;; | 7976 ;; |
7317 signcsr) | 7977 signcsr) |
7318 signcsr "$_csr" "$_webroot" "$_cert_file" "$_key_file" "$_ca_file" "$_reloadcmd" "$_fullchain_file" "$_pre_hook" "$_post_hook" "$_renew_hook" "$_local_address" "$_challenge_alias" | 7978 signcsr "$_csr" "$_webroot" "$_cert_file" "$_key_file" "$_ca_file" "$_reloadcmd" "$_fullchain_file" "$_pre_hook" "$_post_hook" "$_renew_hook" "$_local_address" "$_challenge_alias" "$_preferred_chain" |
7319 ;; | 7979 ;; |
7320 showcsr) | 7980 showcsr) |
7321 showcsr "$_csr" "$_domain" | 7981 showcsr "$_csr" "$_domain" |
7322 ;; | 7982 ;; |
7323 installcert) | 7983 installcert) |
7324 installcert "$_domain" "$_cert_file" "$_key_file" "$_ca_file" "$_reloadcmd" "$_fullchain_file" "$_ecc" | 7984 installcert "$_domain" "$_cert_file" "$_key_file" "$_ca_file" "$_reloadcmd" "$_fullchain_file" "$_ecc" |
7325 ;; | 7985 ;; |
7326 renew) | 7986 renew) |
7327 renew "$_domain" "$_ecc" | 7987 renew "$_domain" "$_ecc" "$_server" |
7328 ;; | 7988 ;; |
7329 renewAll) | 7989 renewAll) |
7330 renewAll "$_stopRenewOnError" | 7990 renewAll "$_stopRenewOnError" "$_server" |
7331 ;; | 7991 ;; |
7332 revoke) | 7992 revoke) |
7333 revoke "$_domain" "$_ecc" "$_revoke_reason" | 7993 revoke "$_domain" "$_ecc" "$_revoke_reason" |
7334 ;; | 7994 ;; |
7335 remove) | 7995 remove) |
7348 deactivateaccount | 8008 deactivateaccount |
7349 ;; | 8009 ;; |
7350 list) | 8010 list) |
7351 list "$_listraw" "$_domain" | 8011 list "$_listraw" "$_domain" |
7352 ;; | 8012 ;; |
8013 info) | |
8014 info "$_domain" "$_ecc" | |
8015 ;; | |
7353 installcronjob) installcronjob "$_confighome" ;; | 8016 installcronjob) installcronjob "$_confighome" ;; |
7354 uninstallcronjob) uninstallcronjob ;; | 8017 uninstallcronjob) uninstallcronjob ;; |
7355 cron) cron ;; | 8018 cron) cron ;; |
7356 toPkcs) | 8019 toPkcs) |
7357 toPkcs "$_domain" "$_password" "$_ecc" | 8020 toPkcs "$_domain" "$_password" "$_ecc" |
7367 ;; | 8030 ;; |
7368 createCSR) | 8031 createCSR) |
7369 createCSR "$_domain" "$_altdomains" "$_ecc" | 8032 createCSR "$_domain" "$_altdomains" "$_ecc" |
7370 ;; | 8033 ;; |
7371 setnotify) | 8034 setnotify) |
7372 setnotify "$_notify_hook" "$_notify_level" "$_notify_mode" | 8035 setnotify "$_notify_hook" "$_notify_level" "$_notify_mode" "$_notify_source" |
7373 ;; | 8036 ;; |
7374 setdefaultca) | 8037 setdefaultca) |
7375 setdefaultca | 8038 setdefaultca |
8039 ;; | |
8040 setdefaultchain) | |
8041 setdefaultchain "$_preferred_chain" | |
7376 ;; | 8042 ;; |
7377 *) | 8043 *) |
7378 if [ "$_CMD" ]; then | 8044 if [ "$_CMD" ]; then |
7379 _err "Invalid command: $_CMD" | 8045 _err "Invalid command: $_CMD" |
7380 fi | 8046 fi |
7405 _clearaccountconf "SYS_LOG" | 8071 _clearaccountconf "SYS_LOG" |
7406 else | 8072 else |
7407 _saveaccountconf "SYS_LOG" "$_syslog" | 8073 _saveaccountconf "SYS_LOG" "$_syslog" |
7408 fi | 8074 fi |
7409 else | 8075 else |
7410 _err "The 'logger' command is not found, can not enable syslog." | 8076 _err "The 'logger' command was not found, cannot enable syslog." |
7411 _clearaccountconf "SYS_LOG" | 8077 _clearaccountconf "SYS_LOG" |
7412 SYS_LOG="" | 8078 SYS_LOG="" |
7413 fi | 8079 fi |
7414 fi | 8080 fi |
7415 | 8081 |
7416 _processAccountConf | 8082 _processAccountConf |
7417 fi | 8083 fi |
7418 | 8084 |
7419 } | 8085 } |
7420 | |
7421 if [ "$INSTALLONLINE" ]; then | |
7422 INSTALLONLINE="" | |
7423 _installOnline | |
7424 exit | |
7425 fi | |
7426 | 8086 |
7427 main() { | 8087 main() { |
7428 [ -z "$1" ] && showhelp && return | 8088 [ -z "$1" ] && showhelp && return |
7429 if _startswith "$1" '-'; then _process "$@"; else "$@"; fi | 8089 if _startswith "$1" '-'; then _process "$@"; else "$@"; fi |
7430 } | 8090 } |