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