]> git.proxmox.com Git - mirror_acme.sh.git/blame - acme.sh
Fix linting issue
[mirror_acme.sh.git] / acme.sh
CommitLineData
0a7c9364 1#!/usr/bin/env sh
bfdf1f48 2
619bae74 3VER=3.0.5
a7b7355d 4
6cc11ffb 5PROJECT_NAME="acme.sh"
a7b7355d 6
6cc11ffb 7PROJECT_ENTRY="acme.sh"
8
09f74a9a 9PROJECT="https://github.com/acmesh-official/$PROJECT_NAME"
4c3b3608 10
f3e4cea3 11DEFAULT_INSTALL_HOME="$HOME/.$PROJECT_NAME"
77f96b38 12
13_WINDOWS_SCHEDULER_NAME="$PROJECT_NAME.cron"
14
f3e4cea3 15_SCRIPT_="$0"
16
b50e701c 17_SUB_FOLDER_NOTIFY="notify"
18_SUB_FOLDER_DNSAPI="dnsapi"
19_SUB_FOLDER_DEPLOY="deploy"
20
21_SUB_FOLDERS="$_SUB_FOLDER_DNSAPI $_SUB_FOLDER_DEPLOY $_SUB_FOLDER_NOTIFY"
f3e4cea3 22
737e9e48 23CA_LETSENCRYPT_V2="https://acme-v02.api.letsencrypt.org/directory"
24CA_LETSENCRYPT_V2_TEST="https://acme-staging-v02.api.letsencrypt.org/directory"
c1151b0d 25
737e9e48 26CA_BUYPASS="https://api.buypass.com/acme/directory"
27CA_BUYPASS_TEST="https://api.test4.buypass.no/acme/directory"
28
29CA_ZEROSSL="https://acme.zerossl.com/v2/DV90"
36752cb6 30_ZERO_EAB_ENDPOINT="https://api.zerossl.com/acme/eab-credentials-email"
389518e1 31
53d6ab6c 32CA_SSLCOM_RSA="https://acme.ssl.com/sslcom-dv-rsa"
33CA_SSLCOM_ECC="https://acme.ssl.com/sslcom-dv-ecc"
34
fb5091a3 35CA_GOOGLE="https://dv.acme-v02.api.pki.goog/directory"
36CA_GOOGLE_TEST="https://dv.acme-v02.test-api.pki.goog/directory"
37
d0b51489 38DEFAULT_CA=$CA_ZEROSSL
737e9e48 39DEFAULT_STAGING_CA=$CA_LETSENCRYPT_V2_TEST
40
41CA_NAMES="
53d6ab6c 42ZeroSSL.com,zerossl
50fefc3b 43LetsEncrypt.org,letsencrypt
44LetsEncrypt.org_test,letsencrypt_test,letsencrypttest
269847d1 45BuyPass.com,buypass
46BuyPass.com_test,buypass_test,buypasstest
53d6ab6c 47SSL.com,sslcom
fb5091a3 48Google.com,google
49Google.com_test,googletest,google_test
737e9e48 50"
51
fb5091a3 52CA_SERVERS="$CA_ZEROSSL,$CA_LETSENCRYPT_V2,$CA_LETSENCRYPT_V2_TEST,$CA_BUYPASS,$CA_BUYPASS_TEST,$CA_SSLCOM_RSA,$CA_GOOGLE,$CA_GOOGLE_TEST"
f87890cb 53
07af4247 54DEFAULT_USER_AGENT="$PROJECT_NAME/$VER ($PROJECT)"
bbbdcb09 55
57e58ce7 56DEFAULT_ACCOUNT_KEY_LENGTH=2048
57DEFAULT_DOMAIN_KEY_LENGTH=2048
58
a746139c 59DEFAULT_OPENSSL_BIN="openssl"
60
4c3b3608 61VTYPE_HTTP="http-01"
62VTYPE_DNS="dns-01"
08681f4a 63VTYPE_ALPN="tls-alpn-01"
e22bcf7c 64
6ae8d101 65ID_TYPE_DNS="dns"
66ID_TYPE_IP="ip"
67
0463b5d6 68LOCAL_ANY_ADDRESS="0.0.0.0"
69
ec67a1b2 70DEFAULT_RENEW=60
523c7682 71
3f4513b3 72NO_VALUE="no"
73
3881f221 74W_DNS="dns"
08681f4a 75W_ALPN="alpn"
64821ad4 76DNS_ALIAS_PREFIX="="
4c3b3608 77
0e44f587 78MODE_STATELESS="stateless"
79
ec603bee 80STATE_VERIFIED="verified_ok"
81
9d725af6 82NGINX="nginx:"
03f8d6e9 83NGINX_START="#ACME_NGINX_START"
84NGINX_END="#ACME_NGINX_END"
9d725af6 85
0727f705
JP
86BEGIN_CSR="-----BEGIN [NEW ]\{0,4\}CERTIFICATE REQUEST-----"
87END_CSR="-----END [NEW ]\{0,4\}CERTIFICATE REQUEST-----"
88fab7d6 88
89BEGIN_CERT="-----BEGIN CERTIFICATE-----"
90END_CERT="-----END CERTIFICATE-----"
91
45e386b2 92CONTENT_TYPE_JSON="application/jose+json"
cc179731 93RENEW_SKIP=2
9c757bbe 94CODE_DNS_MANUAL=3
cc179731 95
7690f73e 96B64CONF_START="__ACME_BASE64__START_"
97B64CONF_END="__ACME_BASE64__END_"
98
43822d37 99ECC_SEP="_"
100ECC_SUFFIX="${ECC_SEP}ecc"
101
a73c5b33 102LOG_LEVEL_1=1
103LOG_LEVEL_2=2
104LOG_LEVEL_3=3
105DEFAULT_LOG_LEVEL="$LOG_LEVEL_1"
106
fc6cf4d9 107DEBUG_LEVEL_1=1
108DEBUG_LEVEL_2=2
109DEBUG_LEVEL_3=3
110DEBUG_LEVEL_DEFAULT=$DEBUG_LEVEL_1
111DEBUG_LEVEL_NONE=0
112
10eec7d4 113DOH_CLOUDFLARE=1
114DOH_GOOGLE=2
e65144a1 115DOH_ALI=3
116DOH_DP=4
10eec7d4 117
e6e85b0c 118HIDDEN_VALUE="[hidden](please add '--output-insecure' to see this value)"
119
e2edf208 120SYSLOG_ERROR="user.error"
fc6cf4d9 121SYSLOG_INFO="user.info"
e2edf208 122SYSLOG_DEBUG="user.debug"
123
fc6cf4d9 124#error
113089be 125SYSLOG_LEVEL_ERROR=3
fc6cf4d9 126#info
113089be 127SYSLOG_LEVEL_INFO=6
fc6cf4d9 128#debug
113089be 129SYSLOG_LEVEL_DEBUG=7
fc6cf4d9 130#debug2
113089be 131SYSLOG_LEVEL_DEBUG_2=8
fc6cf4d9 132#debug3
113089be 133SYSLOG_LEVEL_DEBUG_3=9
fc6cf4d9 134
113089be 135SYSLOG_LEVEL_DEFAULT=$SYSLOG_LEVEL_ERROR
fc6cf4d9 136#none
137SYSLOG_LEVEL_NONE=0
138
b50e701c 139NOTIFY_LEVEL_DISABLE=0
140NOTIFY_LEVEL_ERROR=1
141NOTIFY_LEVEL_RENEW=2
142NOTIFY_LEVEL_SKIP=3
143
144NOTIFY_LEVEL_DEFAULT=$NOTIFY_LEVEL_RENEW
145
146NOTIFY_MODE_BULK=0
147NOTIFY_MODE_CERT=1
148
149NOTIFY_MODE_DEFAULT=$NOTIFY_MODE_BULK
150
c39e6c44 151_BASE64_ENCODED_CFGS="Le_PreHook Le_PostHook Le_RenewHook Le_Preferred_Chain Le_ReloadCmd"
152
09f74a9a 153_DEBUG_WIKI="https://github.com/acmesh-official/acme.sh/wiki/How-to-debug-acme.sh"
4c3b3608 154
09f74a9a 155_PREPARE_LINK="https://github.com/acmesh-official/acme.sh/wiki/Install-preparations"
562a4c05 156
09f74a9a 157_STATELESS_WIKI="https://github.com/acmesh-official/acme.sh/wiki/Stateless-Mode"
0e44f587 158
09f74a9a 159_DNS_ALIAS_WIKI="https://github.com/acmesh-official/acme.sh/wiki/DNS-alias-mode"
875625b1 160
09f74a9a 161_DNS_MANUAL_WIKI="https://github.com/acmesh-official/acme.sh/wiki/dns-manual-mode"
a0923622 162
e3ebd582 163_DNS_API_WIKI="https://github.com/acmesh-official/acme.sh/wiki/dnsapi"
164
09f74a9a 165_NOTIFY_WIKI="https://github.com/acmesh-official/acme.sh/wiki/notify"
b50e701c 166
09f74a9a 167_SUDO_WIKI="https://github.com/acmesh-official/acme.sh/wiki/sudo"
5bdfdfef 168
1041c9f9 169_REVOKE_WIKI="https://github.com/acmesh-official/acme.sh/wiki/revokecert"
170
737e9e48 171_ZEROSSL_WIKI="https://github.com/acmesh-official/acme.sh/wiki/ZeroSSL.com-CA"
172
53d6ab6c 173_SSLCOM_WIKI="https://github.com/acmesh-official/acme.sh/wiki/SSL.com-CA"
174
d83d8552 175_SERVER_WIKI="https://github.com/acmesh-official/acme.sh/wiki/Server"
176
e3ebd582 177_PREFERRED_CHAIN_WIKI="https://github.com/acmesh-official/acme.sh/wiki/Preferred-Chain"
178
de4c4eed 179_VALIDITY_WIKI="https://github.com/acmesh-official/acme.sh/wiki/Validity"
180
8a24275b 181_DNSCHECK_WIKI="https://github.com/acmesh-official/acme.sh/wiki/dnscheck"
182
309bec47 183_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."
184
185_DNS_MANUAL_WARN="It seems that you are using dns manual mode. please take care: $_DNS_MANUAL_ERR"
186
a0923622 187_DNS_MANUAL_ERROR="It seems that you are using dns manual mode. Read this link first: $_DNS_MANUAL_WIKI"
188
08ee072f 189__INTERACTIVE=""
4c2a3841 190if [ -t 1 ]; then
08ee072f 191 __INTERACTIVE="1"
192fi
00a50605 193
43822d37 194__green() {
137dc1ea 195 if [ "${__INTERACTIVE}${ACME_NO_COLOR:-0}" = "10" -o "${ACME_FORCE_COLOR}" = "1" ]; then
671edc33 196 printf '\33[1;32m%b\33[0m' "$1"
137dc1ea 197 return
2d12b689 198 fi
3576754c 199 printf -- "%b" "$1"
43822d37 200}
201
202__red() {
137dc1ea 203 if [ "${__INTERACTIVE}${ACME_NO_COLOR:-0}" = "10" -o "${ACME_FORCE_COLOR}" = "1" ]; then
671edc33 204 printf '\33[1;31m%b\33[0m' "$1"
137dc1ea 205 return
2d12b689 206 fi
3576754c 207 printf -- "%b" "$1"
43822d37 208}
00a50605 209
a73c5b33 210_printargs() {
65a7d569 211 _exitstatus="$?"
569d6c55 212 if [ -z "$NO_TIMESTAMP" ] || [ "$NO_TIMESTAMP" = "0" ]; then
213 printf -- "%s" "[$(date)] "
214 fi
4c2a3841 215 if [ -z "$2" ]; then
569d6c55 216 printf -- "%s" "$1"
43822d37 217 else
569d6c55 218 printf -- "%s" "$1='$2'"
43822d37 219 fi
a73c5b33 220 printf "\n"
ac9f6e3a 221 # return the saved exit status
52351d7d 222 return "$_exitstatus"
43822d37 223}
224
9d548d81 225_dlg_versions() {
226 echo "Diagnosis versions: "
851fedf7 227 echo "openssl:$ACME_OPENSSL_BIN"
d8ba26e6 228 if _exists "${ACME_OPENSSL_BIN:-openssl}"; then
229 ${ACME_OPENSSL_BIN:-openssl} version 2>&1
9d548d81 230 else
eca57bee 231 echo "$ACME_OPENSSL_BIN doesn't exist."
9d548d81 232 fi
4c2a3841 233
9d548d81 234 echo "apache:"
4c2a3841 235 if [ "$_APACHECTL" ] && _exists "$_APACHECTL"; then
e735d8d4 236 $_APACHECTL -V 2>&1
9d548d81 237 else
eca57bee 238 echo "apache doesn't exist."
9d548d81 239 fi
4c2a3841 240
326c386b 241 echo "nginx:"
242 if _exists "nginx"; then
243 nginx -V 2>&1
244 else
eca57bee 245 echo "nginx doesn't exist."
326c386b 246 fi
247
3794b5cb 248 echo "socat:"
249 if _exists "socat"; then
463df9e4 250 socat -V 2>&1
9d548d81 251 else
eca57bee 252 _debug "socat doesn't exist."
9d548d81 253 fi
254}
43822d37 255
e2edf208 256#class
257_syslog() {
65a7d569 258 _exitstatus="$?"
fc6cf4d9 259 if [ "${SYS_LOG:-$SYSLOG_LEVEL_NONE}" = "$SYSLOG_LEVEL_NONE" ]; then
e2edf208 260 return
261 fi
262 _logclass="$1"
263 shift
5b3e3d9c 264 if [ -z "$__logger_i" ]; then
265 if _contains "$(logger --help 2>&1)" "-i"; then
266 __logger_i="logger -i"
267 else
268 __logger_i="logger"
269 fi
270 fi
271 $__logger_i -t "$PROJECT_NAME" -p "$_logclass" "$(_printargs "$@")" >/dev/null 2>&1
65a7d569 272 return "$_exitstatus"
e2edf208 273}
274
a73c5b33 275_log() {
276 [ -z "$LOG_FILE" ] && return
95e06de5 277 _printargs "$@" >>"$LOG_FILE"
a73c5b33 278}
279
280_info() {
fc6cf4d9 281 _log "$@"
113089be 282 if [ "${SYS_LOG:-$SYSLOG_LEVEL_NONE}" -ge "$SYSLOG_LEVEL_INFO" ]; then
fc6cf4d9 283 _syslog "$SYSLOG_INFO" "$@"
284 fi
a73c5b33 285 _printargs "$@"
4c3b3608 286}
287
288_err() {
fc6cf4d9 289 _syslog "$SYSLOG_ERROR" "$@"
290 _log "$@"
569d6c55 291 if [ -z "$NO_TIMESTAMP" ] || [ "$NO_TIMESTAMP" = "0" ]; then
292 printf -- "%s" "[$(date)] " >&2
293 fi
4c2a3841 294 if [ -z "$2" ]; then
65de3110 295 __red "$1" >&2
296 else
297 __red "$1='$2'" >&2
298 fi
b19ba13a 299 printf "\n" >&2
4c3b3608 300 return 1
301}
302
43822d37 303_usage() {
4c2a3841 304 __red "$@" >&2
65de3110 305 printf "\n" >&2
43822d37 306}
307
bba5376a
JV
308__debug_bash_helper() {
309 # At this point only do for --debug 3
310 if [ "${DEBUG:-$DEBUG_LEVEL_NONE}" -lt "$DEBUG_LEVEL_3" ]; then
bba5376a
JV
311 return
312 fi
313 # Return extra debug info when running with bash, otherwise return empty
314 # string.
315 if [ -z "${BASH_VERSION}" ]; then
bba5376a
JV
316 return
317 fi
318 # We are a bash shell at this point, return the filename, function name, and
319 # line number as a string
320 _dbh_saveIFS=$IFS
321 IFS=" "
adce8f52
JV
322 # Must use eval or syntax error happens under dash. The eval should use
323 # single quotes as older versions of busybox had a bug with double quotes and
324 # eval.
bba5376a
JV
325 # Use 'caller 1' as we want one level up the stack as we should be called
326 # by one of the _debug* functions
adce8f52 327 eval '_dbh_called=($(caller 1))'
bba5376a 328 IFS=$_dbh_saveIFS
adce8f52 329 eval '_dbh_file=${_dbh_called[2]}'
bba5376a
JV
330 if [ -n "${_script_home}" ]; then
331 # Trim off the _script_home directory name
adce8f52 332 eval '_dbh_file=${_dbh_file#$_script_home/}'
bba5376a 333 fi
adce8f52
JV
334 eval '_dbh_function=${_dbh_called[1]}'
335 eval '_dbh_lineno=${_dbh_called[0]}'
bba5376a
JV
336 printf "%-40s " "$_dbh_file:${_dbh_function}:${_dbh_lineno}"
337}
338
c60883ef 339_debug() {
fc6cf4d9 340 if [ "${LOG_LEVEL:-$DEFAULT_LOG_LEVEL}" -ge "$LOG_LEVEL_1" ]; then
341 _log "$@"
a73c5b33 342 fi
113089be 343 if [ "${SYS_LOG:-$SYSLOG_LEVEL_NONE}" -ge "$SYSLOG_LEVEL_DEBUG" ]; then
fc6cf4d9 344 _syslog "$SYSLOG_DEBUG" "$@"
345 fi
346 if [ "${DEBUG:-$DEBUG_LEVEL_NONE}" -ge "$DEBUG_LEVEL_1" ]; then
bba5376a
JV
347 _bash_debug=$(__debug_bash_helper)
348 _printargs "${_bash_debug}$@" >&2
c60883ef 349 fi
c60883ef 350}
351
e6e85b0c 352#output the sensitive messages
353_secure_debug() {
354 if [ "${LOG_LEVEL:-$DEFAULT_LOG_LEVEL}" -ge "$LOG_LEVEL_1" ]; then
355 if [ "$OUTPUT_INSECURE" = "1" ]; then
356 _log "$@"
357 else
358 _log "$1" "$HIDDEN_VALUE"
359 fi
360 fi
361 if [ "${SYS_LOG:-$SYSLOG_LEVEL_NONE}" -ge "$SYSLOG_LEVEL_DEBUG" ]; then
362 _syslog "$SYSLOG_DEBUG" "$1" "$HIDDEN_VALUE"
363 fi
364 if [ "${DEBUG:-$DEBUG_LEVEL_NONE}" -ge "$DEBUG_LEVEL_1" ]; then
365 if [ "$OUTPUT_INSECURE" = "1" ]; then
366 _printargs "$@" >&2
367 else
368 _printargs "$1" "$HIDDEN_VALUE" >&2
369 fi
370 fi
371}
372
a63b05a9 373_debug2() {
fc6cf4d9 374 if [ "${LOG_LEVEL:-$DEFAULT_LOG_LEVEL}" -ge "$LOG_LEVEL_2" ]; then
375 _log "$@"
a73c5b33 376 fi
113089be 377 if [ "${SYS_LOG:-$SYSLOG_LEVEL_NONE}" -ge "$SYSLOG_LEVEL_DEBUG_2" ]; then
fc6cf4d9 378 _syslog "$SYSLOG_DEBUG" "$@"
379 fi
380 if [ "${DEBUG:-$DEBUG_LEVEL_NONE}" -ge "$DEBUG_LEVEL_2" ]; then
bba5376a
JV
381 _bash_debug=$(__debug_bash_helper)
382 _printargs "${_bash_debug}$@" >&2
a63b05a9 383 fi
a63b05a9 384}
385
e6e85b0c 386_secure_debug2() {
387 if [ "${LOG_LEVEL:-$DEFAULT_LOG_LEVEL}" -ge "$LOG_LEVEL_2" ]; then
388 if [ "$OUTPUT_INSECURE" = "1" ]; then
389 _log "$@"
390 else
391 _log "$1" "$HIDDEN_VALUE"
392 fi
393 fi
394 if [ "${SYS_LOG:-$SYSLOG_LEVEL_NONE}" -ge "$SYSLOG_LEVEL_DEBUG_2" ]; then
395 _syslog "$SYSLOG_DEBUG" "$1" "$HIDDEN_VALUE"
396 fi
397 if [ "${DEBUG:-$DEBUG_LEVEL_NONE}" -ge "$DEBUG_LEVEL_2" ]; then
398 if [ "$OUTPUT_INSECURE" = "1" ]; then
399 _printargs "$@" >&2
400 else
401 _printargs "$1" "$HIDDEN_VALUE" >&2
402 fi
403 fi
404}
405
22ea4004 406_debug3() {
fc6cf4d9 407 if [ "${LOG_LEVEL:-$DEFAULT_LOG_LEVEL}" -ge "$LOG_LEVEL_3" ]; then
408 _log "$@"
409 fi
113089be 410 if [ "${SYS_LOG:-$SYSLOG_LEVEL_NONE}" -ge "$SYSLOG_LEVEL_DEBUG_3" ]; then
fc6cf4d9 411 _syslog "$SYSLOG_DEBUG" "$@"
a73c5b33 412 fi
fc6cf4d9 413 if [ "${DEBUG:-$DEBUG_LEVEL_NONE}" -ge "$DEBUG_LEVEL_3" ]; then
bba5376a
JV
414 _bash_debug=$(__debug_bash_helper)
415 _printargs "${_bash_debug}$@" >&2
22ea4004 416 fi
22ea4004 417}
418
e6e85b0c 419_secure_debug3() {
420 if [ "${LOG_LEVEL:-$DEFAULT_LOG_LEVEL}" -ge "$LOG_LEVEL_3" ]; then
421 if [ "$OUTPUT_INSECURE" = "1" ]; then
422 _log "$@"
423 else
424 _log "$1" "$HIDDEN_VALUE"
425 fi
426 fi
427 if [ "${SYS_LOG:-$SYSLOG_LEVEL_NONE}" -ge "$SYSLOG_LEVEL_DEBUG_3" ]; then
428 _syslog "$SYSLOG_DEBUG" "$1" "$HIDDEN_VALUE"
429 fi
430 if [ "${DEBUG:-$DEBUG_LEVEL_NONE}" -ge "$DEBUG_LEVEL_3" ]; then
431 if [ "$OUTPUT_INSECURE" = "1" ]; then
432 _printargs "$@" >&2
433 else
434 _printargs "$1" "$HIDDEN_VALUE" >&2
435 fi
436 fi
437}
438
c4bf5eef 439_upper_case() {
d0c2fb97 440 # shellcheck disable=SC2018,SC2019
441 tr '[a-z]' '[A-Z]'
c4bf5eef 442}
443
444_lower_case() {
d0c2fb97 445 # shellcheck disable=SC2018,SC2019
446 tr '[A-Z]' '[a-z]'
c4bf5eef 447}
448
4c2a3841 449_startswith() {
dceb3aca 450 _str="$1"
451 _sub="$2"
18e4d270 452 echo "$_str" | grep -- "^$_sub" >/dev/null 2>&1
dceb3aca 453}
454
4c2a3841 455_endswith() {
43822d37 456 _str="$1"
457 _sub="$2"
458 echo "$_str" | grep -- "$_sub\$" >/dev/null 2>&1
459}
460
4c2a3841 461_contains() {
dceb3aca 462 _str="$1"
463 _sub="$2"
43822d37 464 echo "$_str" | grep -- "$_sub" >/dev/null 2>&1
dceb3aca 465}
466
c53da1ef 467_hasfield() {
468 _str="$1"
469 _field="$2"
470 _sep="$3"
4c2a3841 471 if [ -z "$_field" ]; then
43822d37 472 _usage "Usage: str field [sep]"
c53da1ef 473 return 1
474 fi
4c2a3841 475
476 if [ -z "$_sep" ]; then
c53da1ef 477 _sep=","
478 fi
4c2a3841 479
6cf7be4b 480 for f in $(echo "$_str" | tr "$_sep" ' '); do
4c2a3841 481 if [ "$f" = "$_field" ]; then
0c9546cc 482 _debug2 "'$_str' contains '$_field'"
c53da1ef 483 return 0 #contains ok
484 fi
485 done
0c9546cc 486 _debug2 "'$_str' does not contain '$_field'"
3c07f57a 487 return 1 #not contains
c53da1ef 488}
489
422dd1fa 490# str index [sep]
4c2a3841 491_getfield() {
0463b5d6 492 _str="$1"
493 _findex="$2"
494 _sep="$3"
4c2a3841 495
496 if [ -z "$_findex" ]; then
0463b5d6 497 _usage "Usage: str field [sep]"
498 return 1
499 fi
4c2a3841 500
501 if [ -z "$_sep" ]; then
0463b5d6 502 _sep=","
503 fi
504
201aa244 505 _ffi="$_findex"
4c2a3841 506 while [ "$_ffi" -gt "0" ]; do
201aa244 507 _fv="$(echo "$_str" | cut -d "$_sep" -f "$_ffi")"
4c2a3841 508 if [ "$_fv" ]; then
0463b5d6 509 printf -- "%s" "$_fv"
510 return 0
511 fi
95e06de5 512 _ffi="$(_math "$_ffi" - 1)"
0463b5d6 513 done
4c2a3841 514
0463b5d6 515 printf -- "%s" "$_str"
516
517}
518
4c2a3841 519_exists() {
c60883ef 520 cmd="$1"
4c2a3841 521 if [ -z "$cmd" ]; then
43822d37 522 _usage "Usage: _exists cmd"
c60883ef 523 return 1
524 fi
82dc2244 525
526 if eval type type >/dev/null 2>&1; then
527 eval type "$cmd" >/dev/null 2>&1
528 elif command >/dev/null 2>&1; then
19539575 529 command -v "$cmd" >/dev/null 2>&1
ce4be4e9 530 else
e591d5cf 531 which "$cmd" >/dev/null 2>&1
eac18b1c 532 fi
c60883ef 533 ret="$?"
690a5e20 534 _debug3 "$cmd exists=$ret"
c60883ef 535 return $ret
536}
537
00a50605 538#a + b
4c2a3841 539_math() {
be68fbd4 540 _m_opts="$@"
541 printf "%s" "$(($_m_opts))"
00a50605 542}
543
544_h_char_2_dec() {
545 _ch=$1
546 case "${_ch}" in
19c43451 547 a | A)
548 printf "10"
549 ;;
550 b | B)
551 printf "11"
552 ;;
553 c | C)
554 printf "12"
555 ;;
556 d | D)
557 printf "13"
558 ;;
559 e | E)
560 printf "14"
561 ;;
562 f | F)
563 printf "15"
564 ;;
565 *)
566 printf "%s" "$_ch"
567 ;;
19539575 568 esac
00a50605 569
570}
571
fac1e367 572_URGLY_PRINTF=""
4c2a3841 573if [ "$(printf '\x41')" != 'A' ]; then
fac1e367 574 _URGLY_PRINTF=1
575fi
576
f8bcfeb2 577_ESCAPE_XARGS=""
841b7627 578if _exists xargs && [ "$(printf %s '\\x41' | xargs printf)" = 'A' ]; then
f8bcfeb2 579 _ESCAPE_XARGS=1
580fi
581
4c3b3608 582_h2b() {
9a90fe37 583 if _exists xxd; then
584 if _contains "$(xxd --help 2>&1)" "assumes -c30"; then
585 if xxd -r -p -c 9999 2>/dev/null; then
586 return
587 fi
588 else
589 if xxd -r -p 2>/dev/null; then
590 return
591 fi
592 fi
b420ec6c 593 fi
594
4c3b3608 595 hex=$(cat)
fa93d68b 596 ic=""
597 jc=""
b420ec6c 598 _debug2 _URGLY_PRINTF "$_URGLY_PRINTF"
599 if [ -z "$_URGLY_PRINTF" ]; then
f8bcfeb2 600 if [ "$_ESCAPE_XARGS" ] && _exists xargs; then
fa93d68b 601 _debug2 "xargs"
ded4469e 602 echo "$hex" | _upper_case | sed 's/\([0-9A-F]\{2\}\)/\\\\\\x\1/g' | xargs printf
fa93d68b 603 else
ded4469e 604 for h in $(echo "$hex" | _upper_case | sed 's/\([0-9A-F]\{2\}\)/ \1/g'); do
fa93d68b 605 if [ -z "$h" ]; then
606 break
607 fi
608 printf "\x$h%s"
609 done
610 fi
b420ec6c 611 else
ded4469e 612 for c in $(echo "$hex" | _upper_case | sed 's/\([0-9A-F]\)/ \1/g'); do
fa93d68b 613 if [ -z "$ic" ]; then
614 ic=$c
615 continue
00a50605 616 fi
fa93d68b 617 jc=$c
19539575 618 ic="$(_h_char_2_dec "$ic")"
619 jc="$(_h_char_2_dec "$jc")"
e51bef6d 620 printf '\'"$(printf "%o" "$(_math "$ic" \* 16 + $jc)")""%s"
fa93d68b 621 ic=""
622 jc=""
b420ec6c 623 done
624 fi
e591d5cf 625
4c3b3608 626}
627
542d7977 628_is_solaris() {
629 _contains "${__OS__:=$(uname -a)}" "solaris" || _contains "${__OS__:=$(uname -a)}" "SunOS"
630}
631
9bdb799b 632#_ascii_hex str
633#this can only process ascii chars, should only be used when od command is missing as a backup way.
634_ascii_hex() {
635 _debug2 "Using _ascii_hex"
636 _str="$1"
637 _str_len=${#_str}
638 _h_i=1
639 while [ "$_h_i" -le "$_str_len" ]; do
640 _str_c="$(printf "%s" "$_str" | cut -c "$_h_i")"
641 printf " %02x" "'$_str_c"
642 _h_i="$(_math "$_h_i" + 1)"
643 done
644}
645
542d7977 646#stdin output hexstr splited by one space
647#input:"abc"
648#output: " 61 62 63"
649_hex_dump() {
4e4a6d83 650 if _exists od; then
651 od -A n -v -t x1 | tr -s " " | sed 's/ $//' | tr -d "\r\t\n"
652 elif _exists hexdump; then
653 _debug3 "using hexdump"
654 hexdump -v -e '/1 ""' -e '/1 " %02x" ""'
655 elif _exists xxd; then
656 _debug3 "using xxd"
657 xxd -ps -c 20 -i | sed "s/ 0x/ /g" | tr -d ",\n" | tr -s " "
658 else
659 _debug3 "using _ascii_hex"
9bdb799b 660 str=$(cat)
661 _ascii_hex "$str"
662 fi
542d7977 663}
664
665#url encode, no-preserved chars
666#A B C D E F G H I J K L M N O P Q R S T U V W X Y Z
667#41 42 43 44 45 46 47 48 49 4a 4b 4c 4d 4e 4f 50 51 52 53 54 55 56 57 58 59 5a
668
669#a b c d e f g h i j k l m n o p q r s t u v w x y z
670#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
671
672#0 1 2 3 4 5 6 7 8 9 - _ . ~
673#30 31 32 33 34 35 36 37 38 39 2d 5f 2e 7e
674
675#stdin stdout
676_url_encode() {
677 _hex_str=$(_hex_dump)
678 _debug3 "_url_encode"
679 _debug3 "_hex_str" "$_hex_str"
680 for _hex_code in $_hex_str; do
681 #upper case
682 case "${_hex_code}" in
19c43451 683 "41")
684 printf "%s" "A"
685 ;;
686 "42")
687 printf "%s" "B"
688 ;;
689 "43")
690 printf "%s" "C"
691 ;;
692 "44")
693 printf "%s" "D"
694 ;;
695 "45")
696 printf "%s" "E"
697 ;;
698 "46")
699 printf "%s" "F"
700 ;;
701 "47")
702 printf "%s" "G"
703 ;;
704 "48")
705 printf "%s" "H"
706 ;;
707 "49")
708 printf "%s" "I"
709 ;;
710 "4a")
711 printf "%s" "J"
712 ;;
713 "4b")
714 printf "%s" "K"
715 ;;
716 "4c")
717 printf "%s" "L"
718 ;;
719 "4d")
720 printf "%s" "M"
721 ;;
722 "4e")
723 printf "%s" "N"
724 ;;
725 "4f")
726 printf "%s" "O"
727 ;;
728 "50")
729 printf "%s" "P"
730 ;;
731 "51")
732 printf "%s" "Q"
733 ;;
734 "52")
735 printf "%s" "R"
736 ;;
737 "53")
738 printf "%s" "S"
739 ;;
740 "54")
741 printf "%s" "T"
742 ;;
743 "55")
744 printf "%s" "U"
745 ;;
746 "56")
747 printf "%s" "V"
748 ;;
749 "57")
750 printf "%s" "W"
751 ;;
752 "58")
753 printf "%s" "X"
754 ;;
755 "59")
756 printf "%s" "Y"
757 ;;
758 "5a")
759 printf "%s" "Z"
760 ;;
c3b1eb08 761
762 #lower case
19c43451 763 "61")
764 printf "%s" "a"
765 ;;
766 "62")
767 printf "%s" "b"
768 ;;
769 "63")
770 printf "%s" "c"
771 ;;
772 "64")
773 printf "%s" "d"
774 ;;
775 "65")
776 printf "%s" "e"
777 ;;
778 "66")
779 printf "%s" "f"
780 ;;
781 "67")
782 printf "%s" "g"
783 ;;
784 "68")
785 printf "%s" "h"
786 ;;
787 "69")
788 printf "%s" "i"
789 ;;
790 "6a")
791 printf "%s" "j"
792 ;;
793 "6b")
794 printf "%s" "k"
795 ;;
796 "6c")
797 printf "%s" "l"
798 ;;
799 "6d")
800 printf "%s" "m"
801 ;;
802 "6e")
803 printf "%s" "n"
804 ;;
805 "6f")
806 printf "%s" "o"
807 ;;
808 "70")
809 printf "%s" "p"
810 ;;
811 "71")
812 printf "%s" "q"
813 ;;
814 "72")
815 printf "%s" "r"
816 ;;
817 "73")
818 printf "%s" "s"
819 ;;
820 "74")
821 printf "%s" "t"
822 ;;
823 "75")
824 printf "%s" "u"
825 ;;
826 "76")
827 printf "%s" "v"
828 ;;
829 "77")
830 printf "%s" "w"
831 ;;
832 "78")
833 printf "%s" "x"
834 ;;
835 "79")
836 printf "%s" "y"
837 ;;
838 "7a")
839 printf "%s" "z"
840 ;;
c3b1eb08 841 #numbers
19c43451 842 "30")
843 printf "%s" "0"
844 ;;
845 "31")
846 printf "%s" "1"
847 ;;
848 "32")
849 printf "%s" "2"
850 ;;
851 "33")
852 printf "%s" "3"
853 ;;
854 "34")
855 printf "%s" "4"
856 ;;
857 "35")
858 printf "%s" "5"
859 ;;
860 "36")
861 printf "%s" "6"
862 ;;
863 "37")
864 printf "%s" "7"
865 ;;
866 "38")
867 printf "%s" "8"
868 ;;
869 "39")
870 printf "%s" "9"
871 ;;
872 "2d")
873 printf "%s" "-"
874 ;;
875 "5f")
876 printf "%s" "_"
877 ;;
878 "2e")
879 printf "%s" "."
880 ;;
881 "7e")
882 printf "%s" "~"
883 ;;
884 #other hex
885 *)
886 printf '%%%s' "$_hex_code"
887 ;;
542d7977 888 esac
e009ec8b 889 done
890}
891
b50e701c 892_json_encode() {
893 _j_str="$(sed 's/"/\\"/g' | sed "s/\r/\\r/g")"
894 _debug3 "_json_encode"
895 _debug3 "_j_str" "$_j_str"
896 echo "$_j_str" | _hex_dump | _lower_case | sed 's/0a/5c 6e/g' | tr -d ' ' | _h2b | tr -d "\r\n"
897}
898
93de1e49 899#from: http:\/\/ to http://
900_json_decode() {
901 _j_str="$(sed 's#\\/#/#g')"
902 _debug3 "_json_decode"
903 _debug3 "_j_str" "$_j_str"
904 echo "$_j_str"
905}
906
c60883ef 907#options file
908_sed_i() {
909 options="$1"
910 filename="$2"
4c2a3841 911 if [ -z "$filename" ]; then
43822d37 912 _usage "Usage:_sed_i options filename"
c60883ef 913 return 1
914 fi
14f3dbb7 915 _debug2 options "$options"
916 if sed -h 2>&1 | grep "\-i\[SUFFIX]" >/dev/null 2>&1; then
c60883ef 917 _debug "Using sed -i"
14f3dbb7 918 sed -i "$options" "$filename"
c60883ef 919 else
920 _debug "No -i support in sed"
19539575 921 text="$(cat "$filename")"
4c2a3841 922 echo "$text" | sed "$options" >"$filename"
c60883ef 923 fi
924}
925
22ea4004 926_egrep_o() {
a3c0c754 927 if ! egrep -o "$1" 2>/dev/null; then
22ea4004 928 sed -n 's/.*\('"$1"'\).*/\1/p'
22ea4004 929 fi
930}
931
88fab7d6 932#Usage: file startline endline
933_getfile() {
934 filename="$1"
935 startline="$2"
936 endline="$3"
4c2a3841 937 if [ -z "$endline" ]; then
43822d37 938 _usage "Usage: file startline endline"
88fab7d6 939 return 1
940 fi
4c2a3841 941
942 i="$(grep -n -- "$startline" "$filename" | cut -d : -f 1)"
943 if [ -z "$i" ]; then
88fab7d6 944 _err "Can not find start line: $startline"
945 return 1
946 fi
19539575 947 i="$(_math "$i" + 1)"
948 _debug i "$i"
4c2a3841 949
950 j="$(grep -n -- "$endline" "$filename" | cut -d : -f 1)"
951 if [ -z "$j" ]; then
88fab7d6 952 _err "Can not find end line: $endline"
953 return 1
954 fi
19539575 955 j="$(_math "$j" - 1)"
956 _debug j "$j"
4c2a3841 957
958 sed -n "$i,${j}p" "$filename"
88fab7d6 959
960}
961
962#Usage: multiline
4c3b3608 963_base64() {
ec9975c3 964 [ "" ] #urgly
4c2a3841 965 if [ "$1" ]; then
24d2a8b9 966 _debug3 "base64 multiline:'$1'"
d8ba26e6 967 ${ACME_OPENSSL_BIN:-openssl} base64 -e
88fab7d6 968 else
4d8b99a3 969 _debug3 "base64 single line."
d8ba26e6 970 ${ACME_OPENSSL_BIN:-openssl} base64 -e | tr -d '\r\n'
88fab7d6 971 fi
972}
973
974#Usage: multiline
975_dbase64() {
4c2a3841 976 if [ "$1" ]; then
d8ba26e6 977 ${ACME_OPENSSL_BIN:-openssl} base64 -d
9b6f7752 978 else
979 ${ACME_OPENSSL_BIN:-openssl} base64 -d -A
88fab7d6 980 fi
981}
982
183063a2 983#file
984_checkcert() {
985 _cf="$1"
986 if [ "$DEBUG" ]; then
2c7d2230 987 ${ACME_OPENSSL_BIN:-openssl} x509 -noout -text -in "$_cf"
183063a2 988 else
2c7d2230 989 ${ACME_OPENSSL_BIN:-openssl} x509 -noout -text -in "$_cf" >/dev/null 2>&1
183063a2 990 fi
991}
992
e22bcf7c 993#Usage: hashalg [outputhex]
88fab7d6 994#Output Base64-encoded digest
995_digest() {
996 alg="$1"
4c2a3841 997 if [ -z "$alg" ]; then
43822d37 998 _usage "Usage: _digest hashalg"
88fab7d6 999 return 1
1000 fi
4c2a3841 1001
e22bcf7c 1002 outputhex="$2"
4c2a3841 1003
c7b16249 1004 if [ "$alg" = "sha256" ] || [ "$alg" = "sha1" ] || [ "$alg" = "md5" ]; then
4c2a3841 1005 if [ "$outputhex" ]; then
d8ba26e6 1006 ${ACME_OPENSSL_BIN:-openssl} dgst -"$alg" -hex | cut -d = -f 2 | tr -d ' '
e22bcf7c 1007 else
d8ba26e6 1008 ${ACME_OPENSSL_BIN:-openssl} dgst -"$alg" -binary | _base64
b001840d 1009 fi
1010 else
1011 _err "$alg is not supported yet"
1012 return 1
1013 fi
1014
1015}
1016
e009ec8b 1017#Usage: hashalg secret_hex [outputhex]
1018#Output binary hmac
b001840d 1019_hmac() {
1020 alg="$1"
e009ec8b 1021 secret_hex="$2"
b001840d 1022 outputhex="$3"
4c2a3841 1023
e009ec8b 1024 if [ -z "$secret_hex" ]; then
4c2a3841 1025 _usage "Usage: _hmac hashalg secret [outputhex]"
b001840d 1026 return 1
1027 fi
1028
a6014bf0 1029 if [ "$alg" = "sha256" ] || [ "$alg" = "sha1" ]; then
4c2a3841 1030 if [ "$outputhex" ]; then
d8ba26e6 1031 (${ACME_OPENSSL_BIN:-openssl} dgst -"$alg" -mac HMAC -macopt "hexkey:$secret_hex" 2>/dev/null || ${ACME_OPENSSL_BIN:-openssl} dgst -"$alg" -hmac "$(printf "%s" "$secret_hex" | _h2b)") | cut -d = -f 2 | tr -d ' '
e22bcf7c 1032 else
d8ba26e6 1033 ${ACME_OPENSSL_BIN:-openssl} dgst -"$alg" -mac HMAC -macopt "hexkey:$secret_hex" -binary 2>/dev/null || ${ACME_OPENSSL_BIN:-openssl} dgst -"$alg" -hmac "$(printf "%s" "$secret_hex" | _h2b)" -binary
e22bcf7c 1034 fi
88fab7d6 1035 else
1036 _err "$alg is not supported yet"
1037 return 1
1038 fi
1039
1040}
1041
1042#Usage: keyfile hashalg
1043#Output: Base64-encoded signature value
1044_sign() {
1045 keyfile="$1"
1046 alg="$2"
4c2a3841 1047 if [ -z "$alg" ]; then
43822d37 1048 _usage "Usage: _sign keyfile hashalg"
88fab7d6 1049 return 1
1050 fi
4c2a3841 1051
d8ba26e6 1052 _sign_openssl="${ACME_OPENSSL_BIN:-openssl} dgst -sign $keyfile "
4c2a3841 1053
18827427 1054 if _isRSA "$keyfile" >/dev/null 2>&1; then
f87890cb 1055 $_sign_openssl -$alg | _base64
18827427 1056 elif _isEcc "$keyfile" >/dev/null 2>&1; then
f87890cb 1057 if ! _signedECText="$($_sign_openssl -sha$__ECC_KEY_LEN | ${ACME_OPENSSL_BIN:-openssl} asn1parse -inform DER)"; then
67184d7b 1058 _err "Sign failed: $_sign_openssl"
1059 _err "Key file: $keyfile"
357b514b 1060 _err "Key content:$(wc -l <"$keyfile") lines"
67184d7b 1061 return 1
1062 fi
998783eb 1063 _debug3 "_signedECText" "$_signedECText"
1064 _ec_r="$(echo "$_signedECText" | _head_n 2 | _tail_n 1 | cut -d : -f 4 | tr -d "\r\n")"
998783eb 1065 _ec_s="$(echo "$_signedECText" | _head_n 3 | _tail_n 1 | cut -d : -f 4 | tr -d "\r\n")"
a3295476 1066 if [ "$__ECC_KEY_LEN" -eq "256" ]; then
1067 while [ "${#_ec_r}" -lt "64" ]; do
f31debc0 1068 _ec_r="0${_ec_r}"
6654d7a9 1069 done
a3295476 1070 while [ "${#_ec_s}" -lt "64" ]; do
f31debc0 1071 _ec_s="0${_ec_s}"
a3295476 1072 done
1073 fi
1074 if [ "$__ECC_KEY_LEN" -eq "384" ]; then
1075 while [ "${#_ec_r}" -lt "96" ]; do
f31debc0 1076 _ec_r="0${_ec_r}"
6654d7a9 1077 done
a3295476 1078 while [ "${#_ec_s}" -lt "96" ]; do
f31debc0 1079 _ec_s="0${_ec_s}"
a3295476 1080 done
1081 fi
1082 if [ "$__ECC_KEY_LEN" -eq "512" ]; then
1083 while [ "${#_ec_r}" -lt "132" ]; do
f31debc0 1084 _ec_r="0${_ec_r}"
6654d7a9 1085 done
a3295476 1086 while [ "${#_ec_s}" -lt "132" ]; do
f31debc0 1087 _ec_s="0${_ec_s}"
a3295476 1088 done
1089 fi
e2a5af1c 1090 _debug3 "_ec_r" "$_ec_r"
998783eb 1091 _debug3 "_ec_s" "$_ec_s"
1092 printf "%s" "$_ec_r$_ec_s" | _h2b | _base64
1093 else
1094 _err "Unknown key file format."
1095 return 1
1096 fi
4c2a3841 1097
4c3b3608 1098}
1099
3281043e 1100#keylength or isEcc flag (empty str => not ecc)
43822d37 1101_isEccKey() {
1102 _length="$1"
1103
4c2a3841 1104 if [ -z "$_length" ]; then
43822d37 1105 return 1
1106 fi
1107
19c43451 1108 [ "$_length" != "1024" ] &&
1109 [ "$_length" != "2048" ] &&
1110 [ "$_length" != "3072" ] &&
1111 [ "$_length" != "4096" ] &&
1112 [ "$_length" != "8192" ]
43822d37 1113}
1114
e22bcf7c 1115# _createkey 2048|ec-256 file
1116_createkey() {
1117 length="$1"
1118 f="$2"
c4236e58 1119 _debug2 "_createkey for file:$f"
43822d37 1120 eccname="$length"
4c2a3841 1121 if _startswith "$length" "ec-"; then
f9a6988e 1122 length=$(printf "%s" "$length" | cut -d '-' -f 2-100)
e22bcf7c 1123
4c2a3841 1124 if [ "$length" = "256" ]; then
e22bcf7c 1125 eccname="prime256v1"
1126 fi
4c2a3841 1127 if [ "$length" = "384" ]; then
e22bcf7c 1128 eccname="secp384r1"
1129 fi
4c2a3841 1130 if [ "$length" = "521" ]; then
e22bcf7c 1131 eccname="secp521r1"
1132 fi
43822d37 1133
e22bcf7c 1134 fi
1135
4c2a3841 1136 if [ -z "$length" ]; then
1137 length=2048
43822d37 1138 fi
4c2a3841 1139
cbcd7e0f 1140 _debug "Use length $length"
43822d37 1141
af193291 1142 if ! [ -e "$f" ]; then
1143 if ! touch "$f" >/dev/null 2>&1; then
1144 _f_path="$(dirname "$f")"
1145 _debug _f_path "$_f_path"
1146 if ! mkdir -p "$_f_path"; then
1147 _err "Can not create path: $_f_path"
1148 return 1
1149 fi
1150 fi
1151 if ! touch "$f" >/dev/null 2>&1; then
81532f37 1152 return 1
1153 fi
af193291 1154 chmod 600 "$f"
81532f37 1155 fi
1156
4c2a3841 1157 if _isEccKey "$length"; then
cbcd7e0f 1158 _debug "Using ec name: $eccname"
a730a081 1159 if _opkey="$(${ACME_OPENSSL_BIN:-openssl} ecparam -name "$eccname" -noout -genkey 2>/dev/null)"; then
e6df1828 1160 echo "$_opkey" >"$f"
1161 else
1162 _err "error ecc key name: $eccname"
1163 return 1
1164 fi
e22bcf7c 1165 else
cbcd7e0f 1166 _debug "Using RSA: $length"
906ef43c 1167 __traditional=""
1168 if _contains "$(${ACME_OPENSSL_BIN:-openssl} help genrsa 2>&1)" "-traditional"; then
1169 __traditional="-traditional"
1170 fi
45289572 1171 if _opkey="$(${ACME_OPENSSL_BIN:-openssl} genrsa $__traditional "$length" 2>/dev/null)"; then
e6df1828 1172 echo "$_opkey" >"$f"
1173 else
1174 _err "error rsa key: $length"
1175 return 1
1176 fi
e22bcf7c 1177 fi
43822d37 1178
4c2a3841 1179 if [ "$?" != "0" ]; then
43822d37 1180 _err "Create key error."
1181 return 1
1182 fi
e22bcf7c 1183}
1184
9774b01b 1185#domain
1186_is_idn() {
1187 _is_idn_d="$1"
049be104 1188 _debug2 _is_idn_d "$_is_idn_d"
204e5f44 1189 _idn_temp=$(printf "%s" "$_is_idn_d" | tr -d '[0-9]' | tr -d '[a-z]' | tr -d '[A-Z]' | tr -d '*.,-_')
049be104 1190 _debug2 _idn_temp "$_idn_temp"
1191 [ "$_idn_temp" ]
9774b01b 1192}
1193
1194#aa.com
1195#aa.com,bb.com,cc.com
1196_idn() {
1197 __idn_d="$1"
4c2a3841 1198 if ! _is_idn "$__idn_d"; then
9774b01b 1199 printf "%s" "$__idn_d"
1200 return 0
1201 fi
4c2a3841 1202
1203 if _exists idn; then
1204 if _contains "$__idn_d" ','; then
9774b01b 1205 _i_first="1"
4c2a3841 1206 for f in $(echo "$__idn_d" | tr ',' ' '); do
9774b01b 1207 [ -z "$f" ] && continue
4c2a3841 1208 if [ -z "$_i_first" ]; then
9774b01b 1209 printf "%s" ","
1210 else
1211 _i_first=""
1212 fi
2a1e06f8 1213 idn --quiet "$f" | tr -d "\r\n"
9774b01b 1214 done
1215 else
1216 idn "$__idn_d" | tr -d "\r\n"
1217 fi
1218 else
1219 _err "Please install idn to process IDN names."
1220 fi
1221}
1222
08681f4a 1223#_createcsr cn san_list keyfile csrfile conf acmeValidationv1
e22bcf7c 1224_createcsr() {
1225 _debug _createcsr
1226 domain="$1"
1227 domainlist="$2"
0c9546cc 1228 csrkey="$3"
e22bcf7c 1229 csr="$4"
1230 csrconf="$5"
08681f4a 1231 acmeValidationv1="$6"
e22bcf7c 1232 _debug2 domain "$domain"
1233 _debug2 domainlist "$domainlist"
0c9546cc 1234 _debug2 csrkey "$csrkey"
1235 _debug2 csr "$csr"
1236 _debug2 csrconf "$csrconf"
4c2a3841 1237
280e4430 1238 printf "[ req_distinguished_name ]\n[ req ]\ndistinguished_name = req_distinguished_name\nreq_extensions = v3_req\n[ v3_req ]\n\n" >"$csrconf"
4c2a3841 1239
08681f4a 1240 if [ "$acmeValidationv1" ]; then
4962cc3d 1241 domainlist="$(_idn "$domainlist")"
6ae8d101 1242 _debug2 domainlist "$domainlist"
e6e07714 1243 alt=""
6ae8d101 1244 for dl in $(echo "$domainlist" | tr "," ' '); do
1245 if [ "$alt" ]; then
1246 alt="$alt,$(_getIdType "$dl" | _upper_case):$dl"
1247 else
1248 alt="$(_getIdType "$dl" | _upper_case):$dl"
1249 fi
1250 done
1251 printf -- "\nsubjectAltName=$alt" >>"$csrconf"
08681f4a 1252 elif [ -z "$domainlist" ] || [ "$domainlist" = "$NO_VALUE" ]; then
e22bcf7c 1253 #single domain
1254 _info "Single domain" "$domain"
6ae8d101 1255 printf -- "\nsubjectAltName=$(_getIdType "$domain" | _upper_case):$(_idn "$domain")" >>"$csrconf"
e22bcf7c 1256 else
f9a6988e 1257 domainlist="$(_idn "$domainlist")"
9774b01b 1258 _debug2 domainlist "$domainlist"
e67d26ca 1259 alt="$(_getIdType "$domain" | _upper_case):$(_idn "$domain")"
90b65c66 1260 for dl in $(echo "'$domainlist'" | sed "s/,/' '/g"); do
1261 dl=$(echo "$dl" | tr -d "'")
6ae8d101 1262 alt="$alt,$(_getIdType "$dl" | _upper_case):$dl"
1263 done
3c07f57a 1264 #multi
e22bcf7c 1265 _info "Multi domain" "$alt"
4c2a3841 1266 printf -- "\nsubjectAltName=$alt" >>"$csrconf"
0c9546cc 1267 fi
6ba1eda9 1268 if [ "$Le_OCSP_Staple" = "1" ]; then
96db9362 1269 _savedomainconf Le_OCSP_Staple "$Le_OCSP_Staple"
4c2a3841 1270 printf -- "\nbasicConstraints = CA:FALSE\n1.3.6.1.5.5.7.1.24=DER:30:03:02:01:05" >>"$csrconf"
e22bcf7c 1271 fi
4c2a3841 1272
08681f4a 1273 if [ "$acmeValidationv1" ]; then
ad613e24 1274 printf "\n1.3.6.1.5.5.7.1.31=critical,DER:04:20:${acmeValidationv1}" >>"${csrconf}"
08681f4a 1275 fi
1276
9774b01b 1277 _csr_cn="$(_idn "$domain")"
1278 _debug2 _csr_cn "$_csr_cn"
34f25fa5 1279 if _contains "$(uname -a)" "MINGW"; then
d43b587d 1280 if _isIP "$_csr_cn"; then
1281 ${ACME_OPENSSL_BIN:-openssl} req -new -sha256 -key "$csrkey" -subj "//O=$PROJECT_NAME" -config "$csrconf" -out "$csr"
1282 else
1283 ${ACME_OPENSSL_BIN:-openssl} req -new -sha256 -key "$csrkey" -subj "//CN=$_csr_cn" -config "$csrconf" -out "$csr"
1284 fi
34f25fa5 1285 else
d43b587d 1286 if _isIP "$_csr_cn"; then
1287 ${ACME_OPENSSL_BIN:-openssl} req -new -sha256 -key "$csrkey" -subj "/O=$PROJECT_NAME" -config "$csrconf" -out "$csr"
1288 else
1289 ${ACME_OPENSSL_BIN:-openssl} req -new -sha256 -key "$csrkey" -subj "/CN=$_csr_cn" -config "$csrconf" -out "$csr"
1290 fi
34f25fa5 1291 fi
e22bcf7c 1292}
1293
1294#_signcsr key csr conf cert
1295_signcsr() {
1296 key="$1"
1297 csr="$2"
1298 conf="$3"
1299 cert="$4"
5aa146a5 1300 _debug "_signcsr"
4c2a3841 1301
d8ba26e6 1302 _msg="$(${ACME_OPENSSL_BIN:-openssl} x509 -req -days 365 -in "$csr" -signkey "$key" -extensions v3_req -extfile "$conf" -out "$cert" 2>&1)"
5aa146a5 1303 _ret="$?"
1304 _debug "$_msg"
1305 return $_ret
e22bcf7c 1306}
1307
10afcaca 1308#_csrfile
1309_readSubjectFromCSR() {
1310 _csrfile="$1"
4c2a3841 1311 if [ -z "$_csrfile" ]; then
10afcaca 1312 _usage "_readSubjectFromCSR mycsr.csr"
1313 return 1
1314 fi
b963dadc 1315 ${ACME_OPENSSL_BIN:-openssl} req -noout -in "$_csrfile" -subject | tr ',' "\n" | _egrep_o "CN *=.*" | cut -d = -f 2 | cut -d / -f 1 | tr -d ' \n'
10afcaca 1316}
1317
1318#_csrfile
1319#echo comma separated domain list
1320_readSubjectAltNamesFromCSR() {
1321 _csrfile="$1"
4c2a3841 1322 if [ -z "$_csrfile" ]; then
10afcaca 1323 _usage "_readSubjectAltNamesFromCSR mycsr.csr"
1324 return 1
1325 fi
4c2a3841 1326
10afcaca 1327 _csrsubj="$(_readSubjectFromCSR "$_csrfile")"
1328 _debug _csrsubj "$_csrsubj"
4c2a3841 1329
d8ba26e6 1330 _dnsAltnames="$(${ACME_OPENSSL_BIN:-openssl} req -noout -text -in "$_csrfile" | grep "^ *DNS:.*" | tr -d ' \n')"
10afcaca 1331 _debug _dnsAltnames "$_dnsAltnames"
4c2a3841 1332
1333 if _contains "$_dnsAltnames," "DNS:$_csrsubj,"; then
10afcaca 1334 _debug "AltNames contains subject"
2b9ebd66 1335 _excapedAlgnames="$(echo "$_dnsAltnames" | tr '*' '#')"
1336 _debug _excapedAlgnames "$_excapedAlgnames"
1337 _escapedSubject="$(echo "$_csrsubj" | tr '*' '#')"
1338 _debug _escapedSubject "$_escapedSubject"
1339 _dnsAltnames="$(echo "$_excapedAlgnames," | sed "s/DNS:$_escapedSubject,//g" | tr '#' '*' | sed "s/,\$//g")"
1340 _debug _dnsAltnames "$_dnsAltnames"
10afcaca 1341 else
1342 _debug "AltNames doesn't contain subject"
1343 fi
4c2a3841 1344
2b9ebd66 1345 echo "$_dnsAltnames" | sed "s/DNS://g"
10afcaca 1346}
1347
3c07f57a 1348#_csrfile
10afcaca 1349_readKeyLengthFromCSR() {
1350 _csrfile="$1"
4c2a3841 1351 if [ -z "$_csrfile" ]; then
1643b476 1352 _usage "_readKeyLengthFromCSR mycsr.csr"
10afcaca 1353 return 1
1354 fi
4c2a3841 1355
d8ba26e6 1356 _outcsr="$(${ACME_OPENSSL_BIN:-openssl} req -noout -text -in "$_csrfile")"
7df062b7 1357 _debug2 _outcsr "$_outcsr"
4c2a3841 1358 if _contains "$_outcsr" "Public Key Algorithm: id-ecPublicKey"; then
10afcaca 1359 _debug "ECC CSR"
482cb737 1360 echo "$_outcsr" | tr "\t" " " | _egrep_o "^ *ASN1 OID:.*" | cut -d ':' -f 2 | tr -d ' '
10afcaca 1361 else
1362 _debug "RSA CSR"
eb0ef6bd 1363 _rkl="$(echo "$_outcsr" | tr "\t" " " | _egrep_o "^ *Public.Key:.*" | cut -d '(' -f 2 | cut -d ' ' -f 1)"
1364 if [ "$_rkl" ]; then
1365 echo "$_rkl"
1366 else
1367 echo "$_outcsr" | tr "\t" " " | _egrep_o "RSA Public.Key:.*" | cut -d '(' -f 2 | cut -d ' ' -f 1
1368 fi
10afcaca 1369 fi
1370}
1371
34c27e09 1372_ss() {
1373 _port="$1"
4c2a3841 1374
1375 if _exists "ss"; then
edf08da6 1376 _debug "Using: ss"
14d7bfda 1377 ss -ntpl 2>/dev/null | grep ":$_port "
edf08da6 1378 return 0
1379 fi
1380
4c2a3841 1381 if _exists "netstat"; then
251fc37c 1382 _debug "Using: netstat"
97147b59 1383 if netstat -help 2>&1 | grep "\-p proto" >/dev/null; then
ccb96535 1384 #for windows version netstat tool
0463b5d6 1385 netstat -an -p tcp | grep "LISTENING" | grep ":$_port "
ccb96535 1386 else
4c2a3841 1387 if netstat -help 2>&1 | grep "\-p protocol" >/dev/null; then
19539575 1388 netstat -an -p tcp | grep LISTEN | grep ":$_port "
4c2a3841 1389 elif netstat -help 2>&1 | grep -- '-P protocol' >/dev/null; then
22ea4004 1390 #for solaris
e3c66532 1391 netstat -an -P tcp | grep "\.$_port " | grep "LISTEN"
f19f2100 1392 elif netstat -help 2>&1 | grep "\-p" >/dev/null; then
f21dd911 1393 #for full linux
19539575 1394 netstat -ntpl | grep ":$_port "
f21dd911 1395 else
1396 #for busybox (embedded linux; no pid support)
1397 netstat -ntl 2>/dev/null | grep ":$_port "
edf08da6 1398 fi
ccb96535 1399 fi
34c27e09 1400 return 0
1401 fi
edf08da6 1402
34c27e09 1403 return 1
1404}
1405
8eab77f3
BC
1406#outfile key cert cacert [password [name [caname]]]
1407_toPkcs() {
1408 _cpfx="$1"
1409 _ckey="$2"
1410 _ccert="$3"
1411 _cca="$4"
1412 pfxPassword="$5"
1413 pfxName="$6"
1414 pfxCaname="$7"
1415
1416 if [ "$pfxCaname" ]; then
1417 ${ACME_OPENSSL_BIN:-openssl} pkcs12 -export -out "$_cpfx" -inkey "$_ckey" -in "$_ccert" -certfile "$_cca" -password "pass:$pfxPassword" -name "$pfxName" -caname "$pfxCaname"
1418 elif [ "$pfxName" ]; then
1419 ${ACME_OPENSSL_BIN:-openssl} pkcs12 -export -out "$_cpfx" -inkey "$_ckey" -in "$_ccert" -certfile "$_cca" -password "pass:$pfxPassword" -name "$pfxName"
1420 elif [ "$pfxPassword" ]; then
1421 ${ACME_OPENSSL_BIN:-openssl} pkcs12 -export -out "$_cpfx" -inkey "$_ckey" -in "$_ccert" -certfile "$_cca" -password "pass:$pfxPassword"
1422 else
1423 ${ACME_OPENSSL_BIN:-openssl} pkcs12 -export -out "$_cpfx" -inkey "$_ckey" -in "$_ccert" -certfile "$_cca"
1424 fi
1425
1426}
1427
43822d37 1428#domain [password] [isEcc]
ac2d5123 1429toPkcs() {
1430 domain="$1"
1431 pfxPassword="$2"
4c2a3841 1432 if [ -z "$domain" ]; then
2e87e64b 1433 _usage "Usage: $PROJECT_ENTRY --to-pkcs12 --domain <domain.tld> [--password <password>] [--ecc]"
ac2d5123 1434 return 1
1435 fi
1436
43822d37 1437 _isEcc="$3"
4c2a3841 1438
43822d37 1439 _initpath "$domain" "$_isEcc"
1440
8eab77f3 1441 _toPkcs "$CERT_PFX_PATH" "$CERT_KEY_PATH" "$CERT_PATH" "$CA_CERT_PATH" "$pfxPassword"
4c2a3841 1442
1443 if [ "$?" = "0" ]; then
ac2d5123 1444 _info "Success, Pfx is exported to: $CERT_PFX_PATH"
1445 fi
1446
1447}
1448
4410226d 1449#domain [isEcc]
1450toPkcs8() {
1451 domain="$1"
1452
1453 if [ -z "$domain" ]; then
2e87e64b 1454 _usage "Usage: $PROJECT_ENTRY --to-pkcs8 --domain <domain.tld> [--ecc]"
4410226d 1455 return 1
1456 fi
1457
1458 _isEcc="$2"
1459
1460 _initpath "$domain" "$_isEcc"
1461
d8ba26e6 1462 ${ACME_OPENSSL_BIN:-openssl} pkcs8 -topk8 -inform PEM -outform PEM -nocrypt -in "$CERT_KEY_PATH" -out "$CERT_PKCS8_PATH"
4410226d 1463
1464 if [ "$?" = "0" ]; then
1465 _info "Success, $CERT_PKCS8_PATH"
1466 fi
1467
1468}
1469
3c07f57a 1470#[2048]
4c3b3608 1471createAccountKey() {
1472 _info "Creating account key"
4c2a3841 1473 if [ -z "$1" ]; then
2e87e64b 1474 _usage "Usage: $PROJECT_ENTRY --create-account-key [--accountkeylength <bits>]"
4c3b3608 1475 return
1476 fi
4c2a3841 1477
5fbc47eb 1478 length=$1
57e58ce7 1479 _create_account_key "$length"
1480
1481}
1482
1483_create_account_key() {
1484
5fbc47eb 1485 length=$1
4c2a3841 1486
1487 if [ -z "$length" ] || [ "$length" = "$NO_VALUE" ]; then
57e58ce7 1488 _debug "Use default length $DEFAULT_ACCOUNT_KEY_LENGTH"
1489 length="$DEFAULT_ACCOUNT_KEY_LENGTH"
4c3b3608 1490 fi
4c2a3841 1491
5fbc47eb 1492 _debug length "$length"
4c3b3608 1493 _initpath
5fbc47eb 1494
57e58ce7 1495 mkdir -p "$CA_DIR"
4f1888d2 1496 if [ -s "$ACCOUNT_KEY_PATH" ]; then
4c3b3608 1497 _info "Account key exists, skip"
4f1888d2 1498 return 0
4c3b3608 1499 else
1500 #generate account key
4f1888d2 1501 if _createkey "$length" "$ACCOUNT_KEY_PATH"; then
4f1888d2 1502 _info "Create account key ok."
1503 return 0
1504 else
1505 _err "Create account key error."
1506 return 1
1507 fi
4c3b3608 1508 fi
1509
1510}
1511
43822d37 1512#domain [length]
4c3b3608 1513createDomainKey() {
1514 _info "Creating domain key"
4c2a3841 1515 if [ -z "$1" ]; then
2e87e64b 1516 _usage "Usage: $PROJECT_ENTRY --create-domain-key --domain <domain.tld> [--keylength <bits>]"
4c3b3608 1517 return
1518 fi
4c2a3841 1519
4c3b3608 1520 domain=$1
2844d73d 1521 _cdl=$2
e22bcf7c 1522
2844d73d 1523 if [ -z "$_cdl" ]; then
57e58ce7 1524 _debug "Use DEFAULT_DOMAIN_KEY_LENGTH=$DEFAULT_DOMAIN_KEY_LENGTH"
2844d73d 1525 _cdl="$DEFAULT_DOMAIN_KEY_LENGTH"
57e58ce7 1526 fi
e22bcf7c 1527
2844d73d 1528 _initpath "$domain" "$_cdl"
4c2a3841 1529
bd04638d 1530 if [ ! -f "$CERT_KEY_PATH" ] || [ ! -s "$CERT_KEY_PATH" ] || ([ "$FORCE" ] && ! [ "$_ACME_IS_RENEW" ]) || [ "$Le_ForceNewDomainKey" = "1" ]; then
2844d73d 1531 if _createkey "$_cdl" "$CERT_KEY_PATH"; then
1532 _savedomainconf Le_Keylength "$_cdl"
1533 _info "The domain key is here: $(__green $CERT_KEY_PATH)"
7aeb113c 1534 return 0
4f1888d2 1535 else
a7420ca3 1536 _err "Can not create domain key"
4f1888d2 1537 return 1
2844d73d 1538 fi
4c3b3608 1539 else
bd04638d 1540 if [ "$_ACME_IS_RENEW" ]; then
4c3b3608 1541 _info "Domain key exists, skip"
1542 return 0
1543 else
1544 _err "Domain key exists, do you want to overwrite the key?"
41e3eafa 1545 _err "Add '--force', and try again."
4c3b3608 1546 return 1
1547 fi
1548 fi
1549
1550}
1551
43822d37 1552# domain domainlist isEcc
4c3b3608 1553createCSR() {
1554 _info "Creating csr"
4c2a3841 1555 if [ -z "$1" ]; then
2e87e64b 1556 _usage "Usage: $PROJECT_ENTRY --create-csr --domain <domain.tld> [--domain <domain2.tld> ...]"
4c3b3608 1557 return
1558 fi
4c2a3841 1559
43822d37 1560 domain="$1"
1561 domainlist="$2"
1562 _isEcc="$3"
4c2a3841 1563
43822d37 1564 _initpath "$domain" "$_isEcc"
4c2a3841 1565
bd04638d 1566 if [ -f "$CSR_PATH" ] && [ "$_ACME_IS_RENEW" ] && [ -z "$FORCE" ]; then
4c3b3608 1567 _info "CSR exists, skip"
1568 return
1569 fi
4c2a3841 1570
1571 if [ ! -f "$CERT_KEY_PATH" ]; then
43822d37 1572 _err "The key file is not found: $CERT_KEY_PATH"
1573 _err "Please create the key file first."
1574 return 1
1575 fi
e22bcf7c 1576 _createcsr "$domain" "$domainlist" "$CERT_KEY_PATH" "$CSR_PATH" "$DOMAIN_SSL_CONF"
4c2a3841 1577
4c3b3608 1578}
1579
11927a76 1580_url_replace() {
f9a6988e 1581 tr '/+' '_-' | tr -d '= '
4c3b3608 1582}
1583
f96d91cb 1584#base64 string
1585_durl_replace_base64() {
1586 _l=$((${#1} % 4))
1587 if [ $_l -eq 2 ]; then
1588 _s="$1"'=='
1589 elif [ $_l -eq 3 ]; then
1590 _s="$1"'='
1591 else
1592 _s="$1"
1593 fi
1594 echo "$_s" | tr '_-' '/+'
1595}
1596
4c3b3608 1597_time2str() {
cb115809 1598 #BSD
de4c4eed 1599 if date -u -r "$1" -j "+%Y-%m-%dT%H:%M:%SZ" 2>/dev/null; then
4c3b3608 1600 return
1601 fi
4c2a3841 1602
cb115809 1603 #Linux
de4c4eed 1604 if date -u --date=@"$1" "+%Y-%m-%dT%H:%M:%SZ" 2>/dev/null; then
4c3b3608 1605 return
1606 fi
4c2a3841 1607
cb115809 1608 #Solaris
0f607413 1609 if printf "%(%Y-%m-%dT%H:%M:%SZ)T\n" $1 2>/dev/null; then
1610 return
22ea4004 1611 fi
4c2a3841 1612
a07395fb 1613 #Busybox
de4c4eed 1614 if echo "$1" | awk '{ print strftime("%Y-%m-%dT%H:%M:%SZ", $0); }' 2>/dev/null; then
a07395fb
M
1615 return
1616 fi
4c3b3608 1617}
1618
eae29099 1619_normalizeJson() {
1620 sed "s/\" *: *\([\"{\[]\)/\":\1/g" | sed "s/^ *\([^ ]\)/\1/" | tr -d "\r\n"
1621}
1622
44df2967 1623_stat() {
1624 #Linux
4c2a3841 1625 if stat -c '%U:%G' "$1" 2>/dev/null; then
44df2967 1626 return
1627 fi
4c2a3841 1628
44df2967 1629 #BSD
4c2a3841 1630 if stat -f '%Su:%Sg' "$1" 2>/dev/null; then
44df2967 1631 return
1632 fi
4c2a3841 1633
1634 return 1 #error, 'stat' not found
44df2967 1635}
1636
e07795e8 1637#keyfile
1638_isRSA() {
1639 keyfile=$1
1640 if grep "BEGIN RSA PRIVATE KEY" "$keyfile" >/dev/null 2>&1 || ${ACME_OPENSSL_BIN:-openssl} rsa -in "$keyfile" -noout -text | grep "^publicExponent:" >/dev/null 2>&1; then
1641 return 0
1642 fi
1643 return 1
1644}
1645
1646#keyfile
1647_isEcc() {
1648 keyfile=$1
1649 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:" >/dev/null 2>&1; then
1650 return 0
1651 fi
1652 return 1
1653}
1654
166096dc 1655#keyfile
1656_calcjwk() {
1657 keyfile="$1"
4c2a3841 1658 if [ -z "$keyfile" ]; then
43822d37 1659 _usage "Usage: _calcjwk keyfile"
166096dc 1660 return 1
1661 fi
4c2a3841 1662
1663 if [ "$JWK_HEADER" ] && [ "$__CACHED_JWK_KEY_FILE" = "$keyfile" ]; then
ae2db62f 1664 _debug2 "Use cached jwk for file: $__CACHED_JWK_KEY_FILE"
1665 return 0
1666 fi
4c2a3841 1667
e07795e8 1668 if _isRSA "$keyfile"; then
166096dc 1669 _debug "RSA key"
d8ba26e6 1670 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)
4c2a3841 1671 if [ "${#pub_exp}" = "5" ]; then
166096dc 1672 pub_exp=0$pub_exp
1673 fi
22ea4004 1674 _debug3 pub_exp "$pub_exp"
4c2a3841 1675
f9a6988e 1676 e=$(echo "$pub_exp" | _h2b | _base64)
22ea4004 1677 _debug3 e "$e"
4c2a3841 1678
d8ba26e6 1679 modulus=$(${ACME_OPENSSL_BIN:-openssl} rsa -in "$keyfile" -modulus -noout | cut -d '=' -f 2)
22ea4004 1680 _debug3 modulus "$modulus"
11927a76 1681 n="$(printf "%s" "$modulus" | _h2b | _base64 | _url_replace)"
4d8b99a3 1682 _debug3 n "$n"
1683
166096dc 1684 jwk='{"e": "'$e'", "kty": "RSA", "n": "'$n'"}'
22ea4004 1685 _debug3 jwk "$jwk"
4c2a3841 1686
5982f4bc 1687 JWK_HEADER='{"alg": "RS256", "jwk": '$jwk'}'
1688 JWK_HEADERPLACE_PART1='{"nonce": "'
c1151b0d 1689 JWK_HEADERPLACE_PART2='", "alg": "RS256"'
e07795e8 1690 elif _isEcc "$keyfile"; then
166096dc 1691 _debug "EC key"
d8ba26e6 1692 crv="$(${ACME_OPENSSL_BIN:-openssl} ec -in "$keyfile" -noout -text 2>/dev/null | grep "^NIST CURVE:" | cut -d ":" -f 2 | tr -d " \r\n")"
22ea4004 1693 _debug3 crv "$crv"
f87890cb 1694 __ECC_KEY_LEN=$(echo "$crv" | cut -d "-" -f 2)
1695 if [ "$__ECC_KEY_LEN" = "521" ]; then
1696 __ECC_KEY_LEN=512
1697 fi
1698 _debug3 __ECC_KEY_LEN "$__ECC_KEY_LEN"
4c2a3841 1699 if [ -z "$crv" ]; then
d22b7938 1700 _debug "Let's try ASN1 OID"
d8ba26e6 1701 crv_oid="$(${ACME_OPENSSL_BIN:-openssl} ec -in "$keyfile" -noout -text 2>/dev/null | grep "^ASN1 OID:" | cut -d ":" -f 2 | tr -d " \r\n")"
cae9cee2 1702 _debug3 crv_oid "$crv_oid"
d22b7938 1703 case "${crv_oid}" in
19c43451 1704 "prime256v1")
1705 crv="P-256"
1706 __ECC_KEY_LEN=256
1707 ;;
1708 "secp384r1")
1709 crv="P-384"
1710 __ECC_KEY_LEN=384
1711 ;;
1712 "secp521r1")
1713 crv="P-521"
1714 __ECC_KEY_LEN=512
1715 ;;
1716 *)
1717 _err "ECC oid : $crv_oid"
1718 return 1
1719 ;;
067d586c 1720 esac
d22b7938 1721 _debug3 crv "$crv"
1722 fi
4c2a3841 1723
d8ba26e6 1724 pubi="$(${ACME_OPENSSL_BIN:-openssl} ec -in "$keyfile" -noout -text 2>/dev/null | grep -n pub: | cut -d : -f 1)"
79a267ab 1725 pubi=$(_math "$pubi" + 1)
22ea4004 1726 _debug3 pubi "$pubi"
4c2a3841 1727
d8ba26e6 1728 pubj="$(${ACME_OPENSSL_BIN:-openssl} ec -in "$keyfile" -noout -text 2>/dev/null | grep -n "ASN1 OID:" | cut -d : -f 1)"
79a267ab 1729 pubj=$(_math "$pubj" - 1)
22ea4004 1730 _debug3 pubj "$pubj"
4c2a3841 1731
d8ba26e6 1732 pubtext="$(${ACME_OPENSSL_BIN:-openssl} ec -in "$keyfile" -noout -text 2>/dev/null | sed -n "$pubi,${pubj}p" | tr -d " \n\r")"
22ea4004 1733 _debug3 pubtext "$pubtext"
4c2a3841 1734
95e06de5 1735 xlen="$(printf "%s" "$pubtext" | tr -d ':' | wc -c)"
79a267ab 1736 xlen=$(_math "$xlen" / 4)
22ea4004 1737 _debug3 xlen "$xlen"
00a50605 1738
998783eb 1739 xend=$(_math "$xlen" + 1)
f9a6988e 1740 x="$(printf "%s" "$pubtext" | cut -d : -f 2-"$xend")"
22ea4004 1741 _debug3 x "$x"
4c2a3841 1742
11927a76 1743 x64="$(printf "%s" "$x" | tr -d : | _h2b | _base64 | _url_replace)"
22ea4004 1744 _debug3 x64 "$x64"
00a50605 1745
19539575 1746 xend=$(_math "$xend" + 1)
f9a6988e 1747 y="$(printf "%s" "$pubtext" | cut -d : -f "$xend"-10000)"
22ea4004 1748 _debug3 y "$y"
4c2a3841 1749
11927a76 1750 y64="$(printf "%s" "$y" | tr -d : | _h2b | _base64 | _url_replace)"
22ea4004 1751 _debug3 y64 "$y64"
4c2a3841 1752
ae2db62f 1753 jwk='{"crv": "'$crv'", "kty": "EC", "x": "'$x64'", "y": "'$y64'"}'
22ea4004 1754 _debug3 jwk "$jwk"
4c2a3841 1755
f87890cb 1756 JWK_HEADER='{"alg": "ES'$__ECC_KEY_LEN'", "jwk": '$jwk'}'
5982f4bc 1757 JWK_HEADERPLACE_PART1='{"nonce": "'
c1151b0d 1758 JWK_HEADERPLACE_PART2='", "alg": "ES'$__ECC_KEY_LEN'"'
166096dc 1759 else
238990a2 1760 _err "Only RSA or EC key is supported. keyfile=$keyfile"
1761 _debug2 "$(cat "$keyfile")"
166096dc 1762 return 1
1763 fi
1764
5982f4bc 1765 _debug3 JWK_HEADER "$JWK_HEADER"
ae2db62f 1766 __CACHED_JWK_KEY_FILE="$keyfile"
166096dc 1767}
fac1e367 1768
3aae1ae3 1769_time() {
1770 date -u "+%s"
1771}
fac1e367 1772
de4c4eed 1773#support 2 formats:
1774# 2022-04-01 08:10:33 to 1648800633
1775#or 2022-04-01T08:10:33Z to 1648800633
1776_date2time() {
1777 #Linux
1778 if date -u -d "$(echo "$1" | tr -d "Z" | tr "T" ' ')" +"%s" 2>/dev/null; then
1779 return
1780 fi
0f607413 1781
1782 #Solaris
1783 if gdate -u -d "$(echo "$1" | tr -d "Z" | tr "T" ' ')" +"%s" 2>/dev/null; then
1784 return
1785 fi
de4c4eed 1786 #Mac/BSD
b4999972 1787 if date -u -j -f "%Y-%m-%d %H:%M:%S" "$(echo "$1" | tr -d "Z" | tr "T" ' ')" +"%s" 2>/dev/null; then
de4c4eed 1788 return
1789 fi
1790 _err "Can not parse _date2time $1"
1791 return 1
1792}
1793
5d2c5b01 1794_utc_date() {
1795 date -u "+%Y-%m-%d %H:%M:%S"
1796}
1797
fac1e367 1798_mktemp() {
4c2a3841 1799 if _exists mktemp; then
1800 if mktemp 2>/dev/null; then
610e0f21 1801 return 0
4c2a3841 1802 elif _contains "$(mktemp 2>&1)" "-t prefix" && mktemp -t "$PROJECT_NAME" 2>/dev/null; then
5c48e139 1803 #for Mac osx
610e0f21 1804 return 0
b19ba13a 1805 fi
fac1e367 1806 fi
4c2a3841 1807 if [ -d "/tmp" ]; then
3aae1ae3 1808 echo "/tmp/${PROJECT_NAME}wefADf24sf.$(_time).tmp"
1809 return 0
4c2a3841 1810 elif [ "$LE_TEMP_DIR" ] && mkdir -p "$LE_TEMP_DIR"; then
610e0f21 1811 echo "/$LE_TEMP_DIR/wefADf24sf.$(_time).tmp"
1812 return 0
3aae1ae3 1813 fi
1814 _err "Can not create temp file."
fac1e367 1815}
1816
effa7fd5 1817#clear all the https envs to cause _inithttp() to run next time.
1818_resethttp() {
1819 __HTTP_INITIALIZED=""
1820 _ACME_CURL=""
1821 _ACME_WGET=""
1822 ACME_HTTP_NO_REDIRECTS=""
1823}
1824
fac1e367 1825_inithttp() {
1826
4c2a3841 1827 if [ -z "$HTTP_HEADER" ] || ! touch "$HTTP_HEADER"; then
fac1e367 1828 HTTP_HEADER="$(_mktemp)"
1829 _debug2 HTTP_HEADER "$HTTP_HEADER"
1830 fi
1831
4c2a3841 1832 if [ "$__HTTP_INITIALIZED" ]; then
1833 if [ "$_ACME_CURL$_ACME_WGET" ]; then
1befee5a 1834 _debug2 "Http already initialized."
1835 return 0
1836 fi
1837 fi
4c2a3841 1838
1839 if [ -z "$_ACME_CURL" ] && _exists "curl"; then
effa7fd5 1840 _ACME_CURL="curl --silent --dump-header $HTTP_HEADER "
1841 if [ -z "$ACME_HTTP_NO_REDIRECTS" ]; then
1842 _ACME_CURL="$_ACME_CURL -L "
1843 fi
ae3dda0f 1844 if [ "$DEBUG" ] && [ "$DEBUG" -ge 2 ]; then
fac1e367 1845 _CURL_DUMP="$(_mktemp)"
1befee5a 1846 _ACME_CURL="$_ACME_CURL --trace-ascii $_CURL_DUMP "
fac1e367 1847 fi
1848
2aa75f03 1849 if [ "$CA_PATH" ]; then
1850 _ACME_CURL="$_ACME_CURL --capath $CA_PATH "
1851 elif [ "$CA_BUNDLE" ]; then
1befee5a 1852 _ACME_CURL="$_ACME_CURL --cacert $CA_BUNDLE "
78009539
PS
1853 fi
1854
6ca5f3d8 1855 if _contains "$(curl --help 2>&1)" "--globoff"; then
1856 _ACME_CURL="$_ACME_CURL -g "
1857 fi
fac1e367 1858 fi
4c2a3841 1859
1befee5a 1860 if [ -z "$_ACME_WGET" ] && _exists "wget"; then
1861 _ACME_WGET="wget -q"
effa7fd5 1862 if [ "$ACME_HTTP_NO_REDIRECTS" ]; then
1863 _ACME_WGET="$_ACME_WGET --max-redirect 0 "
1864 fi
4c2a3841 1865 if [ "$DEBUG" ] && [ "$DEBUG" -ge "2" ]; then
0d05f9ba 1866 if [ "$_ACME_WGET" ] && _contains "$($_ACME_WGET --help 2>&1)" "--debug"; then
1867 _ACME_WGET="$_ACME_WGET -d "
1868 fi
fac1e367 1869 fi
2aa75f03 1870 if [ "$CA_PATH" ]; then
1871 _ACME_WGET="$_ACME_WGET --ca-directory=$CA_PATH "
1872 elif [ "$CA_BUNDLE" ]; then
1873 _ACME_WGET="$_ACME_WGET --ca-certificate=$CA_BUNDLE "
78009539 1874 fi
fac1e367 1875 fi
1876
177b57e1 1877 #from wget 1.14: do not skip body on 404 error
58ef6d83 1878 if [ "$_ACME_WGET" ] && _contains "$($_ACME_WGET --help 2>&1)" "--content-on-error"; then
177b57e1 1879 _ACME_WGET="$_ACME_WGET --content-on-error "
1880 fi
1881
1befee5a 1882 __HTTP_INITIALIZED=1
fac1e367 1883
fac1e367 1884}
fac1e367 1885
9cecd525 1886# body url [needbase64] [POST|PUT|DELETE] [ContentType]
c60883ef 1887_post() {
1888 body="$1"
c1151b0d 1889 _post_url="$2"
c60883ef 1890 needbase64="$3"
a4270efa 1891 httpmethod="$4"
45e386b2 1892 _postContentType="$5"
c60883ef 1893
4c2a3841 1894 if [ -z "$httpmethod" ]; then
a4270efa 1895 httpmethod="POST"
1896 fi
1897 _debug $httpmethod
c1151b0d 1898 _debug "_post_url" "$_post_url"
30de13b4 1899 _debug2 "body" "$body"
6a66ba8a 1900 _debug2 "_postContentType" "$_postContentType"
4c2a3841 1901
fac1e367 1902 _inithttp
4c2a3841 1903
9b124070 1904 if [ "$_ACME_CURL" ] && [ "${ACME_USE_WGET:-0}" = "0" ]; then
1befee5a 1905 _CURL="$_ACME_CURL"
7834c252 1906 if [ "$HTTPS_INSECURE" ]; then
1907 _CURL="$_CURL --insecure "
1908 fi
5723fd11 1909 if [ "$httpmethod" = "HEAD" ]; then
1910 _CURL="$_CURL -I "
1911 fi
ec9fc8cb 1912 _debug "_CURL" "$_CURL"
4c2a3841 1913 if [ "$needbase64" ]; then
1ba4ab2b 1914 if [ "$body" ]; then
1915 if [ "$_postContentType" ]; then
1916 response="$($_CURL --user-agent "$USER_AGENT" -X $httpmethod -H "Content-Type: $_postContentType" -H "$_H1" -H "$_H2" -H "$_H3" -H "$_H4" -H "$_H5" --data "$body" "$_post_url" | _base64)"
1917 else
1918 response="$($_CURL --user-agent "$USER_AGENT" -X $httpmethod -H "$_H1" -H "$_H2" -H "$_H3" -H "$_H4" -H "$_H5" --data "$body" "$_post_url" | _base64)"
1919 fi
39852662 1920 else
1ba4ab2b 1921 if [ "$_postContentType" ]; then
1922 response="$($_CURL --user-agent "$USER_AGENT" -X $httpmethod -H "Content-Type: $_postContentType" -H "$_H1" -H "$_H2" -H "$_H3" -H "$_H4" -H "$_H5" "$_post_url" | _base64)"
1923 else
1924 response="$($_CURL --user-agent "$USER_AGENT" -X $httpmethod -H "$_H1" -H "$_H2" -H "$_H3" -H "$_H4" -H "$_H5" "$_post_url" | _base64)"
1925 fi
39852662 1926 fi
c60883ef 1927 else
1ba4ab2b 1928 if [ "$body" ]; then
1929 if [ "$_postContentType" ]; then
1930 response="$($_CURL --user-agent "$USER_AGENT" -X $httpmethod -H "Content-Type: $_postContentType" -H "$_H1" -H "$_H2" -H "$_H3" -H "$_H4" -H "$_H5" --data "$body" "$_post_url")"
1931 else
1932 response="$($_CURL --user-agent "$USER_AGENT" -X $httpmethod -H "$_H1" -H "$_H2" -H "$_H3" -H "$_H4" -H "$_H5" --data "$body" "$_post_url")"
1933 fi
39852662 1934 else
1ba4ab2b 1935 if [ "$_postContentType" ]; then
1936 response="$($_CURL --user-agent "$USER_AGENT" -X $httpmethod -H "Content-Type: $_postContentType" -H "$_H1" -H "$_H2" -H "$_H3" -H "$_H4" -H "$_H5" "$_post_url")"
1937 else
1938 response="$($_CURL --user-agent "$USER_AGENT" -X $httpmethod -H "$_H1" -H "$_H2" -H "$_H3" -H "$_H4" -H "$_H5" "$_post_url")"
1939 fi
39852662 1940 fi
c60883ef 1941 fi
16679b57 1942 _ret="$?"
4c2a3841 1943 if [ "$_ret" != "0" ]; then
86c3fa0d 1944 _err "Please refer to https://curl.haxx.se/libcurl/c/libcurl-errors.html for error code: $_ret"
4c2a3841 1945 if [ "$DEBUG" ] && [ "$DEBUG" -ge "2" ]; then
87ab2d90 1946 _err "Here is the curl dump log:"
1947 _err "$(cat "$_CURL_DUMP")"
1948 fi
687cfcc2 1949 fi
4c2a3841 1950 elif [ "$_ACME_WGET" ]; then
7834c252 1951 _WGET="$_ACME_WGET"
1952 if [ "$HTTPS_INSECURE" ]; then
1953 _WGET="$_WGET --no-check-certificate "
1954 fi
51b4a9e3 1955 if [ "$httpmethod" = "HEAD" ]; then
1956 _WGET="$_WGET --read-timeout=3.0 --tries=2 "
1957 fi
7834c252 1958 _debug "_WGET" "$_WGET"
4c2a3841 1959 if [ "$needbase64" ]; then
1960 if [ "$httpmethod" = "POST" ]; then
ef871775 1961 if [ "$_postContentType" ]; then
1962 response="$($_WGET -S -O - --user-agent="$USER_AGENT" --header "$_H5" --header "$_H4" --header "$_H3" --header "$_H2" --header "$_H1" --header "Content-Type: $_postContentType" --post-data="$body" "$_post_url" 2>"$HTTP_HEADER" | _base64)"
1963 else
1964 response="$($_WGET -S -O - --user-agent="$USER_AGENT" --header "$_H5" --header "$_H4" --header "$_H3" --header "$_H2" --header "$_H1" --post-data="$body" "$_post_url" 2>"$HTTP_HEADER" | _base64)"
1965 fi
8fb9a709 1966 else
ef871775 1967 if [ "$_postContentType" ]; then
1968 response="$($_WGET -S -O - --user-agent="$USER_AGENT" --header "$_H5" --header "$_H4" --header "$_H3" --header "$_H2" --header "$_H1" --header "Content-Type: $_postContentType" --method $httpmethod --body-data="$body" "$_post_url" 2>"$HTTP_HEADER" | _base64)"
1969 else
1970 response="$($_WGET -S -O - --user-agent="$USER_AGENT" --header "$_H5" --header "$_H4" --header "$_H3" --header "$_H2" --header "$_H1" --method $httpmethod --body-data="$body" "$_post_url" 2>"$HTTP_HEADER" | _base64)"
1971 fi
8fb9a709 1972 fi
c60883ef 1973 else
4c2a3841 1974 if [ "$httpmethod" = "POST" ]; then
ef871775 1975 if [ "$_postContentType" ]; then
1976 response="$($_WGET -S -O - --user-agent="$USER_AGENT" --header "$_H5" --header "$_H4" --header "$_H3" --header "$_H2" --header "$_H1" --header "Content-Type: $_postContentType" --post-data="$body" "$_post_url" 2>"$HTTP_HEADER")"
1977 else
1978 response="$($_WGET -S -O - --user-agent="$USER_AGENT" --header "$_H5" --header "$_H4" --header "$_H3" --header "$_H2" --header "$_H1" --post-data="$body" "$_post_url" 2>"$HTTP_HEADER")"
1979 fi
51b4a9e3 1980 elif [ "$httpmethod" = "HEAD" ]; then
1981 if [ "$_postContentType" ]; then
1982 response="$($_WGET --spider -S -O - --user-agent="$USER_AGENT" --header "$_H5" --header "$_H4" --header "$_H3" --header "$_H2" --header "$_H1" --header "Content-Type: $_postContentType" --post-data="$body" "$_post_url" 2>"$HTTP_HEADER")"
1983 else
1984 response="$($_WGET --spider -S -O - --user-agent="$USER_AGENT" --header "$_H5" --header "$_H4" --header "$_H3" --header "$_H2" --header "$_H1" --post-data="$body" "$_post_url" 2>"$HTTP_HEADER")"
1985 fi
8fb9a709 1986 else
ef871775 1987 if [ "$_postContentType" ]; then
1988 response="$($_WGET -S -O - --user-agent="$USER_AGENT" --header "$_H5" --header "$_H4" --header "$_H3" --header "$_H2" --header "$_H1" --header "Content-Type: $_postContentType" --method $httpmethod --body-data="$body" "$_post_url" 2>"$HTTP_HEADER")"
1989 else
1990 response="$($_WGET -S -O - --user-agent="$USER_AGENT" --header "$_H5" --header "$_H4" --header "$_H3" --header "$_H2" --header "$_H1" --method $httpmethod --body-data="$body" "$_post_url" 2>"$HTTP_HEADER")"
1991 fi
8fb9a709 1992 fi
c60883ef 1993 fi
16679b57 1994 _ret="$?"
4c2a3841 1995 if [ "$_ret" = "8" ]; then
9f43c270 1996 _ret=0
810c129c 1997 _debug "wget returns 8, the server returns a 'Bad request' response, lets process the response later."
9f43c270 1998 fi
4c2a3841 1999 if [ "$_ret" != "0" ]; then
86c3fa0d 2000 _err "Please refer to https://www.gnu.org/software/wget/manual/html_node/Exit-Status.html for error code: $_ret"
687cfcc2 2001 fi
c2a7e384 2002 if echo $_WGET | grep -q " -d " 2>/dev/null; then
713b7338
KF
2003 # Demultiplex wget debug output
2004 cat "$HTTP_HEADER" >&2
864315f6 2005 _sed_i '/^[^ ][^ ]/d; /^ *$/d' "$HTTP_HEADER"
713b7338
KF
2006 fi
2007 # remove leading whitespaces from header to match curl format
864315f6 2008 _sed_i 's/^ //g' "$HTTP_HEADER"
d0b748a4 2009 else
2010 _ret="$?"
2011 _err "Neither curl nor wget is found, can not do $httpmethod."
c60883ef 2012 fi
16679b57 2013 _debug "_ret" "$_ret"
19539575 2014 printf "%s" "$response"
16679b57 2015 return $_ret
c60883ef 2016}
2017
75da0713 2018# url getheader timeout
c60883ef 2019_get() {
a4270efa 2020 _debug GET
c60883ef 2021 url="$1"
2022 onlyheader="$2"
75da0713 2023 t="$3"
79a267ab 2024 _debug url "$url"
72f54ca6 2025 _debug "timeout=$t"
86c3fa0d 2026
fac1e367 2027 _inithttp
2028
9b124070 2029 if [ "$_ACME_CURL" ] && [ "${ACME_USE_WGET:-0}" = "0" ]; then
1befee5a 2030 _CURL="$_ACME_CURL"
7834c252 2031 if [ "$HTTPS_INSECURE" ]; then
2032 _CURL="$_CURL --insecure "
2033 fi
4c2a3841 2034 if [ "$t" ]; then
75da0713 2035 _CURL="$_CURL --connect-timeout $t"
2036 fi
2037 _debug "_CURL" "$_CURL"
4c2a3841 2038 if [ "$onlyheader" ]; then
f9a6988e 2039 $_CURL -I --user-agent "$USER_AGENT" -H "$_H1" -H "$_H2" -H "$_H3" -H "$_H4" -H "$_H5" "$url"
c60883ef 2040 else
f9a6988e 2041 $_CURL --user-agent "$USER_AGENT" -H "$_H1" -H "$_H2" -H "$_H3" -H "$_H4" -H "$_H5" "$url"
c60883ef 2042 fi
9aaf36cd 2043 ret=$?
4c2a3841 2044 if [ "$ret" != "0" ]; then
86c3fa0d 2045 _err "Please refer to https://curl.haxx.se/libcurl/c/libcurl-errors.html for error code: $ret"
4c2a3841 2046 if [ "$DEBUG" ] && [ "$DEBUG" -ge "2" ]; then
fac1e367 2047 _err "Here is the curl dump log:"
2048 _err "$(cat "$_CURL_DUMP")"
2049 fi
2050 fi
4c2a3841 2051 elif [ "$_ACME_WGET" ]; then
1befee5a 2052 _WGET="$_ACME_WGET"
7834c252 2053 if [ "$HTTPS_INSECURE" ]; then
2054 _WGET="$_WGET --no-check-certificate "
2055 fi
4c2a3841 2056 if [ "$t" ]; then
75da0713 2057 _WGET="$_WGET --timeout=$t"
2058 fi
2059 _debug "_WGET" "$_WGET"
4c2a3841 2060 if [ "$onlyheader" ]; then
713b7338 2061 _wget_out = "$($_WGET --user-agent="$USER_AGENT" --header "$_H5" --header "$_H4" --header "$_H3" --header "$_H2" --header "$_H1" -S -O /dev/null "$url" 2>&1)"
c2a7e384 2062 if echo $_WGET | grep -q " -d " 2>/dev/null; then
713b7338
KF
2063 # Demultiplex wget debug output
2064 echo "$_wget_out" >&2
864315f6 2065 echo "$_wget_out" | sed '/^[^ ][^ ]/d; /^ *$/d; s/^ //g' -
713b7338 2066 fi
c60883ef 2067 else
53117b2f 2068 $_WGET --user-agent="$USER_AGENT" --header "$_H5" --header "$_H4" --header "$_H3" --header "$_H2" --header "$_H1" -S -O - "$url" 2>"$HTTP_HEADER"
c2a7e384 2069 if echo $_WGET | grep -q " -d " 2>/dev/null; then
713b7338
KF
2070 # Demultiplex wget debug output
2071 cat "$HTTP_HEADER" >&2
864315f6 2072 _sed_i '/^[^ ][^ ]/d; /^ *$/d' "$HTTP_HEADER"
713b7338
KF
2073 fi
2074 # remove leading whitespaces from header to match curl format
864315f6 2075 _sed_i 's/^ //g' "$HTTP_HEADER"
c60883ef 2076 fi
9aaf36cd 2077 ret=$?
f731a4c7 2078 if [ "$ret" = "8" ]; then
39a1f1ef 2079 ret=0
810c129c 2080 _debug "wget returns 8, the server returns a 'Bad request' response, lets process the response later."
9f43c270 2081 fi
4c2a3841 2082 if [ "$ret" != "0" ]; then
86c3fa0d 2083 _err "Please refer to https://www.gnu.org/software/wget/manual/html_node/Exit-Status.html for error code: $ret"
fac1e367 2084 fi
d0b748a4 2085 else
2086 ret=$?
2087 _err "Neither curl nor wget is found, can not do GET."
9aaf36cd 2088 fi
ec9fc8cb 2089 _debug "ret" "$ret"
c60883ef 2090 return $ret
2091}
166096dc 2092
c2c8f320 2093_head_n() {
79a267ab 2094 head -n "$1"
c2c8f320 2095}
2096
2097_tail_n() {
f9a6988e 2098 if ! tail -n "$1" 2>/dev/null; then
19ab2a29 2099 #fix for solaris
f9a6988e 2100 tail -"$1"
19ab2a29 2101 fi
c2c8f320 2102}
fac1e367 2103
166096dc 2104# url payload needbase64 keyfile
4c3b3608 2105_send_signed_request() {
2106 url=$1
2107 payload=$2
2108 needbase64=$3
166096dc 2109 keyfile=$4
4c2a3841 2110 if [ -z "$keyfile" ]; then
166096dc 2111 keyfile="$ACCOUNT_KEY_PATH"
2112 fi
f9a6988e 2113 _debug url "$url"
4c3b3608 2114 _debug payload "$payload"
4c2a3841 2115
2116 if ! _calcjwk "$keyfile"; then
166096dc 2117 return 1
2118 fi
c60883ef 2119
cc2d5946 2120 __request_conent_type="$CONTENT_TYPE_JSON"
2121
11927a76 2122 payload64=$(printf "%s" "$payload" | _base64 | _url_replace)
f9a6988e 2123 _debug3 payload64 "$payload64"
4c2a3841 2124
709a3fb0 2125 MAX_REQUEST_RETRY_TIMES=20
2126 _sleep_retry_sec=1
0bc745f6 2127 _request_retry_times=0
2128 while [ "${_request_retry_times}" -lt "$MAX_REQUEST_RETRY_TIMES" ]; do
aad309ee 2129 _request_retry_times=$(_math "$_request_retry_times" + 1)
b7924ce5 2130 _debug3 _request_retry_times "$_request_retry_times"
0bc745f6 2131 if [ -z "$_CACHED_NONCE" ]; then
8f01919f 2132 _headers=""
8bd12ed0
K
2133 if [ "$ACME_NEW_NONCE" ]; then
2134 _debug2 "Get nonce with HEAD. ACME_NEW_NONCE" "$ACME_NEW_NONCE"
cae50e16 2135 nonceurl="$ACME_NEW_NONCE"
1ba4ab2b 2136 if _post "" "$nonceurl" "" "HEAD" "$__request_conent_type" >/dev/null; then
cae50e16 2137 _headers="$(cat "$HTTP_HEADER")"
e7f7e96d 2138 _debug2 _headers "$_headers"
91d37c78 2139 _CACHED_NONCE="$(echo "$_headers" | grep -i "Replay-Nonce:" | _head_n 1 | tr -d "\r\n " | cut -d ':' -f 2 | cut -d , -f 1)"
cae50e16 2140 fi
2141 fi
e7f7e96d 2142 if [ -z "$_CACHED_NONCE" ]; then
33226307 2143 _debug2 "Get nonce with GET. ACME_DIRECTORY" "$ACME_DIRECTORY"
cae50e16 2144 nonceurl="$ACME_DIRECTORY"
2145 _headers="$(_get "$nonceurl" "onlyheader")"
e7f7e96d 2146 _debug2 _headers "$_headers"
2147 _CACHED_NONCE="$(echo "$_headers" | grep -i "Replay-Nonce:" | _head_n 1 | tr -d "\r\n " | cut -d ':' -f 2)"
cae50e16 2148 fi
e7f7e96d 2149 if [ -z "$_CACHED_NONCE" ] && [ "$ACME_NEW_NONCE" ]; then
2150 _debug2 "Get nonce with GET. ACME_NEW_NONCE" "$ACME_NEW_NONCE"
2151 nonceurl="$ACME_NEW_NONCE"
2152 _headers="$(_get "$nonceurl" "onlyheader")"
2153 _debug2 _headers "$_headers"
2154 _CACHED_NONCE="$(echo "$_headers" | grep -i "Replay-Nonce:" | _head_n 1 | tr -d "\r\n " | cut -d ':' -f 2)"
2155 fi
2156 _debug2 _CACHED_NONCE "$_CACHED_NONCE"
0bc745f6 2157 if [ "$?" != "0" ]; then
2158 _err "Can not connect to $nonceurl to get nonce."
2159 return 1
2160 fi
0bc745f6 2161 else
2162 _debug2 "Use _CACHED_NONCE" "$_CACHED_NONCE"
2163 fi
2164 nonce="$_CACHED_NONCE"
2165 _debug2 nonce "$nonce"
aad309ee 2166 if [ -z "$nonce" ]; then
2167 _info "Could not get nonce, let's try again."
2168 _sleep 2
2169 continue
2170 fi
af3ea2d4 2171
2172 if [ "$url" = "$ACME_NEW_ACCOUNT" ]; then
c1151b0d 2173 protected="$JWK_HEADERPLACE_PART1$nonce\", \"url\": \"${url}$JWK_HEADERPLACE_PART2, \"jwk\": $jwk"'}'
af3ea2d4 2174 elif [ "$url" = "$ACME_REVOKE_CERT" ] && [ "$keyfile" != "$ACCOUNT_KEY_PATH" ]; then
2175 protected="$JWK_HEADERPLACE_PART1$nonce\", \"url\": \"${url}$JWK_HEADERPLACE_PART2, \"jwk\": $jwk"'}'
2176 else
2177 protected="$JWK_HEADERPLACE_PART1$nonce\", \"url\": \"${url}$JWK_HEADERPLACE_PART2, \"kid\": \"${ACCOUNT_URL}\""'}'
c1151b0d 2178 fi
af3ea2d4 2179
0bc745f6 2180 _debug3 protected "$protected"
a272ee4f 2181
0bc745f6 2182 protected64="$(printf "%s" "$protected" | _base64 | _url_replace)"
2183 _debug3 protected64 "$protected64"
4c2a3841 2184
0bc745f6 2185 if ! _sig_t="$(printf "%s" "$protected64.$payload64" | _sign "$keyfile" "sha256")"; then
2186 _err "Sign request failed."
2187 return 1
2188 fi
2189 _debug3 _sig_t "$_sig_t"
166096dc 2190
0bc745f6 2191 sig="$(printf "%s" "$_sig_t" | _url_replace)"
2192 _debug3 sig "$sig"
4c2a3841 2193
8bd12ed0 2194 body="{\"protected\": \"$protected64\", \"payload\": \"$payload64\", \"signature\": \"$sig\"}"
0bc745f6 2195 _debug3 body "$body"
4c2a3841 2196
6a66ba8a 2197 response="$(_post "$body" "$url" "$needbase64" "POST" "$__request_conent_type")"
0bc745f6 2198 _CACHED_NONCE=""
bbbdcb09 2199
0bc745f6 2200 if [ "$?" != "0" ]; then
2201 _err "Can not post to $url"
2202 return 1
2203 fi
4c3b3608 2204
64802502 2205 responseHeaders="$(cat "$HTTP_HEADER")"
0bc745f6 2206 _debug2 responseHeaders "$responseHeaders"
f2acdd27 2207
0bc745f6 2208 code="$(grep "^HTTP" "$HTTP_HEADER" | _tail_n 1 | cut -d " " -f 2 | tr -d "\r\n")"
2209 _debug code "$code"
4c2a3841 2210
f2acdd27 2211 _debug2 original "$response"
0712e989 2212 if echo "$responseHeaders" | grep -i "Content-Type: *application/json" >/dev/null 2>&1; then
cc8f2afc 2213 response="$(echo "$response" | _json_decode | _normalizeJson)"
8148bfea 2214 fi
f2acdd27 2215 _debug2 response "$response"
36309e6d 2216
91d37c78 2217 _CACHED_NONCE="$(echo "$responseHeaders" | grep -i "Replay-Nonce:" | _head_n 1 | tr -d "\r\n " | cut -d ':' -f 2 | cut -d , -f 1)"
f2acdd27 2218
a0ec5b18 2219 if ! _startswith "$code" "2"; then
f2acdd27 2220 _body="$response"
2221 if [ "$needbase64" ]; then
2222 _body="$(echo "$_body" | _dbase64 multiline)"
2223 _debug3 _body "$_body"
2224 fi
2225
2226 if _contains "$_body" "JWS has invalid anti-replay nonce" || _contains "$_body" "JWS has an invalid anti-replay nonce"; then
2227 _info "It seems the CA server is busy now, let's wait and retry. Sleeping $_sleep_retry_sec seconds."
2228 _CACHED_NONCE=""
2229 _sleep $_sleep_retry_sec
2230 continue
2231 fi
0f494c9d 2232 if _contains "$_body" "The Replay Nonce is not recognized"; then
2233 _info "The replay Nonce is not valid, let's get a new one, Sleeping $_sleep_retry_sec seconds."
2234 _CACHED_NONCE=""
2235 _sleep $_sleep_retry_sec
2236 continue
2237 fi
0bc745f6 2238 fi
a44ea0dd 2239 return 0
0bc745f6 2240 done
a44ea0dd 2241 _info "Giving up sending to CA server after $MAX_REQUEST_RETRY_TIMES retries."
2242 return 1
4c3b3608 2243
4c3b3608 2244}
4c3b3608 2245
2246#setopt "file" "opt" "=" "value" [";"]
2247_setopt() {
2248 __conf="$1"
2249 __opt="$2"
2250 __sep="$3"
2251 __val="$4"
2252 __end="$5"
4c2a3841 2253 if [ -z "$__opt" ]; then
2254 _usage usage: _setopt '"file" "opt" "=" "value" [";"]'
4c3b3608 2255 return
2256 fi
4c2a3841 2257 if [ ! -f "$__conf" ]; then
4c3b3608 2258 touch "$__conf"
2259 fi
2260
4c2a3841 2261 if grep -n "^$__opt$__sep" "$__conf" >/dev/null; then
22ea4004 2262 _debug3 OK
4c2a3841 2263 if _contains "$__val" "&"; then
79a267ab 2264 __val="$(echo "$__val" | sed 's/&/\\&/g')"
4c3b3608 2265 fi
79a267ab 2266 text="$(cat "$__conf")"
52f8b787 2267 printf -- "%s\n" "$text" | sed "s|^$__opt$__sep.*$|$__opt$__sep$__val$__end|" >"$__conf"
4c3b3608 2268
4c2a3841 2269 elif grep -n "^#$__opt$__sep" "$__conf" >/dev/null; then
2270 if _contains "$__val" "&"; then
79a267ab 2271 __val="$(echo "$__val" | sed 's/&/\\&/g')"
4c3b3608 2272 fi
79a267ab 2273 text="$(cat "$__conf")"
52f8b787 2274 printf -- "%s\n" "$text" | sed "s|^#$__opt$__sep.*$|$__opt$__sep$__val$__end|" >"$__conf"
4c3b3608 2275
2276 else
22ea4004 2277 _debug3 APP
4c2a3841 2278 echo "$__opt$__sep$__val$__end" >>"$__conf"
4c3b3608 2279 fi
1efb2085 2280 _debug3 "$(grep -n "^$__opt$__sep" "$__conf")"
4c3b3608 2281}
2282
7690f73e 2283#_save_conf file key value base64encode
8a29fbc8 2284#save to conf
2285_save_conf() {
2286 _s_c_f="$1"
2287 _sdkey="$2"
2288 _sdvalue="$3"
7690f73e 2289 _b64encode="$4"
53c01882 2290 if [ "$_sdvalue" ] && [ "$_b64encode" ]; then
7690f73e 2291 _sdvalue="${B64CONF_START}$(printf "%s" "${_sdvalue}" | _base64)${B64CONF_END}"
2292 fi
4c2a3841 2293 if [ "$_s_c_f" ]; then
8a29fbc8 2294 _setopt "$_s_c_f" "$_sdkey" "=" "'$_sdvalue'"
4d2f38b0 2295 else
8a29fbc8 2296 _err "config file is empty, can not save $_sdkey=$_sdvalue"
4d2f38b0 2297 fi
2298}
2299
8a29fbc8 2300#_clear_conf file key
2301_clear_conf() {
2302 _c_c_f="$1"
2303 _sdkey="$2"
4c2a3841 2304 if [ "$_c_c_f" ]; then
20ea8591 2305 _conf_data="$(cat "$_c_c_f")"
fa574fe8 2306 echo "$_conf_data" | sed "s/^$_sdkey *=.*$//" >"$_c_c_f"
4c3b3608 2307 else
8a29fbc8 2308 _err "config file is empty, can not clear"
4c3b3608 2309 fi
2310}
2311
8a29fbc8 2312#_read_conf file key
2313_read_conf() {
2314 _r_c_f="$1"
2315 _sdkey="$2"
4c2a3841 2316 if [ -f "$_r_c_f" ]; then
0cfeee4d 2317 _sdv="$(
2318 eval "$(grep "^$_sdkey *=" "$_r_c_f")"
2319 eval "printf \"%s\" \"\$$_sdkey\""
c97e43dc 2320 )"
7690f73e 2321 if _startswith "$_sdv" "${B64CONF_START}" && _endswith "$_sdv" "${B64CONF_END}"; then
2322 _sdv="$(echo "$_sdv" | sed "s/${B64CONF_START}//" | sed "s/${B64CONF_END}//" | _dbase64)"
2323 fi
2324 printf "%s" "$_sdv"
61623d22 2325 else
57e58ce7 2326 _debug "config file is empty, can not read $_sdkey"
4c3b3608 2327 fi
4c3b3608 2328}
2329
7690f73e 2330#_savedomainconf key value base64encode
4c3b3608 2331#save to domain.conf
2332_savedomainconf() {
7690f73e 2333 _save_conf "$DOMAIN_CONF" "$@"
4d2f38b0 2334}
2335
2336#_cleardomainconf key
2337_cleardomainconf() {
8a29fbc8 2338 _clear_conf "$DOMAIN_CONF" "$1"
4c3b3608 2339}
2340
61623d22 2341#_readdomainconf key
2342_readdomainconf() {
8a29fbc8 2343 _read_conf "$DOMAIN_CONF" "$1"
61623d22 2344}
2345
aec66362 2346#key value base64encode
2347_savedeployconf() {
2348 _savedomainconf "SAVED_$1" "$2" "$3"
2349 #remove later
dc5eda7e 2350 _cleardomainconf "$1"
aec66362 2351}
2352
2353#key
2354_getdeployconf() {
2355 _rac_key="$1"
2e3ddd3a 2356 _rac_value="$(eval echo \$"$_rac_key")"
2357 if [ "$_rac_value" ]; then
2358 if _startswith "$_rac_value" '"' && _endswith "$_rac_value" '"'; then
2359 _debug2 "trim quotation marks"
465ece5d 2360 eval "export $_rac_key=$_rac_value"
2e3ddd3a 2361 fi
aec66362 2362 return 0 # do nothing
2363 fi
2364 _saved=$(_readdomainconf "SAVED_$_rac_key")
25a8240d 2365 eval "export $_rac_key=\"\$_saved\""
aec66362 2366}
2367
7690f73e 2368#_saveaccountconf key value base64encode
4c3b3608 2369_saveaccountconf() {
7690f73e 2370 _save_conf "$ACCOUNT_CONF_PATH" "$@"
4c3b3608 2371}
2372
7690f73e 2373#key value base64encode
fcdf41ba 2374_saveaccountconf_mutable() {
7690f73e 2375 _save_conf "$ACCOUNT_CONF_PATH" "SAVED_$1" "$2" "$3"
fcdf41ba 2376 #remove later
2377 _clearaccountconf "$1"
2378}
2379
2380#key
2381_readaccountconf() {
2382 _read_conf "$ACCOUNT_CONF_PATH" "$1"
2383}
2384
2385#key
2386_readaccountconf_mutable() {
2387 _rac_key="$1"
2388 _readaccountconf "SAVED_$_rac_key"
2389}
2390
fac1e367 2391#_clearaccountconf key
2392_clearaccountconf() {
8a29fbc8 2393 _clear_conf "$ACCOUNT_CONF_PATH" "$1"
2394}
2395
585c0c38 2396#key
2397_clearaccountconf_mutable() {
2398 _clearaccountconf "SAVED_$1"
2399 #remove later
2400 _clearaccountconf "$1"
2401}
2402
8a29fbc8 2403#_savecaconf key value
2404_savecaconf() {
2405 _save_conf "$CA_CONF" "$1" "$2"
2406}
2407
2408#_readcaconf key
2409_readcaconf() {
2410 _read_conf "$CA_CONF" "$1"
2411}
2412
2413#_clearaccountconf key
2414_clearcaconf() {
2415 _clear_conf "$CA_CONF" "$1"
fac1e367 2416}
2417
0463b5d6 2418# content localaddress
4c3b3608 2419_startserver() {
2420 content="$1"
0463b5d6 2421 ncaddr="$2"
e7f7e96d 2422 _debug "content" "$content"
0463b5d6 2423 _debug "ncaddr" "$ncaddr"
2424
6fc1447f 2425 _debug "startserver: $$"
4c2a3841 2426
39c8f79f 2427 _debug Le_HTTPPort "$Le_HTTPPort"
6ae0f7f5 2428 _debug Le_Listen_V4 "$Le_Listen_V4"
2429 _debug Le_Listen_V6 "$Le_Listen_V6"
4c2a3841 2430
3794b5cb 2431 _NC="socat"
4c2a3841 2432 if [ "$Le_Listen_V4" ]; then
6ae0f7f5 2433 _NC="$_NC -4"
4c2a3841 2434 elif [ "$Le_Listen_V6" ]; then
6ae0f7f5 2435 _NC="$_NC -6"
2436 fi
4c2a3841 2437
9ad7ac63 2438 if [ "$DEBUG" ] && [ "$DEBUG" -gt "1" ]; then
5c568d69 2439 _NC="$_NC -d -d -v"
2440 fi
2441
9134b6ea
HC
2442 SOCAT_OPTIONS=TCP-LISTEN:$Le_HTTPPort,crlf,reuseaddr,fork
2443
2444 #Adding bind to local-address
d84665cb 2445 if [ "$ncaddr" ]; then
9ad7ac63 2446 SOCAT_OPTIONS="$SOCAT_OPTIONS,bind=${ncaddr}"
9134b6ea
HC
2447 fi
2448
e7f7e96d 2449 _content_len="$(printf "%s" "$content" | wc -c)"
2450 _debug _content_len "$_content_len"
5c568d69 2451 _debug "_NC" "$_NC $SOCAT_OPTIONS"
e7f7e96d 2452 $_NC $SOCAT_OPTIONS SYSTEM:"sleep 1; \
2453echo 'HTTP/1.0 200 OK'; \
2454echo 'Content-Length\: $_content_len'; \
2455echo ''; \
81b2d073 2456printf '%s' '$content';" &
3794b5cb 2457 serverproc="$!"
4c3b3608 2458}
2459
4c2a3841 2460_stopserver() {
4c3b3608 2461 pid="$1"
6fc1447f 2462 _debug "pid" "$pid"
4c2a3841 2463 if [ -z "$pid" ]; then
6fc1447f 2464 return
2465 fi
e22bcf7c 2466
3794b5cb 2467 kill $pid
2468
4c3b3608 2469}
2470
fdcb6b72 2471# sleep sec
2472_sleep() {
2473 _sleep_sec="$1"
4c2a3841 2474 if [ "$__INTERACTIVE" ]; then
fdcb6b72 2475 _sleep_c="$_sleep_sec"
4c2a3841 2476 while [ "$_sleep_c" -ge "0" ]; do
c583d6bb 2477 printf "\r \r"
fdcb6b72 2478 __green "$_sleep_c"
79a267ab 2479 _sleep_c="$(_math "$_sleep_c" - 1)"
fdcb6b72 2480 sleep 1
2481 done
c583d6bb 2482 printf "\r"
fdcb6b72 2483 else
2484 sleep "$_sleep_sec"
2485 fi
2486}
e22bcf7c 2487
08681f4a 2488# _starttlsserver san_a san_b port content _ncaddr acmeValidationv1
e22bcf7c 2489_starttlsserver() {
2490 _info "Starting tls server."
2491 san_a="$1"
2492 san_b="$2"
2493 port="$3"
2494 content="$4"
6ae0f7f5 2495 opaddr="$5"
08681f4a 2496 acmeValidationv1="$6"
4c2a3841 2497
e22bcf7c 2498 _debug san_a "$san_a"
2499 _debug san_b "$san_b"
2500 _debug port "$port"
08681f4a 2501 _debug acmeValidationv1 "$acmeValidationv1"
4c2a3841 2502
e22bcf7c 2503 #create key TLS_KEY
4c2a3841 2504 if ! _createkey "2048" "$TLS_KEY"; then
e22bcf7c 2505 _err "Create tls validation key error."
2506 return 1
2507 fi
4c2a3841 2508
e22bcf7c 2509 #create csr
2510 alt="$san_a"
4c2a3841 2511 if [ "$san_b" ]; then
e22bcf7c 2512 alt="$alt,$san_b"
2513 fi
08681f4a 2514 if ! _createcsr "tls.acme.sh" "$alt" "$TLS_KEY" "$TLS_CSR" "$TLS_CONF" "$acmeValidationv1"; then
e22bcf7c 2515 _err "Create tls validation csr error."
2516 return 1
2517 fi
4c2a3841 2518
e22bcf7c 2519 #self signed
4c2a3841 2520 if ! _signcsr "$TLS_KEY" "$TLS_CSR" "$TLS_CONF" "$TLS_CERT"; then
e22bcf7c 2521 _err "Create tls validation cert error."
2522 return 1
2523 fi
4c2a3841 2524
5f6e3da7 2525 __S_OPENSSL="${ACME_OPENSSL_BIN:-openssl} s_server -www -cert $TLS_CERT -key $TLS_KEY "
2526 if [ "$opaddr" ]; then
2527 __S_OPENSSL="$__S_OPENSSL -accept $opaddr:$port"
2528 else
2529 __S_OPENSSL="$__S_OPENSSL -accept $port"
2530 fi
6ae0f7f5 2531
2532 _debug Le_Listen_V4 "$Le_Listen_V4"
2533 _debug Le_Listen_V6 "$Le_Listen_V6"
4c2a3841 2534 if [ "$Le_Listen_V4" ]; then
6ae0f7f5 2535 __S_OPENSSL="$__S_OPENSSL -4"
4c2a3841 2536 elif [ "$Le_Listen_V6" ]; then
6ae0f7f5 2537 __S_OPENSSL="$__S_OPENSSL -6"
2538 fi
4c2a3841 2539
08681f4a 2540 if [ "$acmeValidationv1" ]; then
2541 __S_OPENSSL="$__S_OPENSSL -alpn acme-tls/1"
2542 fi
2543
6ae0f7f5 2544 _debug "$__S_OPENSSL"
5f6e3da7 2545 if [ "$DEBUG" ] && [ "$DEBUG" -ge "2" ]; then
2546 $__S_OPENSSL -tlsextdebug &
2547 else
2548 $__S_OPENSSL >/dev/null 2>&1 &
2549 fi
331c4bb6 2550
e22bcf7c 2551 serverproc="$!"
5dbf664a 2552 sleep 1
d5ec5f80 2553 _debug serverproc "$serverproc"
e22bcf7c 2554}
2555
18e46962 2556#file
2557_readlink() {
2558 _rf="$1"
2559 if ! readlink -f "$_rf" 2>/dev/null; then
6c4cc357 2560 if _startswith "$_rf" "/"; then
2561 echo "$_rf"
7da50703 2562 return 0
2563 fi
6c4cc357 2564 echo "$(pwd)/$_rf" | _conapath
18e46962 2565 fi
2566}
2567
6c4cc357 2568_conapath() {
2569 sed "s#/\./#/#g"
2570}
2571
5ea6e9c9 2572__initHome() {
4c2a3841 2573 if [ -z "$_SCRIPT_HOME" ]; then
2574 if _exists readlink && _exists dirname; then
66990cf8 2575 _debug "Lets find script dir."
f3e4cea3 2576 _debug "_SCRIPT_" "$_SCRIPT_"
18e46962 2577 _script="$(_readlink "$_SCRIPT_")"
f3e4cea3 2578 _debug "_script" "$_script"
2579 _script_home="$(dirname "$_script")"
2580 _debug "_script_home" "$_script_home"
4c2a3841 2581 if [ -d "$_script_home" ]; then
0a47f481 2582 export _SCRIPT_HOME="$_script_home"
f3e4cea3 2583 else
2584 _err "It seems the script home is not correct:$_script_home"
2585 fi
2586 fi
2587 fi
2588
219e9115 2589 # if [ -z "$LE_WORKING_DIR" ]; then
2590 # if [ -f "$DEFAULT_INSTALL_HOME/account.conf" ]; then
2591 # _debug "It seems that $PROJECT_NAME is already installed in $DEFAULT_INSTALL_HOME"
2592 # LE_WORKING_DIR="$DEFAULT_INSTALL_HOME"
2593 # else
2594 # LE_WORKING_DIR="$_SCRIPT_HOME"
2595 # fi
2596 # fi
4c2a3841 2597
2598 if [ -z "$LE_WORKING_DIR" ]; then
f3e4cea3 2599 _debug "Using default home:$DEFAULT_INSTALL_HOME"
2600 LE_WORKING_DIR="$DEFAULT_INSTALL_HOME"
2601 fi
7da50703 2602 export LE_WORKING_DIR
f3e4cea3 2603
f5b546b3 2604 if [ -z "$LE_CONFIG_HOME" ]; then
2605 LE_CONFIG_HOME="$LE_WORKING_DIR"
27dbe77f 2606 fi
f5b546b3 2607 _debug "Using config home:$LE_CONFIG_HOME"
2608 export LE_CONFIG_HOME
27dbe77f 2609
f5b546b3 2610 _DEFAULT_ACCOUNT_CONF_PATH="$LE_CONFIG_HOME/account.conf"
d53289d7 2611
4c2a3841 2612 if [ -z "$ACCOUNT_CONF_PATH" ]; then
2613 if [ -f "$_DEFAULT_ACCOUNT_CONF_PATH" ]; then
8663fb7e 2614 . "$_DEFAULT_ACCOUNT_CONF_PATH"
635695ec 2615 fi
d53289d7 2616 fi
4c2a3841 2617
2618 if [ -z "$ACCOUNT_CONF_PATH" ]; then
d53289d7 2619 ACCOUNT_CONF_PATH="$_DEFAULT_ACCOUNT_CONF_PATH"
4c3b3608 2620 fi
f8f53a6b 2621 _debug3 ACCOUNT_CONF_PATH "$ACCOUNT_CONF_PATH"
f5b546b3 2622 DEFAULT_LOG_FILE="$LE_CONFIG_HOME/$PROJECT_NAME.log"
4c2a3841 2623
f5b546b3 2624 DEFAULT_CA_HOME="$LE_CONFIG_HOME/ca"
4c2a3841 2625
2626 if [ -z "$LE_TEMP_DIR" ]; then
f5b546b3 2627 LE_TEMP_DIR="$LE_CONFIG_HOME/tmp"
610e0f21 2628 fi
5ea6e9c9 2629}
2630
17520043 2631_clearAPI() {
2632 ACME_NEW_ACCOUNT=""
2633 ACME_KEY_CHANGE=""
2634 ACME_NEW_AUTHZ=""
2635 ACME_NEW_ORDER=""
2636 ACME_REVOKE_CERT=""
2637 ACME_NEW_NONCE=""
2638 ACME_AGREEMENT=""
2639}
2640
48d9a8c1 2641#server
2642_initAPI() {
2643 _api_server="${1:-$ACME_DIRECTORY}"
2644 _debug "_init api for server: $_api_server"
4cee14f3 2645
014e0160 2646 MAX_API_RETRY_TIMES=10
2647 _sleep_retry_sec=10
2648 _request_retry_times=0
2649 while [ -z "$ACME_NEW_ACCOUNT" ] && [ "${_request_retry_times}" -lt "$MAX_API_RETRY_TIMES" ]; do
2650 _request_retry_times=$(_math "$_request_retry_times" + 1)
48d9a8c1 2651 response=$(_get "$_api_server")
2652 if [ "$?" != "0" ]; then
2653 _debug2 "response" "$response"
014e0160 2654 _info "Can not init api for: $_api_server."
2655 _info "Sleep $_sleep_retry_sec and retry."
2656 _sleep "$_sleep_retry_sec"
2657 continue
48d9a8c1 2658 fi
d8bd45c2 2659 response=$(echo "$response" | _json_decode)
48d9a8c1 2660 _debug2 "response" "$response"
2661
af3ea2d4 2662 ACME_KEY_CHANGE=$(echo "$response" | _egrep_o 'keyChange" *: *"[^"]*"' | cut -d '"' -f 3)
48d9a8c1 2663 export ACME_KEY_CHANGE
2664
af3ea2d4 2665 ACME_NEW_AUTHZ=$(echo "$response" | _egrep_o 'newAuthz" *: *"[^"]*"' | cut -d '"' -f 3)
48d9a8c1 2666 export ACME_NEW_AUTHZ
2667
af3ea2d4 2668 ACME_NEW_ORDER=$(echo "$response" | _egrep_o 'newOrder" *: *"[^"]*"' | cut -d '"' -f 3)
cae50e16 2669 export ACME_NEW_ORDER
af3ea2d4 2670
2671 ACME_NEW_ACCOUNT=$(echo "$response" | _egrep_o 'newAccount" *: *"[^"]*"' | cut -d '"' -f 3)
cae50e16 2672 export ACME_NEW_ACCOUNT
48d9a8c1 2673
af3ea2d4 2674 ACME_REVOKE_CERT=$(echo "$response" | _egrep_o 'revokeCert" *: *"[^"]*"' | cut -d '"' -f 3)
48d9a8c1 2675 export ACME_REVOKE_CERT
2676
af3ea2d4 2677 ACME_NEW_NONCE=$(echo "$response" | _egrep_o 'newNonce" *: *"[^"]*"' | cut -d '"' -f 3)
cae50e16 2678 export ACME_NEW_NONCE
4249e13e 2679
af3ea2d4 2680 ACME_AGREEMENT=$(echo "$response" | _egrep_o 'termsOfService" *: *"[^"]*"' | cut -d '"' -f 3)
f87890cb 2681 export ACME_AGREEMENT
cae50e16 2682
f87890cb 2683 _debug "ACME_KEY_CHANGE" "$ACME_KEY_CHANGE"
2684 _debug "ACME_NEW_AUTHZ" "$ACME_NEW_AUTHZ"
2685 _debug "ACME_NEW_ORDER" "$ACME_NEW_ORDER"
2686 _debug "ACME_NEW_ACCOUNT" "$ACME_NEW_ACCOUNT"
2687 _debug "ACME_REVOKE_CERT" "$ACME_REVOKE_CERT"
2688 _debug "ACME_AGREEMENT" "$ACME_AGREEMENT"
c1151b0d 2689 _debug "ACME_NEW_NONCE" "$ACME_NEW_NONCE"
9daeae16 2690 if [ "$ACME_NEW_ACCOUNT" ] && [ "$ACME_NEW_ORDER" ]; then
014e0160 2691 return 0
2692 fi
29fe1c86 2693 _info "Sleep $_sleep_retry_sec and retry."
2694 _sleep "$_sleep_retry_sec"
014e0160 2695 done
13ab9844 2696 if [ "$ACME_NEW_ACCOUNT" ] && [ "$ACME_NEW_ORDER" ]; then
2697 return 0
2698 fi
014e0160 2699 _err "Can not init api, for $_api_server"
2700 return 1
48d9a8c1 2701}
2702
8d783e8e 2703_clearCA() {
8d783e8e 2704 export CA_CONF=
2705 export ACCOUNT_KEY_PATH=
2706 export ACCOUNT_JSON_PATH=
2707}
2708
3281043e 2709#[domain] [keylength or isEcc flag]
5ea6e9c9 2710_initpath() {
cd9fb3b6 2711 domain="$1"
2712 _ilength="$2"
5ea6e9c9 2713
2714 __initHome
2715
4c2a3841 2716 if [ -f "$ACCOUNT_CONF_PATH" ]; then
8663fb7e 2717 . "$ACCOUNT_CONF_PATH"
4c3b3608 2718 fi
2719
bd04638d 2720 if [ "$_ACME_IN_CRON" ]; then
4c2a3841 2721 if [ ! "$_USER_PATH_EXPORTED" ]; then
281aa349 2722 _USER_PATH_EXPORTED=1
2723 export PATH="$USER_PATH:$PATH"
2724 fi
2725 fi
4c2a3841 2726
2727 if [ -z "$CA_HOME" ]; then
5c48e139 2728 CA_HOME="$DEFAULT_CA_HOME"
2729 fi
281aa349 2730
48d9a8c1 2731 if [ -z "$ACME_DIRECTORY" ]; then
b3a801df 2732 if [ "$STAGE" ]; then
2733 ACME_DIRECTORY="$DEFAULT_STAGING_CA"
bd04638d 2734 _info "Using ACME_DIRECTORY: $ACME_DIRECTORY"
4c3b3608 2735 else
b3a801df 2736 default_acme_server=$(_readaccountconf "DEFAULT_ACME_SERVER")
2737 _debug default_acme_server "$default_acme_server"
2738 if [ "$default_acme_server" ]; then
2739 ACME_DIRECTORY="$default_acme_server"
737e9e48 2740 else
b3a801df 2741 ACME_DIRECTORY="$DEFAULT_CA"
737e9e48 2742 fi
4c2a3841 2743 fi
4c3b3608 2744 fi
4c2a3841 2745
66444663 2746 _debug ACME_DIRECTORY "$ACME_DIRECTORY"
98394f99 2747 _ACME_SERVER_HOST="$(echo "$ACME_DIRECTORY" | cut -d : -f 2 | tr -s / | cut -d / -f 2)"
48d9a8c1 2748 _debug2 "_ACME_SERVER_HOST" "$_ACME_SERVER_HOST"
2749
53d6ab6c 2750 _ACME_SERVER_PATH="$(echo "$ACME_DIRECTORY" | cut -d : -f 2- | tr -s / | cut -d / -f 3-)"
2751 _debug2 "_ACME_SERVER_PATH" "$_ACME_SERVER_PATH"
4c2a3841 2752
593e8e1f 2753 CA_DIR="$CA_HOME/$_ACME_SERVER_HOST/$_ACME_SERVER_PATH"
5c48e139 2754 _DEFAULT_CA_CONF="$CA_DIR/ca.conf"
4c2a3841 2755 if [ -z "$CA_CONF" ]; then
5c48e139 2756 CA_CONF="$_DEFAULT_CA_CONF"
2757 fi
c4236e58 2758 _debug3 CA_CONF "$CA_CONF"
4c2a3841 2759
593e8e1f 2760 _OLD_CADIR="$CA_HOME/$_ACME_SERVER_HOST"
2761 _OLD_ACCOUNT_KEY="$_OLD_CADIR/account.key"
2762 _OLD_ACCOUNT_JSON="$_OLD_CADIR/account.json"
2763 _OLD_CA_CONF="$_OLD_CADIR/ca.conf"
2764
593e8e1f 2765 _DEFAULT_ACCOUNT_KEY_PATH="$CA_DIR/account.key"
2766 _DEFAULT_ACCOUNT_JSON_PATH="$CA_DIR/account.json"
2767 if [ -z "$ACCOUNT_KEY_PATH" ]; then
2768 ACCOUNT_KEY_PATH="$_DEFAULT_ACCOUNT_KEY_PATH"
2769 if [ -f "$_OLD_ACCOUNT_KEY" ] && ! [ -f "$ACCOUNT_KEY_PATH" ]; then
2770 mkdir -p "$CA_DIR"
2771 mv "$_OLD_ACCOUNT_KEY" "$ACCOUNT_KEY_PATH"
2772 fi
2773 fi
2774
2775 if [ -z "$ACCOUNT_JSON_PATH" ]; then
2776 ACCOUNT_JSON_PATH="$_DEFAULT_ACCOUNT_JSON_PATH"
2777 if [ -f "$_OLD_ACCOUNT_JSON" ] && ! [ -f "$ACCOUNT_JSON_PATH" ]; then
2778 mkdir -p "$CA_DIR"
2779 mv "$_OLD_ACCOUNT_JSON" "$ACCOUNT_JSON_PATH"
2780 fi
2781 fi
2782
2783 if [ -f "$_OLD_CA_CONF" ] && ! [ -f "$CA_CONF" ]; then
2784 mkdir -p "$CA_DIR"
2785 mv "$_OLD_CA_CONF" "$CA_CONF"
2786 fi
2787
4c2a3841 2788 if [ -f "$CA_CONF" ]; then
5c48e139 2789 . "$CA_CONF"
2790 fi
2791
4c2a3841 2792 if [ -z "$ACME_DIR" ]; then
4c3b3608 2793 ACME_DIR="/home/.acme"
2794 fi
4c2a3841 2795
2796 if [ -z "$APACHE_CONF_BACKUP_DIR" ]; then
f5b546b3 2797 APACHE_CONF_BACKUP_DIR="$LE_CONFIG_HOME"
4c3b3608 2798 fi
4c2a3841 2799
2800 if [ -z "$USER_AGENT" ]; then
bbbdcb09 2801 USER_AGENT="$DEFAULT_USER_AGENT"
2802 fi
4c2a3841 2803
2804 if [ -z "$HTTP_HEADER" ]; then
f5b546b3 2805 HTTP_HEADER="$LE_CONFIG_HOME/http.header"
933c169d 2806 fi
b2817897 2807
f5b546b3 2808 _DEFAULT_CERT_HOME="$LE_CONFIG_HOME"
4c2a3841 2809 if [ -z "$CERT_HOME" ]; then
a79b26af
RD
2810 CERT_HOME="$_DEFAULT_CERT_HOME"
2811 fi
2812
77f1ea40 2813 if [ -z "$ACME_OPENSSL_BIN" ] || [ ! -f "$ACME_OPENSSL_BIN" ] || [ ! -x "$ACME_OPENSSL_BIN" ]; then
851fedf7 2814 ACME_OPENSSL_BIN="$DEFAULT_OPENSSL_BIN"
a746139c 2815 fi
2816
cd9fb3b6 2817 if [ -z "$domain" ]; then
4c3b3608 2818 return 0
2819 fi
4c2a3841 2820
4c2a3841 2821 if [ -z "$DOMAIN_PATH" ]; then
43822d37 2822 domainhome="$CERT_HOME/$domain"
2823 domainhomeecc="$CERT_HOME/$domain$ECC_SUFFIX"
4c2a3841 2824
4c3b3608 2825 DOMAIN_PATH="$domainhome"
4c2a3841 2826
2827 if _isEccKey "$_ilength"; then
43822d37 2828 DOMAIN_PATH="$domainhomeecc"
2829 else
4c2a3841 2830 if [ ! -d "$domainhome" ] && [ -d "$domainhomeecc" ]; then
6d4e903b 2831 _info "The domain '$domain' seems to have a ECC cert already, please add '$(__red "--ecc")' parameter if you want to use that cert."
43822d37 2832 fi
2833 fi
2834 _debug DOMAIN_PATH "$DOMAIN_PATH"
4c3b3608 2835 fi
4c2a3841 2836
fd72cced 2837 if [ -z "$DOMAIN_BACKUP_PATH" ]; then
d88f8e86 2838 DOMAIN_BACKUP_PATH="$DOMAIN_PATH/backup"
fd72cced 2839 fi
2840
4c2a3841 2841 if [ -z "$DOMAIN_CONF" ]; then
43822d37 2842 DOMAIN_CONF="$DOMAIN_PATH/$domain.conf"
4c3b3608 2843 fi
4c2a3841 2844
2845 if [ -z "$DOMAIN_SSL_CONF" ]; then
0c9546cc 2846 DOMAIN_SSL_CONF="$DOMAIN_PATH/$domain.csr.conf"
4c3b3608 2847 fi
4c2a3841 2848
2849 if [ -z "$CSR_PATH" ]; then
43822d37 2850 CSR_PATH="$DOMAIN_PATH/$domain.csr"
4c3b3608 2851 fi
4c2a3841 2852 if [ -z "$CERT_KEY_PATH" ]; then
43822d37 2853 CERT_KEY_PATH="$DOMAIN_PATH/$domain.key"
4c3b3608 2854 fi
4c2a3841 2855 if [ -z "$CERT_PATH" ]; then
43822d37 2856 CERT_PATH="$DOMAIN_PATH/$domain.cer"
4c3b3608 2857 fi
4c2a3841 2858 if [ -z "$CA_CERT_PATH" ]; then
43822d37 2859 CA_CERT_PATH="$DOMAIN_PATH/ca.cer"
4c3b3608 2860 fi
4c2a3841 2861 if [ -z "$CERT_FULLCHAIN_PATH" ]; then
43822d37 2862 CERT_FULLCHAIN_PATH="$DOMAIN_PATH/fullchain.cer"
caf1fc10 2863 fi
4c2a3841 2864 if [ -z "$CERT_PFX_PATH" ]; then
43822d37 2865 CERT_PFX_PATH="$DOMAIN_PATH/$domain.pfx"
ac2d5123 2866 fi
4410226d 2867 if [ -z "$CERT_PKCS8_PATH" ]; then
2868 CERT_PKCS8_PATH="$DOMAIN_PATH/$domain.pkcs8"
2869 fi
4c2a3841 2870
2871 if [ -z "$TLS_CONF" ]; then
f94433e5 2872 TLS_CONF="$DOMAIN_PATH/tls.validation.conf"
e22bcf7c 2873 fi
4c2a3841 2874 if [ -z "$TLS_CERT" ]; then
f94433e5 2875 TLS_CERT="$DOMAIN_PATH/tls.validation.cert"
e22bcf7c 2876 fi
4c2a3841 2877 if [ -z "$TLS_KEY" ]; then
f94433e5 2878 TLS_KEY="$DOMAIN_PATH/tls.validation.key"
e22bcf7c 2879 fi
4c2a3841 2880 if [ -z "$TLS_CSR" ]; then
f94433e5 2881 TLS_CSR="$DOMAIN_PATH/tls.validation.csr"
e22bcf7c 2882 fi
4c2a3841 2883
4c3b3608 2884}
2885
610e0f21 2886_exec() {
4c2a3841 2887 if [ -z "$_EXEC_TEMP_ERR" ]; then
610e0f21 2888 _EXEC_TEMP_ERR="$(_mktemp)"
2889 fi
2890
4c2a3841 2891 if [ "$_EXEC_TEMP_ERR" ]; then
3e5b1024 2892 eval "$@ 2>>$_EXEC_TEMP_ERR"
610e0f21 2893 else
3e5b1024 2894 eval "$@"
610e0f21 2895 fi
2896}
2897
2898_exec_err() {
3e5b1024 2899 [ "$_EXEC_TEMP_ERR" ] && _err "$(cat "$_EXEC_TEMP_ERR")" && echo "" >"$_EXEC_TEMP_ERR"
610e0f21 2900}
4c3b3608 2901
2902_apachePath() {
c3dd3ef0 2903 _APACHECTL="apachectl"
4c2a3841 2904 if ! _exists apachectl; then
2905 if _exists apache2ctl; then
2906 _APACHECTL="apache2ctl"
e4a19585 2907 else
bc96082f 2908 _err "'apachectl not found. It seems that apache is not installed, or you are not root user.'"
e4a19585 2909 _err "Please use webroot mode to try again."
2910 return 1
2911 fi
80a0a7b5 2912 fi
4c2a3841 2913
2914 if ! _exec $_APACHECTL -V >/dev/null; then
610e0f21 2915 _exec_err
2916 return 1
2917 fi
4c2a3841 2918
2919 if [ "$APACHE_HTTPD_CONF" ]; then
5be1449d 2920 _saveaccountconf APACHE_HTTPD_CONF "$APACHE_HTTPD_CONF"
2921 httpdconf="$APACHE_HTTPD_CONF"
79a267ab 2922 httpdconfname="$(basename "$httpdconfname")"
d62ee940 2923 else
4c2a3841 2924 httpdconfname="$($_APACHECTL -V | grep SERVER_CONFIG_FILE= | cut -d = -f 2 | tr -d '"')"
5be1449d 2925 _debug httpdconfname "$httpdconfname"
4c2a3841 2926
2927 if [ -z "$httpdconfname" ]; then
5be1449d 2928 _err "Can not read apache config file."
2929 return 1
2930 fi
4c2a3841 2931
2932 if _startswith "$httpdconfname" '/'; then
5be1449d 2933 httpdconf="$httpdconfname"
79a267ab 2934 httpdconfname="$(basename "$httpdconfname")"
5be1449d 2935 else
4c2a3841 2936 httpdroot="$($_APACHECTL -V | grep HTTPD_ROOT= | cut -d = -f 2 | tr -d '"')"
5be1449d 2937 _debug httpdroot "$httpdroot"
2938 httpdconf="$httpdroot/$httpdconfname"
79a267ab 2939 httpdconfname="$(basename "$httpdconfname")"
5be1449d 2940 fi
d62ee940 2941 fi
78768e98 2942 _debug httpdconf "$httpdconf"
8f63baf7 2943 _debug httpdconfname "$httpdconfname"
4c2a3841 2944 if [ ! -f "$httpdconf" ]; then
78768e98 2945 _err "Apache Config file not found" "$httpdconf"
4c3b3608 2946 return 1
2947 fi
2948 return 0
2949}
2950
2951_restoreApache() {
4c2a3841 2952 if [ -z "$usingApache" ]; then
4c3b3608 2953 return 0
2954 fi
2955 _initpath
4c2a3841 2956 if ! _apachePath; then
4c3b3608 2957 return 1
2958 fi
4c2a3841 2959
2960 if [ ! -f "$APACHE_CONF_BACKUP_DIR/$httpdconfname" ]; then
4c3b3608 2961 _debug "No config file to restore."
2962 return 0
2963 fi
4c2a3841 2964
2965 cat "$APACHE_CONF_BACKUP_DIR/$httpdconfname" >"$httpdconf"
5ef501c5 2966 _debug "Restored: $httpdconf."
4c2a3841 2967 if ! _exec $_APACHECTL -t; then
610e0f21 2968 _exec_err
4c3b3608 2969 _err "Sorry, restore apache config error, please contact me."
4c2a3841 2970 return 1
4c3b3608 2971 fi
5ef501c5 2972 _debug "Restored successfully."
4c3b3608 2973 rm -f "$APACHE_CONF_BACKUP_DIR/$httpdconfname"
4c2a3841 2974 return 0
4c3b3608 2975}
2976
2977_setApache() {
2978 _initpath
4c2a3841 2979 if ! _apachePath; then
4c3b3608 2980 return 1
2981 fi
2982
5fc5016d 2983 #test the conf first
869578ce 2984 _info "Checking if there is an error in the apache config file before starting."
4c2a3841 2985
44edb2bd 2986 if ! _exec "$_APACHECTL" -t >/dev/null; then
610e0f21 2987 _exec_err
2988 _err "The apache config file has error, please fix it first, then try again."
869578ce 2989 _err "Don't worry, there is nothing changed to your system."
4c2a3841 2990 return 1
5fc5016d 2991 else
2992 _info "OK"
2993 fi
4c2a3841 2994
4c3b3608 2995 #backup the conf
5778811a 2996 _debug "Backup apache config file" "$httpdconf"
4c2a3841 2997 if ! cp "$httpdconf" "$APACHE_CONF_BACKUP_DIR/"; then
869578ce 2998 _err "Can not backup apache config file, so abort. Don't worry, the apache config is not changed."
61a48a5b 2999 _err "This might be a bug of $PROJECT_NAME , please report issue: $PROJECT"
8f63baf7 3000 return 1
3001 fi
4c3b3608 3002 _info "JFYI, Config file $httpdconf is backuped to $APACHE_CONF_BACKUP_DIR/$httpdconfname"
3003 _info "In case there is an error that can not be restored automatically, you may try restore it yourself."
329174b6 3004 _info "The backup file will be deleted on success, just forget it."
4c2a3841 3005
4c3b3608 3006 #add alias
4c2a3841 3007
3008 apacheVer="$($_APACHECTL -V | grep "Server version:" | cut -d : -f 2 | cut -d " " -f 2 | cut -d '/' -f 2)"
b09d597c 3009 _debug "apacheVer" "$apacheVer"
94787d53 3010 apacheMajor="$(echo "$apacheVer" | cut -d . -f 1)"
b09d597c 3011 apacheMinor="$(echo "$apacheVer" | cut -d . -f 2)"
3012
94787d53 3013 if [ "$apacheVer" ] && [ "$apacheMajor$apacheMinor" -ge "24" ]; then
b09d597c 3014 echo "
4c3b3608 3015Alias /.well-known/acme-challenge $ACME_DIR
3016
3017<Directory $ACME_DIR >
3018Require all granted
b09d597c 3019</Directory>
4c2a3841 3020 " >>"$httpdconf"
b09d597c 3021 else
3022 echo "
3023Alias /.well-known/acme-challenge $ACME_DIR
3024
3025<Directory $ACME_DIR >
3026Order allow,deny
3027Allow from all
4c3b3608 3028</Directory>
4c2a3841 3029 " >>"$httpdconf"
b09d597c 3030 fi
3031
4c2a3841 3032 _msg="$($_APACHECTL -t 2>&1)"
3033 if [ "$?" != "0" ]; then
5fc5016d 3034 _err "Sorry, apache config error"
4c2a3841 3035 if _restoreApache; then
869578ce 3036 _err "The apache config file is restored."
5fc5016d 3037 else
2e87e64b 3038 _err "Sorry, the apache config file can not be restored, please report bug."
5fc5016d 3039 fi
4c2a3841 3040 return 1
4c3b3608 3041 fi
4c2a3841 3042
3043 if [ ! -d "$ACME_DIR" ]; then
4c3b3608 3044 mkdir -p "$ACME_DIR"
3045 chmod 755 "$ACME_DIR"
3046 fi
4c2a3841 3047
44edb2bd 3048 if ! _exec "$_APACHECTL" graceful; then
4c2a3841 3049 _exec_err
610e0f21 3050 _err "$_APACHECTL graceful error, please contact me."
4c3b3608 3051 _restoreApache
4c2a3841 3052 return 1
4c3b3608 3053 fi
3054 usingApache="1"
3055 return 0
3056}
3057
9d725af6 3058#find the real nginx conf file
3059#backup
3060#set the nginx conf
3061#returns the real nginx conf file
3062_setNginx() {
3063 _d="$1"
3064 _croot="$2"
3065 _thumbpt="$3"
37f39c08 3066
9d725af6 3067 FOUND_REAL_NGINX_CONF=""
9f90618a 3068 FOUND_REAL_NGINX_CONF_LN=""
9d725af6 3069 BACKUP_NGINX_CONF=""
3070 _debug _croot "$_croot"
3071 _start_f="$(echo "$_croot" | cut -d : -f 2)"
3072 _debug _start_f "$_start_f"
3073 if [ -z "$_start_f" ]; then
3074 _debug "find start conf from nginx command"
3075 if [ -z "$NGINX_CONF" ]; then
37f39c08 3076 if ! _exists "nginx"; then
3077 _err "nginx command is not found."
3078 return 1
3079 fi
9d725af6 3080 NGINX_CONF="$(nginx -V 2>&1 | _egrep_o "--conf-path=[^ ]* " | tr -d " ")"
3081 _debug NGINX_CONF "$NGINX_CONF"
3082 NGINX_CONF="$(echo "$NGINX_CONF" | cut -d = -f 2)"
3083 _debug NGINX_CONF "$NGINX_CONF"
1081d98b 3084 if [ -z "$NGINX_CONF" ]; then
3085 _err "Can not find nginx conf."
3086 NGINX_CONF=""
3087 return 1
3088 fi
9d725af6 3089 if [ ! -f "$NGINX_CONF" ]; then
3090 _err "'$NGINX_CONF' doesn't exist."
3091 NGINX_CONF=""
3092 return 1
3093 fi
3094 _debug "Found nginx conf file:$NGINX_CONF"
3095 fi
3096 _start_f="$NGINX_CONF"
3097 fi
03f8d6e9 3098 _debug "Start detect nginx conf for $_d from:$_start_f"
9d725af6 3099 if ! _checkConf "$_d" "$_start_f"; then
5378d9ca 3100 _err "Can not find conf file for domain $d"
9d725af6 3101 return 1
3102 fi
3103 _info "Found conf file: $FOUND_REAL_NGINX_CONF"
3104
9f90618a 3105 _ln=$FOUND_REAL_NGINX_CONF_LN
03f8d6e9 3106 _debug "_ln" "$_ln"
3107
3108 _lnn=$(_math $_ln + 1)
3109 _debug _lnn "$_lnn"
3110 _start_tag="$(sed -n "$_lnn,${_lnn}p" "$FOUND_REAL_NGINX_CONF")"
3111 _debug "_start_tag" "$_start_tag"
3112 if [ "$_start_tag" = "$NGINX_START" ]; then
3113 _info "The domain $_d is already configured, skip"
3114 FOUND_REAL_NGINX_CONF=""
3115 return 0
3116 fi
3117
9d725af6 3118 mkdir -p "$DOMAIN_BACKUP_PATH"
3119 _backup_conf="$DOMAIN_BACKUP_PATH/$_d.nginx.conf"
3120 _debug _backup_conf "$_backup_conf"
3121 BACKUP_NGINX_CONF="$_backup_conf"
3122 _info "Backup $FOUND_REAL_NGINX_CONF to $_backup_conf"
3123 if ! cp "$FOUND_REAL_NGINX_CONF" "$_backup_conf"; then
3124 _err "backup error."
3125 FOUND_REAL_NGINX_CONF=""
3126 return 1
3127 fi
3128
37f39c08 3129 if ! _exists "nginx"; then
3130 _err "nginx command is not found."
3131 return 1
3132 fi
9d725af6 3133 _info "Check the nginx conf before setting up."
3134 if ! _exec "nginx -t" >/dev/null; then
3135 _exec_err
3136 return 1
3137 fi
3138
3139 _info "OK, Set up nginx config file"
9d725af6 3140
302c41ed 3141 if ! sed -n "1,${_ln}p" "$_backup_conf" >"$FOUND_REAL_NGINX_CONF"; then
03f8d6e9 3142 cat "$_backup_conf" >"$FOUND_REAL_NGINX_CONF"
9d725af6 3143 _err "write nginx conf error, but don't worry, the file is restored to the original version."
3144 return 1
3145 fi
3146
03f8d6e9 3147 echo "$NGINX_START
9d725af6 3148location ~ \"^/\.well-known/acme-challenge/([-_a-zA-Z0-9]+)\$\" {
3149 default_type text/plain;
3150 return 200 \"\$1.$_thumbpt\";
3c07f57a 3151}
03f8d6e9 3152#NGINX_START
3153" >>"$FOUND_REAL_NGINX_CONF"
9d725af6 3154
03f8d6e9 3155 if ! sed -n "${_lnn},99999p" "$_backup_conf" >>"$FOUND_REAL_NGINX_CONF"; then
3156 cat "$_backup_conf" >"$FOUND_REAL_NGINX_CONF"
9d725af6 3157 _err "write nginx conf error, but don't worry, the file is restored."
3158 return 1
3159 fi
df711b0e 3160 _debug3 "Modified config:$(cat $FOUND_REAL_NGINX_CONF)"
9d725af6 3161 _info "nginx conf is done, let's check it again."
3162 if ! _exec "nginx -t" >/dev/null; then
3163 _exec_err
3164 _err "It seems that nginx conf was broken, let's restore."
302c41ed 3165 cat "$_backup_conf" >"$FOUND_REAL_NGINX_CONF"
9d725af6 3166 return 1
3167 fi
3168
3169 _info "Reload nginx"
3170 if ! _exec "nginx -s reload" >/dev/null; then
3171 _exec_err
3172 _err "It seems that nginx reload error, let's restore."
302c41ed 3173 cat "$_backup_conf" >"$FOUND_REAL_NGINX_CONF"
9d725af6 3174 return 1
3175 fi
3176
3177 return 0
3178}
3179
3180#d , conf
3181_checkConf() {
3182 _d="$1"
3183 _c_file="$2"
3184 _debug "Start _checkConf from:$_c_file"
3185 if [ ! -f "$2" ] && ! echo "$2" | grep '*$' >/dev/null && echo "$2" | grep '*' >/dev/null; then
3186 _debug "wildcard"
3187 for _w_f in $2; do
7f618e7e 3188 if [ -f "$_w_f" ] && _checkConf "$1" "$_w_f"; then
9d725af6 3189 return 0
3190 fi
3191 done
3192 #not found
3193 return 1
3194 elif [ -f "$2" ]; then
3195 _debug "single"
3196 if _isRealNginxConf "$1" "$2"; then
3197 _debug "$2 is found."
3198 FOUND_REAL_NGINX_CONF="$2"
3199 return 0
3200 fi
5a44e63c 3201 if cat "$2" | tr "\t" " " | grep "^ *include *.*;" >/dev/null; then
9d725af6 3202 _debug "Try include files"
5a44e63c 3203 for included in $(cat "$2" | tr "\t" " " | grep "^ *include *.*;" | sed "s/include //" | tr -d " ;"); do
9d725af6 3204 _debug "check included $included"
e353f66e 3205 if ! _startswith "$included" "/" && _exists dirname; then
40e8c5e2 3206 _relpath="$(dirname "$2")"
0a4ef171 3207 _debug "_relpath" "$_relpath"
2b5e2d47 3208 included="$_relpath/$included"
0a4ef171 3209 fi
9d725af6 3210 if _checkConf "$1" "$included"; then
3211 return 0
3212 fi
3213 done
3214 fi
3215 return 1
3216 else
3217 _debug "$2 not found."
3218 return 1
3219 fi
3220 return 1
3221}
3222
3223#d , conf
3224_isRealNginxConf() {
3225 _debug "_isRealNginxConf $1 $2"
302c41ed 3226 if [ -f "$2" ]; then
3f1a76d9 3227 for _fln in $(tr "\t" ' ' <"$2" | grep -n "^ *server_name.* $1" | cut -d : -f 1); do
302c41ed 3228 _debug _fln "$_fln"
3229 if [ "$_fln" ]; then
04a609b5 3230 _start=$(tr "\t" ' ' <"$2" | _head_n "$_fln" | grep -n "^ *server *" | grep -v server_name | _tail_n 1)
9f90618a 3231 _debug "_start" "$_start"
3232 _start_n=$(echo "$_start" | cut -d : -f 1)
3233 _start_nn=$(_math $_start_n + 1)
3234 _debug "_start_n" "$_start_n"
3235 _debug "_start_nn" "$_start_nn"
3236
3237 _left="$(sed -n "${_start_nn},99999p" "$2")"
3238 _debug2 _left "$_left"
012dd698 3239 _end="$(echo "$_left" | tr "\t" ' ' | grep -n "^ *server *" | grep -v server_name | _head_n 1)"
3240 _debug "_end" "$_end"
3241 if [ "$_end" ]; then
9f90618a 3242 _end_n=$(echo "$_end" | cut -d : -f 1)
3243 _debug "_end_n" "$_end_n"
3244 _seg_n=$(echo "$_left" | sed -n "1,${_end_n}p")
3245 else
3246 _seg_n="$_left"
3247 fi
3248
3249 _debug "_seg_n" "$_seg_n"
3250
04a609b5 3251 _skip_ssl=1
d1067c60 3252 for _listen_i in $(echo "$_seg_n" | tr "\t" ' ' | grep "^ *listen" | tr -d " "); do
04a609b5 3253 if [ "$_listen_i" ]; then
9841063d 3254 if [ "$(echo "$_listen_i" | _egrep_o "listen.*ssl")" ]; then
04a609b5 3255 _debug2 "$_listen_i is ssl"
3256 else
3257 _debug2 "$_listen_i is plain text"
3258 _skip_ssl=""
c05eb0b1 3259 break
3260 fi
04a609b5 3261 fi
3262 done
3263
3264 if [ "$_skip_ssl" = "1" ]; then
9f90618a 3265 _debug "ssl on, skip"
241cfc43 3266 else
3267 FOUND_REAL_NGINX_CONF_LN=$_fln
3268 _debug3 "found FOUND_REAL_NGINX_CONF_LN" "$FOUND_REAL_NGINX_CONF_LN"
3269 return 0
450efea1 3270 fi
302c41ed 3271 fi
3272 done
9d725af6 3273 fi
302c41ed 3274 return 1
9d725af6 3275}
3276
3277#restore all the nginx conf
3278_restoreNginx() {
5d943a35 3279 if [ -z "$NGINX_RESTORE_VLIST" ]; then
9d725af6 3280 _debug "No need to restore nginx, skip."
3281 return
3282 fi
3283 _debug "_restoreNginx"
5d943a35 3284 _debug "NGINX_RESTORE_VLIST" "$NGINX_RESTORE_VLIST"
9d725af6 3285
5d943a35 3286 for ng_entry in $(echo "$NGINX_RESTORE_VLIST" | tr "$dvsep" ' '); do
9d725af6 3287 _debug "ng_entry" "$ng_entry"
3288 _nd=$(echo "$ng_entry" | cut -d "$sep" -f 1)
3289 _ngconf=$(echo "$ng_entry" | cut -d "$sep" -f 2)
3290 _ngbackupconf=$(echo "$ng_entry" | cut -d "$sep" -f 3)
3291 _info "Restoring from $_ngbackupconf to $_ngconf"
302c41ed 3292 cat "$_ngbackupconf" >"$_ngconf"
9d725af6 3293 done
3294
3295 _info "Reload nginx"
3296 if ! _exec "nginx -s reload" >/dev/null; then
3297 _exec_err
3298 _err "It seems that nginx reload error, please report bug."
3299 return 1
3300 fi
3301 return 0
3302}
3303
5ef501c5 3304_clearup() {
44edb2bd 3305 _stopserver "$serverproc"
4c3b3608 3306 serverproc=""
3307 _restoreApache
9d725af6 3308 _restoreNginx
800e3f45 3309 _clearupdns
4c2a3841 3310 if [ -z "$DEBUG" ]; then
e22bcf7c 3311 rm -f "$TLS_CONF"
3312 rm -f "$TLS_CERT"
3313 rm -f "$TLS_KEY"
3314 rm -f "$TLS_CSR"
3315 fi
4c3b3608 3316}
3317
800e3f45 3318_clearupdns() {
3319 _debug "_clearupdns"
b5ca9bba 3320 _debug "dns_entries" "$dns_entries"
3321
3322 if [ -z "$dns_entries" ]; then
65b22b49 3323 _debug "skip dns."
800e3f45 3324 return
3325 fi
875625b1 3326 _info "Removing DNS records."
800e3f45 3327
b5ca9bba 3328 for entry in $dns_entries; do
3329 d=$(_getfield "$entry" 1)
3330 txtdomain=$(_getfield "$entry" 2)
3331 aliasDomain=$(_getfield "$entry" 3)
9a733a57 3332 _currentRoot=$(_getfield "$entry" 4)
b5ca9bba 3333 txt=$(_getfield "$entry" 5)
3334 d_api=$(_getfield "$entry" 6)
3335 _debug "d" "$d"
3336 _debug "txtdomain" "$txtdomain"
3337 _debug "aliasDomain" "$aliasDomain"
9a733a57 3338 _debug "_currentRoot" "$_currentRoot"
b5ca9bba 3339 _debug "txt" "$txt"
3340 _debug "d_api" "$d_api"
3341 if [ "$d_api" = "$txt" ]; then
3342 d_api=""
800e3f45 3343 fi
4c2a3841 3344
4c2a3841 3345 if [ -z "$d_api" ]; then
800e3f45 3346 _info "Not Found domain api file: $d_api"
3347 continue
3348 fi
4c2a3841 3349
b5ca9bba 3350 if [ "$aliasDomain" ]; then
3351 txtdomain="$aliasDomain"
3352 fi
3353
800e3f45 3354 (
d5ec5f80 3355 if ! . "$d_api"; then
800e3f45 3356 _err "Load file $d_api error. Please check your api file and try again."
3357 return 1
3358 fi
4c2a3841 3359
800e3f45 3360 rmcommand="${_currentRoot}_rm"
d5ec5f80 3361 if ! _exists "$rmcommand"; then
800e3f45 3362 _err "It seems that your api file doesn't define $rmcommand"
3363 return 1
3364 fi
a180b95c 3365 _info "Removing txt: $txt for domain: $txtdomain"
21f201e3 3366 if ! $rmcommand "$txtdomain" "$txt"; then
800e3f45 3367 _err "Error removing txt for domain:$txtdomain"
3368 return 1
3369 fi
a180b95c 3370 _info "Removed: Success"
800e3f45 3371 )
4c2a3841 3372
800e3f45 3373 done
3374}
3375
4c3b3608 3376# webroot removelevel tokenfile
3377_clearupwebbroot() {
3378 __webroot="$1"
4c2a3841 3379 if [ -z "$__webroot" ]; then
4c3b3608 3380 _debug "no webroot specified, skip"
3381 return 0
3382 fi
4c2a3841 3383
dcf9cb58 3384 _rmpath=""
4c2a3841 3385 if [ "$2" = '1' ]; then
dcf9cb58 3386 _rmpath="$__webroot/.well-known"
4c2a3841 3387 elif [ "$2" = '2' ]; then
dcf9cb58 3388 _rmpath="$__webroot/.well-known/acme-challenge"
4c2a3841 3389 elif [ "$2" = '3' ]; then
dcf9cb58 3390 _rmpath="$__webroot/.well-known/acme-challenge/$3"
4c3b3608 3391 else
cc179731 3392 _debug "Skip for removelevel:$2"
4c3b3608 3393 fi
4c2a3841 3394
3395 if [ "$_rmpath" ]; then
3396 if [ "$DEBUG" ]; then
dcf9cb58 3397 _debug "Debugging, skip removing: $_rmpath"
3398 else
3399 rm -rf "$_rmpath"
3400 fi
3401 fi
4c2a3841 3402
4c3b3608 3403 return 0
3404
3405}
3406
b0070f03 3407_on_before_issue() {
af1cc3b3 3408 _chk_web_roots="$1"
02140ce7 3409 _chk_main_domain="$2"
3410 _chk_alt_domains="$3"
85e1f4ea 3411 _chk_pre_hook="$4"
3412 _chk_local_addr="$5"
30c2d84c 3413 _debug _on_before_issue
38f1b4d2 3414 _debug _chk_main_domain "$_chk_main_domain"
3415 _debug _chk_alt_domains "$_chk_alt_domains"
d0f7c309 3416 #run pre hook
85e1f4ea 3417 if [ "$_chk_pre_hook" ]; then
3418 _info "Run pre hook:'$_chk_pre_hook'"
d0f7c309 3419 if ! (
e1643620
BS
3420 export Le_Domain="$_chk_main_domain"
3421 export Le_Alt="$_chk_alt_domains"
85e1f4ea 3422 cd "$DOMAIN_PATH" && eval "$_chk_pre_hook"
d0f7c309 3423 ); then
3424 _err "Error when run pre hook."
3425 return 1
3426 fi
3427 fi
3428
af1cc3b3 3429 if _hasfield "$_chk_web_roots" "$NO_VALUE"; then
3794b5cb 3430 if ! _exists "socat"; then
3431 _err "Please install socat tools first."
0463b5d6 3432 return 1
3433 fi
0463b5d6 3434 fi
3435
85e1f4ea 3436 _debug Le_LocalAddress "$_chk_local_addr"
4c2a3841 3437
0463b5d6 3438 _index=1
3439 _currentRoot=""
3440 _addrIndex=1
38f1b4d2 3441 _w_index=1
931d19ee 3442 while true; do
931d19ee 3443 d="$(echo "$_chk_main_domain,$_chk_alt_domains," | cut -d , -f "$_w_index")"
3444 _w_index="$(_math "$_w_index" + 1)"
3445 _debug d "$d"
3446 if [ -z "$d" ]; then
3447 break
3448 fi
d5ec5f80 3449 _debug "Check for domain" "$d"
af1cc3b3 3450 _currentRoot="$(_getfield "$_chk_web_roots" $_index)"
0463b5d6 3451 _debug "_currentRoot" "$_currentRoot"
3452 _index=$(_math $_index + 1)
3453 _checkport=""
4c2a3841 3454 if [ "$_currentRoot" = "$NO_VALUE" ]; then
0463b5d6 3455 _info "Standalone mode."
4c2a3841 3456 if [ -z "$Le_HTTPPort" ]; then
0463b5d6 3457 Le_HTTPPort=80
e7f7e96d 3458 _cleardomainconf "Le_HTTPPort"
0463b5d6 3459 else
4c2a3841 3460 _savedomainconf "Le_HTTPPort" "$Le_HTTPPort"
0463b5d6 3461 fi
3462 _checkport="$Le_HTTPPort"
43ff787b 3463 elif [ "$_currentRoot" = "$W_ALPN" ]; then
3464 _info "Standalone alpn mode."
4c2a3841 3465 if [ -z "$Le_TLSPort" ]; then
0463b5d6 3466 Le_TLSPort=443
3467 else
4c2a3841 3468 _savedomainconf "Le_TLSPort" "$Le_TLSPort"
0463b5d6 3469 fi
3470 _checkport="$Le_TLSPort"
3471 fi
4c2a3841 3472
3473 if [ "$_checkport" ]; then
0463b5d6 3474 _debug _checkport "$_checkport"
85e1f4ea 3475 _checkaddr="$(_getfield "$_chk_local_addr" $_addrIndex)"
0463b5d6 3476 _debug _checkaddr "$_checkaddr"
4c2a3841 3477
0463b5d6 3478 _addrIndex="$(_math $_addrIndex + 1)"
4c2a3841 3479
0463b5d6 3480 _netprc="$(_ss "$_checkport" | grep "$_checkport")"
3481 netprc="$(echo "$_netprc" | grep "$_checkaddr")"
4c2a3841 3482 if [ -z "$netprc" ]; then
5cc1d952 3483 netprc="$(echo "$_netprc" | grep "$LOCAL_ANY_ADDRESS:$_checkport")"
0463b5d6 3484 fi
4c2a3841 3485 if [ "$netprc" ]; then
0463b5d6 3486 _err "$netprc"
4c2a3841 3487 _err "tcp port $_checkport is already used by $(echo "$netprc" | cut -d : -f 4)"
0463b5d6 3488 _err "Please stop it first"
3489 return 1
3490 fi
3491 fi
3492 done
3493
af1cc3b3 3494 if _hasfield "$_chk_web_roots" "apache"; then
4c2a3841 3495 if ! _setApache; then
0463b5d6 3496 _err "set up apache error. Report error to me."
3497 return 1
3498 fi
3499 else
3500 usingApache=""
3501 fi
3502
b0070f03 3503}
3504
3505_on_issue_err() {
85e1f4ea 3506 _chk_post_hook="$1"
58e4d337 3507 _chk_vlist="$2"
30c2d84c 3508 _debug _on_issue_err
cd8fc359 3509
4c2a3841 3510 if [ "$LOG_FILE" ]; then
a73c5b33 3511 _err "Please check log file for more details: $LOG_FILE"
3512 else
54ae008d 3513 _err "Please add '--debug' or '--log' to check more details."
a73c5b33 3514 _err "See: $_DEBUG_WIKI"
3515 fi
4c2a3841 3516
b0070f03 3517 #run the post hook
85e1f4ea 3518 if [ "$_chk_post_hook" ]; then
3519 _info "Run post hook:'$_chk_post_hook'"
b0070f03 3520 if ! (
85e1f4ea 3521 cd "$DOMAIN_PATH" && eval "$_chk_post_hook"
4c2a3841 3522 ); then
b0070f03 3523 _err "Error when run post hook."
3524 return 1
3525 fi
3526 fi
58e4d337 3527
3528 #trigger the validation to flush the pending authz
ea722da3 3529 _debug2 "_chk_vlist" "$_chk_vlist"
58e4d337 3530 if [ "$_chk_vlist" ]; then
3531 (
c719a61e 3532 _debug2 "start to deactivate authz"
3533 ventries=$(echo "$_chk_vlist" | tr "$dvsep" ' ')
3534 for ventry in $ventries; do
3535 d=$(echo "$ventry" | cut -d "$sep" -f 1)
3536 keyauthorization=$(echo "$ventry" | cut -d "$sep" -f 2)
3537 uri=$(echo "$ventry" | cut -d "$sep" -f 3)
3538 vtype=$(echo "$ventry" | cut -d "$sep" -f 4)
3539 _currentRoot=$(echo "$ventry" | cut -d "$sep" -f 5)
f94433e5 3540 __trigger_validation "$uri" "$keyauthorization"
c719a61e 3541 done
58e4d337 3542 )
3543 fi
3544
bd04638d 3545 if [ "$_ACME_IS_RENEW" = "1" ] && _hasfield "$Le_Webroot" "$W_DNS"; then
309bec47 3546 _err "$_DNS_MANUAL_ERR"
3547 fi
3548
58e4d337 3549 if [ "$DEBUG" ] && [ "$DEBUG" -gt "0" ]; then
3550 _debug "$(_dlg_versions)"
3551 fi
3552
b0070f03 3553}
3554
3555_on_issue_success() {
85e1f4ea 3556 _chk_post_hook="$1"
3557 _chk_renew_hook="$2"
30c2d84c 3558 _debug _on_issue_success
c6b68551 3559
b0070f03 3560 #run the post hook
85e1f4ea 3561 if [ "$_chk_post_hook" ]; then
3562 _info "Run post hook:'$_chk_post_hook'"
b0070f03 3563 if ! (
c7849a43 3564 export CERT_PATH
3565 export CERT_KEY_PATH
3566 export CA_CERT_PATH
3567 export CERT_FULLCHAIN_PATH
3568 export Le_Domain="$_main_domain"
85e1f4ea 3569 cd "$DOMAIN_PATH" && eval "$_chk_post_hook"
4c2a3841 3570 ); then
b0070f03 3571 _err "Error when run post hook."
3572 return 1
3573 fi
3574 fi
4c2a3841 3575
b0070f03 3576 #run renew hook
bd04638d 3577 if [ "$_ACME_IS_RENEW" ] && [ "$_chk_renew_hook" ]; then
85e1f4ea 3578 _info "Run renew hook:'$_chk_renew_hook'"
b0070f03 3579 if ! (
c7849a43 3580 export CERT_PATH
3581 export CERT_KEY_PATH
3582 export CA_CERT_PATH
3583 export CERT_FULLCHAIN_PATH
3584 export Le_Domain="$_main_domain"
85e1f4ea 3585 cd "$DOMAIN_PATH" && eval "$_chk_renew_hook"
4c2a3841 3586 ); then
b0070f03 3587 _err "Error when run renew hook."
3588 return 1
3589 fi
4c2a3841 3590 fi
3591
867ec010 3592 if _hasfield "$Le_Webroot" "$W_DNS" && [ -z "$FORCE_DNS_MANUAL" ]; then
309bec47 3593 _err "$_DNS_MANUAL_WARN"
3594 fi
3595
b0070f03 3596}
3597
f96d91cb 3598#account_key_length eab-kid eab-hmac-key
eb59817e 3599registeraccount() {
f96d91cb 3600 _account_key_length="$1"
3601 _eab_id="$2"
3602 _eab_hmac_key="$3"
eb59817e 3603 _initpath
f96d91cb 3604 _regAccount "$_account_key_length" "$_eab_id" "$_eab_hmac_key"
eb59817e 3605}
d404e92d 3606
8a29fbc8 3607__calcAccountKeyHash() {
ca7202eb 3608 [ -f "$ACCOUNT_KEY_PATH" ] && _digest sha256 <"$ACCOUNT_KEY_PATH"
8a29fbc8 3609}
3610
339a8ad6 3611__calc_account_thumbprint() {
3612 printf "%s" "$jwk" | tr -d ' ' | _digest "sha256" | _url_replace
3613}
3614
389518e1 3615_getAccountEmail() {
3616 if [ "$ACCOUNT_EMAIL" ]; then
3617 echo "$ACCOUNT_EMAIL"
3618 return 0
3619 fi
3620 if [ -z "$CA_EMAIL" ]; then
3621 CA_EMAIL="$(_readcaconf CA_EMAIL)"
3622 fi
3623 if [ "$CA_EMAIL" ]; then
3624 echo "$CA_EMAIL"
3625 return 0
3626 fi
3627 _readaccountconf "ACCOUNT_EMAIL"
3628}
3629
57e58ce7 3630#keylength
d404e92d 3631_regAccount() {
3632 _initpath
57e58ce7 3633 _reg_length="$1"
f96d91cb 3634 _eab_id="$2"
3635 _eab_hmac_key="$3"
f87890cb 3636 _debug3 _regAccount "$_regAccount"
c1151b0d 3637 _initAPI
3638
1bbc33a0 3639 mkdir -p "$CA_DIR"
4c2a3841 3640
3641 if [ ! -f "$ACCOUNT_KEY_PATH" ]; then
3642 if ! _create_account_key "$_reg_length"; then
d404e92d 3643 _err "Create account key error."
3644 return 1
3645 fi
3646 fi
4c2a3841 3647
3648 if ! _calcjwk "$ACCOUNT_KEY_PATH"; then
d404e92d 3649 return 1
3650 fi
f96d91cb 3651 if [ "$_eab_id" ] && [ "$_eab_hmac_key" ]; then
3652 _savecaconf CA_EAB_KEY_ID "$_eab_id"
3653 _savecaconf CA_EAB_HMAC_KEY "$_eab_hmac_key"
3654 fi
3655 _eab_id=$(_readcaconf "CA_EAB_KEY_ID")
3656 _eab_hmac_key=$(_readcaconf "CA_EAB_HMAC_KEY")
3657 _secure_debug3 _eab_id "$_eab_id"
3658 _secure_debug3 _eab_hmac_key "$_eab_hmac_key"
389518e1 3659 _email="$(_getAccountEmail)"
3660 if [ "$_email" ]; then
3661 _savecaconf "CA_EMAIL" "$_email"
3662 fi
af3ea2d4 3663
3664 if [ "$ACME_DIRECTORY" = "$CA_ZEROSSL" ]; then
3665 if [ -z "$_eab_id" ] || [ -z "$_eab_hmac_key" ]; then
3666 _info "No EAB credentials found for ZeroSSL, let's get one"
3667 if [ -z "$_email" ]; then
d0b51489 3668 _info "$(__green "$PROJECT_NAME is using ZeroSSL as default CA now.")"
3669 _info "$(__green "Please update your account with an email address first.")"
3670 _info "$(__green "$PROJECT_ENTRY --register-account -m my@example.com")"
3671 _info "See: $(__green "$_ZEROSSL_WIKI")"
af3ea2d4 3672 return 1
3673 fi
3674 _eabresp=$(_post "email=$_email" $_ZERO_EAB_ENDPOINT)
3675 if [ "$?" != "0" ]; then
aa59c46c 3676 _debug2 "$_eabresp"
af3ea2d4 3677 _err "Can not get EAB credentials from ZeroSSL."
3678 return 1
389518e1 3679 fi
8ae08b29 3680 _secure_debug2 _eabresp "$_eabresp"
e0def669 3681 _eab_id="$(echo "$_eabresp" | tr ',}' '\n\n' | grep '"eab_kid"' | cut -d : -f 2 | tr -d '"')"
d0b51489 3682 _secure_debug2 _eab_id "$_eab_id"
af3ea2d4 3683 if [ -z "$_eab_id" ]; then
3684 _err "Can not resolve _eab_id"
3685 return 1
3686 fi
8ae08b29 3687 _eab_hmac_key="$(echo "$_eabresp" | tr ',}' '\n\n' | grep '"eab_hmac_key"' | cut -d : -f 2 | tr -d '"')"
d0b51489 3688 _secure_debug2 _eab_hmac_key "$_eab_hmac_key"
af3ea2d4 3689 if [ -z "$_eab_hmac_key" ]; then
3690 _err "Can not resolve _eab_hmac_key"
3691 return 1
3692 fi
3693 _savecaconf CA_EAB_KEY_ID "$_eab_id"
3694 _savecaconf CA_EAB_HMAC_KEY "$_eab_hmac_key"
389518e1 3695 fi
af3ea2d4 3696 fi
3697 if [ "$_eab_id" ] && [ "$_eab_hmac_key" ]; then
3698 eab_protected="{\"alg\":\"HS256\",\"kid\":\"$_eab_id\",\"url\":\"${ACME_NEW_ACCOUNT}\"}"
3699 _debug3 eab_protected "$eab_protected"
f96d91cb 3700
af3ea2d4 3701 eab_protected64=$(printf "%s" "$eab_protected" | _base64 | _url_replace)
3702 _debug3 eab_protected64 "$eab_protected64"
f96d91cb 3703
af3ea2d4 3704 eab_payload64=$(printf "%s" "$jwk" | _base64 | _url_replace)
3705 _debug3 eab_payload64 "$eab_payload64"
f96d91cb 3706
af3ea2d4 3707 eab_sign_t="$eab_protected64.$eab_payload64"
3708 _debug3 eab_sign_t "$eab_sign_t"
f96d91cb 3709
d0b51489 3710 key_hex="$(_durl_replace_base64 "$_eab_hmac_key" | _dbase64 multi | _hex_dump | tr -d ' ')"
af3ea2d4 3711 _debug3 key_hex "$key_hex"
f96d91cb 3712
af3ea2d4 3713 eab_signature=$(printf "%s" "$eab_sign_t" | _hmac sha256 $key_hex | _base64 | _url_replace)
3714 _debug3 eab_signature "$eab_signature"
f96d91cb 3715
af3ea2d4 3716 externalBinding=",\"externalAccountBinding\":{\"protected\":\"$eab_protected64\", \"payload\":\"$eab_payload64\", \"signature\":\"$eab_signature\"}"
3717 _debug3 externalBinding "$externalBinding"
f87890cb 3718 fi
af3ea2d4 3719 if [ "$_email" ]; then
3720 email_sg="\"contact\": [\"mailto:$_email\"], "
3721 fi
3722 regjson="{$email_sg\"termsOfServiceAgreed\": true$externalBinding}"
4c2a3841 3723
389518e1 3724 _info "Registering account: $ACME_DIRECTORY"
d404e92d 3725
f87890cb 3726 if ! _send_signed_request "${ACME_NEW_ACCOUNT}" "$regjson"; then
3727 _err "Register account Error: $response"
3728 return 1
3729 fi
d404e92d 3730
389518e1 3731 _eabAlreadyBound=""
f87890cb 3732 if [ "$code" = "" ] || [ "$code" = '201' ]; then
3733 echo "$response" >"$ACCOUNT_JSON_PATH"
3734 _info "Registered"
7df20e50 3735 elif [ "$code" = '409' ] || [ "$code" = '200' ]; then
f87890cb 3736 _info "Already registered"
389518e1 3737 elif [ "$code" = '400' ] && _contains "$response" 'The account is not awaiting external account binding'; then
3738 _info "Already register EAB."
3739 _eabAlreadyBound=1
f87890cb 3740 else
3741 _err "Register account Error: $response"
3742 return 1
3743 fi
d404e92d 3744
389518e1 3745 if [ -z "$_eabAlreadyBound" ]; then
3746 _debug2 responseHeaders "$responseHeaders"
3747 _accUri="$(echo "$responseHeaders" | grep -i "^Location:" | _head_n 1 | cut -d ':' -f 2- | tr -d "\r\n ")"
3748 _debug "_accUri" "$_accUri"
3749 if [ -z "$_accUri" ]; then
3750 _err "Can not find account id url."
3751 _err "$responseHeaders"
3752 return 1
3753 fi
3754 _savecaconf "ACCOUNT_URL" "$_accUri"
3755 else
3756 ACCOUNT_URL="$(_readcaconf ACCOUNT_URL)"
7e0b334b 3757 fi
7e0b334b 3758 export ACCOUNT_URL="$_accUri"
d404e92d 3759
f87890cb 3760 CA_KEY_HASH="$(__calcAccountKeyHash)"
3761 _debug "Calc CA_KEY_HASH" "$CA_KEY_HASH"
3762 _savecaconf CA_KEY_HASH "$CA_KEY_HASH"
d404e92d 3763
f87890cb 3764 if [ "$code" = '403' ]; then
3765 _err "It seems that the account key is already deactivated, please use a new account key."
3766 return 1
3767 fi
4c2a3841 3768
f87890cb 3769 ACCOUNT_THUMBPRINT="$(__calc_account_thumbprint)"
3770 _info "ACCOUNT_THUMBPRINT" "$ACCOUNT_THUMBPRINT"
d404e92d 3771}
3772
79e2f8a2 3773#implement updateaccount
3774updateaccount() {
3775 _initpath
3776
79e2f8a2 3777 if [ ! -f "$ACCOUNT_KEY_PATH" ]; then
3778 _err "Account key is not found at: $ACCOUNT_KEY_PATH"
3779 return 1
3780 fi
3781
3782 _accUri=$(_readcaconf "ACCOUNT_URL")
3783 _debug _accUri "$_accUri"
3784
3785 if [ -z "$_accUri" ]; then
3786 _err "The account url is empty, please run '--update-account' first to update the account info first,"
3787 _err "Then try again."
3788 return 1
3789 fi
3790
3791 if ! _calcjwk "$ACCOUNT_KEY_PATH"; then
3792 return 1
3793 fi
3794 _initAPI
3795
389518e1 3796 _email="$(_getAccountEmail)"
af3ea2d4 3797
d53262fa 3798 if [ "$_email" ]; then
af3ea2d4 3799 updjson='{"contact": ["mailto:'$_email'"]}'
79e2f8a2 3800 else
af3ea2d4 3801 updjson='{"contact": []}'
79e2f8a2 3802 fi
3803
79e2f8a2 3804 _send_signed_request "$_accUri" "$updjson"
3805
3806 if [ "$code" = '200' ]; then
72e1a1b2 3807 echo "$response" >"$ACCOUNT_JSON_PATH"
de4c4eed 3808 _info "Account update success for $_accUri."
79e2f8a2 3809 else
3810 _info "Error. The account was not updated."
3811 return 1
3812 fi
3813}
3814
422dd1fa 3815#Implement deactivate account
3816deactivateaccount() {
3817 _initpath
3818
422dd1fa 3819 if [ ! -f "$ACCOUNT_KEY_PATH" ]; then
3820 _err "Account key is not found at: $ACCOUNT_KEY_PATH"
3821 return 1
3822 fi
3823
3824 _accUri=$(_readcaconf "ACCOUNT_URL")
3825 _debug _accUri "$_accUri"
3826
3827 if [ -z "$_accUri" ]; then
3828 _err "The account url is empty, please run '--update-account' first to update the account info first,"
3829 _err "Then try again."
3830 return 1
3831 fi
3832
3833 if ! _calcjwk "$ACCOUNT_KEY_PATH"; then
3834 return 1
3835 fi
3836 _initAPI
3837
af3ea2d4 3838 _djson="{\"status\":\"deactivated\"}"
3839
d2cde379 3840 if _send_signed_request "$_accUri" "$_djson" && _contains "$response" '"deactivated"'; then
422dd1fa 3841 _info "Deactivate account success for $_accUri."
3842 _accid=$(echo "$response" | _egrep_o "\"id\" *: *[^,]*," | cut -d : -f 2 | tr -d ' ,')
3843 elif [ "$code" = "403" ]; then
3844 _info "The account is already deactivated."
3845 _accid=$(_getfield "$_accUri" "999" "/")
3846 else
3847 _err "Deactivate: account failed for $_accUri."
3848 return 1
3849 fi
3850
3851 _debug "Account id: $_accid"
3852 if [ "$_accid" ]; then
3853 _deactivated_account_path="$CA_DIR/deactivated/$_accid"
3854 _debug _deactivated_account_path "$_deactivated_account_path"
3855 if mkdir -p "$_deactivated_account_path"; then
3856 _info "Moving deactivated account info to $_deactivated_account_path/"
3857 mv "$CA_CONF" "$_deactivated_account_path/"
3858 mv "$ACCOUNT_JSON_PATH" "$_deactivated_account_path/"
3859 mv "$ACCOUNT_KEY_PATH" "$_deactivated_account_path/"
3860 else
3861 _err "Can not create dir: $_deactivated_account_path, try to remove the deactivated account key."
3862 rm -f "$CA_CONF"
3863 rm -f "$ACCOUNT_JSON_PATH"
3864 rm -f "$ACCOUNT_KEY_PATH"
3865 fi
3866 fi
3867}
3868
a61fe418 3869# domain folder file
3870_findHook() {
3871 _hookdomain="$1"
3872 _hookcat="$2"
3873 _hookname="$3"
3874
c7b16249 3875 if [ -f "$_SCRIPT_HOME/$_hookcat/$_hookname" ]; then
3876 d_api="$_SCRIPT_HOME/$_hookcat/$_hookname"
3877 elif [ -f "$_SCRIPT_HOME/$_hookcat/$_hookname.sh" ]; then
3878 d_api="$_SCRIPT_HOME/$_hookcat/$_hookname.sh"
b50e701c 3879 elif [ "$_hookdomain" ] && [ -f "$LE_WORKING_DIR/$_hookdomain/$_hookname" ]; then
a61fe418 3880 d_api="$LE_WORKING_DIR/$_hookdomain/$_hookname"
b50e701c 3881 elif [ "$_hookdomain" ] && [ -f "$LE_WORKING_DIR/$_hookdomain/$_hookname.sh" ]; then
a61fe418 3882 d_api="$LE_WORKING_DIR/$_hookdomain/$_hookname.sh"
4c2a3841 3883 elif [ -f "$LE_WORKING_DIR/$_hookname" ]; then
a61fe418 3884 d_api="$LE_WORKING_DIR/$_hookname"
4c2a3841 3885 elif [ -f "$LE_WORKING_DIR/$_hookname.sh" ]; then
a61fe418 3886 d_api="$LE_WORKING_DIR/$_hookname.sh"
4c2a3841 3887 elif [ -f "$LE_WORKING_DIR/$_hookcat/$_hookname" ]; then
a61fe418 3888 d_api="$LE_WORKING_DIR/$_hookcat/$_hookname"
4c2a3841 3889 elif [ -f "$LE_WORKING_DIR/$_hookcat/$_hookname.sh" ]; then
a61fe418 3890 d_api="$LE_WORKING_DIR/$_hookcat/$_hookname.sh"
3891 fi
3892
3893 printf "%s" "$d_api"
3894}
3895
f940b2a5 3896#domain
3897__get_domain_new_authz() {
3898 _gdnd="$1"
3899 _info "Getting new-authz for domain" "$_gdnd"
40ef86f4 3900 _initAPI
f940b2a5 3901 _Max_new_authz_retry_times=5
3902 _authz_i=0
4c2a3841 3903 while [ "$_authz_i" -lt "$_Max_new_authz_retry_times" ]; do
efd96153 3904 _debug "Try new-authz for the $_authz_i time."
48d9a8c1 3905 if ! _send_signed_request "${ACME_NEW_AUTHZ}" "{\"resource\": \"new-authz\", \"identifier\": {\"type\": \"dns\", \"value\": \"$(_idn "$_gdnd")\"}}"; then
f940b2a5 3906 _err "Can not get domain new authz."
3907 return 1
3908 fi
5413bf87 3909 if _contains "$response" "No registration exists matching provided key"; then
3910 _err "It seems there is an error, but it's recovered now, please try again."
3911 _err "If you see this message for a second time, please report bug: $(__green "$PROJECT")"
3912 _clearcaconf "CA_KEY_HASH"
3913 break
3914 fi
4c2a3841 3915 if ! _contains "$response" "An error occurred while processing your request"; then
f940b2a5 3916 _info "The new-authz request is ok."
3917 break
3918 fi
3919 _authz_i="$(_math "$_authz_i" + 1)"
9e45ac93 3920 _info "The server is busy, Sleep $_authz_i to retry."
f940b2a5 3921 _sleep "$_authz_i"
4c2a3841 3922 done
f940b2a5 3923
4c2a3841 3924 if [ "$_authz_i" = "$_Max_new_authz_retry_times" ]; then
efd96153 3925 _err "new-authz retry reach the max $_Max_new_authz_retry_times times."
f940b2a5 3926 fi
4c2a3841 3927
78915896 3928 if [ "$code" ] && [ "$code" != '201' ]; then
f940b2a5 3929 _err "new-authz error: $response"
3930 return 1
3931 fi
3932
3933}
3934
58e4d337 3935#uri keyAuthorization
f94433e5 3936__trigger_validation() {
8bd12ed0 3937 _debug2 "Trigger domain validation."
58e4d337 3938 _t_url="$1"
3939 _debug2 _t_url "$_t_url"
3940 _t_key_authz="$2"
3941 _debug2 _t_key_authz "$_t_key_authz"
920cab6f
K
3942 _t_vtype="$3"
3943 _debug2 _t_vtype "$_t_vtype"
af3ea2d4 3944
3945 _send_signed_request "$_t_url" "{}"
3946
58e4d337 3947}
3948
b5ca9bba 3949#endpoint domain type
10eec7d4 3950_ns_lookup_impl() {
b5ca9bba 3951 _ns_ep="$1"
3952 _ns_domain="$2"
3953 _ns_type="$3"
3954 _debug2 "_ns_ep" "$_ns_ep"
3955 _debug2 "_ns_domain" "$_ns_domain"
3956 _debug2 "_ns_type" "$_ns_type"
3957
3958 response="$(_H1="accept: application/dns-json" _get "$_ns_ep?name=$_ns_domain&type=$_ns_type")"
3959 _ret=$?
3960 _debug2 "response" "$response"
3961 if [ "$_ret" != "0" ]; then
3962 return $_ret
3963 fi
3964 _answers="$(echo "$response" | tr '{}' '<>' | _egrep_o '"Answer":\[[^]]*]' | tr '<>' '\n\n')"
3965 _debug2 "_answers" "$_answers"
3966 echo "$_answers"
3967}
3968
3969#domain, type
3970_ns_lookup_cf() {
3971 _cf_ld="$1"
3972 _cf_ld_type="$2"
3973 _cf_ep="https://cloudflare-dns.com/dns-query"
10eec7d4 3974 _ns_lookup_impl "$_cf_ep" "$_cf_ld" "$_cf_ld_type"
b5ca9bba 3975}
3976
3977#domain, type
3978_ns_purge_cf() {
3979 _cf_d="$1"
3980 _cf_d_type="$2"
3981 _debug "Cloudflare purge $_cf_d_type record for domain $_cf_d"
b9b2cd27 3982 _cf_purl="https://cloudflare-dns.com/api/v1/purge?domain=$_cf_d&type=$_cf_d_type"
b5ca9bba 3983 response="$(_post "" "$_cf_purl")"
3984 _debug2 response "$response"
3985}
3986
10eec7d4 3987#checks if cf server is available
3988_ns_is_available_cf() {
e65144a1 3989 if _get "https://cloudflare-dns.com" "" 1 >/dev/null 2>&1; then
3990 return 0
3991 else
3992 return 1
3993 fi
3994}
3995
3996_ns_is_available_google() {
3997 if _get "https://dns.google" "" 1 >/dev/null 2>&1; then
10eec7d4 3998 return 0
3999 else
4000 return 1
4001 fi
4002}
4003
4004#domain, type
4005_ns_lookup_google() {
4006 _cf_ld="$1"
4007 _cf_ld_type="$2"
4008 _cf_ep="https://dns.google/resolve"
4009 _ns_lookup_impl "$_cf_ep" "$_cf_ld" "$_cf_ld_type"
4010}
4011
e65144a1 4012_ns_is_available_ali() {
4013 if _get "https://dns.alidns.com" "" 1 >/dev/null 2>&1; then
4014 return 0
4015 else
4016 return 1
4017 fi
4018}
4019
4020#domain, type
4021_ns_lookup_ali() {
4022 _cf_ld="$1"
4023 _cf_ld_type="$2"
4024 _cf_ep="https://dns.alidns.com/resolve"
4025 _ns_lookup_impl "$_cf_ep" "$_cf_ld" "$_cf_ld_type"
4026}
4027
4028_ns_is_available_dp() {
a0c5d175 4029 if _get "https://doh.pub" "" 1 >/dev/null 2>&1; then
e65144a1 4030 return 0
4031 else
4032 return 1
4033 fi
4034}
4035
4036#dnspod
4037_ns_lookup_dp() {
4038 _cf_ld="$1"
4039 _cf_ld_type="$2"
4040 _cf_ep="https://doh.pub/dns-query"
4041 _ns_lookup_impl "$_cf_ep" "$_cf_ld" "$_cf_ld_type"
4042}
4043
10eec7d4 4044#domain, type
4045_ns_lookup() {
4046 if [ -z "$DOH_USE" ]; then
4047 _debug "Detect dns server first."
4048 if _ns_is_available_cf; then
4049 _debug "Use cloudflare doh server"
4050 export DOH_USE=$DOH_CLOUDFLARE
e65144a1 4051 elif _ns_is_available_google; then
10eec7d4 4052 _debug "Use google doh server"
4053 export DOH_USE=$DOH_GOOGLE
e65144a1 4054 elif _ns_is_available_ali; then
4055 _debug "Use aliyun doh server"
4056 export DOH_USE=$DOH_ALI
290beb90 4057 elif _ns_is_available_dp; then
e65144a1 4058 _debug "Use dns pod doh server"
4059 export DOH_USE=$DOH_DP
e0c32ce7 4060 else
4061 _err "No doh"
10eec7d4 4062 fi
4063 fi
4064
4065 if [ "$DOH_USE" = "$DOH_CLOUDFLARE" ] || [ -z "$DOH_USE" ]; then
4066 _ns_lookup_cf "$@"
e65144a1 4067 elif [ "$DOH_USE" = "$DOH_GOOGLE" ]; then
10eec7d4 4068 _ns_lookup_google "$@"
e65144a1 4069 elif [ "$DOH_USE" = "$DOH_ALI" ]; then
4070 _ns_lookup_ali "$@"
4071 elif [ "$DOH_USE" = "$DOH_DP" ]; then
4072 _ns_lookup_dp "$@"
4073 else
4074 _err "Unknown doh provider: DOH_USE=$DOH_USE"
10eec7d4 4075 fi
4076
4077}
4078
b5ca9bba 4079#txtdomain, alias, txt
4080__check_txt() {
4081 _c_txtdomain="$1"
4082 _c_aliasdomain="$2"
4083 _c_txt="$3"
4084 _debug "_c_txtdomain" "$_c_txtdomain"
4085 _debug "_c_aliasdomain" "$_c_aliasdomain"
4086 _debug "_c_txt" "$_c_txt"
10eec7d4 4087 _answers="$(_ns_lookup "$_c_aliasdomain" TXT)"
b5ca9bba 4088 _contains "$_answers" "$_c_txt"
4089
4090}
4091
4092#txtdomain
4093__purge_txt() {
4094 _p_txtdomain="$1"
4095 _debug _p_txtdomain "$_p_txtdomain"
10eec7d4 4096 if [ "$DOH_USE" = "$DOH_CLOUDFLARE" ] || [ -z "$DOH_USE" ]; then
4097 _ns_purge_cf "$_p_txtdomain" "TXT"
4098 else
e65144a1 4099 _debug "no purge api for this doh api, just sleep 5 secs"
10eec7d4 4100 _sleep 5
4101 fi
4102
b5ca9bba 4103}
4104
4105#wait and check each dns entries
4106_check_dns_entries() {
4107 _success_txt=","
4108 _end_time="$(_time)"
4109 _end_time="$(_math "$_end_time" + 1200)" #let's check no more than 20 minutes.
4110
4111 while [ "$(_time)" -le "$_end_time" ]; do
8a24275b 4112 _info "You can use '--dnssleep' to disable public dns checks."
4113 _info "See: $_DNSCHECK_WIKI"
b5ca9bba 4114 _left=""
4115 for entry in $dns_entries; do
4116 d=$(_getfield "$entry" 1)
4117 txtdomain=$(_getfield "$entry" 2)
0093dc3d 4118 txtdomain=$(_idn "$txtdomain")
b5ca9bba 4119 aliasDomain=$(_getfield "$entry" 3)
0093dc3d 4120 aliasDomain=$(_idn "$aliasDomain")
b5ca9bba 4121 txt=$(_getfield "$entry" 5)
4122 d_api=$(_getfield "$entry" 6)
4123 _debug "d" "$d"
4124 _debug "txtdomain" "$txtdomain"
4125 _debug "aliasDomain" "$aliasDomain"
4126 _debug "txt" "$txt"
4127 _debug "d_api" "$d_api"
4128 _info "Checking $d for $aliasDomain"
4129 if _contains "$_success_txt" ",$txt,"; then
4130 _info "Already success, continue next one."
4131 continue
4132 fi
4133
4134 if __check_txt "$txtdomain" "$aliasDomain" "$txt"; then
4135 _info "Domain $d '$aliasDomain' success."
4136 _success_txt="$_success_txt,$txt,"
4137 continue
4138 fi
4139 _left=1
4140 _info "Not valid yet, let's wait 10 seconds and check next one."
b5ca9bba 4141 __purge_txt "$txtdomain"
4142 if [ "$txtdomain" != "$aliasDomain" ]; then
4143 __purge_txt "$aliasDomain"
4144 fi
b9b2cd27 4145 _sleep 10
b5ca9bba 4146 done
4147 if [ "$_left" ]; then
4148 _info "Let's wait 10 seconds and check again".
4149 _sleep 10
4150 else
4151 _info "All success, let's return"
a44ea0dd 4152 return 0
b5ca9bba 4153 fi
4154 done
a44ea0dd 4155 _info "Timed out waiting for DNS."
4156 return 1
b5ca9bba 4157
4158}
4159
e3ebd582 4160#file
12b19165 4161_get_chain_issuers() {
e3ebd582 4162 _cfile="$1"
987571ce 4163 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
12b19165 4164 ${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
d5d38b33 4165 else
12b19165 4166 _cindex=1
4167 for _startn in $(grep -n -- "$BEGIN_CERT" "$_cfile" | cut -d : -f 1); do
4168 _endn="$(grep -n -- "$END_CERT" "$_cfile" | cut -d : -f 1 | _head_n $_cindex | _tail_n 1)"
4169 _debug2 "_startn" "$_startn"
4170 _debug2 "_endn" "$_endn"
4171 if [ "$DEBUG" ]; then
4172 _debug2 "cert$_cindex" "$(sed -n "$_startn,${_endn}p" "$_cfile")"
4173 fi
4174 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/"
4175 _cindex=$(_math $_cindex + 1)
4176 done
4177 fi
4178}
4179
4180#
4181_get_chain_subjects() {
4182 _cfile="$1"
4183 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
4184 ${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
4185 else
4186 _cindex=1
4187 for _startn in $(grep -n -- "$BEGIN_CERT" "$_cfile" | cut -d : -f 1); do
4188 _endn="$(grep -n -- "$END_CERT" "$_cfile" | cut -d : -f 1 | _head_n $_cindex | _tail_n 1)"
4189 _debug2 "_startn" "$_startn"
4190 _debug2 "_endn" "$_endn"
4191 if [ "$DEBUG" ]; then
4192 _debug2 "cert$_cindex" "$(sed -n "$_startn,${_endn}p" "$_cfile")"
4193 fi
4194 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/"
4195 _cindex=$(_math $_cindex + 1)
4196 done
d5d38b33 4197 fi
e3ebd582 4198}
4199
4200#cert issuer
4201_match_issuer() {
4202 _cfile="$1"
4203 _missuer="$2"
12b19165 4204 _fissuers="$(_get_chain_issuers $_cfile)"
d5d38b33 4205 _debug2 _fissuers "$_fissuers"
12b19165 4206 _rootissuer="$(echo "$_fissuers" | _lower_case | _tail_n 1)"
4207 _debug2 _rootissuer "$_rootissuer"
fdb96e91 4208 _missuer="$(echo "$_missuer" | _lower_case)"
12b19165 4209 _contains "$_rootissuer" "$_missuer"
e3ebd582 4210}
4211
6ae8d101 4212#ip
4213_isIPv4() {
4214 for seg in $(echo "$1" | tr '.' ' '); do
4f386663 4215 _debug2 seg "$seg"
204e5f44 4216 if [ "$(echo "$seg" | tr -d '[0-9]')" ]; then
4f386663 4217 #not all number
4218 return 1
4219 fi
4220 if [ $seg -ge 0 ] && [ $seg -lt 256 ]; then
6ae8d101 4221 continue
4222 fi
4223 return 1
4224 done
4225 return 0
4226}
4227
4228#ip6
4229_isIPv6() {
4230 _contains "$1" ":"
4231}
4232
4233#ip
4234_isIP() {
4235 _isIPv4 "$1" || _isIPv6 "$1"
4236}
4237
4238#identifier
4239_getIdType() {
4240 if _isIP "$1"; then
b8bfb5a5 4241 echo "$ID_TYPE_IP"
6ae8d101 4242 else
b8bfb5a5 4243 echo "$ID_TYPE_DNS"
6ae8d101 4244 fi
4245}
4246
de4c4eed 4247# beginTime dateTo
4248# beginTime is full string format("2022-04-01T08:10:33Z"), beginTime can be empty, to use current time
4249# dateTo can be ether in full string format("2022-04-01T08:10:33Z") or in delta format(+5d or +20h)
4250_convertValidaty() {
4251 _beginTime="$1"
4252 _dateTo="$2"
4253 _debug2 "_beginTime" "$_beginTime"
4254 _debug2 "_dateTo" "$_dateTo"
4255
4256 if _startswith "$_dateTo" "+"; then
4257 _v_begin=$(_time)
4258 if [ "$_beginTime" ]; then
4259 _v_begin="$(_date2time "$_beginTime")"
4260 fi
4261 _debug2 "_v_begin" "$_v_begin"
4262 if _endswith "$_dateTo" "h"; then
4263 _v_end=$(_math "$_v_begin + 60 * 60 * $(echo "$_dateTo" | tr -d '+h')")
4264 elif _endswith "$_dateTo" "d"; then
4265 _v_end=$(_math "$_v_begin + 60 * 60 * 24 * $(echo "$_dateTo" | tr -d '+d')")
4266 else
4267 _err "Not recognized format for _dateTo: $_dateTo"
4268 return 1
4269 fi
4270 _debug2 "_v_end" "$_v_end"
4271 _time2str "$_v_end"
4272 else
4273 if [ "$(_time)" -gt "$(_date2time "$_dateTo")" ]; then
4274 _err "The validaty to is in the past: _dateTo = $_dateTo"
4275 return 1
4276 fi
4277 echo "$_dateTo"
4278 fi
4279}
4280
3c07f57a 4281#webroot, domain domainlist keylength
4c3b3608 4282issue() {
4c2a3841 4283 if [ -z "$2" ]; then
2e87e64b 4284 _usage "Usage: $PROJECT_ENTRY --issue --domain <domain.tld> --webroot <directory>"
4c3b3608 4285 return 1
4286 fi
49d75a0c 4287 if [ -z "$1" ]; then
4288 _usage "Please specify at least one validation method: '--webroot', '--standalone', '--apache', '--nginx' or '--dns' etc."
4289 return 1
4290 fi
af1cc3b3 4291 _web_roots="$1"
4292 _main_domain="$2"
02140ce7 4293 _alt_domains="$3"
d2cde379 4294
af1cc3b3 4295 if _contains "$_main_domain" ","; then
4296 _main_domain=$(echo "$2,$3" | cut -d , -f 1)
02140ce7 4297 _alt_domains=$(echo "$2,$3" | cut -d , -f 2- | sed "s/,${NO_VALUE}$//")
2aff36e7 4298 fi
674b5088 4299 _debug _main_domain "$_main_domain"
4300 _debug _alt_domains "$_alt_domains"
4301
d9c9114b 4302 _key_length="$4"
85e1f4ea 4303 _real_cert="$5"
4304 _real_key="$6"
4305 _real_ca="$7"
4306 _reload_cmd="$8"
4307 _real_fullchain="$9"
4308 _pre_hook="${10}"
4309 _post_hook="${11}"
4310 _renew_hook="${12}"
4311 _local_addr="${13}"
875625b1 4312 _challenge_alias="${14}"
e3ebd582 4313 _preferred_chain="${15}"
de4c4eed 4314 _valid_from="${16}"
4315 _valid_to="${17}"
4c2a3841 4316
bd04638d 4317 if [ -z "$_ACME_IS_RENEW" ]; then
d9c9114b 4318 _initpath "$_main_domain" "$_key_length"
43822d37 4319 mkdir -p "$DOMAIN_PATH"
89abad79 4320 elif ! _hasfield "$_web_roots" "$W_DNS"; then
655e34b1 4321 Le_OrderFinalize=""
4322 Le_LinkOrder=""
4323 Le_LinkCert=""
43822d37 4324 fi
eccec5f6 4325
a0923622 4326 if _hasfield "$_web_roots" "$W_DNS" && [ -z "$FORCE_DNS_MANUAL" ]; then
4327 _err "$_DNS_MANUAL_ERROR"
4328 return 1
4329 fi
4330
4c2a3841 4331 if [ -f "$DOMAIN_CONF" ]; then
61623d22 4332 Le_NextRenewTime=$(_readdomainconf Le_NextRenewTime)
a4270efa 4333 _debug Le_NextRenewTime "$Le_NextRenewTime"
95e06de5 4334 if [ -z "$FORCE" ] && [ "$Le_NextRenewTime" ] && [ "$(_time)" -lt "$Le_NextRenewTime" ]; then
6a90856f 4335 _valid_to_saved=$(_readdomainconf Le_Valid_to)
4336 if [ "$_valid_to_saved" ] && ! _startswith "$_valid_to_saved" "+"; then
4337 _info "The domain is set to be valid to: $_valid_to_saved"
4338 _info "It can not be renewed automatically"
4339 _info "See: $_VALIDITY_WIKI"
4340 return $RENEW_SKIP
4341 fi
bb25febd 4342 _saved_domain=$(_readdomainconf Le_Domain)
4343 _debug _saved_domain "$_saved_domain"
4344 _saved_alt=$(_readdomainconf Le_Alt)
4345 _debug _saved_alt "$_saved_alt"
532e44bc 4346 _normized_saved_domains="$(echo "$_saved_domain,$_saved_alt" | tr "," "\n" | sort | tr '\n' ',')"
4347 _debug _normized_saved_domains "$_normized_saved_domains"
4348
4349 _normized_domains="$(echo "$_main_domain,$_alt_domains" | tr "," "\n" | sort | tr '\n' ',')"
4350 _debug _normized_domains "$_normized_domains"
4351
4352 if [ "$_normized_saved_domains" = "$_normized_domains" ]; then
bb25febd 4353 _info "Domains not changed."
4354 _info "Skip, Next renewal time is: $(__green "$(_readdomainconf Le_NextRenewTimeStr)")"
4c2a3841 4355 _info "Add '$(__red '--force')' to force to renew."
bb25febd 4356 return $RENEW_SKIP
4357 else
4358 _info "Domains have changed."
4359 fi
4c3b3608 4360 fi
4361 fi
96a46cfc 4362
38a067e2 4363 _debug "Using ACME_DIRECTORY: $ACME_DIRECTORY"
4364 if ! _initAPI; then
4365 return 1
4366 fi
4367
af1cc3b3 4368 _savedomainconf "Le_Domain" "$_main_domain"
02140ce7 4369 _savedomainconf "Le_Alt" "$_alt_domains"
af1cc3b3 4370 _savedomainconf "Le_Webroot" "$_web_roots"
4c2a3841 4371
c7257bcf 4372 _savedomainconf "Le_PreHook" "$_pre_hook" "base64"
4373 _savedomainconf "Le_PostHook" "$_post_hook" "base64"
4374 _savedomainconf "Le_RenewHook" "$_renew_hook" "base64"
4c2a3841 4375
85e1f4ea 4376 if [ "$_local_addr" ]; then
4377 _savedomainconf "Le_LocalAddress" "$_local_addr"
72518d48 4378 else
4379 _cleardomainconf "Le_LocalAddress"
4380 fi
875625b1 4381 if [ "$_challenge_alias" ]; then
4382 _savedomainconf "Le_ChallengeAlias" "$_challenge_alias"
4383 else
4384 _cleardomainconf "Le_ChallengeAlias"
4385 fi
e3ebd582 4386 if [ "$_preferred_chain" ]; then
4387 _savedomainconf "Le_Preferred_Chain" "$_preferred_chain" "base64"
4388 else
4389 _cleardomainconf "Le_Preferred_Chain"
4390 fi
6ae0f7f5 4391
a6d22e3b 4392 Le_API="$ACME_DIRECTORY"
4393 _savedomainconf "Le_API" "$Le_API"
4394
389518e1 4395 _info "Using CA: $ACME_DIRECTORY"
02140ce7 4396 if [ "$_alt_domains" = "$NO_VALUE" ]; then
4397 _alt_domains=""
4c3b3608 4398 fi
4c2a3841 4399
85e1f4ea 4400 if ! _on_before_issue "$_web_roots" "$_main_domain" "$_alt_domains" "$_pre_hook" "$_local_addr"; then
0463b5d6 4401 _err "_on_before_issue."
4402 return 1
4c3b3608 4403 fi
0463b5d6 4404
8a29fbc8 4405 _saved_account_key_hash="$(_readcaconf "CA_KEY_HASH")"
4406 _debug2 _saved_account_key_hash "$_saved_account_key_hash"
4c2a3841 4407
e8b54a50 4408 if [ -z "$ACCOUNT_URL" ] || [ -z "$_saved_account_key_hash" ] || [ "$_saved_account_key_hash" != "$(__calcAccountKeyHash)" ]; then
57e58ce7 4409 if ! _regAccount "$_accountkeylength"; then
85e1f4ea 4410 _on_issue_err "$_post_hook"
8a29fbc8 4411 return 1
4412 fi
57e58ce7 4413 else
4414 _debug "_saved_account_key_hash is not changed, skip register account."
166096dc 4415 fi
166096dc 4416
4c2a3841 4417 if [ -f "$CSR_PATH" ] && [ ! -f "$CERT_KEY_PATH" ]; then
10afcaca 4418 _info "Signing from existing CSR."
4419 else
b376dfa1
CB
4420 # When renewing from an old version, the empty Le_Keylength means 2048.
4421 # Note, do not use DEFAULT_DOMAIN_KEY_LENGTH as that value may change over
4422 # time but an empty value implies 2048 specifically.
10afcaca 4423 _key=$(_readdomainconf Le_Keylength)
b376dfa1
CB
4424 if [ -z "$_key" ]; then
4425 _key=2048
4426 fi
10afcaca 4427 _debug "Read key length:$_key"
c4b2e582 4428 if [ ! -f "$CERT_KEY_PATH" ] || [ "$_key_length" != "$_key" ] || [ "$Le_ForceNewDomainKey" = "1" ]; then
d9c9114b 4429 if ! createDomainKey "$_main_domain" "$_key_length"; then
10afcaca 4430 _err "Create domain key error."
4431 _clearup
85e1f4ea 4432 _on_issue_err "$_post_hook"
10afcaca 4433 return 1
4434 fi
4435 fi
4436
02140ce7 4437 if ! _createcsr "$_main_domain" "$_alt_domains" "$CERT_KEY_PATH" "$CSR_PATH" "$DOMAIN_SSL_CONF"; then
10afcaca 4438 _err "Create CSR error."
5ef501c5 4439 _clearup
85e1f4ea 4440 _on_issue_err "$_post_hook"
41e3eafa 4441 return 1
4442 fi
4c3b3608 4443 fi
10afcaca 4444
d9c9114b 4445 _savedomainconf "Le_Keylength" "$_key_length"
4c2a3841 4446
4c3b3608 4447 vlist="$Le_Vlist"
882ac74a 4448 _cleardomainconf "Le_Vlist"
cae203be 4449 _info "Getting domain auth token for each domain"
4c3b3608 4450 sep='#'
9d725af6 4451 dvsep=','
4c2a3841 4452 if [ -z "$vlist" ]; then
af3ea2d4 4453 #make new order request
6ae8d101 4454 _identifiers="{\"type\":\"$(_getIdType "$_main_domain")\",\"value\":\"$(_idn "$_main_domain")\"}"
af3ea2d4 4455 _w_index=1
4456 while true; do
4457 d="$(echo "$_alt_domains," | cut -d , -f "$_w_index")"
4458 _w_index="$(_math "$_w_index" + 1)"
4459 _debug d "$d"
4460 if [ -z "$d" ]; then
4461 break
c1151b0d 4462 fi
6ae8d101 4463 _identifiers="$_identifiers,{\"type\":\"$(_getIdType "$d")\",\"value\":\"$(_idn "$d")\"}"
af3ea2d4 4464 done
4465 _debug2 _identifiers "$_identifiers"
de4c4eed 4466 _notBefore=""
4467 _notAfter=""
4468
4469 if [ "$_valid_from" ]; then
4470 _savedomainconf "Le_Valid_From" "$_valid_from"
4471 _debug2 "_valid_from" "$_valid_from"
4472 _notBefore="$(_convertValidaty "" "$_valid_from")"
4473 if [ "$?" != "0" ]; then
4474 _err "Can not parse _valid_from: $_valid_from"
4475 return 1
4476 fi
4477 if [ "$(_time)" -gt "$(_date2time "$_notBefore")" ]; then
4478 _notBefore=""
4479 fi
4480 else
4481 _cleardomainconf "Le_Valid_From"
4482 fi
4483 _debug2 _notBefore "$_notBefore"
4484
4485 if [ "$_valid_to" ]; then
4486 _debug2 "_valid_to" "$_valid_to"
4487 _savedomainconf "Le_Valid_To" "$_valid_to"
4488 _notAfter="$(_convertValidaty "$_notBefore" "$_valid_to")"
4489 if [ "$?" != "0" ]; then
4490 _err "Can not parse _valid_to: $_valid_to"
4491 return 1
4492 fi
4493 else
4494 _cleardomainconf "Le_Valid_To"
4495 fi
4496 _debug2 "_notAfter" "$_notAfter"
4497
4498 _newOrderObj="{\"identifiers\": [$_identifiers]"
4499 if [ "$_notBefore" ]; then
4500 _newOrderObj="$_newOrderObj,\"notBefore\": \"$_notBefore\""
4501 fi
4502 if [ "$_notAfter" ]; then
4503 _newOrderObj="$_newOrderObj,\"notAfter\": \"$_notAfter\""
4504 fi
4505 if ! _send_signed_request "$ACME_NEW_ORDER" "$_newOrderObj}"; then
af3ea2d4 4506 _err "Create new order error."
4507 _clearup
4508 _on_issue_err "$_post_hook"
4509 return 1
4510 fi
de4c4eed 4511
af3ea2d4 4512 Le_LinkOrder="$(echo "$responseHeaders" | grep -i '^Location.*$' | _tail_n 1 | tr -d "\r\n " | cut -d ":" -f 2-)"
4513 _debug Le_LinkOrder "$Le_LinkOrder"
4514 Le_OrderFinalize="$(echo "$response" | _egrep_o '"finalize" *: *"[^"]*"' | cut -d '"' -f 4)"
4515 _debug Le_OrderFinalize "$Le_OrderFinalize"
4516 if [ -z "$Le_OrderFinalize" ]; then
4517 _err "Create new order error. Le_OrderFinalize not found. $response"
4518 _clearup
4519 _on_issue_err "$_post_hook"
4520 return 1
4521 fi
c1151b0d 4522
af3ea2d4 4523 #for dns manual mode
4524 _savedomainconf "Le_OrderFinalize" "$Le_OrderFinalize"
c1151b0d 4525
af3ea2d4 4526 _authorizations_seg="$(echo "$response" | _json_decode | _egrep_o '"authorizations" *: *\[[^\[]*\]' | cut -d '[' -f 2 | tr -d ']' | tr -d '"')"
4527 _debug2 _authorizations_seg "$_authorizations_seg"
4528 if [ -z "$_authorizations_seg" ]; then
4529 _err "_authorizations_seg not found."
4530 _clearup
4531 _on_issue_err "$_post_hook"
4532 return 1
4533 fi
4534
4535 #domain and authz map
4536 _authorizations_map=""
4537 for _authz_url in $(echo "$_authorizations_seg" | tr ',' ' '); do
4538 _debug2 "_authz_url" "$_authz_url"
4539 if ! _send_signed_request "$_authz_url"; then
4540 _err "get to authz error."
4541 _err "_authorizations_seg" "$_authorizations_seg"
4542 _err "_authz_url" "$_authz_url"
c1151b0d 4543 _clearup
4544 _on_issue_err "$_post_hook"
4545 return 1
4546 fi
4547
af3ea2d4 4548 response="$(echo "$response" | _normalizeJson)"
4549 _debug2 response "$response"
3e8d9a19 4550 _d="$(echo "$response" | _egrep_o '"value" *: *"[^"]*"' | cut -d : -f 2- | tr -d ' "')"
af3ea2d4 4551 if _contains "$response" "\"wildcard\" *: *true"; then
4552 _d="*.$_d"
4553 fi
4554 _debug2 _d "$_d"
4555 _authorizations_map="$_d,$response
c1151b0d 4556$_authorizations_map"
af3ea2d4 4557 done
4558 _debug2 _authorizations_map "$_authorizations_map"
c1151b0d 4559
c1151b0d 4560 _index=0
a63b05a9 4561 _currentRoot=""
38f1b4d2 4562 _w_index=1
88bbe55b 4563 while true; do
88bbe55b 4564 d="$(echo "$_main_domain,$_alt_domains," | cut -d , -f "$_w_index")"
4565 _w_index="$(_math "$_w_index" + 1)"
4566 _debug d "$d"
4567 if [ -z "$d" ]; then
4568 break
4569 fi
ca7202eb 4570 _info "Getting webroot for domain" "$d"
c1151b0d 4571 _index=$(_math $_index + 1)
af1cc3b3 4572 _w="$(echo $_web_roots | cut -d , -f $_index)"
9d725af6 4573 _debug _w "$_w"
4c2a3841 4574 if [ "$_w" ]; then
a63b05a9 4575 _currentRoot="$_w"
4576 fi
4577 _debug "_currentRoot" "$_currentRoot"
4c2a3841 4578
a63b05a9 4579 vtype="$VTYPE_HTTP"
c1151b0d 4580 #todo, v2 wildcard force to use dns
3881f221 4581 if _startswith "$_currentRoot" "$W_DNS"; then
a63b05a9 4582 vtype="$VTYPE_DNS"
4583 fi
4c2a3841 4584
08681f4a 4585 if [ "$_currentRoot" = "$W_ALPN" ]; then
4586 vtype="$VTYPE_ALPN"
4587 fi
4588
af3ea2d4 4589 _idn_d="$(_idn "$d")"
4590 _candidates="$(echo "$_authorizations_map" | grep -i "^$_idn_d,")"
4591 _debug2 _candidates "$_candidates"
4592 if [ "$(echo "$_candidates" | wc -l)" -gt 1 ]; then
4593 for _can in $_candidates; do
4594 if _startswith "$(echo "$_can" | tr '.' '|')" "$(echo "$_idn_d" | tr '.' '|'),"; then
4595 _candidates="$_can"
4596 break
4597 fi
4598 done
4599 fi
4600 response="$(echo "$_candidates" | sed "s/$_idn_d,//")"
4601 _debug2 "response" "$response"
4602 if [ -z "$response" ]; then
4603 _err "get to authz error."
4604 _err "_authorizations_map" "$_authorizations_map"
4605 _clearup
4606 _on_issue_err "$_post_hook"
4607 return 1
c4d8fd83 4608 fi
4609
4c2a3841 4610 if [ -z "$thumbprint" ]; then
339a8ad6 4611 thumbprint="$(__calc_account_thumbprint)"
4c3b3608 4612 fi
4613
dbc44c08 4614 entry="$(echo "$response" | _egrep_o '[^\{]*"type":"'$vtype'"[^\}]*')"
4c3b3608 4615 _debug entry "$entry"
9541ea6a 4616 keyauthorization=""
4c2a3841 4617 if [ -z "$entry" ]; then
9541ea6a 4618 if ! _startswith "$d" '*.'; then
4619 _debug "Not a wildcard domain, lets check whether the validation is already valid."
4620 if echo "$response" | grep '"status":"valid"' >/dev/null 2>&1; then
4621 _debug "$d is already valid."
4622 keyauthorization="$STATE_VERIFIED"
4623 _debug keyauthorization "$keyauthorization"
4624 fi
4625 fi
4626 if [ -z "$keyauthorization" ]; then
fc3a1817 4627 _err "Error, can not get domain token entry $d for $vtype"
9541ea6a 4628 _supported_vtypes="$(echo "$response" | _egrep_o "\"challenges\":\[[^]]*]" | tr '{' "\n" | grep type | cut -d '"' -f 4 | tr "\n" ' ')"
4629 if [ "$_supported_vtypes" ]; then
4630 _err "The supported validation types are: $_supported_vtypes, but you specified: $vtype"
4631 fi
4632 _clearup
4633 _on_issue_err "$_post_hook"
4634 return 1
b51ed9bb 4635 fi
c1151b0d 4636 fi
f8b225e7 4637
9541ea6a 4638 if [ -z "$keyauthorization" ]; then
4639 token="$(echo "$entry" | _egrep_o '"token":"[^"]*' | cut -d : -f 2 | tr -d '"')"
4640 _debug token "$token"
cae203be 4641
9541ea6a 4642 if [ -z "$token" ]; then
4643 _err "Error, can not get domain token $entry"
4644 _clearup
4645 _on_issue_err "$_post_hook"
4646 return 1
4647 fi
af3ea2d4 4648
4649 uri="$(echo "$entry" | _egrep_o '"url":"[^"]*' | cut -d '"' -f 4 | _head_n 1)"
4650
9541ea6a 4651 _debug uri "$uri"
4c3b3608 4652
9541ea6a 4653 if [ -z "$uri" ]; then
4654 _err "Error, can not get domain uri. $entry"
4655 _clearup
4656 _on_issue_err "$_post_hook"
4657 return 1
4658 fi
4659 keyauthorization="$token.$thumbprint"
d35bf517 4660 _debug keyauthorization "$keyauthorization"
9541ea6a 4661
4662 if printf "%s" "$response" | grep '"status":"valid"' >/dev/null 2>&1; then
4663 _debug "$d is already verified."
4664 keyauthorization="$STATE_VERIFIED"
4665 _debug keyauthorization "$keyauthorization"
4666 fi
ec603bee 4667 fi
4668
a63b05a9 4669 dvlist="$d$sep$keyauthorization$sep$uri$sep$vtype$sep$_currentRoot"
4c3b3608 4670 _debug dvlist "$dvlist"
4c2a3841 4671
9d725af6 4672 vlist="$vlist$dvlist$dvsep"
4c3b3608 4673
4674 done
9d725af6 4675 _debug vlist "$vlist"
4c3b3608 4676 #add entry
b5ca9bba 4677 dns_entries=""
4c3b3608 4678 dnsadded=""
9d725af6 4679 ventries=$(echo "$vlist" | tr "$dvsep" ' ')
1f7df33e 4680 _alias_index=1
4c2a3841 4681 for ventry in $ventries; do
ca7202eb 4682 d=$(echo "$ventry" | cut -d "$sep" -f 1)
4683 keyauthorization=$(echo "$ventry" | cut -d "$sep" -f 2)
4684 vtype=$(echo "$ventry" | cut -d "$sep" -f 4)
4685 _currentRoot=$(echo "$ventry" | cut -d "$sep" -f 5)
72f54ca6 4686 _debug d "$d"
4c2a3841 4687 if [ "$keyauthorization" = "$STATE_VERIFIED" ]; then
69212114 4688 _debug "$d is already verified, skip $vtype."
fd536d37 4689 _alias_index="$(_math "$_alias_index" + 1)"
ec603bee 4690 continue
4691 fi
4692
4c2a3841 4693 if [ "$vtype" = "$VTYPE_DNS" ]; then
4c3b3608 4694 dnsadded='0'
72f54ca6 4695 _dns_root_d="$d"
4696 if _startswith "$_dns_root_d" "*."; then
4697 _dns_root_d="$(echo "$_dns_root_d" | sed 's/*.//')"
4698 fi
875625b1 4699 _d_alias="$(_getfield "$_challenge_alias" "$_alias_index")"
39bc4177 4700 test "$_d_alias" = "$NO_VALUE" && _d_alias=""
875625b1 4701 _alias_index="$(_math "$_alias_index" + 1)"
4702 _debug "_d_alias" "$_d_alias"
4703 if [ "$_d_alias" ]; then
64821ad4 4704 if _startswith "$_d_alias" "$DNS_ALIAS_PREFIX"; then
4705 txtdomain="$(echo "$_d_alias" | sed "s/$DNS_ALIAS_PREFIX//")"
4706 else
4707 txtdomain="_acme-challenge.$_d_alias"
4708 fi
82b0ebb7 4709 dns_entry="${_dns_root_d}${dvsep}_acme-challenge.$_dns_root_d$dvsep$txtdomain$dvsep$_currentRoot"
875625b1 4710 else
4711 txtdomain="_acme-challenge.$_dns_root_d"
82b0ebb7 4712 dns_entry="${_dns_root_d}${dvsep}_acme-challenge.$_dns_root_d$dvsep$dvsep$_currentRoot"
875625b1 4713 fi
82b0ebb7 4714
4c3b3608 4715 _debug txtdomain "$txtdomain"
11927a76 4716 txt="$(printf "%s" "$keyauthorization" | _digest "sha256" | _url_replace)"
4c3b3608 4717 _debug txt "$txt"
a61fe418 4718
b50e701c 4719 d_api="$(_findHook "$_dns_root_d" $_SUB_FOLDER_DNSAPI "$_currentRoot")"
4c3b3608 4720 _debug d_api "$d_api"
82b0ebb7 4721
4722 dns_entry="$dns_entry$dvsep$txt${dvsep}$d_api"
4723 _debug2 dns_entry "$dns_entry"
4c2a3841 4724 if [ "$d_api" ]; then
a180b95c 4725 _debug "Found domain api file: $d_api"
4c3b3608 4726 else
3881f221 4727 if [ "$_currentRoot" != "$W_DNS" ]; then
4728 _err "Can not find dns api hook for: $_currentRoot"
4729 _info "You need to add the txt record manually."
4730 fi
5f8b60a0 4731 _info "$(__red "Add the following TXT record:")"
81772fb7 4732 _info "$(__red "Domain: '$(__green "$txtdomain")'")"
4733 _info "$(__red "TXT value: '$(__green "$txt")'")"
4734 _info "$(__red "Please be aware that you prepend _acme-challenge. before your domain")"
4735 _info "$(__red "so the resulting subdomain will be: $txtdomain")"
4c3b3608 4736 continue
4737 fi
4c2a3841 4738
73b8b120 4739 (
ca7202eb 4740 if ! . "$d_api"; then
73b8b120 4741 _err "Load file $d_api error. Please check your api file and try again."
4742 return 1
4743 fi
4c2a3841 4744
158f22f7 4745 addcommand="${_currentRoot}_add"
ca7202eb 4746 if ! _exists "$addcommand"; then
73b8b120 4747 _err "It seems that your api file is not correct, it must have a function named: $addcommand"
4748 return 1
4749 fi
a180b95c 4750 _info "Adding txt value: $txt for domain: $txtdomain"
ca7202eb 4751 if ! $addcommand "$txtdomain" "$txt"; then
73b8b120 4752 _err "Error add txt for domain:$txtdomain"
4753 return 1
4754 fi
a180b95c 4755 _info "The txt record is added: Success."
73b8b120 4756 )
4c2a3841 4757
4758 if [ "$?" != "0" ]; then
ea722da3 4759 _on_issue_err "$_post_hook" "$vlist"
545f2355 4760 _clearup
4c3b3608 4761 return 1
4762 fi
82b0ebb7 4763 dns_entries="$dns_entries$dns_entry
4764"
4765 _debug2 "$dns_entries"
4c3b3608 4766 dnsadded='1'
4767 fi
4768 done
4769
4c2a3841 4770 if [ "$dnsadded" = '0' ]; then
4771 _savedomainconf "Le_Vlist" "$vlist"
4c3b3608 4772 _debug "Dns record not added yet, so, save to $DOMAIN_CONF and exit."
a8b62261 4773 _err "Please add the TXT records to the domains, and re-run with --renew."
5f8b60a0 4774 _on_issue_err "$_post_hook"
545f2355 4775 _clearup
9c757bbe 4776 # If asked to be in manual DNS mode, flag this exit with a separate
4777 # error so it can be distinguished from other failures.
4778 return $CODE_DNS_MANUAL
4c3b3608 4779 fi
4c2a3841 4780
4c3b3608 4781 fi
4c2a3841 4782
b5ca9bba 4783 if [ "$dns_entries" ]; then
4c2a3841 4784 if [ -z "$Le_DNSSleep" ]; then
427c2780 4785 _info "Let's check each DNS record now. Sleep 20 seconds first."
b5ca9bba 4786 _sleep 20
4787 if ! _check_dns_entries; then
4788 _err "check dns error."
4789 _on_issue_err "$_post_hook"
4790 _clearup
4791 return 1
4792 fi
0e38c60d 4793 else
4c2a3841 4794 _savedomainconf "Le_DNSSleep" "$Le_DNSSleep"
b5ca9bba 4795 _info "Sleep $(__green $Le_DNSSleep) seconds for the txt records to take effect"
4796 _sleep "$Le_DNSSleep"
0e38c60d 4797 fi
4c3b3608 4798 fi
4c2a3841 4799
5d943a35 4800 NGINX_RESTORE_VLIST=""
4c3b3608 4801 _debug "ok, let's start to verify"
a63b05a9 4802
0463b5d6 4803 _ncIndex=1
9d725af6 4804 ventries=$(echo "$vlist" | tr "$dvsep" ' ')
4c2a3841 4805 for ventry in $ventries; do
ca7202eb 4806 d=$(echo "$ventry" | cut -d "$sep" -f 1)
4807 keyauthorization=$(echo "$ventry" | cut -d "$sep" -f 2)
4808 uri=$(echo "$ventry" | cut -d "$sep" -f 3)
4809 vtype=$(echo "$ventry" | cut -d "$sep" -f 4)
4810 _currentRoot=$(echo "$ventry" | cut -d "$sep" -f 5)
ec603bee 4811
4c2a3841 4812 if [ "$keyauthorization" = "$STATE_VERIFIED" ]; then
ec603bee 4813 _info "$d is already verified, skip $vtype."
4814 continue
4815 fi
4816
dd068467 4817 _info "Verifying: $d"
4c3b3608 4818 _debug "d" "$d"
4819 _debug "keyauthorization" "$keyauthorization"
4820 _debug "uri" "$uri"
4821 removelevel=""
e22bcf7c 4822 token="$(printf "%s" "$keyauthorization" | cut -d '.' -f 1)"
a63b05a9 4823
4824 _debug "_currentRoot" "$_currentRoot"
4825
4c2a3841 4826 if [ "$vtype" = "$VTYPE_HTTP" ]; then
4827 if [ "$_currentRoot" = "$NO_VALUE" ]; then
4c3b3608 4828 _info "Standalone mode server"
85e1f4ea 4829 _ncaddr="$(_getfield "$_local_addr" "$_ncIndex")"
0463b5d6 4830 _ncIndex="$(_math $_ncIndex + 1)"
3794b5cb 4831 _startserver "$keyauthorization" "$_ncaddr"
4c2a3841 4832 if [ "$?" != "0" ]; then
5ef501c5 4833 _clearup
58e4d337 4834 _on_issue_err "$_post_hook" "$vlist"
6fc1447f 4835 return 1
4836 fi
5dbf664a 4837 sleep 1
ca7202eb 4838 _debug serverproc "$serverproc"
0e44f587 4839 elif [ "$_currentRoot" = "$MODE_STATELESS" ]; then
4840 _info "Stateless mode for domain:$d"
4841 _sleep 1
9d725af6 4842 elif _startswith "$_currentRoot" "$NGINX"; then
4843 _info "Nginx mode for domain:$d"
4844 #set up nginx server
4845 FOUND_REAL_NGINX_CONF=""
4846 BACKUP_NGINX_CONF=""
4847 if ! _setNginx "$d" "$_currentRoot" "$thumbprint"; then
4848 _clearup
58e4d337 4849 _on_issue_err "$_post_hook" "$vlist"
9d725af6 4850 return 1
03f8d6e9 4851 fi
302c41ed 4852
03f8d6e9 4853 if [ "$FOUND_REAL_NGINX_CONF" ]; then
9d725af6 4854 _realConf="$FOUND_REAL_NGINX_CONF"
4855 _backup="$BACKUP_NGINX_CONF"
4856 _debug _realConf "$_realConf"
5d943a35 4857 NGINX_RESTORE_VLIST="$d$sep$_realConf$sep$_backup$dvsep$NGINX_RESTORE_VLIST"
9d725af6 4858 fi
4859 _sleep 1
4c3b3608 4860 else
4c2a3841 4861 if [ "$_currentRoot" = "apache" ]; then
6f930641 4862 wellknown_path="$ACME_DIR"
4863 else
a63b05a9 4864 wellknown_path="$_currentRoot/.well-known/acme-challenge"
4c2a3841 4865 if [ ! -d "$_currentRoot/.well-known" ]; then
6f930641 4866 removelevel='1'
4c2a3841 4867 elif [ ! -d "$_currentRoot/.well-known/acme-challenge" ]; then
6f930641 4868 removelevel='2'
4869 else
4870 removelevel='3'
4871 fi
4c3b3608 4872 fi
6f930641 4873
4c3b3608 4874 _debug wellknown_path "$wellknown_path"
6f930641 4875
4c3b3608 4876 _debug "writing token:$token to $wellknown_path/$token"
4877
4878 mkdir -p "$wellknown_path"
93fc48a2 4879
4c2a3841 4880 if ! printf "%s" "$keyauthorization" >"$wellknown_path/$token"; then
93fc48a2 4881 _err "$d:Can not write token to file : $wellknown_path/$token"
4882 _clearupwebbroot "$_currentRoot" "$removelevel" "$token"
4883 _clearup
58e4d337 4884 _on_issue_err "$_post_hook" "$vlist"
93fc48a2 4885 return 1
4886 fi
4887
4c2a3841 4888 if [ ! "$usingApache" ]; then
44edb2bd 4889 if webroot_owner=$(_stat "$_currentRoot"); then
32fdc196 4890 _debug "Changing owner/group of .well-known to $webroot_owner"
c87cd0de 4891 if ! _exec "chown -R \"$webroot_owner\" \"$_currentRoot/.well-known\""; then
4892 _debug "$(cat "$_EXEC_TEMP_ERR")"
4893 _exec_err >/dev/null 2>&1
4894 fi
32fdc196 4895 else
b54ce310 4896 _debug "not changing owner/group of webroot"
32fdc196 4897 fi
df886ffa 4898 fi
4c2a3841 4899
4c3b3608 4900 fi
08681f4a 4901 elif [ "$vtype" = "$VTYPE_ALPN" ]; then
4902 acmevalidationv1="$(printf "%s" "$keyauthorization" | _digest "sha256" "hex")"
4903 _debug acmevalidationv1 "$acmevalidationv1"
4904 if ! _starttlsserver "$d" "" "$Le_TLSPort" "$keyauthorization" "$_ncaddr" "$acmevalidationv1"; then
4905 _err "Start tls server error."
4906 _clearupwebbroot "$_currentRoot" "$removelevel" "$token"
4907 _clearup
4908 _on_issue_err "$_post_hook" "$vlist"
4909 return 1
4910 fi
4c3b3608 4911 fi
4c2a3841 4912
920cab6f 4913 if ! __trigger_validation "$uri" "$keyauthorization" "$vtype"; then
c4d8fd83 4914 _err "$d:Can not get challenge: $response"
4915 _clearupwebbroot "$_currentRoot" "$removelevel" "$token"
4916 _clearup
58e4d337 4917 _on_issue_err "$_post_hook" "$vlist"
c4d8fd83 4918 return 1
4919 fi
4c2a3841 4920
c1151b0d 4921 if [ "$code" ] && [ "$code" != '202' ]; then
8bd12ed0 4922 if [ "$code" = '200' ]; then
c1151b0d 4923 _debug "trigger validation code: $code"
4924 else
8bd12ed0
K
4925 _err "$d:Challenge error: $response"
4926 _clearupwebbroot "$_currentRoot" "$removelevel" "$token"
4927 _clearup
4928 _on_issue_err "$_post_hook" "$vlist"
4929 return 1
c1151b0d 4930 fi
4c3b3608 4931 fi
4c2a3841 4932
6fc1447f 4933 waittimes=0
4c2a3841 4934 if [ -z "$MAX_RETRY_TIMES" ]; then
6fc1447f 4935 MAX_RETRY_TIMES=30
4936 fi
4c2a3841 4937
4938 while true; do
0c538f75 4939 waittimes=$(_math "$waittimes" + 1)
4c2a3841 4940 if [ "$waittimes" -ge "$MAX_RETRY_TIMES" ]; then
6fc1447f 4941 _err "$d:Timeout"
4942 _clearupwebbroot "$_currentRoot" "$removelevel" "$token"
4943 _clearup
58e4d337 4944 _on_issue_err "$_post_hook" "$vlist"
6fc1447f 4945 return 1
4946 fi
4c2a3841 4947
9aaf36cd 4948 _debug2 original "$response"
4c2a3841 4949
4950 response="$(echo "$response" | _normalizeJson)"
7012b91f 4951 _debug2 response "$response"
4c2a3841 4952
4953 status=$(echo "$response" | _egrep_o '"status":"[^"]*' | cut -d : -f 2 | tr -d '"')
dcc50093 4954 _debug2 status "$status"
aede5c48 4955 if _contains "$status" "invalid"; then
d0d74907 4956 error="$(echo "$response" | _egrep_o '"error":\{[^\}]*')"
4c2a3841 4957 _debug2 error "$error"
4958 errordetail="$(echo "$error" | _egrep_o '"detail": *"[^"]*' | cut -d '"' -f 4)"
4959 _debug2 errordetail "$errordetail"
4960 if [ "$errordetail" ]; then
4961 _err "$d:Verify error:$errordetail"
4962 else
4963 _err "$d:Verify error:$error"
4964 fi
4965 if [ "$DEBUG" ]; then
4966 if [ "$vtype" = "$VTYPE_HTTP" ]; then
4967 _debug "Debug: get token url."
4968 _get "http://$d/.well-known/acme-challenge/$token" "" 1
4969 fi
4970 fi
a63b05a9 4971 _clearupwebbroot "$_currentRoot" "$removelevel" "$token"
4c3b3608 4972 _clearup
58e4d337 4973 _on_issue_err "$_post_hook" "$vlist"
4c2a3841 4974 return 1
4c3b3608 4975 fi
4c2a3841 4976
aede5c48 4977 if _contains "$status" "valid"; then
4978 _info "$(__green Success)"
4979 _stopserver "$serverproc"
4980 serverproc=""
4981 _clearupwebbroot "$_currentRoot" "$removelevel" "$token"
4982 break
4983 fi
4984
4c2a3841 4985 if [ "$status" = "pending" ]; then
103810ce 4986 _info "Pending, The CA is processing your order, please just wait. ($waittimes/$MAX_RETRY_TIMES)"
93740c99 4987 elif [ "$status" = "processing" ]; then
103810ce 4988 _info "Processing, The CA is processing your order, please just wait. ($waittimes/$MAX_RETRY_TIMES)"
4c3b3608 4989 else
4c2a3841 4990 _err "$d:Verify error:$response"
a63b05a9 4991 _clearupwebbroot "$_currentRoot" "$removelevel" "$token"
4c3b3608 4992 _clearup
58e4d337 4993 _on_issue_err "$_post_hook" "$vlist"
4c3b3608 4994 return 1
4995 fi
dcc50093 4996 _debug "sleep 2 secs to verify again"
14b59142 4997 _sleep 2
dcc50093 4998 _debug "checking"
4c2a3841 4999
dcc50093 5000 _send_signed_request "$uri"
5001
5002 if [ "$?" != "0" ]; then
5003 _err "$d:Verify error:$response"
5004 _clearupwebbroot "$_currentRoot" "$removelevel" "$token"
5005 _clearup
5006 _on_issue_err "$_post_hook" "$vlist"
5007 return 1
5008 fi
4c3b3608 5009 done
4c2a3841 5010
4c3b3608 5011 done
5012
5013 _clearup
5014 _info "Verify finished, start to sign."
11927a76 5015 der="$(_getfile "${CSR_PATH}" "${BEGIN_CSR}" "${END_CSR}" | tr -d "\r\n" | _url_replace)"
4c2a3841 5016
af3ea2d4 5017 _info "Lets finalize the order."
5018 _info "Le_OrderFinalize" "$Le_OrderFinalize"
5019 if ! _send_signed_request "${Le_OrderFinalize}" "{\"csr\": \"$der\"}"; then
5020 _err "Sign failed."
5021 _on_issue_err "$_post_hook"
5022 return 1
5023 fi
5024 if [ "$code" != "200" ]; then
5025 _err "Sign failed, finalize code is not 200."
5026 _err "$response"
5027 _on_issue_err "$_post_hook"
5028 return 1
5029 fi
5030 if [ -z "$Le_LinkOrder" ]; then
5031 Le_LinkOrder="$(echo "$responseHeaders" | grep -i '^Location.*$' | _tail_n 1 | tr -d "\r\n \t" | cut -d ":" -f 2-)"
5032 fi
e7f7e96d 5033
af3ea2d4 5034 _savedomainconf "Le_LinkOrder" "$Le_LinkOrder"
5035
5036 _link_cert_retry=0
5037 _MAX_CERT_RETRY=30
5038 while [ "$_link_cert_retry" -lt "$_MAX_CERT_RETRY" ]; do
5039 if _contains "$response" "\"status\":\"valid\""; then
5040 _debug "Order status is valid."
5041 Le_LinkCert="$(echo "$response" | _egrep_o '"certificate" *: *"[^"]*"' | cut -d '"' -f 4)"
5042 _debug Le_LinkCert "$Le_LinkCert"
5043 if [ -z "$Le_LinkCert" ]; then
5044 _err "Sign error, can not find Le_LinkCert"
e7f7e96d 5045 _err "$response"
5046 _on_issue_err "$_post_hook"
5047 return 1
5048 fi
af3ea2d4 5049 break
5050 elif _contains "$response" "\"processing\""; then
5051 _info "Order status is processing, lets sleep and retry."
5052 _retryafter=$(echo "$responseHeaders" | grep -i "^Retry-After *:" | cut -d : -f 2 | tr -d ' ' | tr -d '\r')
5053 _debug "_retryafter" "$_retryafter"
5054 if [ "$_retryafter" ]; then
5055 _info "Retry after: $_retryafter"
5056 _sleep $_retryafter
5057 else
5058 _sleep 2
e7f7e96d 5059 fi
af3ea2d4 5060 else
5061 _err "Sign error, wrong status"
e7f7e96d 5062 _err "$response"
5063 _on_issue_err "$_post_hook"
5064 return 1
5065 fi
af3ea2d4 5066 #the order is processing, so we are going to poll order status
5067 if [ -z "$Le_LinkOrder" ]; then
5068 _err "Sign error, can not get order link location header"
5069 _err "responseHeaders" "$responseHeaders"
5070 _on_issue_err "$_post_hook"
5071 return 1
5072 fi
5073 _info "Polling order status: $Le_LinkOrder"
5074 if ! _send_signed_request "$Le_LinkOrder"; then
5075 _err "Sign failed, can not post to Le_LinkOrder cert:$Le_LinkOrder."
668c43ab 5076 _err "$response"
c1151b0d 5077 _on_issue_err "$_post_hook"
5078 return 1
5079 fi
af3ea2d4 5080 _link_cert_retry="$(_math $_link_cert_retry + 1)"
5081 done
4c3b3608 5082
af3ea2d4 5083 if [ -z "$Le_LinkCert" ]; then
5084 _err "Sign failed, can not get Le_LinkCert, retry time limit."
5085 _err "$response"
5086 _on_issue_err "$_post_hook"
5087 return 1
5088 fi
5089 _info "Downloading cert."
5090 _info "Le_LinkCert" "$Le_LinkCert"
5091 if ! _send_signed_request "$Le_LinkCert"; then
5092 _err "Sign failed, can not download cert:$Le_LinkCert."
5093 _err "$response"
5094 _on_issue_err "$_post_hook"
5095 return 1
5096 fi
e3ebd582 5097
af3ea2d4 5098 echo "$response" >"$CERT_PATH"
5099 _split_cert_chain "$CERT_PATH" "$CERT_FULLCHAIN_PATH" "$CA_CERT_PATH"
84fe6654 5100 if [ -z "$_preferred_chain" ]; then
5101 _preferred_chain=$(_readcaconf DEFAULT_PREFERRED_CHAIN)
5102 fi
af3ea2d4 5103 if [ "$_preferred_chain" ] && [ -f "$CERT_FULLCHAIN_PATH" ]; then
5104 if [ "$DEBUG" ]; then
5105 _debug "default chain issuers: " "$(_get_chain_issuers "$CERT_FULLCHAIN_PATH")"
5106 fi
5107 if ! _match_issuer "$CERT_FULLCHAIN_PATH" "$_preferred_chain"; then
5108 rels="$(echo "$responseHeaders" | tr -d ' <>' | grep -i "^link:" | grep -i 'rel="alternate"' | cut -d : -f 2- | cut -d ';' -f 1)"
5109 _debug2 "rels" "$rels"
5110 for rel in $rels; do
5111 _info "Try rel: $rel"
5112 if ! _send_signed_request "$rel"; then
5113 _err "Sign failed, can not download cert:$rel"
5114 _err "$response"
5115 continue
5116 fi
5117 _relcert="$CERT_PATH.alt"
5118 _relfullchain="$CERT_FULLCHAIN_PATH.alt"
5119 _relca="$CA_CERT_PATH.alt"
5120 echo "$response" >"$_relcert"
5121 _split_cert_chain "$_relcert" "$_relfullchain" "$_relca"
5122 if [ "$DEBUG" ]; then
5123 _debug "rel chain issuers: " "$(_get_chain_issuers "$_relfullchain")"
5124 fi
5125 if _match_issuer "$_relfullchain" "$_preferred_chain"; then
5126 _info "Matched issuer in: $rel"
5127 cat $_relcert >"$CERT_PATH"
5128 cat $_relfullchain >"$CERT_FULLCHAIN_PATH"
5129 cat $_relca >"$CA_CERT_PATH"
12b19165 5130 rm -f "$_relcert"
5131 rm -f "$_relfullchain"
5132 rm -f "$_relca"
af3ea2d4 5133 break
5134 fi
5135 rm -f "$_relcert"
5136 rm -f "$_relfullchain"
5137 rm -f "$_relca"
5138 done
d404e92d 5139 fi
c1151b0d 5140 fi
5141
5142 _debug "Le_LinkCert" "$Le_LinkCert"
5143 _savedomainconf "Le_LinkCert" "$Le_LinkCert"
5144
183063a2 5145 if [ -z "$Le_LinkCert" ] || ! _checkcert "$CERT_PATH"; then
716f7277 5146 response="$(echo "$response" | _dbase64 "multiline" | tr -d '\0' | _normalizeJson)"
183063a2 5147 _err "Sign failed: $(echo "$response" | _egrep_o '"detail":"[^"]*"')"
5148 _on_issue_err "$_post_hook"
5149 return 1
5150 fi
5151
c1151b0d 5152 if [ "$Le_LinkCert" ]; then
43822d37 5153 _info "$(__green "Cert success.")"
4c3b3608 5154 cat "$CERT_PATH"
5980ebc7 5155
6b97dc67 5156 _info "Your cert is in: $(__green "$CERT_PATH")"
4c2a3841 5157
5158 if [ -f "$CERT_KEY_PATH" ]; then
6b97dc67 5159 _info "Your cert key is in: $(__green "$CERT_KEY_PATH")"
5980ebc7 5160 fi
5161
bd04638d 5162 if [ ! "$USER_PATH" ] || [ ! "$_ACME_IN_CRON" ]; then
281aa349 5163 USER_PATH="$PATH"
5164 _saveaccountconf "USER_PATH" "$USER_PATH"
5165 fi
4c3b3608 5166 fi
4c3b3608 5167
6b97dc67 5168 [ -f "$CA_CERT_PATH" ] && _info "The intermediate CA cert is in: $(__green "$CA_CERT_PATH")"
5169 [ -f "$CERT_FULLCHAIN_PATH" ] && _info "And the full chain certs is there: $(__green "$CERT_FULLCHAIN_PATH")"
4c2a3841 5170
3aae1ae3 5171 Le_CertCreateTime=$(_time)
4c2a3841 5172 _savedomainconf "Le_CertCreateTime" "$Le_CertCreateTime"
5173
2c28d6b1 5174 Le_CertCreateTimeStr=$(_time2str "$Le_CertCreateTime")
4c2a3841 5175 _savedomainconf "Le_CertCreateTimeStr" "$Le_CertCreateTimeStr"
5176
ec67a1b2 5177 if [ -z "$Le_RenewalDays" ] || [ "$Le_RenewalDays" -lt "0" ]; then
5178 Le_RenewalDays="$DEFAULT_RENEW"
054cb72e 5179 else
4c2a3841 5180 _savedomainconf "Le_RenewalDays" "$Le_RenewalDays"
13d7cae9 5181 fi
4c2a3841 5182
5183 if [ "$CA_BUNDLE" ]; then
78009539
PS
5184 _saveaccountconf CA_BUNDLE "$CA_BUNDLE"
5185 else
5186 _clearaccountconf "CA_BUNDLE"
5187 fi
5188
2aa75f03 5189 if [ "$CA_PATH" ]; then
5190 _saveaccountconf CA_PATH "$CA_PATH"
5191 else
5192 _clearaccountconf "CA_PATH"
5193 fi
78009539 5194
4c2a3841 5195 if [ "$HTTPS_INSECURE" ]; then
fac1e367 5196 _saveaccountconf HTTPS_INSECURE "$HTTPS_INSECURE"
5197 else
4c2a3841 5198 _clearaccountconf "HTTPS_INSECURE"
13d7cae9 5199 fi
00a50605 5200
4c2a3841 5201 if [ "$Le_Listen_V4" ]; then
5202 _savedomainconf "Le_Listen_V4" "$Le_Listen_V4"
50827188 5203 _cleardomainconf Le_Listen_V6
4c2a3841 5204 elif [ "$Le_Listen_V6" ]; then
5205 _savedomainconf "Le_Listen_V6" "$Le_Listen_V6"
50827188 5206 _cleardomainconf Le_Listen_V4
5207 fi
f6dcd989 5208
c4b2e582 5209 if [ "$Le_ForceNewDomainKey" = "1" ]; then
5210 _savedomainconf "Le_ForceNewDomainKey" "$Le_ForceNewDomainKey"
5211 else
5212 _cleardomainconf Le_ForceNewDomainKey
5213 fi
de4c4eed 5214 if [ "$_notAfter" ]; then
5215 Le_NextRenewTime=$(_date2time "$_notAfter")
5216 Le_NextRenewTimeStr="$_notAfter"
6a90856f 5217 if [ "$_valid_to" ] && ! _startswith "$_valid_to" "+"; then
5218 _info "The domain is set to be valid to: $_valid_to"
5219 _info "It can not be renewed automatically"
5220 _info "See: $_VALIDITY_WIKI"
71690604 5221 else
5222 _now=$(_time)
5223 _debug2 "_now" "$_now"
5224 _lifetime=$(_math $Le_NextRenewTime - $_now)
5225 _debug2 "_lifetime" "$_lifetime"
5226 if [ $_lifetime -gt 86400 ]; then
5227 #if lifetime is logner than one day, it will renew one day before
5228 Le_NextRenewTime=$(_math $Le_NextRenewTime - 86400)
5229 Le_NextRenewTimeStr=$(_time2str "$Le_NextRenewTime")
5230 else
5231 #if lifetime is less than 24 hours, it will renew one hour before
5232 Le_NextRenewTime=$(_math $Le_NextRenewTime - 3600)
5233 Le_NextRenewTimeStr=$(_time2str "$Le_NextRenewTime")
5234 fi
6a90856f 5235 fi
de4c4eed 5236 else
5237 Le_NextRenewTime=$(_math "$Le_CertCreateTime" + "$Le_RenewalDays" \* 24 \* 60 \* 60)
de4c4eed 5238 Le_NextRenewTime=$(_math "$Le_NextRenewTime" - 86400)
71690604 5239 Le_NextRenewTimeStr=$(_time2str "$Le_NextRenewTime")
de4c4eed 5240 fi
4c2a3841 5241 _savedomainconf "Le_NextRenewTimeStr" "$Le_NextRenewTimeStr"
4c2a3841 5242 _savedomainconf "Le_NextRenewTime" "$Le_NextRenewTime"
f6dcd989 5243
85e1f4ea 5244 if [ "$_real_cert$_real_key$_real_ca$_reload_cmd$_real_fullchain" ]; then
5245 _savedomainconf "Le_RealCertPath" "$_real_cert"
5246 _savedomainconf "Le_RealCACertPath" "$_real_ca"
5247 _savedomainconf "Le_RealKeyPath" "$_real_key"
7690f73e 5248 _savedomainconf "Le_ReloadCmd" "$_reload_cmd" "base64"
85e1f4ea 5249 _savedomainconf "Le_RealFullChainPath" "$_real_fullchain"
ce8dca7a 5250 if ! _installcert "$_main_domain" "$_real_cert" "$_real_key" "$_real_ca" "$_real_fullchain" "$_reload_cmd"; then
5251 return 1
5252 fi
01f54558 5253 fi
4c0d3f1b 5254
ce8dca7a 5255 if ! _on_issue_success "$_post_hook" "$_renew_hook"; then
5256 _err "Call hook error."
5257 return 1
5258 fi
4c3b3608 5259}
5260
d73438a3 5261#in_out_cert out_fullchain out_ca
e3ebd582 5262_split_cert_chain() {
5263 _certf="$1"
5264 _fullchainf="$2"
5265 _caf="$3"
5266 if [ "$(grep -- "$BEGIN_CERT" "$_certf" | wc -l)" -gt "1" ]; then
5267 _debug "Found cert chain"
5268 cat "$_certf" >"$_fullchainf"
5269 _end_n="$(grep -n -- "$END_CERT" "$_fullchainf" | _head_n 1 | cut -d : -f 1)"
5270 _debug _end_n "$_end_n"
5271 sed -n "1,${_end_n}p" "$_fullchainf" >"$_certf"
5272 _end_n="$(_math $_end_n + 1)"
5273 sed -n "${_end_n},9999p" "$_fullchainf" >"$_caf"
5274 fi
5275}
5276
8b7a86bd 5277#domain [isEcc] [server]
4c3b3608 5278renew() {
5279 Le_Domain="$1"
4c2a3841 5280 if [ -z "$Le_Domain" ]; then
8b7a86bd 5281 _usage "Usage: $PROJECT_ENTRY --renew --domain <domain.tld> [--ecc] [--server server]"
4c3b3608 5282 return 1
5283 fi
5284
43822d37 5285 _isEcc="$2"
8b7a86bd 5286 _renewServer="$3"
5287 _debug "_renewServer" "$_renewServer"
5288
e799ef29 5289 _initpath "$Le_Domain" "$_isEcc"
38778f8a 5290
1566656a 5291 _set_level=${NOTIFY_LEVEL:-$NOTIFY_LEVEL_DEFAULT}
e2053b22 5292 _info "$(__green "Renew: '$Le_Domain'")"
4c2a3841 5293 if [ ! -f "$DOMAIN_CONF" ]; then
2e87e64b 5294 _info "'$Le_Domain' is not an issued domain, skip."
acae0ac2 5295 return $RENEW_SKIP
4c3b3608 5296 fi
4c2a3841 5297
5298 if [ "$Le_RenewalDays" ]; then
1e6b68f5 5299 _savedomainconf Le_RenewalDays "$Le_RenewalDays"
5300 fi
5301
8663fb7e 5302 . "$DOMAIN_CONF"
c5f1cca3 5303 _debug Le_API "$Le_API"
f2add8de 5304
14b59142 5305 case "$Le_API" in
5306 "$CA_LETSENCRYPT_V2_TEST")
5307 _info "Switching back to $CA_LETSENCRYPT_V2"
5308 Le_API="$CA_LETSENCRYPT_V2"
5309 ;;
5310 "$CA_BUYPASS_TEST")
5311 _info "Switching back to $CA_BUYPASS"
5312 Le_API="$CA_BUYPASS"
5313 ;;
5314 "$CA_GOOGLE_TEST")
5315 _info "Switching back to $CA_GOOGLE"
5316 Le_API="$CA_GOOGLE"
5317 ;;
5318 esac
5319
38778f8a 5320 if [ "$_server" ]; then
5321 Le_API="$_server"
5c48e139 5322 fi
38778f8a 5323 _info "Renew to Le_API=$Le_API"
5324
38778f8a 5325 _clearAPI
5326 _clearCA
e1d7a6b9 5327 export ACME_DIRECTORY="$Le_API"
38778f8a 5328
5329 #reload ca configs
38778f8a 5330 _debug2 "initpath again."
5331 _initpath "$Le_Domain" "$_isEcc"
4c2a3841 5332
5333 if [ -z "$FORCE" ] && [ "$Le_NextRenewTime" ] && [ "$(_time)" -lt "$Le_NextRenewTime" ]; then
e2053b22 5334 _info "Skip, Next renewal time is: $(__green "$Le_NextRenewTimeStr")"
5335 _info "Add '$(__red '--force')' to force to renew."
1566656a 5336 if [ -z "$_ACME_IN_RENEWALL" ]; then
5337 if [ $_set_level -ge $NOTIFY_LEVEL_SKIP ]; then
5338 _send_notify "Renew $Le_Domain skipped" "Good, the cert is skipped." "$NOTIFY_HOOK" "$RENEW_SKIP"
5339 fi
5340 fi
e799ef29 5341 return "$RENEW_SKIP"
4c3b3608 5342 fi
4c2a3841 5343
bd04638d 5344 if [ "$_ACME_IN_CRON" = "1" ] && [ -z "$Le_CertCreateTime" ]; then
c4d0aec5 5345 _info "Skip invalid cert for: $Le_Domain"
acae0ac2 5346 return $RENEW_SKIP
c4d0aec5 5347 fi
5348
bd04638d 5349 _ACME_IS_RENEW="1"
7690f73e 5350 Le_ReloadCmd="$(_readdomainconf Le_ReloadCmd)"
c7257bcf 5351 Le_PreHook="$(_readdomainconf Le_PreHook)"
5352 Le_PostHook="$(_readdomainconf Le_PostHook)"
5353 Le_RenewHook="$(_readdomainconf Le_RenewHook)"
b7b01999 5354 Le_Preferred_Chain="$(_readdomainconf Le_Preferred_Chain)"
b376dfa1
CB
5355 # When renewing from an old version, the empty Le_Keylength means 2048.
5356 # Note, do not use DEFAULT_DOMAIN_KEY_LENGTH as that value may change over
5357 # time but an empty value implies 2048 specifically.
5358 Le_Keylength="$(_readdomainconf Le_Keylength)"
64847afc 5359 if [ -z "$Le_Keylength" ]; then
5360 Le_Keylength=2048
5361 fi
225adcc8 5362 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"
e799ef29 5363 res="$?"
4c2a3841 5364 if [ "$res" != "0" ]; then
e799ef29 5365 return "$res"
a61fe418 5366 fi
4c2a3841 5367
5368 if [ "$Le_DeployHook" ]; then
93bce1b2 5369 _deploy "$Le_Domain" "$Le_DeployHook"
e799ef29 5370 res="$?"
a61fe418 5371 fi
4c2a3841 5372
bd04638d 5373 _ACME_IS_RENEW=""
1566656a 5374 if [ -z "$_ACME_IN_RENEWALL" ]; then
5375 if [ "$res" = "0" ]; then
5376 if [ $_set_level -ge $NOTIFY_LEVEL_RENEW ]; then
5377 _send_notify "Renew $d success" "Good, the cert is renewed." "$NOTIFY_HOOK" 0
5378 fi
5379 else
5380 if [ $_set_level -ge $NOTIFY_LEVEL_ERROR ]; then
5381 _send_notify "Renew $d error" "There is an error." "$NOTIFY_HOOK" 1
5382 fi
5383 fi
5384 fi
4c3b3608 5385
e799ef29 5386 return "$res"
4c3b3608 5387}
5388
8b7a86bd 5389#renewAll [stopRenewOnError] [server]
4c3b3608 5390renewAll() {
5391 _initpath
8d783e8e 5392 _clearCA
cc179731 5393 _stopRenewOnError="$1"
5394 _debug "_stopRenewOnError" "$_stopRenewOnError"
8b7a86bd 5395
5396 _server="$2"
5397 _debug "_server" "$_server"
5398
cc179731 5399 _ret="0"
b50e701c 5400 _success_msg=""
5401 _error_msg=""
5402 _skipped_msg=""
c6b68551 5403 _error_level=$NOTIFY_LEVEL_SKIP
5404 _notify_code=$RENEW_SKIP
f803c6c0 5405 _set_level=${NOTIFY_LEVEL:-$NOTIFY_LEVEL_DEFAULT}
5406 _debug "_set_level" "$_set_level"
1566656a 5407 export _ACME_IN_RENEWALL=1
e591d5cf 5408 for di in "${CERT_HOME}"/*.*/; do
5409 _debug di "$di"
44483dba 5410 if ! [ -d "$di" ]; then
2e87e64b 5411 _debug "Not a directory, skip: $di"
3498a585 5412 continue
5413 fi
e591d5cf 5414 d=$(basename "$di")
201aa244 5415 _debug d "$d"
43822d37 5416 (
201aa244 5417 if _endswith "$d" "$ECC_SUFFIX"; then
5418 _isEcc=$(echo "$d" | cut -d "$ECC_SEP" -f 2)
5419 d=$(echo "$d" | cut -d "$ECC_SEP" -f 1)
43822d37 5420 fi
8b7a86bd 5421 renew "$d" "$_isEcc" "$_server"
4d2f38b0 5422 )
cc179731 5423 rc="$?"
5424 _debug "Return code: $rc"
c6b68551 5425 if [ "$rc" = "0" ]; then
5426 if [ $_error_level -gt $NOTIFY_LEVEL_RENEW ]; then
5427 _error_level="$NOTIFY_LEVEL_RENEW"
5428 _notify_code=0
5429 fi
737eba57 5430
5431 if [ $_set_level -ge $NOTIFY_LEVEL_RENEW ]; then
5432 if [ "$NOTIFY_MODE" = "$NOTIFY_MODE_CERT" ]; then
5433 _send_notify "Renew $d success" "Good, the cert is renewed." "$NOTIFY_HOOK" 0
c6b68551 5434 fi
5435 fi
737eba57 5436
c6b68551 5437 _success_msg="${_success_msg} $d
b50e701c 5438"
c6b68551 5439 elif [ "$rc" = "$RENEW_SKIP" ]; then
5440 if [ $_error_level -gt $NOTIFY_LEVEL_SKIP ]; then
5441 _error_level="$NOTIFY_LEVEL_SKIP"
5442 _notify_code=$RENEW_SKIP
5443 fi
737eba57 5444
5445 if [ $_set_level -ge $NOTIFY_LEVEL_SKIP ]; then
5446 if [ "$NOTIFY_MODE" = "$NOTIFY_MODE_CERT" ]; then
5447 _send_notify "Renew $d skipped" "Good, the cert is skipped." "$NOTIFY_HOOK" "$RENEW_SKIP"
b50e701c 5448 fi
cc179731 5449 fi
737eba57 5450
c6b68551 5451 _info "Skipped $d"
5452 _skipped_msg="${_skipped_msg} $d
5453"
b50e701c 5454 else
c6b68551 5455 if [ $_error_level -gt $NOTIFY_LEVEL_ERROR ]; then
5456 _error_level="$NOTIFY_LEVEL_ERROR"
5457 _notify_code=1
5458 fi
737eba57 5459
5460 if [ $_set_level -ge $NOTIFY_LEVEL_ERROR ]; then
5461 if [ "$NOTIFY_MODE" = "$NOTIFY_MODE_CERT" ]; then
5462 _send_notify "Renew $d error" "There is an error." "$NOTIFY_HOOK" 1
c6b68551 5463 fi
5464 fi
737eba57 5465
c6b68551 5466 _error_msg="${_error_msg} $d
b50e701c 5467"
c6b68551 5468 if [ "$_stopRenewOnError" ]; then
5469 _err "Error renew $d, stop now."
5470 _ret="$rc"
5471 break
5472 else
5473 _ret="$rc"
5474 _err "Error renew $d."
5475 fi
cc179731 5476 fi
4c3b3608 5477 done
c6b68551 5478 _debug _error_level "$_error_level"
a2738e85 5479 _debug _set_level "$_set_level"
737eba57 5480 if [ $_error_level -le $_set_level ]; then
b50e701c 5481 if [ -z "$NOTIFY_MODE" ] || [ "$NOTIFY_MODE" = "$NOTIFY_MODE_BULK" ]; then
5482 _msg_subject="Renew"
5483 if [ "$_error_msg" ]; then
5484 _msg_subject="${_msg_subject} Error"
c6b68551 5485 _msg_data="Error certs:
5486${_error_msg}
5487"
b50e701c 5488 fi
5489 if [ "$_success_msg" ]; then
5490 _msg_subject="${_msg_subject} Success"
c6b68551 5491 _msg_data="${_msg_data}Success certs:
5492${_success_msg}
5493"
b50e701c 5494 fi
5495 if [ "$_skipped_msg" ]; then
5496 _msg_subject="${_msg_subject} Skipped"
c6b68551 5497 _msg_data="${_msg_data}Skipped certs:
5498${_skipped_msg}
b50e701c 5499"
c6b68551 5500 fi
5501
5502 _send_notify "$_msg_subject" "$_msg_data" "$NOTIFY_HOOK" "$_notify_code"
b50e701c 5503 fi
5504 fi
5505
201aa244 5506 return "$_ret"
4c3b3608 5507}
5508
10afcaca 5509#csr webroot
4c2a3841 5510signcsr() {
10afcaca 5511 _csrfile="$1"
5512 _csrW="$2"
5513 if [ -z "$_csrfile" ] || [ -z "$_csrW" ]; then
2e87e64b 5514 _usage "Usage: $PROJECT_ENTRY --sign-csr --csr <csr-file> --webroot <directory>"
10afcaca 5515 return 1
5516 fi
5517
875625b1 5518 _real_cert="$3"
5519 _real_key="$4"
5520 _real_ca="$5"
5521 _reload_cmd="$6"
5522 _real_fullchain="$7"
5523 _pre_hook="${8}"
5524 _post_hook="${9}"
5525 _renew_hook="${10}"
5526 _local_addr="${11}"
5527 _challenge_alias="${12}"
96a95ba9 5528 _preferred_chain="${13}"
875625b1 5529
10afcaca 5530 _csrsubj=$(_readSubjectFromCSR "$_csrfile")
4c2a3841 5531 if [ "$?" != "0" ]; then
10afcaca 5532 _err "Can not read subject from csr: $_csrfile"
5533 return 1
5534 fi
ad752b31 5535 _debug _csrsubj "$_csrsubj"
2c9ed4c5 5536 if _contains "$_csrsubj" ' ' || ! _contains "$_csrsubj" '.'; then
5537 _info "It seems that the subject: $_csrsubj is not a valid domain name. Drop it."
5538 _csrsubj=""
5539 fi
10afcaca 5540
5541 _csrdomainlist=$(_readSubjectAltNamesFromCSR "$_csrfile")
4c2a3841 5542 if [ "$?" != "0" ]; then
10afcaca 5543 _err "Can not read domain list from csr: $_csrfile"
5544 return 1
5545 fi
5546 _debug "_csrdomainlist" "$_csrdomainlist"
4c2a3841 5547
5548 if [ -z "$_csrsubj" ]; then
ad752b31 5549 _csrsubj="$(_getfield "$_csrdomainlist" 1)"
5550 _debug _csrsubj "$_csrsubj"
5551 _csrdomainlist="$(echo "$_csrdomainlist" | cut -d , -f 2-)"
5552 _debug "_csrdomainlist" "$_csrdomainlist"
5553 fi
4c2a3841 5554
5555 if [ -z "$_csrsubj" ]; then
ad752b31 5556 _err "Can not read subject from csr: $_csrfile"
5557 return 1
5558 fi
4c2a3841 5559
10afcaca 5560 _csrkeylength=$(_readKeyLengthFromCSR "$_csrfile")
4c2a3841 5561 if [ "$?" != "0" ] || [ -z "$_csrkeylength" ]; then
10afcaca 5562 _err "Can not read key length from csr: $_csrfile"
5563 return 1
5564 fi
4c2a3841 5565
10afcaca 5566 _initpath "$_csrsubj" "$_csrkeylength"
5567 mkdir -p "$DOMAIN_PATH"
4c2a3841 5568
10afcaca 5569 _info "Copy csr to: $CSR_PATH"
5570 cp "$_csrfile" "$CSR_PATH"
4c2a3841 5571
96a95ba9 5572 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"
4c2a3841 5573
10afcaca 5574}
5575
5576showcsr() {
4c2a3841 5577 _csrfile="$1"
10afcaca 5578 _csrd="$2"
5579 if [ -z "$_csrfile" ] && [ -z "$_csrd" ]; then
2e87e64b 5580 _usage "Usage: $PROJECT_ENTRY --show-csr --csr <csr-file>"
10afcaca 5581 return 1
5582 fi
5583
5584 _initpath
4c2a3841 5585
10afcaca 5586 _csrsubj=$(_readSubjectFromCSR "$_csrfile")
4d89ce5d 5587 if [ "$?" != "0" ]; then
10afcaca 5588 _err "Can not read subject from csr: $_csrfile"
5589 return 1
5590 fi
4d89ce5d 5591 if [ -z "$_csrsubj" ]; then
5592 _info "The Subject is empty"
5593 fi
4c2a3841 5594
10afcaca 5595 _info "Subject=$_csrsubj"
5596
5597 _csrdomainlist=$(_readSubjectAltNamesFromCSR "$_csrfile")
4c2a3841 5598 if [ "$?" != "0" ]; then
10afcaca 5599 _err "Can not read domain list from csr: $_csrfile"
5600 return 1
5601 fi
5602 _debug "_csrdomainlist" "$_csrdomainlist"
5603
5604 _info "SubjectAltNames=$_csrdomainlist"
5605
10afcaca 5606 _csrkeylength=$(_readKeyLengthFromCSR "$_csrfile")
4c2a3841 5607 if [ "$?" != "0" ] || [ -z "$_csrkeylength" ]; then
10afcaca 5608 _err "Can not read key length from csr: $_csrfile"
5609 return 1
5610 fi
5611 _info "KeyLength=$_csrkeylength"
5612}
5613
95ef046d 5614#listraw domain
6d7eda3e 5615list() {
22ea4004 5616 _raw="$1"
95ef046d 5617 _domain="$2"
6d7eda3e 5618 _initpath
4c2a3841 5619
dcf4f8f6 5620 _sep="|"
4c2a3841 5621 if [ "$_raw" ]; then
95ef046d 5622 if [ -z "$_domain" ]; then
5623 printf "%s\n" "Main_Domain${_sep}KeyLength${_sep}SAN_Domains${_sep}CA${_sep}Created${_sep}Renew"
5624 fi
e591d5cf 5625 for di in "${CERT_HOME}"/*.*/; do
5626 d=$(basename "$di")
201aa244 5627 _debug d "$d"
dcf4f8f6 5628 (
201aa244 5629 if _endswith "$d" "$ECC_SUFFIX"; then
be0df07d 5630 _isEcc="ecc"
201aa244 5631 d=$(echo "$d" | cut -d "$ECC_SEP" -f 1)
43822d37 5632 fi
be0df07d 5633 DOMAIN_CONF="$di/$d.conf"
4c2a3841 5634 if [ -f "$DOMAIN_CONF" ]; then
dcf4f8f6 5635 . "$DOMAIN_CONF"
269847d1 5636 _ca="$(_getCAShortName "$Le_API")"
95ef046d 5637 if [ -z "$_domain" ]; then
5638 printf "%s\n" "$Le_Domain${_sep}\"$Le_Keylength\"${_sep}$Le_Alt${_sep}$_ca${_sep}$Le_CertCreateTimeStr${_sep}$Le_NextRenewTimeStr"
5639 else
5640 if [ "$_domain" = "$d" ]; then
5641 cat "$DOMAIN_CONF"
5642 fi
5643 fi
dcf4f8f6 5644 fi
5645 )
5646 done
5647 else
4c2a3841 5648 if _exists column; then
95ef046d 5649 list "raw" "$_domain" | column -t -s "$_sep"
22ea4004 5650 else
95ef046d 5651 list "raw" "$_domain" | tr "$_sep" '\t'
22ea4004 5652 fi
dcf4f8f6 5653 fi
6d7eda3e 5654
6d7eda3e 5655}
5656
93bce1b2 5657_deploy() {
5658 _d="$1"
5659 _hooks="$2"
5660
5661 for _d_api in $(echo "$_hooks" | tr ',' " "); do
b50e701c 5662 _deployApi="$(_findHook "$_d" $_SUB_FOLDER_DEPLOY "$_d_api")"
93bce1b2 5663 if [ -z "$_deployApi" ]; then
5664 _err "The deploy hook $_d_api is not found."
5665 return 1
5666 fi
5667 _debug _deployApi "$_deployApi"
5668
5669 if ! (
5670 if ! . "$_deployApi"; then
5671 _err "Load file $_deployApi error. Please check your api file and try again."
5672 return 1
5673 fi
5674
5675 d_command="${_d_api}_deploy"
5676 if ! _exists "$d_command"; then
5677 _err "It seems that your api file is not correct, it must have a function named: $d_command"
5678 return 1
5679 fi
5680
5681 if ! $d_command "$_d" "$CERT_KEY_PATH" "$CERT_PATH" "$CA_CERT_PATH" "$CERT_FULLCHAIN_PATH"; then
5682 _err "Error deploy for domain:$_d"
5683 return 1
5684 fi
5685 ); then
5686 _err "Deploy error."
5687 return 1
5688 else
5689 _info "$(__green Success)"
5690 fi
5691 done
5692}
5693
5694#domain hooks
a61fe418 5695deploy() {
93bce1b2 5696 _d="$1"
5697 _hooks="$2"
a61fe418 5698 _isEcc="$3"
93bce1b2 5699 if [ -z "$_hooks" ]; then
2e87e64b 5700 _usage "Usage: $PROJECT_ENTRY --deploy --domain <domain.tld> --deploy-hook <hookname> [--ecc] "
a61fe418 5701 return 1
5702 fi
5703
93bce1b2 5704 _initpath "$_d" "$_isEcc"
4c2a3841 5705 if [ ! -d "$DOMAIN_PATH" ]; then
9672c6b8 5706 _err "The domain '$_d' is not a cert name. You must use the cert name to specify the cert to install."
5707 _err "Can not find path:'$DOMAIN_PATH'"
a61fe418 5708 return 1
5709 fi
4c2a3841 5710
93bce1b2 5711 . "$DOMAIN_CONF"
4c2a3841 5712
93bce1b2 5713 _savedomainconf Le_DeployHook "$_hooks"
4c2a3841 5714
93bce1b2 5715 _deploy "$_d" "$_hooks"
a61fe418 5716}
5717
4c3b3608 5718installcert() {
85e1f4ea 5719 _main_domain="$1"
5720 if [ -z "$_main_domain" ]; then
2e87e64b 5721 _usage "Usage: $PROJECT_ENTRY --install-cert --domain <domain.tld> [--ecc] [--cert-file <file>] [--key-file <file>] [--ca-file <file>] [ --reloadcmd <command>] [--fullchain-file <file>]"
4c3b3608 5722 return 1
5723 fi
5724
85e1f4ea 5725 _real_cert="$2"
5726 _real_key="$3"
5727 _real_ca="$4"
5728 _reload_cmd="$5"
5729 _real_fullchain="$6"
43822d37 5730 _isEcc="$7"
5731
85e1f4ea 5732 _initpath "$_main_domain" "$_isEcc"
4c2a3841 5733 if [ ! -d "$DOMAIN_PATH" ]; then
9672c6b8 5734 _err "The domain '$_main_domain' is not a cert name. You must use the cert name to specify the cert to install."
5735 _err "Can not find path:'$DOMAIN_PATH'"
43822d37 5736 return 1
5737 fi
5738
85e1f4ea 5739 _savedomainconf "Le_RealCertPath" "$_real_cert"
5740 _savedomainconf "Le_RealCACertPath" "$_real_ca"
5741 _savedomainconf "Le_RealKeyPath" "$_real_key"
7690f73e 5742 _savedomainconf "Le_ReloadCmd" "$_reload_cmd" "base64"
85e1f4ea 5743 _savedomainconf "Le_RealFullChainPath" "$_real_fullchain"
5744
044da37c 5745 _installcert "$_main_domain" "$_real_cert" "$_real_key" "$_real_ca" "$_real_fullchain" "$_reload_cmd"
43822d37 5746}
4c3b3608 5747
044da37c 5748#domain cert key ca fullchain reloadcmd backup-prefix
43822d37 5749_installcert() {
85e1f4ea 5750 _main_domain="$1"
5751 _real_cert="$2"
5752 _real_key="$3"
5753 _real_ca="$4"
044da37c 5754 _real_fullchain="$5"
5755 _reload_cmd="$6"
5756 _backup_prefix="$7"
4c3b3608 5757
85e1f4ea 5758 if [ "$_real_cert" = "$NO_VALUE" ]; then
5759 _real_cert=""
4d2f38b0 5760 fi
85e1f4ea 5761 if [ "$_real_key" = "$NO_VALUE" ]; then
5762 _real_key=""
4d2f38b0 5763 fi
85e1f4ea 5764 if [ "$_real_ca" = "$NO_VALUE" ]; then
5765 _real_ca=""
4d2f38b0 5766 fi
85e1f4ea 5767 if [ "$_reload_cmd" = "$NO_VALUE" ]; then
5768 _reload_cmd=""
4d2f38b0 5769 fi
85e1f4ea 5770 if [ "$_real_fullchain" = "$NO_VALUE" ]; then
5771 _real_fullchain=""
4d2f38b0 5772 fi
4c2a3841 5773
044da37c 5774 _backup_path="$DOMAIN_BACKUP_PATH/$_backup_prefix"
5775 mkdir -p "$_backup_path"
5776
85e1f4ea 5777 if [ "$_real_cert" ]; then
6b97dc67 5778 _info "Installing cert to: $_real_cert"
bd04638d 5779 if [ -f "$_real_cert" ] && [ ! "$_ACME_IS_RENEW" ]; then
044da37c 5780 cp "$_real_cert" "$_backup_path/cert.bak"
4c3b3608 5781 fi
5440fcdf 5782 if [ "$CERT_PATH" != "$_real_cert" ]; then
5783 cat "$CERT_PATH" >"$_real_cert" || return 1
5784 fi
4c3b3608 5785 fi
4c2a3841 5786
85e1f4ea 5787 if [ "$_real_ca" ]; then
6b97dc67 5788 _info "Installing CA to: $_real_ca"
85e1f4ea 5789 if [ "$_real_ca" = "$_real_cert" ]; then
5790 echo "" >>"$_real_ca"
206be3c1 5791 cat "$CA_CERT_PATH" >>"$_real_ca" || return 1
4c3b3608 5792 else
bd04638d 5793 if [ -f "$_real_ca" ] && [ ! "$_ACME_IS_RENEW" ]; then
044da37c 5794 cp "$_real_ca" "$_backup_path/ca.bak"
78552b18 5795 fi
5440fcdf 5796 if [ "$CA_CERT_PATH" != "$_real_ca" ]; then
5797 cat "$CA_CERT_PATH" >"$_real_ca" || return 1
5798 fi
4c3b3608 5799 fi
5800 fi
5801
85e1f4ea 5802 if [ "$_real_key" ]; then
6b97dc67 5803 _info "Installing key to: $_real_key"
bd04638d 5804 if [ -f "$_real_key" ] && [ ! "$_ACME_IS_RENEW" ]; then
044da37c 5805 cp "$_real_key" "$_backup_path/key.bak"
4c3b3608 5806 fi
5440fcdf 5807 if [ "$CERT_KEY_PATH" != "$_real_key" ]; then
5808 if [ -f "$_real_key" ]; then
5809 cat "$CERT_KEY_PATH" >"$_real_key" || return 1
5810 else
5811 touch "$_real_key" || return 1
5812 chmod 600 "$_real_key"
5813 cat "$CERT_KEY_PATH" >"$_real_key" || return 1
5814 fi
82014583 5815 fi
4c3b3608 5816 fi
4c2a3841 5817
85e1f4ea 5818 if [ "$_real_fullchain" ]; then
6b97dc67 5819 _info "Installing full chain to: $_real_fullchain"
bd04638d 5820 if [ -f "$_real_fullchain" ] && [ ! "$_ACME_IS_RENEW" ]; then
044da37c 5821 cp "$_real_fullchain" "$_backup_path/fullchain.bak"
a63b05a9 5822 fi
5440fcdf 5823 if [ "$_real_fullchain" != "$CERT_FULLCHAIN_PATH" ]; then
5824 cat "$CERT_FULLCHAIN_PATH" >"$_real_fullchain" || return 1
5825 fi
4c2a3841 5826 fi
4c3b3608 5827
85e1f4ea 5828 if [ "$_reload_cmd" ]; then
5829 _info "Run reload cmd: $_reload_cmd"
25555b8c 5830 if (
839bf0e2 5831 export CERT_PATH
5832 export CERT_KEY_PATH
5833 export CA_CERT_PATH
5834 export CERT_FULLCHAIN_PATH
b3f61297 5835 export Le_Domain="$_main_domain"
85e1f4ea 5836 cd "$DOMAIN_PATH" && eval "$_reload_cmd"
839bf0e2 5837 ); then
43822d37 5838 _info "$(__green "Reload success")"
4d2f38b0 5839 else
5840 _err "Reload error for :$Le_Domain"
5841 fi
5842 fi
5843
4c3b3608 5844}
5845
77f96b38 5846__read_password() {
5847 unset _pp
5848 prompt="Enter Password:"
0b04a7f1 5849 while IFS= read -p "$prompt" -r -s -n 1 char; do
5850 if [ "$char" = $'\0' ]; then
4ebad105 5851 break
0b04a7f1 5852 fi
5853 prompt='*'
5854 _pp="$_pp$char"
77f96b38 5855 done
5856 echo "$_pp"
5857}
5858
5859_install_win_taskscheduler() {
5860 _lesh="$1"
5861 _centry="$2"
5862 _randomminute="$3"
5863 if ! _exists cygpath; then
5864 _err "cygpath not found"
5865 return 1
5866 fi
5867 if ! _exists schtasks; then
5868 _err "schtasks.exe is not found, are you on Windows?"
5869 return 1
5870 fi
5871 _winbash="$(cygpath -w $(which bash))"
5872 _debug _winbash "$_winbash"
5873 if [ -z "$_winbash" ]; then
5874 _err "can not find bash path"
5875 return 1
5876 fi
5877 _myname="$(whoami)"
5878 _debug "_myname" "$_myname"
5879 if [ -z "$_myname" ]; then
5880 _err "can not find my user name"
5881 return 1
5882 fi
5883 _debug "_lesh" "$_lesh"
5884
5885 _info "To install scheduler task in your Windows account, you must input your windows password."
5886 _info "$PROJECT_NAME doesn't save your password."
5887 _info "Please input your Windows password for: $(__green "$_myname")"
5888 _password="$(__read_password)"
5889 #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
5890 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
5891 echo
5892
5893}
5894
5895_uninstall_win_taskscheduler() {
5896 if ! _exists schtasks; then
5897 _err "schtasks.exe is not found, are you on Windows?"
5898 return 1
5899 fi
5900 if ! echo SCHTASKS /query /tn "$_WINDOWS_SCHEDULER_NAME" | cmd.exe >/dev/null; then
5901 _debug "scheduler $_WINDOWS_SCHEDULER_NAME is not found."
5902 else
5903 _info "Removing $_WINDOWS_SCHEDULER_NAME"
0b04a7f1 5904 echo SCHTASKS /delete /f /tn "$_WINDOWS_SCHEDULER_NAME" | cmd.exe >/dev/null
77f96b38 5905 fi
5906}
5907
27dbe77f 5908#confighome
4c3b3608 5909installcronjob() {
27dbe77f 5910 _c_home="$1"
4c3b3608 5911 _initpath
415f375c 5912 _CRONTAB="crontab"
77f96b38 5913 if [ -f "$LE_WORKING_DIR/$PROJECT_ENTRY" ]; then
5914 lesh="\"$LE_WORKING_DIR\"/$PROJECT_ENTRY"
5915 else
f63409ee 5916 _debug "_SCRIPT_" "$_SCRIPT_"
5917 _script="$(_readlink "$_SCRIPT_")"
5918 _debug _script "$_script"
5919 if [ -f "$_script" ]; then
5920 _info "Using the current script from: $_script"
5921 lesh="$_script"
5922 else
5923 _err "Can not install cronjob, $PROJECT_ENTRY not found."
5924 return 1
5925 fi
77f96b38 5926 fi
5927 if [ "$_c_home" ]; then
5928 _c_entry="--config-home \"$_c_home\" "
5929 fi
5930 _t=$(_time)
5931 random_minute=$(_math $_t % 60)
5932
415f375c 5933 if ! _exists "$_CRONTAB" && _exists "fcrontab"; then
5934 _CRONTAB="fcrontab"
5935 fi
77f96b38 5936
415f375c 5937 if ! _exists "$_CRONTAB"; then
77f96b38 5938 if _exists cygpath && _exists schtasks.exe; then
5939 _info "It seems you are on Windows, let's install Windows scheduler task."
5940 if _install_win_taskscheduler "$lesh" "$_c_entry" "$random_minute"; then
5941 _info "Install Windows scheduler task success."
5942 return 0
5943 else
5944 _err "Install Windows scheduler task failed."
5945 return 1
5946 fi
5947 fi
415f375c 5948 _err "crontab/fcrontab doesn't exist, so, we can not install cron jobs."
77546ea5 5949 _err "All your certs will not be renewed automatically."
a7b7355d 5950 _err "You must add your own cron job to call '$PROJECT_ENTRY --cron' everyday."
77546ea5 5951 return 1
5952 fi
4c3b3608 5953 _info "Installing cron job"
415f375c 5954 if ! $_CRONTAB -l | grep "$PROJECT_ENTRY --cron"; then
e2c939fb 5955 if _exists uname && uname -a | grep SunOS >/dev/null; then
415f375c 5956 $_CRONTAB -l | {
4c2a3841 5957 cat
0533bde9 5958 echo "$random_minute 0 * * * $lesh --cron --home \"$LE_WORKING_DIR\" $_c_entry> /dev/null"
415f375c 5959 } | $_CRONTAB --
22ea4004 5960 else
415f375c 5961 $_CRONTAB -l | {
4c2a3841 5962 cat
0533bde9 5963 echo "$random_minute 0 * * * $lesh --cron --home \"$LE_WORKING_DIR\" $_c_entry> /dev/null"
415f375c 5964 } | $_CRONTAB -
22ea4004 5965 fi
4c3b3608 5966 fi
4c2a3841 5967 if [ "$?" != "0" ]; then
4c3b3608 5968 _err "Install cron job failed. You need to manually renew your certs."
5969 _err "Or you can add cronjob by yourself:"
a7b7355d 5970 _err "$lesh --cron --home \"$LE_WORKING_DIR\" > /dev/null"
4c3b3608 5971 return 1
5972 fi
5973}
5974
5975uninstallcronjob() {
415f375c 5976 _CRONTAB="crontab"
5977 if ! _exists "$_CRONTAB" && _exists "fcrontab"; then
5978 _CRONTAB="fcrontab"
5979 fi
5980
5981 if ! _exists "$_CRONTAB"; then
77f96b38 5982 if _exists cygpath && _exists schtasks.exe; then
5983 _info "It seems you are on Windows, let's uninstall Windows scheduler task."
5984 if _uninstall_win_taskscheduler; then
5985 _info "Uninstall Windows scheduler task success."
5986 return 0
5987 else
5988 _err "Uninstall Windows scheduler task failed."
5989 return 1
5990 fi
5991 fi
37db5b81 5992 return
5993 fi
4c3b3608 5994 _info "Removing cron job"
415f375c 5995 cr="$($_CRONTAB -l | grep "$PROJECT_ENTRY --cron")"
4c2a3841 5996 if [ "$cr" ]; then
6bdf689d 5997 if _exists uname && uname -a | grep SunOS >/dev/null; then
415f375c 5998 $_CRONTAB -l | sed "/$PROJECT_ENTRY --cron/d" | $_CRONTAB --
22ea4004 5999 else
415f375c 6000 $_CRONTAB -l | sed "/$PROJECT_ENTRY --cron/d" | $_CRONTAB -
22ea4004 6001 fi
a7b7355d 6002 LE_WORKING_DIR="$(echo "$cr" | cut -d ' ' -f 9 | tr -d '"')"
4c3b3608 6003 _info LE_WORKING_DIR "$LE_WORKING_DIR"
27dbe77f 6004 if _contains "$cr" "--config-home"; then
f5b546b3 6005 LE_CONFIG_HOME="$(echo "$cr" | cut -d ' ' -f 11 | tr -d '"')"
6006 _debug LE_CONFIG_HOME "$LE_CONFIG_HOME"
27dbe77f 6007 fi
4c2a3841 6008 fi
4c3b3608 6009 _initpath
a7b7355d 6010
4c3b3608 6011}
6012
1041c9f9 6013#domain isECC revokeReason
6cb415f5 6014revoke() {
6015 Le_Domain="$1"
4c2a3841 6016 if [ -z "$Le_Domain" ]; then
2e87e64b 6017 _usage "Usage: $PROJECT_ENTRY --revoke --domain <domain.tld> [--ecc]"
6cb415f5 6018 return 1
6019 fi
4c2a3841 6020
43822d37 6021 _isEcc="$2"
1041c9f9 6022 _reason="$3"
6023 if [ -z "$_reason" ]; then
6024 _reason="0"
6025 fi
c4a375b3 6026 _initpath "$Le_Domain" "$_isEcc"
4c2a3841 6027 if [ ! -f "$DOMAIN_CONF" ]; then
6cb415f5 6028 _err "$Le_Domain is not a issued domain, skip."
4c2a3841 6029 return 1
6cb415f5 6030 fi
4c2a3841 6031
6032 if [ ! -f "$CERT_PATH" ]; then
6cb415f5 6033 _err "Cert for $Le_Domain $CERT_PATH is not found, skip."
6034 return 1
6035 fi
6cb415f5 6036
fb73dcea 6037 . "$DOMAIN_CONF"
13fd83e0 6038 _debug Le_API "$Le_API"
6039
6040 if [ "$Le_API" ]; then
6041 if [ "$Le_API" != "$ACME_DIRECTORY" ]; then
6042 _clearAPI
6043 fi
6044 export ACME_DIRECTORY="$Le_API"
6045 #reload ca configs
6046 ACCOUNT_KEY_PATH=""
6047 ACCOUNT_JSON_PATH=""
6048 CA_CONF=""
6049 _debug3 "initpath again."
6050 _initpath "$Le_Domain" "$_isEcc"
6051 _initAPI
6052 fi
6053
11927a76 6054 cert="$(_getfile "${CERT_PATH}" "${BEGIN_CERT}" "${END_CERT}" | tr -d "\r\n" | _url_replace)"
4c2a3841 6055
6056 if [ -z "$cert" ]; then
6cb415f5 6057 _err "Cert for $Le_Domain is empty found, skip."
6058 return 1
6059 fi
4c2a3841 6060
48d9a8c1 6061 _initAPI
6062
af3ea2d4 6063 data="{\"certificate\": \"$cert\",\"reason\":$_reason}"
6064
48d9a8c1 6065 uri="${ACME_REVOKE_CERT}"
6cb415f5 6066
4c2a3841 6067 if [ -f "$CERT_KEY_PATH" ]; then
1befee5a 6068 _info "Try domain key first."
c4a375b3 6069 if _send_signed_request "$uri" "$data" "" "$CERT_KEY_PATH"; then
4c2a3841 6070 if [ -z "$response" ]; then
1befee5a 6071 _info "Revoke success."
c4a375b3 6072 rm -f "$CERT_PATH"
039e4c66 6073 cat "$CERT_KEY_PATH" >"$CERT_KEY_PATH.revoked"
6074 cat "$CSR_PATH" >"$CSR_PATH.revoked"
1befee5a 6075 return 0
4c2a3841 6076 else
1befee5a 6077 _err "Revoke error by domain key."
6078 _err "$response"
6079 fi
6cb415f5 6080 fi
4c2a3841 6081 else
eca57bee 6082 _info "Domain key file doesn't exist."
6cb415f5 6083 fi
6cb415f5 6084
1befee5a 6085 _info "Try account key."
6cb415f5 6086
c4a375b3 6087 if _send_signed_request "$uri" "$data" "" "$ACCOUNT_KEY_PATH"; then
4c2a3841 6088 if [ -z "$response" ]; then
6cb415f5 6089 _info "Revoke success."
c4a375b3 6090 rm -f "$CERT_PATH"
039e4c66 6091 cat "$CERT_KEY_PATH" >"$CERT_KEY_PATH.revoked"
6092 cat "$CSR_PATH" >"$CSR_PATH.revoked"
6cb415f5 6093 return 0
4c2a3841 6094 else
6cb415f5 6095 _err "Revoke error."
c9c31c04 6096 _debug "$response"
6cb415f5 6097 fi
6098 fi
6099 return 1
6100}
4c3b3608 6101
78f0201d 6102#domain ecc
6103remove() {
6104 Le_Domain="$1"
6105 if [ -z "$Le_Domain" ]; then
2e87e64b 6106 _usage "Usage: $PROJECT_ENTRY --remove --domain <domain.tld> [--ecc]"
78f0201d 6107 return 1
6108 fi
6109
6110 _isEcc="$2"
6111
6112 _initpath "$Le_Domain" "$_isEcc"
6113 _removed_conf="$DOMAIN_CONF.removed"
6114 if [ ! -f "$DOMAIN_CONF" ]; then
6115 if [ -f "$_removed_conf" ]; then
6116 _err "$Le_Domain is already removed, You can remove the folder by yourself: $DOMAIN_PATH"
6117 else
6118 _err "$Le_Domain is not a issued domain, skip."
6119 fi
6120 return 1
6121 fi
6122
6123 if mv "$DOMAIN_CONF" "$_removed_conf"; then
68aea3af 6124 _info "$Le_Domain is removed, the key and cert files are in $(__green $DOMAIN_PATH)"
78f0201d 6125 _info "You can remove them by yourself."
6126 return 0
6127 else
6128 _err "Remove $Le_Domain failed."
6129 return 1
6130 fi
6131}
6132
0c00e870 6133#domain vtype
6134_deactivate() {
6135 _d_domain="$1"
6136 _d_type="$2"
536a5f7c 6137 _initpath "$_d_domain" "$_d_type"
6138
6139 . "$DOMAIN_CONF"
6140 _debug Le_API "$Le_API"
6141
6142 if [ "$Le_API" ]; then
17520043 6143 if [ "$Le_API" != "$ACME_DIRECTORY" ]; then
6144 _clearAPI
6145 fi
536a5f7c 6146 export ACME_DIRECTORY="$Le_API"
6147 #reload ca configs
6148 ACCOUNT_KEY_PATH=""
6149 ACCOUNT_JSON_PATH=""
6150 CA_CONF=""
6151 _debug3 "initpath again."
6152 _initpath "$Le_Domain" "$_d_type"
17520043 6153 _initAPI
536a5f7c 6154 fi
4c2a3841 6155
3f588234 6156 _identifiers="{\"type\":\"$(_getIdType "$_d_domain")\",\"value\":\"$_d_domain\"}"
af3ea2d4 6157 if ! _send_signed_request "$ACME_NEW_ORDER" "{\"identifiers\": [$_identifiers]}"; then
6158 _err "Can not get domain new order."
6159 return 1
6160 fi
6161 _authorizations_seg="$(echo "$response" | _egrep_o '"authorizations" *: *\[[^\]*\]' | cut -d '[' -f 2 | tr -d ']' | tr -d '"')"
6162 _debug2 _authorizations_seg "$_authorizations_seg"
6163 if [ -z "$_authorizations_seg" ]; then
6164 _err "_authorizations_seg not found."
6165 _clearup
6166 _on_issue_err "$_post_hook"
6167 return 1
6168 fi
d2cde379 6169
af3ea2d4 6170 authzUri="$_authorizations_seg"
6171 _debug2 "authzUri" "$authzUri"
6172 if ! _send_signed_request "$authzUri"; then
6173 _err "get to authz error."
6174 _err "_authorizations_seg" "$_authorizations_seg"
6175 _err "authzUri" "$authzUri"
6176 _clearup
6177 _on_issue_err "$_post_hook"
6178 return 1
14d7bfda 6179 fi
0c00e870 6180
af3ea2d4 6181 response="$(echo "$response" | _normalizeJson)"
6182 _debug2 response "$response"
6183 _URL_NAME="url"
6184
e0def669 6185 entries="$(echo "$response" | tr '][' '==' | _egrep_o "challenges\": *=[^=]*=" | tr '}{' '\n\n' | grep "\"status\": *\"valid\"")"
14d7bfda 6186 if [ -z "$entries" ]; then
6187 _info "No valid entries found."
6188 if [ -z "$thumbprint" ]; then
6189 thumbprint="$(__calc_account_thumbprint)"
6190 fi
6191 _debug "Trigger validation."
fe77d43f 6192 vtype="$(_getIdType "$_d_domain")"
d0d74907 6193 entry="$(echo "$response" | _egrep_o '[^\{]*"type":"'$vtype'"[^\}]*')"
14d7bfda 6194 _debug entry "$entry"
6195 if [ -z "$entry" ]; then
6196 _err "Error, can not get domain token $d"
0c00e870 6197 return 1
6198 fi
d0d74907 6199 token="$(echo "$entry" | _egrep_o '"token":"[^"]*' | cut -d : -f 2 | tr -d '"')"
14d7bfda 6200 _debug token "$token"
4c2a3841 6201
d0d74907 6202 uri="$(echo "$entry" | _egrep_o "\"$_URL_NAME\":\"[^\"]*" | cut -d : -f 2,3 | tr -d '"')"
14d7bfda 6203 _debug uri "$uri"
6204
6205 keyauthorization="$token.$thumbprint"
6206 _debug keyauthorization "$keyauthorization"
6207 __trigger_validation "$uri" "$keyauthorization"
6208
6209 fi
6210
6211 _d_i=0
6212 _d_max_retry=$(echo "$entries" | wc -l)
6213 while [ "$_d_i" -lt "$_d_max_retry" ]; do
6214 _info "Deactivate: $_d_domain"
6215 _d_i="$(_math $_d_i + 1)"
6216 entry="$(echo "$entries" | sed -n "${_d_i}p")"
0c00e870 6217 _debug entry "$entry"
4c2a3841 6218
6219 if [ -z "$entry" ]; then
fb2029e7 6220 _info "No more valid entry found."
0c00e870 6221 break
6222 fi
4c2a3841 6223
d0d74907 6224 _vtype="$(echo "$entry" | _egrep_o '"type": *"[^"]*"' | cut -d : -f 2 | tr -d '"')"
c4a375b3 6225 _debug _vtype "$_vtype"
0c00e870 6226 _info "Found $_vtype"
6227
199ca77c 6228 uri="$(echo "$entry" | _egrep_o "\"$_URL_NAME\":\"[^\"]*\"" | tr -d '" ' | cut -d : -f 2-)"
c4a375b3 6229 _debug uri "$uri"
4c2a3841 6230
6231 if [ "$_d_type" ] && [ "$_d_type" != "$_vtype" ]; then
0c00e870 6232 _info "Skip $_vtype"
6233 continue
6234 fi
4c2a3841 6235
0c00e870 6236 _info "Deactivate: $_vtype"
4c2a3841 6237
af3ea2d4 6238 _djson="{\"status\":\"deactivated\"}"
d2cde379 6239
6240 if _send_signed_request "$authzUri" "$_djson" && _contains "$response" '"deactivated"'; then
14d7bfda 6241 _info "Deactivate: $_vtype success."
6242 else
0c00e870 6243 _err "Can not deactivate $_vtype."
14d7bfda 6244 break
0c00e870 6245 fi
4c2a3841 6246
0c00e870 6247 done
6248 _debug "$_d_i"
14d7bfda 6249 if [ "$_d_i" -eq "$_d_max_retry" ]; then
0c00e870 6250 _info "Deactivated success!"
6251 else
6252 _err "Deactivate failed."
6253 fi
6254
6255}
6256
6257deactivate() {
3f4513b3 6258 _d_domain_list="$1"
0c00e870 6259 _d_type="$2"
6260 _initpath
a3bdaa85 6261 _initAPI
3f4513b3 6262 _debug _d_domain_list "$_d_domain_list"
4c2a3841 6263 if [ -z "$(echo $_d_domain_list | cut -d , -f 1)" ]; then
2e87e64b 6264 _usage "Usage: $PROJECT_ENTRY --deactivate --domain <domain.tld> [--domain <domain2.tld> ...]"
0c00e870 6265 return 1
6266 fi
4c2a3841 6267 for _d_dm in $(echo "$_d_domain_list" | tr ',' ' '); do
6268 if [ -z "$_d_dm" ] || [ "$_d_dm" = "$NO_VALUE" ]; then
3f4513b3 6269 continue
6270 fi
c4a375b3 6271 if ! _deactivate "$_d_dm" "$_d_type"; then
86c017ec 6272 return 1
6273 fi
3f4513b3 6274 done
0c00e870 6275}
6276
4c3b3608 6277# Detect profile file if not specified as environment variable
6278_detect_profile() {
4c2a3841 6279 if [ -n "$PROFILE" -a -f "$PROFILE" ]; then
4c3b3608 6280 echo "$PROFILE"
6281 return
6282 fi
6283
4c3b3608 6284 DETECTED_PROFILE=''
4c3b3608 6285 SHELLTYPE="$(basename "/$SHELL")"
6286
4c2a3841 6287 if [ "$SHELLTYPE" = "bash" ]; then
6288 if [ -f "$HOME/.bashrc" ]; then
4c3b3608 6289 DETECTED_PROFILE="$HOME/.bashrc"
4c2a3841 6290 elif [ -f "$HOME/.bash_profile" ]; then
4c3b3608 6291 DETECTED_PROFILE="$HOME/.bash_profile"
6292 fi
4c2a3841 6293 elif [ "$SHELLTYPE" = "zsh" ]; then
4c3b3608 6294 DETECTED_PROFILE="$HOME/.zshrc"
6295 fi
6296
4c2a3841 6297 if [ -z "$DETECTED_PROFILE" ]; then
6298 if [ -f "$HOME/.profile" ]; then
4c3b3608 6299 DETECTED_PROFILE="$HOME/.profile"
4c2a3841 6300 elif [ -f "$HOME/.bashrc" ]; then
4c3b3608 6301 DETECTED_PROFILE="$HOME/.bashrc"
4c2a3841 6302 elif [ -f "$HOME/.bash_profile" ]; then
4c3b3608 6303 DETECTED_PROFILE="$HOME/.bash_profile"
4c2a3841 6304 elif [ -f "$HOME/.zshrc" ]; then
4c3b3608 6305 DETECTED_PROFILE="$HOME/.zshrc"
6306 fi
6307 fi
6308
1be222f6 6309 echo "$DETECTED_PROFILE"
4c3b3608 6310}
6311
6312_initconf() {
6313 _initpath
4c2a3841 6314 if [ ! -f "$ACCOUNT_CONF_PATH" ]; then
0ca5b799 6315 echo "
d404e92d 6316
d0871bda 6317#LOG_FILE=\"$DEFAULT_LOG_FILE\"
6b500036 6318#LOG_LEVEL=1
5ea6e9c9 6319
251d1c5c 6320#AUTO_UPGRADE=\"1\"
89002ed2 6321
569d6c55 6322#NO_TIMESTAMP=1
5b771039 6323
d5ec5f80 6324 " >"$ACCOUNT_CONF_PATH"
4c3b3608 6325 fi
6326}
6327
c8e9a31e 6328# nocron
c60883ef 6329_precheck() {
c8e9a31e 6330 _nocron="$1"
4c2a3841 6331
6332 if ! _exists "curl" && ! _exists "wget"; then
c60883ef 6333 _err "Please install curl or wget first, we need to access http resources."
4c3b3608 6334 return 1
6335 fi
4c2a3841 6336
6337 if [ -z "$_nocron" ]; then
415f375c 6338 if ! _exists "crontab" && ! _exists "fcrontab"; then
77f96b38 6339 if _exists cygpath && _exists schtasks.exe; then
6340 _info "It seems you are on Windows, we will install Windows scheduler task."
6341 else
6342 _err "It is recommended to install crontab first. try to install 'cron, crontab, crontabs or vixie-cron'."
6343 _err "We need to set cron job to renew the certs automatically."
6344 _err "Otherwise, your certs will not be able to be renewed automatically."
6345 if [ -z "$FORCE" ]; then
6346 _err "Please add '--force' and try install again to go without crontab."
6347 _err "./$PROJECT_ENTRY --install --force"
6348 return 1
6349 fi
c8e9a31e 6350 fi
77546ea5 6351 fi
4c3b3608 6352 fi
4c2a3841 6353
d8ba26e6 6354 if ! _exists "${ACME_OPENSSL_BIN:-openssl}"; then
851fedf7 6355 _err "Please install openssl first. ACME_OPENSSL_BIN=$ACME_OPENSSL_BIN"
c60883ef 6356 _err "We need openssl to generate keys."
4c3b3608 6357 return 1
6358 fi
4c2a3841 6359
3794b5cb 6360 if ! _exists "socat"; then
6361 _err "It is recommended to install socat first."
6362 _err "We use socat for standalone server if you use standalone mode."
c60883ef 6363 _err "If you don't use standalone mode, just ignore this warning."
6364 fi
4c2a3841 6365
c60883ef 6366 return 0
6367}
6368
0a7c9364 6369_setShebang() {
6370 _file="$1"
6371 _shebang="$2"
4c2a3841 6372 if [ -z "$_shebang" ]; then
43822d37 6373 _usage "Usage: file shebang"
0a7c9364 6374 return 1
6375 fi
6376 cp "$_file" "$_file.tmp"
4c2a3841 6377 echo "$_shebang" >"$_file"
6378 sed -n 2,99999p "$_file.tmp" >>"$_file"
6379 rm -f "$_file.tmp"
0a7c9364 6380}
6381
27dbe77f 6382#confighome
94dc5f33 6383_installalias() {
27dbe77f 6384 _c_home="$1"
94dc5f33 6385 _initpath
6386
6387 _envfile="$LE_WORKING_DIR/$PROJECT_ENTRY.env"
4c2a3841 6388 if [ "$_upgrading" ] && [ "$_upgrading" = "1" ]; then
44edb2bd 6389 echo "$(cat "$_envfile")" | sed "s|^LE_WORKING_DIR.*$||" >"$_envfile"
6390 echo "$(cat "$_envfile")" | sed "s|^alias le.*$||" >"$_envfile"
6391 echo "$(cat "$_envfile")" | sed "s|^alias le.sh.*$||" >"$_envfile"
94dc5f33 6392 fi
6393
27dbe77f 6394 if [ "$_c_home" ]; then
be83a6a3 6395 _c_entry=" --config-home '$_c_home'"
27dbe77f 6396 fi
6397
1786a5e5 6398 _setopt "$_envfile" "export LE_WORKING_DIR" "=" "\"$LE_WORKING_DIR\""
f5b546b3 6399 if [ "$_c_home" ]; then
6400 _setopt "$_envfile" "export LE_CONFIG_HOME" "=" "\"$LE_CONFIG_HOME\""
d04434e3 6401 else
6402 _sed_i "/^export LE_CONFIG_HOME/d" "$_envfile"
f5b546b3 6403 fi
be83a6a3 6404 _setopt "$_envfile" "alias $PROJECT_ENTRY" "=" "\"$LE_WORKING_DIR/$PROJECT_ENTRY$_c_entry\""
94dc5f33 6405
6406 _profile="$(_detect_profile)"
4c2a3841 6407 if [ "$_profile" ]; then
94dc5f33 6408 _debug "Found profile: $_profile"
aba5c634 6409 _info "Installing alias to '$_profile'"
94dc5f33 6410 _setopt "$_profile" ". \"$_envfile\""
6411 _info "OK, Close and reopen your terminal to start using $PROJECT_NAME"
6412 else
6413 _info "No profile is found, you will need to go into $LE_WORKING_DIR to use $PROJECT_NAME"
6414 fi
94dc5f33 6415
6416 #for csh
6417 _cshfile="$LE_WORKING_DIR/$PROJECT_ENTRY.csh"
94dc5f33 6418 _csh_profile="$HOME/.cshrc"
4c2a3841 6419 if [ -f "$_csh_profile" ]; then
aba5c634 6420 _info "Installing alias to '$_csh_profile'"
6626371d 6421 _setopt "$_cshfile" "setenv LE_WORKING_DIR" " " "\"$LE_WORKING_DIR\""
f5b546b3 6422 if [ "$_c_home" ]; then
6423 _setopt "$_cshfile" "setenv LE_CONFIG_HOME" " " "\"$LE_CONFIG_HOME\""
d04434e3 6424 else
6425 _sed_i "/^setenv LE_CONFIG_HOME/d" "$_cshfile"
f5b546b3 6426 fi
be83a6a3 6427 _setopt "$_cshfile" "alias $PROJECT_ENTRY" " " "\"$LE_WORKING_DIR/$PROJECT_ENTRY$_c_entry\""
4c2a3841 6428 _setopt "$_csh_profile" "source \"$_cshfile\""
94dc5f33 6429 fi
4c2a3841 6430
acafa585 6431 #for tcsh
6432 _tcsh_profile="$HOME/.tcshrc"
4c2a3841 6433 if [ -f "$_tcsh_profile" ]; then
aba5c634 6434 _info "Installing alias to '$_tcsh_profile'"
acafa585 6435 _setopt "$_cshfile" "setenv LE_WORKING_DIR" " " "\"$LE_WORKING_DIR\""
f5b546b3 6436 if [ "$_c_home" ]; then
6437 _setopt "$_cshfile" "setenv LE_CONFIG_HOME" " " "\"$LE_CONFIG_HOME\""
6438 fi
be83a6a3 6439 _setopt "$_cshfile" "alias $PROJECT_ENTRY" " " "\"$LE_WORKING_DIR/$PROJECT_ENTRY$_c_entry\""
4c2a3841 6440 _setopt "$_tcsh_profile" "source \"$_cshfile\""
acafa585 6441 fi
94dc5f33 6442
6443}
6444
58c4eaaf 6445# nocron confighome noprofile accountemail
c60883ef 6446install() {
f3e4cea3 6447
4c2a3841 6448 if [ -z "$LE_WORKING_DIR" ]; then
f3e4cea3 6449 LE_WORKING_DIR="$DEFAULT_INSTALL_HOME"
6450 fi
4c2a3841 6451
c8e9a31e 6452 _nocron="$1"
27dbe77f 6453 _c_home="$2"
86ef0a26 6454 _noprofile="$3"
58c4eaaf 6455 _accountemail="$4"
6456
4c2a3841 6457 if ! _initpath; then
c60883ef 6458 _err "Install failed."
4c3b3608 6459 return 1
6460 fi
4c2a3841 6461 if [ "$_nocron" ]; then
52677b0a 6462 _debug "Skip install cron job"
6463 fi
4c2a3841 6464
bd04638d 6465 if [ "$_ACME_IN_CRON" != "1" ]; then
4356eefb 6466 if ! _precheck "$_nocron"; then
6467 _err "Pre-check failed, can not install."
6468 return 1
6469 fi
4c3b3608 6470 fi
4c2a3841 6471
8e845d9f 6472 if [ -z "$_c_home" ] && [ "$LE_CONFIG_HOME" != "$LE_WORKING_DIR" ]; then
6473 _info "Using config home: $LE_CONFIG_HOME"
6474 _c_home="$LE_CONFIG_HOME"
6475 fi
6476
6cc11ffb 6477 #convert from le
4c2a3841 6478 if [ -d "$HOME/.le" ]; then
6479 for envfile in "le.env" "le.sh.env"; do
6480 if [ -f "$HOME/.le/$envfile" ]; then
6481 if grep "le.sh" "$HOME/.le/$envfile" >/dev/null; then
6482 _upgrading="1"
6483 _info "You are upgrading from le.sh"
6484 _info "Renaming \"$HOME/.le\" to $LE_WORKING_DIR"
6485 mv "$HOME/.le" "$LE_WORKING_DIR"
6486 mv "$LE_WORKING_DIR/$envfile" "$LE_WORKING_DIR/$PROJECT_ENTRY.env"
6487 break
6cc11ffb 6488 fi
6489 fi
6490 done
6491 fi
6492
4c3b3608 6493 _info "Installing to $LE_WORKING_DIR"
635695ec 6494
d04434e3 6495 if [ ! -d "$LE_WORKING_DIR" ]; then
6496 if ! mkdir -p "$LE_WORKING_DIR"; then
6497 _err "Can not create working dir: $LE_WORKING_DIR"
6498 return 1
6499 fi
6500
6501 chmod 700 "$LE_WORKING_DIR"
4a0f23e2 6502 fi
4c2a3841 6503
d04434e3 6504 if [ ! -d "$LE_CONFIG_HOME" ]; then
6505 if ! mkdir -p "$LE_CONFIG_HOME"; then
6506 _err "Can not create config dir: $LE_CONFIG_HOME"
6507 return 1
6508 fi
762978f8 6509
d04434e3 6510 chmod 700 "$LE_CONFIG_HOME"
27dbe77f 6511 fi
6512
d5ec5f80 6513 cp "$PROJECT_ENTRY" "$LE_WORKING_DIR/" && chmod +x "$LE_WORKING_DIR/$PROJECT_ENTRY"
4c3b3608 6514
4c2a3841 6515 if [ "$?" != "0" ]; then
a7b7355d 6516 _err "Install failed, can not copy $PROJECT_ENTRY"
4c3b3608 6517 return 1
6518 fi
6519
a7b7355d 6520 _info "Installed to $LE_WORKING_DIR/$PROJECT_ENTRY"
4c3b3608 6521
bd04638d 6522 if [ "$_ACME_IN_CRON" != "1" ] && [ -z "$_noprofile" ]; then
4356eefb 6523 _installalias "$_c_home"
6524 fi
4c3b3608 6525
4c2a3841 6526 for subf in $_SUB_FOLDERS; do
6527 if [ -d "$subf" ]; then
d5ec5f80 6528 mkdir -p "$LE_WORKING_DIR/$subf"
6529 cp "$subf"/* "$LE_WORKING_DIR"/"$subf"/
a61fe418 6530 fi
6531 done
6532
4c2a3841 6533 if [ ! -f "$ACCOUNT_CONF_PATH" ]; then
4c3b3608 6534 _initconf
6535 fi
6cc11ffb 6536
4c2a3841 6537 if [ "$_DEFAULT_ACCOUNT_CONF_PATH" != "$ACCOUNT_CONF_PATH" ]; then
635695ec 6538 _setopt "$_DEFAULT_ACCOUNT_CONF_PATH" "ACCOUNT_CONF_PATH" "=" "\"$ACCOUNT_CONF_PATH\""
6cc11ffb 6539 fi
6540
4c2a3841 6541 if [ "$_DEFAULT_CERT_HOME" != "$CERT_HOME" ]; then
b2817897 6542 _saveaccountconf "CERT_HOME" "$CERT_HOME"
6543 fi
6544
4c2a3841 6545 if [ "$_DEFAULT_ACCOUNT_KEY_PATH" != "$ACCOUNT_KEY_PATH" ]; then
b2817897 6546 _saveaccountconf "ACCOUNT_KEY_PATH" "$ACCOUNT_KEY_PATH"
6547 fi
4c2a3841 6548
6549 if [ -z "$_nocron" ]; then
27dbe77f 6550 installcronjob "$_c_home"
c8e9a31e 6551 fi
0a7c9364 6552
4c2a3841 6553 if [ -z "$NO_DETECT_SH" ]; then
641989fd 6554 #Modify shebang
4c2a3841 6555 if _exists bash; then
694af4ae 6556 _bash_path="$(bash -c "command -v bash 2>/dev/null")"
6557 if [ -z "$_bash_path" ]; then
6558 _bash_path="$(bash -c 'echo $SHELL')"
6559 fi
6560 fi
6561 if [ "$_bash_path" ]; then
329174b6 6562 _info "Good, bash is found, so change the shebang to use bash as preferred."
694af4ae 6563 _shebang='#!'"$_bash_path"
641989fd 6564 _setShebang "$LE_WORKING_DIR/$PROJECT_ENTRY" "$_shebang"
4c2a3841 6565 for subf in $_SUB_FOLDERS; do
6566 if [ -d "$LE_WORKING_DIR/$subf" ]; then
6567 for _apifile in "$LE_WORKING_DIR/$subf/"*.sh; do
a61fe418 6568 _setShebang "$_apifile" "$_shebang"
6569 done
6570 fi
6571 done
0a7c9364 6572 fi
6573 fi
6574
58c4eaaf 6575 if [ "$_accountemail" ]; then
6576 _saveaccountconf "ACCOUNT_EMAIL" "$_accountemail"
6577 fi
0a47f481 6578 _saveaccountconf "UPGRADE_HASH" "$(_getUpgradeHash)"
4c3b3608 6579 _info OK
6580}
6581
52677b0a 6582# nocron
4c3b3608 6583uninstall() {
52677b0a 6584 _nocron="$1"
4c2a3841 6585 if [ -z "$_nocron" ]; then
52677b0a 6586 uninstallcronjob
6587 fi
4c3b3608 6588 _initpath
6589
9aa3be7f 6590 _uninstallalias
4c2a3841 6591
d5ec5f80 6592 rm -f "$LE_WORKING_DIR/$PROJECT_ENTRY"
f5b546b3 6593 _info "The keys and certs are in \"$(__green "$LE_CONFIG_HOME")\", you can remove them by yourself."
9aa3be7f 6594
6595}
6596
6597_uninstallalias() {
6598 _initpath
6599
4c3b3608 6600 _profile="$(_detect_profile)"
4c2a3841 6601 if [ "$_profile" ]; then
9aa3be7f 6602 _info "Uninstalling alias from: '$_profile'"
d5ec5f80 6603 text="$(cat "$_profile")"
4c2a3841 6604 echo "$text" | sed "s|^.*\"$LE_WORKING_DIR/$PROJECT_NAME.env\"$||" >"$_profile"
4c3b3608 6605 fi
6606
94dc5f33 6607 _csh_profile="$HOME/.cshrc"
4c2a3841 6608 if [ -f "$_csh_profile" ]; then
9aa3be7f 6609 _info "Uninstalling alias from: '$_csh_profile'"
d5ec5f80 6610 text="$(cat "$_csh_profile")"
4c2a3841 6611 echo "$text" | sed "s|^.*\"$LE_WORKING_DIR/$PROJECT_NAME.csh\"$||" >"$_csh_profile"
94dc5f33 6612 fi
4c2a3841 6613
acafa585 6614 _tcsh_profile="$HOME/.tcshrc"
4c2a3841 6615 if [ -f "$_tcsh_profile" ]; then
9aa3be7f 6616 _info "Uninstalling alias from: '$_csh_profile'"
d5ec5f80 6617 text="$(cat "$_tcsh_profile")"
4c2a3841 6618 echo "$text" | sed "s|^.*\"$LE_WORKING_DIR/$PROJECT_NAME.csh\"$||" >"$_tcsh_profile"
acafa585 6619 fi
4c3b3608 6620
6621}
6622
6623cron() {
bd04638d 6624 export _ACME_IN_CRON=1
89002ed2 6625 _initpath
d8ba26e6 6626 _info "$(__green "===Starting cron===")"
4c2a3841 6627 if [ "$AUTO_UPGRADE" = "1" ]; then
89002ed2 6628 export LE_WORKING_DIR
6629 (
4c2a3841 6630 if ! upgrade; then
6631 _err "Cron:Upgrade failed!"
6632 return 1
6633 fi
89002ed2 6634 )
d5ec5f80 6635 . "$LE_WORKING_DIR/$PROJECT_ENTRY" >/dev/null
1ab63043 6636
4c2a3841 6637 if [ -t 1 ]; then
1ab63043 6638 __INTERACTIVE="1"
6639 fi
4c2a3841 6640
89002ed2 6641 _info "Auto upgraded to: $VER"
6642 fi
4c3b3608 6643 renewAll
cc179731 6644 _ret="$?"
bd04638d 6645 _ACME_IN_CRON=""
d8ba26e6 6646 _info "$(__green "===End cron===")"
0ba95a3d 6647 exit $_ret
4c3b3608 6648}
6649
6650version() {
a63b05a9 6651 echo "$PROJECT"
6652 echo "v$VER"
4c3b3608 6653}
6654
b50e701c 6655# subject content hooks code
6656_send_notify() {
6657 _nsubject="$1"
6658 _ncontent="$2"
6659 _nhooks="$3"
6660 _nerror="$4"
6661
6662 if [ "$NOTIFY_LEVEL" = "$NOTIFY_LEVEL_DISABLE" ]; then
6663 _debug "The NOTIFY_LEVEL is $NOTIFY_LEVEL, disabled, just return."
6664 return 0
6665 fi
6666
6667 if [ -z "$_nhooks" ]; then
6668 _debug "The NOTIFY_HOOK is empty, just return."
6669 return 0
6670 fi
6671
6672 _send_err=0
6673 for _n_hook in $(echo "$_nhooks" | tr ',' " "); do
6674 _n_hook_file="$(_findHook "" $_SUB_FOLDER_NOTIFY "$_n_hook")"
143eac09 6675 _info "Sending via: $_n_hook"
6676 _debug "Found $_n_hook_file for $_n_hook"
75191e71 6677 if [ -z "$_n_hook_file" ]; then
6678 _err "Can not find the hook file for $_n_hook"
6679 continue
6680 fi
b50e701c 6681 if ! (
6682 if ! . "$_n_hook_file"; then
6683 _err "Load file $_n_hook_file error. Please check your api file and try again."
6684 return 1
6685 fi
6686
6687 d_command="${_n_hook}_send"
6688 if ! _exists "$d_command"; then
6689 _err "It seems that your api file is not correct, it must have a function named: $d_command"
6690 return 1
6691 fi
6692
6693 if ! $d_command "$_nsubject" "$_ncontent" "$_nerror"; then
6694 _err "Error send message by $d_command"
6695 return 1
6696 fi
6697
6698 return 0
6699 ); then
6700 _err "Set $_n_hook_file error."
6701 _send_err=1
6702 else
6703 _info "$_n_hook $(__green Success)"
6704 fi
6705 done
6706 return $_send_err
6707
6708}
6709
6710# hook
6711_set_notify_hook() {
6712 _nhooks="$1"
6713
5698bec6 6714 _test_subject="Hello, this is a notification from $PROJECT_NAME"
143eac09 6715 _test_content="If you receive this message, your notification works."
b50e701c 6716
6717 _send_notify "$_test_subject" "$_test_content" "$_nhooks" 0
6718
6719}
6720
6721#[hook] [level] [mode]
6722setnotify() {
6723 _nhook="$1"
6724 _nlevel="$2"
6725 _nmode="$3"
6726
6727 _initpath
6728
6729 if [ -z "$_nhook$_nlevel$_nmode" ]; then
2e87e64b 6730 _usage "Usage: $PROJECT_ENTRY --set-notify [--notify-hook <hookname>] [--notify-level <0|1|2|3>] [--notify-mode <0|1>]"
b50e701c 6731 _usage "$_NOTIFY_WIKI"
6732 return 1
6733 fi
6734
6735 if [ "$_nlevel" ]; then
6736 _info "Set notify level to: $_nlevel"
6737 export "NOTIFY_LEVEL=$_nlevel"
6738 _saveaccountconf "NOTIFY_LEVEL" "$NOTIFY_LEVEL"
6739 fi
6740
6741 if [ "$_nmode" ]; then
6742 _info "Set notify mode to: $_nmode"
6743 export "NOTIFY_MODE=$_nmode"
6744 _saveaccountconf "NOTIFY_MODE" "$NOTIFY_MODE"
6745 fi
6746
6747 if [ "$_nhook" ]; then
6748 _info "Set notify hook to: $_nhook"
6749 if [ "$_nhook" = "$NO_VALUE" ]; then
6750 _info "Clear notify hook"
6751 _clearaccountconf "NOTIFY_HOOK"
6752 else
6753 if _set_notify_hook "$_nhook"; then
6754 export NOTIFY_HOOK="$_nhook"
6755 _saveaccountconf "NOTIFY_HOOK" "$NOTIFY_HOOK"
6756 return 0
6757 else
6758 _err "Can not set notify hook to: $_nhook"
6759 return 1
6760 fi
6761 fi
6762 fi
6763
6764}
6765
4c3b3608 6766showhelp() {
d0871bda 6767 _initpath
4c3b3608 6768 version
2e87e64b 6769 echo "Usage: $PROJECT_ENTRY <command> ... [parameters ...]
a63b05a9 6770Commands:
c0fbe823
CE
6771 -h, --help Show this help message.
6772 -v, --version Show version info.
a7b7355d 6773 --install Install $PROJECT_NAME to your system.
6774 --uninstall Uninstall $PROJECT_NAME, and uninstall the cron job.
d8beaf72 6775 --upgrade Upgrade $PROJECT_NAME to the latest code from $PROJECT.
a63b05a9 6776 --issue Issue a cert.
a61fe418 6777 --deploy Deploy the cert to your server.
d81369d6 6778 -i, --install-cert Install the issued cert to apache/nginx or any other server.
c0fbe823 6779 -r, --renew Renew a cert.
27dbe77f 6780 --renew-all Renew all the certs.
a63b05a9 6781 --revoke Revoke a cert.
47b49f1b 6782 --remove Remove the cert from list of certs known to $PROJECT_NAME.
10afcaca 6783 --list List all the certs.
c39e6c44 6784 --info Show the $PROJECT_NAME configs, or the configs for a domain with [-d domain] parameter.
58150f5d 6785 --to-pkcs12 Export the certificate and key to a pfx file.
d81369d6 6786 --to-pkcs8 Convert to pkcs8 format.
7decf768
CE
6787 --sign-csr Issue a cert from an existing csr.
6788 --show-csr Show the content of a csr.
6789 -ccr, --create-csr Create CSR, professional use.
6790 --create-domain-key Create an domain private key, professional use.
27dbe77f 6791 --update-account Update account info.
6792 --register-account Register account key.
422dd1fa 6793 --deactivate-account Deactivate the account.
0984585d 6794 --create-account-key Create an account private key, professional use.
7decf768
CE
6795 --install-cronjob Install the cron job to renew certs, you don't need to call this. The 'install' command can automatically install the cron job.
6796 --uninstall-cronjob Uninstall the cron job. The 'uninstall' command can do this automatically.
6797 --cron Run cron job to renew all the certs.
b50e701c 6798 --set-notify Set the cron notification hook, level or mode.
7decf768 6799 --deactivate Deactivate the domain authz, professional use.
8d0e4851 6800 --set-default-ca Used with '--server', Set the default CA to use.
6801 See: $_SERVER_WIKI
d4e18997 6802 --set-default-chain Set the default preferred chain for a CA.
6803 See: $_PREFERRED_CHAIN_WIKI
b50e701c 6804
3c07f57a 6805
a63b05a9 6806Parameters:
c0fbe823
CE
6807 -d, --domain <domain.tld> Specifies a domain, used to issue, renew or revoke etc.
6808 --challenge-alias <domain.tld> The challenge domain alias for DNS alias mode.
e3ebd582 6809 See: $_DNS_ALIAS_WIKI
a48c22d1 6810
c0fbe823 6811 --domain-alias <domain.tld> The domain alias for DNS alias mode.
e3ebd582 6812 See: $_DNS_ALIAS_WIKI
a48c22d1 6813
c0fbe823 6814 --preferred-chain <chain> If the CA offers multiple certificate chains, prefer the chain with an issuer matching this Subject Common Name.
e3ebd582 6815 If no match, the default offered chain will be used. (default: empty)
6816 See: $_PREFERRED_CHAIN_WIKI
a48c22d1 6817
de4c4eed 6818 --valid-to <date-time> Request the NotAfter field of the cert.
6819 See: $_VALIDITY_WIKI
6820 --valid-from <date-time> Request the NotBefore field of the cert.
6821 See: $_VALIDITY_WIKI
6822
c0fbe823
CE
6823 -f, --force Force install, force cert renewal or override sudo restrictions.
6824 --staging, --test Use staging server, for testing.
6825 --debug [0|1|2|3] Output debug info. Defaults to 1 if argument is omitted.
e3ebd582 6826 --output-insecure Output all the sensitive messages.
6827 By default all the credentials/sensitive messages are hidden from the output/debug/log for security.
b086afb2 6828 -w, --webroot <directory> Specifies the web root folder for web root mode.
a63b05a9 6829 --standalone Use standalone mode.
08681f4a 6830 --alpn Use standalone alpn mode.
e3ebd582 6831 --stateless Use stateless mode.
6832 See: $_STATELESS_WIKI
a48c22d1 6833
a63b05a9 6834 --apache Use apache mode.
c0fbe823 6835 --dns [dns_hook] Use dns manual mode or dns api. Defaults to manual mode when argument is omitted.
e3ebd582 6836 See: $_DNS_API_WIKI
a48c22d1 6837
c0fbe823 6838 --dnssleep <seconds> The time in seconds to wait for all the txt records to propagate in dns api mode.
e3ebd582 6839 It's not necessary to use this by default, $PROJECT_NAME polls dns status by DOH automatically.
c0fbe823
CE
6840 -k, --keylength <bits> Specifies the domain key length: 2048, 3072, 4096, 8192 or ec-256, ec-384, ec-521.
6841 -ak, --accountkeylength <bits> Specifies the account key length: 2048, 3072, 4096
b086afb2 6842 --log [file] Specifies the log file. Defaults to \"$DEFAULT_LOG_FILE\" if argument is omitted.
c0fbe823
CE
6843 --log-level <1|2> Specifies the log level, default is 1.
6844 --syslog <0|3|6|7> Syslog level, 0: disable syslog, 3: error, 6: info, 7: debug.
6845 --eab-kid <eab_key_id> Key Identifier for External Account Binding.
6846 --eab-hmac-key <eab_hmac_key> HMAC key for External Account Binding.
2d5f1438
OB
6847
6848
7903fcb4 6849 These parameters are to install the cert to nginx/apache or any other server after issue/renew a cert:
3c07f57a 6850
b086afb2
CE
6851 --cert-file <file> Path to copy the cert file to after issue/renew..
6852 --key-file <file> Path to copy the key file to after issue/renew.
6853 --ca-file <file> Path to copy the intermediate cert file to after issue/renew.
6854 --fullchain-file <file> Path to copy the fullchain cert file to after issue/renew.
c0fbe823 6855 --reloadcmd <command> Command to execute after issue/renew to reload the server.
a63b05a9 6856
c0fbe823 6857 --server <server_uri> ACME Directory Resource URI. (default: $DEFAULT_CA)
e3ebd582 6858 See: $_SERVER_WIKI
6859
c0fbe823
CE
6860 --accountconf <file> Specifies a customized account config file.
6861 --home <directory> Specifies the home dir for $PROJECT_NAME.
6862 --cert-home <directory> Specifies the home dir to save all the certs, only valid for '--install' command.
6863 --config-home <directory> Specifies the home dir to save all the configurations.
6864 --useragent <string> Specifies the user agent string. it will be saved for future use too.
58c4eaaf 6865 -m, --email <email> Specifies the account email, only valid for the '--install' and '--update-account' command.
c0fbe823
CE
6866 --accountkey <file> Specifies the account key path, only valid for the '--install' command.
6867 --days <ndays> Specifies the days to renew the cert when using '--issue' command. The default value is $DEFAULT_RENEW days.
6868 --httpport <port> Specifies the standalone listening port. Only valid if the server is behind a reverse proxy or load balancer.
6869 --tlsport <port> Specifies the standalone tls listening port. Only valid if the server is behind a reverse proxy or load balancer.
6870 --local-address <ip> Specifies the standalone/tls server listening address, in case you have multiple ip addresses.
dcf4f8f6 6871 --listraw Only used for '--list' command, list the certs in raw format.
d81369d6 6872 -se, --stop-renew-on-error Only valid for '--renew-all' command. Stop if one cert has error in renewal.
13d7cae9 6873 --insecure Do not check the server certificate, in some devices, the api server's certificate may not be trusted.
c0fbe823
CE
6874 --ca-bundle <file> Specifies the path to the CA certificate bundle to verify api server's certificate.
6875 --ca-path <directory> Specifies directory containing CA certificates in PEM format, used by wget or curl.
58c4eaaf 6876 --no-cron Only valid for '--install' command, which means: do not install the default cron job.
e3ebd582 6877 In this case, the certs will not be renewed automatically.
58c4eaaf 6878 --no-profile Only valid for '--install' command, which means: do not install aliases to user profile.
2910be82 6879 --no-color Do not output color text.
e32b3aac 6880 --force-color Force output of color text. Useful for non-interactive use with the aha tool for HTML E-Mails.
b67d663a 6881 --ecc Specifies to use the ECC cert. Valid for '--install-cert', '--renew', '--revoke', '--to-pkcs12' and '--create-csr'
c0fbe823
CE
6882 --csr <file> Specifies the input csr.
6883 --pre-hook <command> Command to be run before obtaining any certificates.
6884 --post-hook <command> Command to be run after attempting to obtain/renew certificates. Runs regardless of whether obtain/renew succeeded or failed.
6885 --renew-hook <command> Command to be run after each successfully renewed certificate.
6886 --deploy-hook <hookname> The hook file to deploy cert
6887 --ocsp, --ocsp-must-staple Generate OCSP-Must-Staple extension.
6888 --always-force-new-domain-key Generate new domain key on renewal. Otherwise, the domain key is not changed by default.
6889 --auto-upgrade [0|1] Valid for '--upgrade' command, indicating whether to upgrade automatically in future. Defaults to 1 if argument is omitted.
6ae0f7f5 6890 --listen-v4 Force standalone/tls server to listen at ipv4.
6891 --listen-v6 Force standalone/tls server to listen at ipv6.
c0fbe823 6892 --openssl-bin <file> Specifies a custom openssl bin location.
9b124070 6893 --use-wget Force to use wget, if you have both curl and wget installed.
07fdb087 6894 --yes-I-know-dns-manual-mode-enough-go-ahead-please Force use of dns manual mode.
e3ebd582 6895 See: $_DNS_MANUAL_WIKI
a48c22d1 6896
c0fbe823
CE
6897 -b, --branch <branch> Only valid for '--upgrade' command, specifies the branch name to upgrade to.
6898 --notify-level <0|1|2|3> Set the notification level: Default value is $NOTIFY_LEVEL_DEFAULT.
6899 0: disabled, no notification will be sent.
6900 1: send notifications only when there is an error.
6901 2: send notifications when a cert is successfully renewed, or there is an error.
6902 3: send notifications when a cert is skipped, renewed, or error.
6903 --notify-mode <0|1> Set notification mode. Default value is $NOTIFY_MODE_DEFAULT.
6904 0: Bulk mode. Send all the domain's notifications in one message(mail).
6905 1: Cert mode. Send a message for every single cert.
6906 --notify-hook <hookname> Set the notify hook
6907 --revoke-reason <0-10> The reason for revocation, can be used in conjunction with the '--revoke' command.
e3ebd582 6908 See: $_REVOKE_WIKI
6909
dd6c5c9e
CE
6910 --password <password> Add a password to exported pfx file. Use with --to-pkcs12.
6911
b50e701c 6912
6913"
4c3b3608 6914}
6915
58c4eaaf 6916installOnline() {
4a0f23e2 6917 _info "Installing from online archive."
58c4eaaf 6918
6919 _branch="$BRANCH"
6920 if [ -z "$_branch" ]; then
6921 _branch="master"
4a0f23e2 6922 fi
a8df88ab 6923
58c4eaaf 6924 target="$PROJECT/archive/$_branch.tar.gz"
4a0f23e2 6925 _info "Downloading $target"
58c4eaaf 6926 localname="$_branch.tar.gz"
4c2a3841 6927 if ! _get "$target" >$localname; then
df9547ae 6928 _err "Download error."
4a0f23e2 6929 return 1
6930 fi
0bbe6eef 6931 (
4c2a3841 6932 _info "Extracting $localname"
3a3b0dd5 6933 if ! (tar xzf $localname || gtar xzf $localname); then
6934 _err "Extraction error."
6935 exit 1
6936 fi
4c2a3841 6937
58c4eaaf 6938 cd "$PROJECT_NAME-$_branch"
4c2a3841 6939 chmod +x $PROJECT_ENTRY
58c4eaaf 6940 if ./$PROJECT_ENTRY --install "$@"; then
4c2a3841 6941 _info "Install success!"
6942 fi
6943
6944 cd ..
6945
58c4eaaf 6946 rm -rf "$PROJECT_NAME-$_branch"
4c2a3841 6947 rm -f "$localname"
0bbe6eef 6948 )
4a0f23e2 6949}
6950
cb7e3857
OB
6951_getRepoHash() {
6952 _hash_path=$1
6953 shift
6954 _hash_url="https://api.github.com/repos/acmesh-official/$PROJECT_NAME/git/refs/$_hash_path"
e0def669 6955 _get $_hash_url | tr -d "\r\n" | tr '{},' '\n\n\n' | grep '"sha":' | cut -d '"' -f 4
cb7e3857
OB
6956}
6957
6958_getUpgradeHash() {
f716f606 6959 _b="$BRANCH"
6960 if [ -z "$_b" ]; then
6961 _b="master"
6962 fi
cb7e3857
OB
6963 _hash=$(_getRepoHash "heads/$_b")
6964 if [ -z "$_hash" ]; then _hash=$(_getRepoHash "tags/$_b"); fi
6965 echo $_hash
7a3c61b7 6966}
6967
52677b0a 6968upgrade() {
6969 if (
267f283a 6970 _initpath
cb7e3857 6971 [ -z "$FORCE" ] && [ "$(_getUpgradeHash)" = "$(_readaccountconf "UPGRADE_HASH")" ] && _info "Already uptodate!" && exit 0
267f283a 6972 export LE_WORKING_DIR
d0b748a4 6973 cd "$LE_WORKING_DIR"
58c4eaaf 6974 installOnline "--nocron" "--noprofile"
4c2a3841 6975 ); then
52677b0a 6976 _info "Upgrade success!"
096d8992 6977 exit 0
52677b0a 6978 else
6979 _err "Upgrade failed!"
096d8992 6980 exit 1
52677b0a 6981 fi
6982}
a63b05a9 6983
5ea6e9c9 6984_processAccountConf() {
4c2a3841 6985 if [ "$_useragent" ]; then
5ea6e9c9 6986 _saveaccountconf "USER_AGENT" "$_useragent"
4c2a3841 6987 elif [ "$USER_AGENT" ] && [ "$USER_AGENT" != "$DEFAULT_USER_AGENT" ]; then
d0871bda 6988 _saveaccountconf "USER_AGENT" "$USER_AGENT"
5ea6e9c9 6989 fi
4c2a3841 6990
a746139c 6991 if [ "$_openssl_bin" ]; then
851fedf7 6992 _saveaccountconf "ACME_OPENSSL_BIN" "$_openssl_bin"
6993 elif [ "$ACME_OPENSSL_BIN" ] && [ "$ACME_OPENSSL_BIN" != "$DEFAULT_OPENSSL_BIN" ]; then
6994 _saveaccountconf "ACME_OPENSSL_BIN" "$ACME_OPENSSL_BIN"
a746139c 6995 fi
6996
4c2a3841 6997 if [ "$_auto_upgrade" ]; then
6bf281f9 6998 _saveaccountconf "AUTO_UPGRADE" "$_auto_upgrade"
4c2a3841 6999 elif [ "$AUTO_UPGRADE" ]; then
6bf281f9 7000 _saveaccountconf "AUTO_UPGRADE" "$AUTO_UPGRADE"
7001 fi
4c2a3841 7002
9b124070 7003 if [ "$_use_wget" ]; then
7004 _saveaccountconf "ACME_USE_WGET" "$_use_wget"
7005 elif [ "$ACME_USE_WGET" ]; then
7006 _saveaccountconf "ACME_USE_WGET" "$ACME_USE_WGET"
7007 fi
7008
5ea6e9c9 7009}
7010
5bdfdfef 7011_checkSudo() {
14b59142 7012 if [ -z "__INTERACTIVE" ]; then
7013 #don't check if it's not in an interactive shell
7014 return 0
7015 fi
5bdfdfef 7016 if [ "$SUDO_GID" ] && [ "$SUDO_COMMAND" ] && [ "$SUDO_USER" ] && [ "$SUDO_UID" ]; then
7017 if [ "$SUDO_USER" = "root" ] && [ "$SUDO_UID" = "0" ]; then
7018 #it's root using sudo, no matter it's using sudo or not, just fine
7019 return 0
7020 fi
79ad0ff5 7021 if [ -n "$SUDO_COMMAND" ]; then
996f5337 7022 #it's a normal user doing "sudo su", or `sudo -i` or `sudo -s`, or `sudo su acmeuser1`
7023 _endswith "$SUDO_COMMAND" /bin/su || _contains "$SUDO_COMMAND" "/bin/su " || grep "^$SUDO_COMMAND\$" /etc/shells >/dev/null 2>&1
79ad0ff5 7024 return $?
5bdfdfef 7025 fi
7026 #otherwise
7027 return 1
7028 fi
7029 return 0
7030}
7031
53d6ab6c 7032#server #keylength
737e9e48 7033_selectServer() {
7034 _server="$1"
53d6ab6c 7035 _skeylength="$2"
737e9e48 7036 _server_lower="$(echo "$_server" | _lower_case)"
7037 _sindex=0
7038 for snames in $CA_NAMES; do
7039 snames="$(echo "$snames" | _lower_case)"
7040 _sindex="$(_math $_sindex + 1)"
7041 _debug2 "_selectServer try snames" "$snames"
7042 for sname in $(echo "$snames" | tr ',' ' '); do
7043 if [ "$_server_lower" = "$sname" ]; then
7044 _debug2 "_selectServer match $sname"
7045 _serverdir="$(_getfield "$CA_SERVERS" $_sindex)"
53d6ab6c 7046 if [ "$_serverdir" = "$CA_SSLCOM_RSA" ] && _isEccKey "$_skeylength"; then
7047 _serverdir="$CA_SSLCOM_ECC"
7048 fi
737e9e48 7049 _debug "Selected server: $_serverdir"
7050 ACME_DIRECTORY="$_serverdir"
7051 export ACME_DIRECTORY
7052 return
7053 fi
7054 done
7055 done
7056 ACME_DIRECTORY="$_server"
7057 export ACME_DIRECTORY
7058}
7059
269847d1 7060#url
7061_getCAShortName() {
7062 caurl="$1"
95ef046d 7063 if [ -z "$caurl" ]; then
7064 caurl="$DEFAULT_CA"
7065 fi
c7285967 7066 if [ "$CA_SSLCOM_ECC" = "$caurl" ]; then
7067 caurl="$CA_SSLCOM_RSA" #just hack to get the short name
7068 fi
269847d1 7069 caurl_lower="$(echo $caurl | _lower_case)"
7070 _sindex=0
7071 for surl in $(echo "$CA_SERVERS" | _lower_case | tr , ' '); do
7072 _sindex="$(_math $_sindex + 1)"
7073 if [ "$caurl_lower" = "$surl" ]; then
7074 _nindex=0
7075 for snames in $CA_NAMES; do
7076 _nindex="$(_math $_nindex + 1)"
7077 if [ $_nindex -ge $_sindex ]; then
7078 _getfield "$snames" 1
7079 return
7080 fi
7081 done
7082 fi
7083 done
7084 echo "$caurl"
7085}
7086
737e9e48 7087#set default ca to $ACME_DIRECTORY
7088setdefaultca() {
7089 if [ -z "$ACME_DIRECTORY" ]; then
7090 _err "Please give a --server parameter."
7091 return 1
7092 fi
7093 _saveaccountconf "DEFAULT_ACME_SERVER" "$ACME_DIRECTORY"
df22f680 7094 _info "Changed default CA to: $(__green "$ACME_DIRECTORY")"
737e9e48 7095}
7096
d4e18997 7097#preferred-chain
7098setdefaultchain() {
7099 _initpath
7100 _preferred_chain="$1"
7101 if [ -z "$_preferred_chain" ]; then
7102 _err "Please give a '--preferred-chain value' value."
7103 return 1
7104 fi
7105 mkdir -p "$CA_DIR"
7106 _savecaconf "DEFAULT_PREFERRED_CHAIN" "$_preferred_chain"
7107}
7108
c39e6c44 7109#domain ecc
7110info() {
7111 _domain="$1"
7112 _ecc="$2"
7113 _initpath
7114 if [ -z "$_domain" ]; then
7115 _debug "Show global configs"
7116 echo "LE_WORKING_DIR=$LE_WORKING_DIR"
7117 echo "LE_CONFIG_HOME=$LE_CONFIG_HOME"
7118 cat "$ACCOUNT_CONF_PATH"
7119 else
7120 _debug "Show domain configs"
7121 (
7122 _initpath "$_domain" "$_ecc"
7123 echo "DOMAIN_CONF=$DOMAIN_CONF"
7124 for seg in $(cat $DOMAIN_CONF | cut -d = -f 1); do
7125 echo "$seg=$(_readdomainconf "$seg")"
7126 done
7127 )
7128 fi
7129}
7130
a63b05a9 7131_process() {
7132 _CMD=""
7133 _domain=""
3f4513b3 7134 _altdomains="$NO_VALUE"
a63b05a9 7135 _webroot=""
875625b1 7136 _challenge_alias=""
64847afc 7137 _keylength="$DEFAULT_DOMAIN_KEY_LENGTH"
7138 _accountkeylength="$DEFAULT_ACCOUNT_KEY_LENGTH"
5c539af7 7139 _cert_file=""
7140 _key_file=""
7141 _ca_file=""
7142 _fullchain_file=""
4d2f38b0 7143 _reloadcmd=""
a63b05a9 7144 _password=""
635695ec 7145 _accountconf=""
7146 _useragent=""
b5eb4b90 7147 _accountemail=""
7148 _accountkey=""
b2817897 7149 _certhome=""
27dbe77f 7150 _confighome=""
39c8f79f 7151 _httpport=""
e22bcf7c 7152 _tlsport=""
0e38c60d 7153 _dnssleep=""
dcf4f8f6 7154 _listraw=""
cc179731 7155 _stopRenewOnError=""
e3698edd 7156 #_insecure=""
78009539 7157 _ca_bundle=""
2aa75f03 7158 _ca_path=""
c8e9a31e 7159 _nocron=""
61556a54 7160 _noprofile=""
43822d37 7161 _ecc=""
10afcaca 7162 _csr=""
b0070f03 7163 _pre_hook=""
7164 _post_hook=""
7165 _renew_hook=""
a61fe418 7166 _deploy_hook=""
5ea6e9c9 7167 _logfile=""
d0871bda 7168 _log=""
0463b5d6 7169 _local_address=""
a73c5b33 7170 _log_level=""
6bf281f9 7171 _auto_upgrade=""
6ae0f7f5 7172 _listen_v4=""
7173 _listen_v6=""
a746139c 7174 _openssl_bin=""
e2edf208 7175 _syslog=""
9b124070 7176 _use_wget=""
98394f99 7177 _server=""
b50e701c 7178 _notify_hook=""
7179 _notify_level=""
7180 _notify_mode=""
1041c9f9 7181 _revoke_reason=""
f96d91cb 7182 _eab_kid=""
7183 _eab_hmac_key=""
e3ebd582 7184 _preferred_chain=""
de4c4eed 7185 _valid_from=""
7186 _valid_to=""
4c2a3841 7187 while [ ${#} -gt 0 ]; do
a63b05a9 7188 case "${1}" in
4c2a3841 7189
19c43451 7190 --help | -h)
7191 showhelp
7192 return
7193 ;;
7194 --version | -v)
7195 version
7196 return
7197 ;;
7198 --install)
7199 _CMD="install"
7200 ;;
58c4eaaf 7201 --install-online)
7202 shift
7203 installOnline "$@"
7204 return
7205 ;;
19c43451 7206 --uninstall)
7207 _CMD="uninstall"
7208 ;;
7209 --upgrade)
7210 _CMD="upgrade"
7211 ;;
7212 --issue)
7213 _CMD="issue"
7214 ;;
7215 --deploy)
7216 _CMD="deploy"
7217 ;;
7decf768 7218 --sign-csr | --signcsr)
19c43451 7219 _CMD="signcsr"
7220 ;;
7decf768 7221 --show-csr | --showcsr)
19c43451 7222 _CMD="showcsr"
7223 ;;
7decf768 7224 -i | --install-cert | --installcert)
19c43451 7225 _CMD="installcert"
7226 ;;
7227 --renew | -r)
7228 _CMD="renew"
7229 ;;
7decf768 7230 --renew-all | --renewAll | --renewall)
19c43451 7231 _CMD="renewAll"
7232 ;;
7233 --revoke)
7234 _CMD="revoke"
7235 ;;
7236 --remove)
7237 _CMD="remove"
7238 ;;
7239 --list)
7240 _CMD="list"
7241 ;;
c39e6c44 7242 --info)
7243 _CMD="info"
7244 ;;
7decf768 7245 --install-cronjob | --installcronjob)
19c43451 7246 _CMD="installcronjob"
7247 ;;
7decf768 7248 --uninstall-cronjob | --uninstallcronjob)
19c43451 7249 _CMD="uninstallcronjob"
7250 ;;
7251 --cron)
7252 _CMD="cron"
7253 ;;
1521199e 7254 --to-pkcs12 | --to-pkcs | --toPkcs)
19c43451 7255 _CMD="toPkcs"
7256 ;;
7decf768 7257 --to-pkcs8 | --toPkcs8)
19c43451 7258 _CMD="toPkcs8"
7259 ;;
7decf768 7260 --create-account-key | --createAccountKey | --createaccountkey | -cak)
19c43451 7261 _CMD="createAccountKey"
7262 ;;
7decf768 7263 --create-domain-key | --createDomainKey | --createdomainkey | -cdk)
19c43451 7264 _CMD="createDomainKey"
7265 ;;
7decf768 7266 -ccr | --create-csr | --createCSR | --createcsr)
19c43451 7267 _CMD="createCSR"
7268 ;;
7269 --deactivate)
7270 _CMD="deactivate"
7271 ;;
7decf768 7272 --update-account | --updateaccount)
19c43451 7273 _CMD="updateaccount"
7274 ;;
7decf768 7275 --register-account | --registeraccount)
19c43451 7276 _CMD="registeraccount"
7277 ;;
7278 --deactivate-account)
7279 _CMD="deactivateaccount"
7280 ;;
7281 --set-notify)
7282 _CMD="setnotify"
7283 ;;
7284 --set-default-ca)
7285 _CMD="setdefaultca"
7286 ;;
d4e18997 7287 --set-default-chain)
7288 _CMD="setdefaultchain"
7289 ;;
7decf768 7290 -d | --domain)
19c43451 7291 _dvalue="$2"
4c2a3841 7292
19c43451 7293 if [ "$_dvalue" ]; then
7294 if _startswith "$_dvalue" "-"; then
7295 _err "'$_dvalue' is not a valid domain for parameter '$1'"
7296 return 1
7297 fi
7298 if _is_idn "$_dvalue" && ! _exists idn; then
7299 _err "It seems that $_dvalue is an IDN( Internationalized Domain Names), please install 'idn' command first."
7300 return 1
7301 fi
4c2a3841 7302
19c43451 7303 if [ -z "$_domain" ]; then
7304 _domain="$_dvalue"
7305 else
7306 if [ "$_altdomains" = "$NO_VALUE" ]; then
7307 _altdomains="$_dvalue"
a63b05a9 7308 else
19c43451 7309 _altdomains="$_altdomains,$_dvalue"
a63b05a9 7310 fi
7311 fi
19c43451 7312 fi
4c2a3841 7313
19c43451 7314 shift
7315 ;;
a63b05a9 7316
7decf768 7317 -f | --force)
19c43451 7318 FORCE="1"
7319 ;;
7320 --staging | --test)
7321 STAGE="1"
7322 ;;
7323 --server)
7324 _server="$2"
19c43451 7325 shift
7326 ;;
7327 --debug)
7328 if [ -z "$2" ] || _startswith "$2" "-"; then
7329 DEBUG="$DEBUG_LEVEL_DEFAULT"
7330 else
7331 DEBUG="$2"
64821ad4 7332 shift
19c43451 7333 fi
7334 ;;
7335 --output-insecure)
7336 export OUTPUT_INSECURE=1
7337 ;;
7decf768 7338 -w | --webroot)
19c43451 7339 wvalue="$2"
7340 if [ -z "$_webroot" ]; then
7341 _webroot="$wvalue"
7342 else
7343 _webroot="$_webroot,$wvalue"
7344 fi
7345 shift
7346 ;;
7347 --challenge-alias)
7348 cvalue="$2"
7349 _challenge_alias="$_challenge_alias$cvalue,"
7350 shift
7351 ;;
7352 --domain-alias)
7353 cvalue="$DNS_ALIAS_PREFIX$2"
7354 _challenge_alias="$_challenge_alias$cvalue,"
7355 shift
7356 ;;
7357 --standalone)
7358 wvalue="$NO_VALUE"
7359 if [ -z "$_webroot" ]; then
7360 _webroot="$wvalue"
7361 else
7362 _webroot="$_webroot,$wvalue"
7363 fi
7364 ;;
7365 --alpn)
7366 wvalue="$W_ALPN"
7367 if [ -z "$_webroot" ]; then
7368 _webroot="$wvalue"
7369 else
7370 _webroot="$_webroot,$wvalue"
7371 fi
7372 ;;
7373 --stateless)
7374 wvalue="$MODE_STATELESS"
7375 if [ -z "$_webroot" ]; then
7376 _webroot="$wvalue"
7377 else
7378 _webroot="$_webroot,$wvalue"
7379 fi
7380 ;;
7381 --local-address)
7382 lvalue="$2"
7383 _local_address="$_local_address$lvalue,"
7384 shift
7385 ;;
7386 --apache)
7387 wvalue="apache"
7388 if [ -z "$_webroot" ]; then
7389 _webroot="$wvalue"
7390 else
7391 _webroot="$_webroot,$wvalue"
7392 fi
7393 ;;
7394 --nginx)
7395 wvalue="$NGINX"
7396 if [ "$2" ] && ! _startswith "$2" "-"; then
7397 wvalue="$NGINX$2"
0463b5d6 7398 shift
19c43451 7399 fi
7400 if [ -z "$_webroot" ]; then
7401 _webroot="$wvalue"
7402 else
7403 _webroot="$_webroot,$wvalue"
7404 fi
7405 ;;
7406 --dns)
7407 wvalue="$W_DNS"
7408 if [ "$2" ] && ! _startswith "$2" "-"; then
7409 wvalue="$2"
0e38c60d 7410 shift
19c43451 7411 fi
7412 if [ -z "$_webroot" ]; then
7413 _webroot="$wvalue"
7414 else
7415 _webroot="$_webroot,$wvalue"
7416 fi
7417 ;;
7418 --dnssleep)
7419 _dnssleep="$2"
7420 Le_DNSSleep="$_dnssleep"
7421 shift
7422 ;;
19c43451 7423 --keylength | -k)
7424 _keylength="$2"
7425 shift
7426 ;;
7decf768 7427 -ak | --accountkeylength)
19c43451 7428 _accountkeylength="$2"
7429 shift
7430 ;;
19c43451 7431 --cert-file | --certpath)
7432 _cert_file="$2"
7433 shift
7434 ;;
7435 --key-file | --keypath)
7436 _key_file="$2"
7437 shift
7438 ;;
7439 --ca-file | --capath)
7440 _ca_file="$2"
7441 shift
7442 ;;
7443 --fullchain-file | --fullchainpath)
7444 _fullchain_file="$2"
7445 shift
7446 ;;
7447 --reloadcmd | --reloadCmd)
7448 _reloadcmd="$2"
7449 shift
7450 ;;
7451 --password)
7452 _password="$2"
7453 shift
7454 ;;
7455 --accountconf)
7456 _accountconf="$2"
7457 ACCOUNT_CONF_PATH="$_accountconf"
7458 shift
7459 ;;
7460 --home)
8601267b 7461 export LE_WORKING_DIR="$2"
19c43451 7462 shift
7463 ;;
7decf768 7464 --cert-home | --certhome)
19c43451 7465 _certhome="$2"
8601267b 7466 export CERT_HOME="$_certhome"
19c43451 7467 shift
7468 ;;
7469 --config-home)
7470 _confighome="$2"
8601267b 7471 export LE_CONFIG_HOME="$_confighome"
19c43451 7472 shift
7473 ;;
7474 --useragent)
7475 _useragent="$2"
7476 USER_AGENT="$_useragent"
7477 shift
7478 ;;
58c4eaaf 7479 -m | --email | --accountemail)
19c43451 7480 _accountemail="$2"
58c4eaaf 7481 export ACCOUNT_EMAIL="$_accountemail"
19c43451 7482 shift
7483 ;;
7484 --accountkey)
7485 _accountkey="$2"
7486 ACCOUNT_KEY_PATH="$_accountkey"
7487 shift
7488 ;;
7489 --days)
7490 _days="$2"
7491 Le_RenewalDays="$_days"
7492 shift
7493 ;;
de4c4eed 7494 --valid-from)
7495 _valid_from="$2"
7496 shift
7497 ;;
7498 --valid-to)
7499 _valid_to="$2"
7500 shift
7501 ;;
19c43451 7502 --httpport)
7503 _httpport="$2"
7504 Le_HTTPPort="$_httpport"
7505 shift
7506 ;;
7507 --tlsport)
7508 _tlsport="$2"
7509 Le_TLSPort="$_tlsport"
7510 shift
7511 ;;
7512 --listraw)
7513 _listraw="raw"
7514 ;;
7decf768 7515 -se | --stop-renew-on-error | --stopRenewOnError | --stoprenewonerror)
19c43451 7516 _stopRenewOnError="1"
7517 ;;
7518 --insecure)
7519 #_insecure="1"
7520 HTTPS_INSECURE="1"
7521 ;;
7522 --ca-bundle)
7523 _ca_bundle="$(_readlink "$2")"
7524 CA_BUNDLE="$_ca_bundle"
7525 shift
7526 ;;
7527 --ca-path)
7528 _ca_path="$2"
7529 CA_PATH="$_ca_path"
7530 shift
7531 ;;
58c4eaaf 7532 --no-cron | --nocron)
19c43451 7533 _nocron="1"
7534 ;;
58c4eaaf 7535 --no-profile | --noprofile)
19c43451 7536 _noprofile="1"
7537 ;;
2910be82 7538 --no-color)
19c43451 7539 export ACME_NO_COLOR=1
7540 ;;
7541 --force-color)
7542 export ACME_FORCE_COLOR=1
7543 ;;
7544 --ecc)
7545 _ecc="isEcc"
7546 ;;
7547 --csr)
7548 _csr="$2"
7549 shift
7550 ;;
7551 --pre-hook)
7552 _pre_hook="$2"
7553 shift
7554 ;;
7555 --post-hook)
7556 _post_hook="$2"
7557 shift
7558 ;;
7559 --renew-hook)
7560 _renew_hook="$2"
7561 shift
7562 ;;
7563 --deploy-hook)
7564 if [ -z "$2" ] || _startswith "$2" "-"; then
7565 _usage "Please specify a value for '--deploy-hook'"
7566 return 1
7567 fi
7568 _deploy_hook="$_deploy_hook$2,"
7569 shift
7570 ;;
7571 --ocsp-must-staple | --ocsp)
7572 Le_OCSP_Staple="1"
7573 ;;
7574 --always-force-new-domain-key)
7575 if [ -z "$2" ] || _startswith "$2" "-"; then
7576 Le_ForceNewDomainKey=1
7577 else
7578 Le_ForceNewDomainKey="$2"
1041c9f9 7579 shift
19c43451 7580 fi
7581 ;;
7582 --yes-I-know-dns-manual-mode-enough-go-ahead-please)
7583 export FORCE_DNS_MANUAL=1
7584 ;;
7585 --log | --logfile)
7586 _log="1"
7587 _logfile="$2"
7588 if _startswith "$_logfile" '-'; then
7589 _logfile=""
7590 else
f96d91cb 7591 shift
19c43451 7592 fi
7593 LOG_FILE="$_logfile"
7594 if [ -z "$LOG_LEVEL" ]; then
7595 LOG_LEVEL="$DEFAULT_LOG_LEVEL"
7596 fi
7597 ;;
7598 --log-level)
7599 _log_level="$2"
7600 LOG_LEVEL="$_log_level"
7601 shift
7602 ;;
7603 --syslog)
7604 if ! _startswith "$2" '-'; then
7605 _syslog="$2"
f96d91cb 7606 shift
19c43451 7607 fi
7608 if [ -z "$_syslog" ]; then
7609 _syslog="$SYSLOG_LEVEL_DEFAULT"
7610 fi
7611 ;;
7612 --auto-upgrade)
7613 _auto_upgrade="$2"
7614 if [ -z "$_auto_upgrade" ] || _startswith "$_auto_upgrade" '-'; then
7615 _auto_upgrade="1"
7616 else
e3ebd582 7617 shift
19c43451 7618 fi
7619 AUTO_UPGRADE="$_auto_upgrade"
7620 ;;
7621 --listen-v4)
7622 _listen_v4="1"
7623 Le_Listen_V4="$_listen_v4"
7624 ;;
7625 --listen-v6)
7626 _listen_v6="1"
7627 Le_Listen_V6="$_listen_v6"
7628 ;;
7629 --openssl-bin)
7630 _openssl_bin="$2"
7631 ACME_OPENSSL_BIN="$_openssl_bin"
7632 shift
7633 ;;
7634 --use-wget)
7635 _use_wget="1"
7636 ACME_USE_WGET="1"
7637 ;;
7638 --branch | -b)
7639 export BRANCH="$2"
7640 shift
7641 ;;
7642 --notify-hook)
7643 _nhook="$2"
7644 if _startswith "$_nhook" "-"; then
7645 _err "'$_nhook' is not a hook name for '$1'"
a63b05a9 7646 return 1
19c43451 7647 fi
7648 if [ "$_notify_hook" ]; then
7649 _notify_hook="$_notify_hook,$_nhook"
7650 else
7651 _notify_hook="$_nhook"
7652 fi
7653 shift
7654 ;;
7655 --notify-level)
7656 _nlevel="$2"
7657 if _startswith "$_nlevel" "-"; then
7658 _err "'$_nlevel' is not a integer for '$1'"
7659 return 1
7660 fi
7661 _notify_level="$_nlevel"
7662 shift
7663 ;;
7664 --notify-mode)
7665 _nmode="$2"
7666 if _startswith "$_nmode" "-"; then
7667 _err "'$_nmode' is not a integer for '$1'"
7668 return 1
7669 fi
7670 _notify_mode="$_nmode"
7671 shift
7672 ;;
7673 --revoke-reason)
7674 _revoke_reason="$2"
7675 if _startswith "$_revoke_reason" "-"; then
7676 _err "'$_revoke_reason' is not a integer for '$1'"
7677 return 1
7678 fi
7679 shift
7680 ;;
7681 --eab-kid)
7682 _eab_kid="$2"
7683 shift
7684 ;;
7685 --eab-hmac-key)
7686 _eab_hmac_key="$2"
7687 shift
7688 ;;
7689 --preferred-chain)
7690 _preferred_chain="$2"
7691 shift
7692 ;;
7693 *)
7694 _err "Unknown parameter : $1"
7695 return 1
7696 ;;
a63b05a9 7697 esac
7698
7699 shift 1
7700 done
7701
53d6ab6c 7702 if [ "$_server" ]; then
30f11d0e 7703 _selectServer "$_server" "${_ecc:-$_keylength}"
8b7a86bd 7704 _server="$ACME_DIRECTORY"
53d6ab6c 7705 fi
7706
4c2a3841 7707 if [ "${_CMD}" != "install" ]; then
5bdfdfef 7708 if [ "$__INTERACTIVE" ] && ! _checkSudo; then
7709 if [ -z "$FORCE" ]; then
7710 #Use "echo" here, instead of _info. it's too early
7711 echo "It seems that you are using sudo, please read this link first:"
7712 echo "$_SUDO_WIKI"
7713 return 1
7714 fi
7715 fi
5ea6e9c9 7716 __initHome
661f0583 7717 if [ "$_log" ]; then
4c2a3841 7718 if [ -z "$_logfile" ]; then
661f0583 7719 _logfile="$DEFAULT_LOG_FILE"
7720 fi
d0871bda 7721 fi
4c2a3841 7722 if [ "$_logfile" ]; then
5ea6e9c9 7723 _saveaccountconf "LOG_FILE" "$_logfile"
661f0583 7724 LOG_FILE="$_logfile"
5ea6e9c9 7725 fi
a73c5b33 7726
4c2a3841 7727 if [ "$_log_level" ]; then
a73c5b33 7728 _saveaccountconf "LOG_LEVEL" "$_log_level"
7729 LOG_LEVEL="$_log_level"
7730 fi
4c2a3841 7731
e2edf208 7732 if [ "$_syslog" ]; then
7733 if _exists logger; then
7734 if [ "$_syslog" = "0" ]; then
7735 _clearaccountconf "SYS_LOG"
7736 else
7737 _saveaccountconf "SYS_LOG" "$_syslog"
7738 fi
7739 SYS_LOG="$_syslog"
7740 else
7741 _err "The 'logger' command is not found, can not enable syslog."
7742 _clearaccountconf "SYS_LOG"
7743 SYS_LOG=""
7744 fi
7745 fi
7746
5ea6e9c9 7747 _processAccountConf
7748 fi
4c2a3841 7749
9d548d81 7750 _debug2 LE_WORKING_DIR "$LE_WORKING_DIR"
4c2a3841 7751
7752 if [ "$DEBUG" ]; then
dcf9cb58 7753 version
98394f99 7754 if [ "$_server" ]; then
7755 _debug "Using server: $_server"
7756 fi
dcf9cb58 7757 fi
9a733a57 7758 _debug "Running cmd: ${_CMD}"
a63b05a9 7759 case "${_CMD}" in
58c4eaaf 7760 install) install "$_nocron" "$_confighome" "$_noprofile" "$_accountemail" ;;
19c43451 7761 uninstall) uninstall "$_nocron" ;;
7762 upgrade) upgrade ;;
7763 issue)
de4c4eed 7764 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"
19c43451 7765 ;;
7766 deploy)
7767 deploy "$_domain" "$_deploy_hook" "$_ecc"
7768 ;;
7769 signcsr)
96a95ba9 7770 signcsr "$_csr" "$_webroot" "$_cert_file" "$_key_file" "$_ca_file" "$_reloadcmd" "$_fullchain_file" "$_pre_hook" "$_post_hook" "$_renew_hook" "$_local_address" "$_challenge_alias" "$_preferred_chain"
19c43451 7771 ;;
7772 showcsr)
7773 showcsr "$_csr" "$_domain"
7774 ;;
7775 installcert)
7776 installcert "$_domain" "$_cert_file" "$_key_file" "$_ca_file" "$_reloadcmd" "$_fullchain_file" "$_ecc"
7777 ;;
7778 renew)
8b7a86bd 7779 renew "$_domain" "$_ecc" "$_server"
19c43451 7780 ;;
7781 renewAll)
8b7a86bd 7782 renewAll "$_stopRenewOnError" "$_server"
19c43451 7783 ;;
7784 revoke)
7785 revoke "$_domain" "$_ecc" "$_revoke_reason"
7786 ;;
7787 remove)
7788 remove "$_domain" "$_ecc"
7789 ;;
7790 deactivate)
7791 deactivate "$_domain,$_altdomains"
7792 ;;
7793 registeraccount)
7794 registeraccount "$_accountkeylength" "$_eab_kid" "$_eab_hmac_key"
7795 ;;
7796 updateaccount)
7797 updateaccount
7798 ;;
7799 deactivateaccount)
7800 deactivateaccount
7801 ;;
7802 list)
7803 list "$_listraw" "$_domain"
7804 ;;
c39e6c44 7805 info)
7806 info "$_domain" "$_ecc"
7807 ;;
19c43451 7808 installcronjob) installcronjob "$_confighome" ;;
7809 uninstallcronjob) uninstallcronjob ;;
7810 cron) cron ;;
7811 toPkcs)
7812 toPkcs "$_domain" "$_password" "$_ecc"
7813 ;;
7814 toPkcs8)
7815 toPkcs8 "$_domain" "$_ecc"
7816 ;;
7817 createAccountKey)
7818 createAccountKey "$_accountkeylength"
7819 ;;
7820 createDomainKey)
7821 createDomainKey "$_domain" "$_keylength"
7822 ;;
7823 createCSR)
7824 createCSR "$_domain" "$_altdomains" "$_ecc"
7825 ;;
7826 setnotify)
7827 setnotify "$_notify_hook" "$_notify_level" "$_notify_mode"
7828 ;;
7829 setdefaultca)
7830 setdefaultca
7831 ;;
d4e18997 7832 setdefaultchain)
7833 setdefaultchain "$_preferred_chain"
7834 ;;
19c43451 7835 *)
7836 if [ "$_CMD" ]; then
7837 _err "Invalid command: $_CMD"
7838 fi
7839 showhelp
7840 return 1
7841 ;;
a63b05a9 7842 esac
d3595686 7843 _ret="$?"
4c2a3841 7844 if [ "$_ret" != "0" ]; then
d3595686 7845 return $_ret
7846 fi
4c2a3841 7847
7848 if [ "${_CMD}" = "install" ]; then
7849 if [ "$_log" ]; then
7850 if [ -z "$LOG_FILE" ]; then
d0871bda 7851 LOG_FILE="$DEFAULT_LOG_FILE"
7852 fi
7853 _saveaccountconf "LOG_FILE" "$LOG_FILE"
5ea6e9c9 7854 fi
4c2a3841 7855
7856 if [ "$_log_level" ]; then
a73c5b33 7857 _saveaccountconf "LOG_LEVEL" "$_log_level"
7858 fi
e2edf208 7859
7860 if [ "$_syslog" ]; then
7861 if _exists logger; then
7862 if [ "$_syslog" = "0" ]; then
7863 _clearaccountconf "SYS_LOG"
7864 else
7865 _saveaccountconf "SYS_LOG" "$_syslog"
7866 fi
7867 else
7868 _err "The 'logger' command is not found, can not enable syslog."
7869 _clearaccountconf "SYS_LOG"
7870 SYS_LOG=""
7871 fi
7872 fi
7873
5ea6e9c9 7874 _processAccountConf
b5eb4b90 7875 fi
635695ec 7876
a63b05a9 7877}
7878
319e0ae3 7879main() {
7880 [ -z "$1" ] && showhelp && return
4c2a3841 7881 if _startswith "$1" '-'; then _process "$@"; else "$@"; fi
319e0ae3 7882}
e69a7c38 7883
aa7b82de 7884main "$@"