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